/* Button Styles */

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #b76e79 0%, #8d4a56 100%);
    color: #ffffff;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #8d4a56 0%, #6d3a42 100%);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: var(--font-size-base);
}

.btn-small {
    padding: 8px 20px;
    font-size: var(--font-size-xs);
}

.btn-secondary {
    background: linear-gradient(135deg, #d35a9e 0%, #b94c89 100%);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b94c89 0%, #a33e77 100%);
}

.btn-outline {
    background: transparent;
    border: 2px solid #b76e79;
    color: #b76e79;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #b76e79 0%, #8d4a56 100%);
    color: #ffffff;
}

.btn-white {
    background: #ffffff;
    color: #b76e79;
}

.btn-white:hover {
    background: #f8f9fa;
    color: #8d4a56;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Button with pulse animation */
.pulse {
    position: relative;
}

.pulse:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #b76e79 0%, #8d4a56 100%);
    border-radius: 30px;
    animation: pulse-animation 2s infinite;
    z-index: -1;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .btn {
        padding: 10px 25px;
    }
    
    .btn-large {
        padding: 12px 30px;
    }
}