/* ============================================
   7AVE Clothes Design System (No Vite)
   ============================================ */

/* Base styles */
body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FAF8F5;
}

::-webkit-scrollbar-thumb {
    background: #77add3;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1B4965;
}

/* ============ Animations ============ */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

.animate-slide-down {
    animation: slideDown 0.3s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============ Glass effects ============ */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.glass-dark {
    background: rgba(27, 73, 101, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ============ Product card ============ */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(27, 73, 101, 0.12);
}

/* ============ Badges ============ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
}

.badge-navy {
    background-color: #1B4965;
    color: #fff;
}

/* ============ Buttons ============ */
.btn-primary {
    background-color: #1B4965;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #173f58;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(27, 73, 101, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}


.btn-outline {
    border: 2px solid #1B4965;
    color: #1B4965;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background-color: #1B4965;
    color: #fff;
}

/* ============ Input ============ */
.input-field {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #0e283b;
    transition: all 0.3s;
}

.input-field::placeholder {
    color: #9ca3af;
}

.input-field:focus {
    outline: none;
    box-shadow: 0 0 0 2px #1B4965;
    border-color: transparent;
}

/* ============ Section headings ============ */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e283b;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
}

.section-subtitle {
    color: #6b7280;
    margin-top: 0.5rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}