/* ============================================================
   ADaklik — Premium Design System
   Turkish-Islamic Qurbani Platform
   ============================================================ */

/* ─── Design Tokens ─── */
:root {
    /* Brand Colors */
    --primary: #0f6b3a;
    --primary-dark: #0a4d2a;
    --primary-light: #1a8f4e;
    --primary-alpha: rgba(15, 107, 58, 0.08);
    --primary-glow: rgba(15, 107, 58, 0.25);

    --gold: #c8a45c;
    --gold-light: #e0c78a;
    --gold-dark: #a8883a;
    --gold-alpha: rgba(200, 164, 92, 0.15);
    --gold-glow: rgba(200, 164, 92, 0.3);

    --terracotta: #c1694f;
    --terracotta-light: #d4836a;

    --dark: #1a2e1a;
    --dark-secondary: #243924;
    --dark-tertiary: #2f462f;

    /* Neutrals */
    --bg: #faf8f4;
    --bg-alt: #f3efe8;
    --bg-card: #ffffff;
    --text: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #95a0a5;
    --border: #e8e3da;
    --border-light: #f0ece5;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 8px 32px var(--primary-glow);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.3s var(--ease-out);
    --transition-fast: all 0.15s var(--ease-out);
    --transition-spring: all 0.4s var(--ease-spring);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Layout */
    --navbar-height: 76px;
    --max-width: 1320px;
}

/* ─── Base ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--bg);
    color: var(--text);
    padding-top: var(--navbar-height);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: white;
}

img { max-width: 100%; height: auto; }
a { color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.display-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    margin: 0.75rem 0 0;
    border-radius: 2px;
}

.text-center .section-title::after { margin: 0.75rem auto 0; }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
}

/* ─── Glassmorphism ─── */
.glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-sm);
}

.glass-strong {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-md);
}

.glass-dark {
    background: rgba(26, 46, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
}

/* ─── Navbar ─── */
.navbar {
    background: rgba(26, 46, 26, 0.92) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0;
    min-height: var(--navbar-height);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar.navbar-scrolled {
    background: rgba(26, 46, 26, 0.97) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
}

@media (min-width: 992px) {
    .navbar .navbar-collapse {
        display: flex;
        justify-content: center;
    }
    .navbar-nav.flex-row.d-none.d-lg-flex {
        flex: 0 0 auto;
    }
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.navbar .navbar-brand i {
    -webkit-text-fill-color: initial;
    color: var(--gold);
    font-size: 1.4rem;
}

.navbar .navbar-brand img {
    -webkit-text-fill-color: initial;
    background: none;
}

.navbar .navbar-brand::after {
    display: none;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem !important;
    border-radius: var(--radius-round);
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold) !important;
    background: rgba(200, 164, 92, 0.1);
}

.navbar .nav-link i { margin-right: 6px; }

.navbar .dropdown-menu {
    background: rgba(26, 46, 26, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
    padding: 0.5rem;
}

.navbar .dropdown-item {
    color: rgba(255,255,255,0.75);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    transition: var(--transition);
}

.navbar .dropdown-item:hover {
    background: rgba(200, 164, 92, 0.12);
    color: var(--gold);
}

.navbar .dropdown-divider {
    border-color: rgba(255,255,255,0.08);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Navbar CTA Button */
.navbar .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px var(--gold-glow);
    transition: var(--transition-spring);
}

.navbar .nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 24px var(--gold-glow) !important;
}

.navbar .nav-cta::after { display: none; }

/* Dropdown Animation */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 16px;
    z-index: 1056;
}

.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.2s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.2s;
    pointer-events: none;
    position: absolute;
    top: 100%;
    z-index: 1055;
    margin-top: 0;
}

.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Hover bridge: keep dropdown alive when entering menu */
.navbar .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Dropdown toggle cursor */
.navbar .dropdown-toggle {
    cursor: pointer;
}

/* Mobile dropdown click toggle */
@media (max-width: 991.98px) {
    .navbar .dropdown > .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        transition: none;
    }

    .navbar .dropdown > .dropdown-menu.show {
        display: block;
    }

    .navbar .dropdown > .dropdown-menu .dropdown-item {
        color: rgba(255,255,255,0.7);
        justify-content: center;
        font-size: 0.95rem;
        text-align: center;
    }
}

/* Mobile hamburger animation */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1060;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.navbar-toggler[aria-expanded="true"] {
    border-color: var(--gold);
    background: rgba(200,164,92,0.1);
}

/* Mobile Nav Overlay */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 26, 15, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 90px 2rem 2rem;
        z-index: 1055;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out), visibility 0.4s;
        overflow-y: auto;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-collapse.collapsing {
        transition: opacity 0.3s var(--ease-out), transform 0.4s var(--ease-out), visibility 0.3s;
    }

    .navbar-collapse .navbar-nav {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .navbar-collapse .nav-link {
        font-size: 1.1rem;
        padding: 0.85rem 1.5rem !important;
        width: 100%;
        max-width: 340px;
        border-radius: var(--radius-sm);
    }

    .navbar-collapse .nav-link::after { display: none; }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        background: rgba(200,164,92,0.1);
        color: var(--gold) !important;
    }

    .navbar-collapse .nav-cta {
        margin-top: 0.5rem;
        max-width: 340px;
    }

}

/* ─── Hero Slider ─── */
/* ─── Heroes (modern slider) ─── */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1260 / 750;
    max-height: 92vh;
    overflow: hidden;
    background: var(--dark);
}

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 20;
    background: rgba(255,255,255,0.08);
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.1s linear;
    will-change: width;
}

/* ─── Slider Track ─── */
.hero-slider .slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

/* ─── Individual Slides ─── */
.hero-slide {
    position: relative;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0 10%;
}



/* ─── Slide Image ─── */
.hero-slide .slide-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-slide .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}



/* ─── Slide Content ─── */
.hero-slide .slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 2rem 0;
    max-width: 720px;
    margin: 0;
}





/* ─── Badge ─── */
.hero-slide .slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 164, 92, 0.12);
    border: 1px solid rgba(200, 164, 92, 0.25);
    padding: 0.45rem 1.3rem;
    border-radius: var(--radius-round);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-slide .slide-badge i {
    font-size: 0.65rem;
}

/* ─── Title ─── */
.hero-slide .slide-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-slide .slide-title .gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide .slide-subtitle {
    font-size: clamp(0.85rem, 1.8vw, 1.15rem);
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-slide .slide-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    opacity: 0.8;
    max-width: 560px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
}

/* ─── Primary CTA ─── */
.hero-slide .slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2.6rem;
    border-radius: var(--radius-round);
    box-shadow: 0 8px 32px var(--gold-glow);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.hero-slide .slide-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out);
}

.hero-slide .slide-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 48px var(--gold-glow);
    color: white;
}

.hero-slide .slide-btn:hover::before {
    transform: translateX(100%);
}

.hero-slide .slide-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* ─── Secondary CTA ─── */
.hero-slide .slide-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-round);
    transition: var(--transition);
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    margin-left: 0.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-slide .slide-btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: white;
}

/* ─── Slide entrance animation ─── */
.hero-slide.active .slide-content > * {
    animation: slideIn 0.7s var(--ease-out) forwards;
    opacity: 0;
}

.hero-slide.active .slide-badge { animation-delay: 0.05s; }
.hero-slide.active .slide-subtitle { animation-delay: 0.15s; }
.hero-slide.active .slide-title { animation-delay: 0.25s; }
.hero-slide.active .slide-desc { animation-delay: 0.35s; }
.hero-slide.active .slide-actions { animation-delay: 0.45s; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Navigation Dots ─── */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 10%;
    transform: none;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s;
}

.slider-dot.active {
    background: rgba(255,255,255,0.15);
}

.slider-dot.active::after {
    width: 100%;
}

/* ─── Arrows ─── */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.hero-slider:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: rgba(200, 164, 92, 0.15);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ─── Pause Button ─── */
.slider-pause {
    position: absolute;
    bottom: 46px;
    right: 10%;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-pause:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* ─── Scroll Indicator ─── */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.3;
    transition: opacity 0.5s;
    animation: scrollIndicatorPulse 3s ease-in-out infinite;
}

.scroll-indicator-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.scroll-indicator-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -0.5px;
    width: 2px;
    height: 12px;
    background: rgba(255,255,255,0.7);
    border-radius: 1px;
    animation: scrollIndicatorLine 2.5s ease-in-out infinite;
}

@keyframes scrollIndicatorLine {
    0% { transform: translateY(-12px); opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateY(48px); opacity: 0; }
}

@keyframes scrollIndicatorPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
    .hero-slider,
    .hero-slider .slider-track,
    .hero-slide {
        min-height: 80vh;
    }

    .hero-slide {
        justify-content: center;
        padding: 0 5%;
    }

    .hero-slide .slide-content {
        text-align: center;
        max-width: 600px;
    }

    .hero-slide .slide-desc {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-dots {
        left: 50%;
        transform: translateX(-50%);
    }

    .slider-pause {
        right: 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        opacity: 1;
        background: rgba(255,255,255,0.08);
    }

    .slider-arrow.prev { left: 8px; }
    .slider-arrow.next { right: 8px; }

    .hero-slide .slide-btn-secondary {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .hero-slide .slide-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .scroll-indicator {
        display: none;
    }

}

@media (max-width: 575.98px) {
    .hero-slide {
        padding: 0 1.25rem;
    }

    .slider-dots {
        bottom: 32px;
        gap: 6px;
    }

    .slider-dot {
        width: 24px;
        height: 3px;
    }

    .slider-pause {
        bottom: 28px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 0.55rem;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

    .hero-slide .slide-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* ─── Islamic Geometric Ornament ─── */
.geometric-border {
    position: relative;
}

.geometric-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 12px,
        transparent 12px,
        transparent 16px,
        var(--primary) 16px,
        var(--primary) 28px,
        transparent 28px,
        transparent 32px
    );
    border-radius: 2px;
    opacity: 0.6;
}

/* ─── Section Spacing ─── */
section { position: relative; }
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }
.bg-alt { background: var(--bg-alt); }

/* ─── Category Cards ─── */
.category-card {
    border: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
    cursor: pointer;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-alpha), transparent);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(15, 107, 58, 0.15) !important;
}

.category-card:hover::before { opacity: 1; }

.category-card .card-body {
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg), var(--bg-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition-spring);
    font-size: 2.2rem;
    position: relative;
}

.category-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold-alpha);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(-8deg);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.category-card:hover .category-icon i { color: white !important; }
.category-card:hover .category-icon::after { opacity: 1; }

/* ─── Step Circles (How It Works) ─── */
.step-wrapper {
    position: relative;
}

.step-wrapper:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 44px;
    left: 50%;
    width: calc(100% - 80px);
    height: 3px;
    background: linear-gradient(90deg, var(--primary-alpha), var(--gold-alpha));
    z-index: 0;
    border-radius: 2px;
}

.step-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 8px 30px var(--primary-glow);
    transition: var(--transition-spring);
    position: relative;
    z-index: 2;
    margin: 0 auto 1.25rem;
}

.step-wrapper:hover .step-circle {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.step-wrapper h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-wrapper p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 240px;
    margin: 0 auto;
}

/* ─── Product Cards ─── */
.product-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-spring);
    background: var(--bg-card);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 107, 58, 0.12) !important;
}

.product-card .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.product-card:hover .card-img-top {
    transform: scale(1.08);
}

.product-card .card-img-overlay-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.product-card .card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.product-card .product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: -0.03em;
}

.product-card .btn {
    border-radius: var(--radius-round);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    transition: var(--transition-spring);
}

/* ─── Progress Tracker ─── */
.progress-tracker .step-indicator {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: var(--transition-spring);
    position: relative;
    z-index: 2;
}

.progress-tracker .step-indicator.completed {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 6px 20px var(--primary-glow);
}

.progress-tracker .step-indicator.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    transform: scale(1.2);
    box-shadow: 0 0 0 8px var(--gold-alpha), 0 8px 30px var(--gold-glow);
    animation: pulseStep 2s ease-in-out infinite;
}

@keyframes pulseStep {
    0%, 100% { box-shadow: 0 0 0 8px var(--gold-alpha), 0 8px 30px var(--gold-glow); }
    50% { box-shadow: 0 0 0 14px rgba(200,164,92,0.08), 0 10px 35px var(--gold-glow); }
}

.progress-tracker .progress-line {
    position: absolute;
    top: 28px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--border-light);
    z-index: 0;
    border-radius: 2px;
}

.progress-tracker .progress-line-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: width 0.8s var(--ease-out);
}

/* ─── Buttons ─── */
.btn {
    border-radius: var(--radius-round);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease-out);
}

.btn:hover::after { transform: translateX(100%); }
.btn:active { transform: scale(0.96) !important; }

.btn-lg {
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    border-radius: var(--radius-round);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--radius-round);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-success {
    background: linear-gradient(135deg, #0f6b3a, #1a9b54);
    border: none;
    box-shadow: 0 4px 16px rgba(15, 107, 58, 0.25);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(15, 107, 58, 0.35);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-warning {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: white;
    box-shadow: 0 4px 16px var(--gold-glow);
}

.btn-warning:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-terracotta {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    border: none;
    color: white;
    box-shadow: 0 4px 16px rgba(193, 105, 79, 0.25);
}

.btn-terracotta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(193, 105, 79, 0.35);
}

/* ─── Cards ─── */
.card {
    border-radius: var(--radius-lg);
    border: none;
    background: var(--bg-card);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card .card-img-top {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-body { padding: 1.25rem; }

.card-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
}

/* ─── Badges ─── */
.badge {
    border-radius: var(--radius-round);
    padding: 0.4em 1em;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    text-transform: none;
}

.badge.bg-success { background: linear-gradient(135deg, #0f6b3a, #1a9b54) !important; }
.badge.bg-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important; }
.badge.bg-warning { background: linear-gradient(135deg, #d4942a, #e8b34b) !important; color: #212529; }
.badge.bg-info { background: linear-gradient(135deg, #1a7a8a, #2098ae) !important; }
.badge.bg-danger { background: linear-gradient(135deg, #b33a3a, #d44a4a) !important; }
.badge.bg-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; color: white; }

/* ─── Forms ─── */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-primary);
    background: var(--bg-card);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-alpha);
    background: var(--bg-card);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220,53,69,0.1);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.input-group-text {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-right: none;
    color: var(--text-secondary);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.input-group .form-control {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ─── Alerts ─── */
.alert {
    border-radius: var(--radius-sm);
    border: none;
    font-size: 0.92rem;
    padding: 0.9rem 1.2rem;
}

.alert-dismissible .btn-close:focus { box-shadow: none; }

/* ─── Hisse Button ─── */
.hisse-btn {
    min-width: 64px;
    border-radius: var(--radius-round) !important;
    padding: 0.65rem 1.3rem !important;
    font-weight: 700;
    transition: var(--transition-spring);
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-size: 0.9rem;
}

.hisse-btn:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.hisse-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: white !important;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* ─── Tables ─── */
.table {
    --bs-table-hover-bg: var(--primary-alpha);
}

.table thead th {
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    padding: 0.9rem 1rem;
    background: transparent;
}

.table td {
    vertical-align: middle;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: var(--bg);
}

.table-hover > tbody > tr:hover {
    background: var(--primary-alpha) !important;
}

/* ─── Pagination ─── */
.pagination .page-link {
    border-radius: var(--radius-sm);
    margin: 0 3px;
    color: var(--primary);
    border: 2px solid transparent;
    font-weight: 600;
    padding: 0.4rem 1rem;
    transition: var(--transition);
}

.pagination .page-link:hover {
    border-color: var(--primary);
    background: transparent;
    color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 14px var(--primary-glow);
}

/* ─── Breadcrumb ─── */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item a:hover { color: var(--primary-dark); }

.breadcrumb-item.active { color: var(--text-muted); }

/* ─── Modal ─── */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.modal-header {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 1.5rem;
}

.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border-light); }

/* ─── Dropdown ─── */
.dropdown-menu {
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    background: var(--bg-card);
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-alpha);
    color: var(--primary);
}

.dropdown-item:active {
    background: var(--primary);
    color: white;
}

/* ─── Progress ─── */
.progress {
    border-radius: var(--radius-round);
    height: 8px;
    background: var(--bg-alt);
}

.progress-bar {
    border-radius: var(--radius-round);
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

/* ─── Auth Pages (Login / Register) ─── */
.auth-section {
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 0% 50%, rgba(15,107,58,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 100% 30%, rgba(200,164,92,0.05) 0%, transparent 60%),
        var(--bg);
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 1px at 15% 25%, rgba(200,164,92,0.08) 0%, transparent 100%),
        radial-gradient(circle 1px at 80% 60%, rgba(15,107,58,0.06) 0%, transparent 100%),
        radial-gradient(circle 1px at 45% 80%, rgba(200,164,92,0.05) 0%, transparent 100%),
        radial-gradient(circle 1px at 70% 15%, rgba(15,107,58,0.04) 0%, transparent 100%);
    background-size: 180px 180px;
    pointer-events: none;
}

/* Auth Card */
.auth-card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0,0,0,0.08);
    background: var(--bg-card);
    position: relative;
}

.auth-card-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.auth-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-alpha), var(--gold), var(--gold-alpha), transparent);
}

.auth-logo {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 30px var(--primary-glow);
    position: relative;
}

.auth-logo::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    border: 2px solid var(--gold-alpha);
    opacity: 0.6;
}

.auth-card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}

.auth-card-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-card-body {
    padding: 2rem 2.5rem 2.5rem;
}

/* ─── Profile Page ─── */
.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.profile-welcome {
    flex: 1;
    min-width: 160px;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.profile-email {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.15rem 0 0;
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
}

.profile-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.profile-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.profile-stat-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    height: 100%;
}

.profile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.35rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.profile-card-action {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.profile-card-action:hover {
    color: var(--primary-dark);
    gap: 0;
}

.profile-card-body {
    padding: 1.35rem;
}

.profile-card-body.p-0 {
    padding: 0;
}

/* Info Rows */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-align: right;
    word-break: break-all;
}

/* Order Rows */
.order-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.35rem;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.order-row:last-child {
    border-bottom: none;
}

.order-row:hover {
    background: var(--primary-alpha);
}

.order-id {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 52px;
}

.order-info {
    flex: 1;
    min-width: 0;
}

.order-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.order-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    min-width: 72px;
    text-align: right;
}

.order-status {
    min-width: 100px;
    text-align: right;
}

.order-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-round);
}

.order-delivered {
    background: rgba(15, 107, 58, 0.1);
    color: var(--primary);
}

.order-cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.order-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #b8860b;
}

.order-processing {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

/* Share Card */
.share-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.share-card:hover {
    border-color: rgba(200, 164, 92, 0.3);
    box-shadow: 0 4px 12px var(--gold-alpha);
}

.share-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    line-height: 1;
}

.share-badge small {
    font-size: 0.6rem;
    font-weight: 600;
    opacity: 0.8;
    margin-left: 1px;
}

.share-info {
    flex: 1;
    min-width: 0;
}

.share-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
}

.share-meta {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.1rem;
}

.share-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Empty State */
.profile-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-muted);
}

.profile-empty i {
    font-size: 2.5rem;
    opacity: 0.25;
    margin-bottom: 0.75rem;
    display: block;
}

.profile-empty p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Profile Page Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .profile-meta {
        justify-content: center;
        width: 100%;
    }
    .order-row {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .order-status {
        min-width: auto;
    }
}

/* ─── Order Cards (My Orders) ─── */
.order-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-spring);
}

.order-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.order-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    flex-wrap: wrap;
}

.order-card-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.order-card-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-alt);
}

.order-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-muted);
    opacity: 0.4;
}

.order-card-info {
    flex: 1;
    min-width: 0;
}

.order-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.order-card-title small {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.order-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.order-card-meta span {
    display: inline-flex;
    align-items: center;
}

.order-card-meta i {
    width: 14px;
    font-size: 0.75rem;
}

.order-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.order-card-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.order-card-bottom {
    border-top: 1px solid var(--border-light);
    padding: 0.75rem 1.25rem;
}

.order-card-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.order-card-btn:hover {
    color: var(--primary-dark);
    gap: 0;
}

@media (max-width: 576px) {
    .order-card-top {
        flex-direction: column;
        align-items: stretch;
    }
    .order-card-left {
        flex-direction: column;
        text-align: center;
    }
    .order-card-right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Auth Form */
.auth-form .form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.auth-form .form-group .form-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.auth-form .form-control {
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    font-size: 0.92rem;
    transition: var(--transition);
    background: var(--bg);
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-alpha);
    background: var(--bg-card);
}

.auth-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220,53,69,0.1);
}

.auth-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.auth-form .input-group .input-group-text {
    background: var(--bg);
    border: 2px solid var(--border);
    border-right: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
}

.auth-form .input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.auth-form .input-group:focus-within .input-group-text {
    border-color: var(--primary);
    color: var(--primary);
}

.auth-form .input-group .btn-outline-secondary {
    border: 2px solid var(--border);
    border-left: none;
    color: var(--text-muted);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
    padding: 0.85rem 1rem;
    background: var(--bg);
}

.auth-form .input-group:focus-within .btn-outline-secondary {
    border-color: var(--primary);
}

.auth-form .input-group .btn-outline-secondary:hover {
    background: var(--bg-alt);
    color: var(--text);
}

/* Auth Submit Button */
.auth-submit-btn {
    width: 100%;
    padding: 0.95rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.auth-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out);
}

.auth-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--primary-glow);
}

.auth-submit-btn:hover::before {
    transform: translateX(100%);
}

.auth-submit-btn:active {
    transform: scale(0.97);
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

/* Auth Social Buttons */
.auth-social {
    display: flex;
    gap: 0.75rem;
}

.auth-social-btn {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.auth-social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-alpha);
    transform: translateY(-2px);
}

.auth-social-btn i { font-size: 1.1rem; }

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.auth-footer p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.auth-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Auth Extra Links */
.auth-extra-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.75rem 0 1.25rem;
    font-size: 0.85rem;
}

.auth-extra-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.auth-extra-links a:hover {
    color: var(--primary);
}

/* Auth Form Row */
.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Auth Brand Banner */
.auth-brand-banner {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 60%, var(--primary) 100%);
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.auth-brand-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 2px at 20% 30%, rgba(200,164,92,0.12) 0%, transparent 100%),
        radial-gradient(circle 1px at 60% 70%, rgba(200,164,92,0.08) 0%, transparent 100%),
        radial-gradient(circle 2px at 80% 20%, rgba(200,164,92,0.06) 0%, transparent 100%);
    background-size: 150px 150px;
    pointer-events: none;
}

.auth-brand-banner .banner-icon {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.auth-brand-banner h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.auth-brand-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    margin-top: 0.5rem;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

.auth-brand-banner .banner-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    text-align: left;
    width: 100%;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

.auth-brand-banner .banner-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.auth-brand-banner .banner-features li:last-child {
    border-bottom: none;
}

.auth-brand-banner .banner-features li i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* Responsive Auth */
@media (max-width: 767.98px) {
    .auth-card-header {
        padding: 2rem 1.5rem 1.25rem;
    }

    .auth-card-body {
        padding: 1.5rem 1.5rem 2rem;
    }

    .auth-form .form-row {
        grid-template-columns: 1fr;
    }

    .auth-brand-banner {
        padding: 2rem 1.5rem;
    }

    .auth-brand-banner .banner-icon {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }

    .auth-section {
        padding: 1.5rem 0;
    }

    .auth-extra-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .auth-social {
        flex-direction: column;
    }
}

/* ─── Page Header Banner ─── */
.page-header {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 80%);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 2px at 15% 30%, rgba(200,164,92,0.1) 0%, transparent 100%),
        radial-gradient(circle 1px at 70% 60%, rgba(200,164,92,0.06) 0%, transparent 100%);
    background-size: 120px 120px;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

.page-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.page-header .page-breadcrumb {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header .page-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.page-header .page-breadcrumb a:hover {
    text-decoration: underline;
}

/* ─── Footer ─── */
footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #0f1a0f 0%, var(--dark) 30%, var(--dark-secondary) 70%, #0f1a0f 100%);
    color: rgba(255,255,255,0.85);
}

/* Decorative top pattern */
.footer-pattern {
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--gold-light), var(--gold), var(--primary));
    background-size: 300% 100%;
    animation: footerGradient 6s linear infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* ─── Footer Main ─── */
.footer-main {
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 1px at 15% 30%, rgba(200,164,92,0.06) 0%, transparent 100%),
        radial-gradient(circle 1px at 85% 60%, rgba(200,164,92,0.04) 0%, transparent 100%);
    pointer-events: none;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.footer-brand h5 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
    max-width: 340px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: white !important;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px var(--gold-glow);
}

/* Footer Headings */
.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.55) !important;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link-icon {
    font-size: 0.6rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold) !important;
    transform: translateX(6px);
}

.footer-links a:hover .footer-link-icon {
    transform: translateX(2px);
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200,164,92,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-contact li:hover .contact-icon {
    background: rgba(200,164,92,0.2);
    transform: scale(1.1);
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

/* Newsletter */
.footer-newsletter-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-newsletter {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
}

.footer-newsletter:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,164,92,0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.7rem 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-family: var(--font-primary);
    outline: none;
    min-width: 0;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-btn {
    width: 44px;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* ─── Footer Bottom Bar ─── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 0;
    background: rgba(0,0,0,0.15);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35) !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold) !important;
}

/* ─── Loading States ─── */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-alpha);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0% { content: ''; }
    33% { content: '.'; }
    66% { content: '..'; }
    100% { content: '...'; }
}

.skeleton {
    background: linear-gradient(90deg, var(--border-light) 25%, var(--bg) 50%, var(--border-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 6px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ─── Utilities ─── */
.fade-in {
    animation: fadeIn 0.6s var(--ease-out) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-left {
    animation: fadeInLeft 0.6s var(--ease-out) forwards;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in-right {
    animation: fadeInRight 0.6s var(--ease-out) forwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in-up {
    animation: fadeInUp 0.6s var(--ease-out) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.scale-in {
    animation: scaleIn 0.5s var(--ease-spring) forwards;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ─── Reveal on Scroll (JS-powered) ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Counter Badge ─── */
.counter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

/* ─── Section divider ─── */
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
    margin: 1rem auto;
}

/* ─── Empty State ─── */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--border);
    margin-bottom: 1rem;
}

.empty-state h4 {
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* ─── Toast Container ─── */
#toastContainer {
    position: fixed;
    top: calc(var(--navbar-height) + 16px);
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
    width: 100%;
    pointer-events: none;
}

#toastContainer .alert {
    pointer-events: auto;
    animation: slideInRight 0.4s var(--ease-spring);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .hero-section h1 { font-size: 2.8rem; }
}

@media (max-width: 992px) {
    .hero-section h1 { font-size: 2.4rem; }
    .hero-section { min-height: 75vh; }

    .section-title { font-size: 1.8rem; }

    .step-wrapper:not(:last-child)::after { display: none; }

    .navbar .nav-link {
        padding: 0.6rem 1rem !important;
        border-radius: var(--radius-sm);
    }

    .navbar .navbar-nav {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    :root { --navbar-height: 64px; }

    body { padding-top: var(--navbar-height); }

    .hero-section { min-height: 70vh; }
    .hero-section h1 { font-size: 1.8rem; }
    .hero-section .lead { font-size: 0.95rem; }

    .section-padding { padding: 3rem 0; }
    .section-title { font-size: 1.5rem; }
    .section-title::after { width: 48px; }

    .product-card .card-img-top { height: 200px; }

    .step-circle { width: 72px; height: 72px; font-size: 1.5rem; }
    .progress-tracker .step-indicator { width: 44px; height: 44px; font-size: 1.1rem; }
    .progress-tracker .step-indicator.active { transform: scale(1.1); }
    .progress-tracker .progress-line { top: 22px; }

    .category-icon { width: 72px; height: 72px; font-size: 1.8rem; }

    .navbar .navbar-brand { font-size: 1.3rem; }
    .navbar .nav-link::after { display: none; }

    #toastContainer {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .hero-section { min-height: 60vh; }
    .hero-section h1 { font-size: 1.5rem; }
    .hero-section .btn-hero { padding: 0.75rem 1.8rem; font-size: 0.9rem; }

    .product-card .card-img-top { height: 180px; }
    .product-card .card-body { padding: 1rem; }

    footer { text-align: center; }

    .footer-brand {
        justify-content: center;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 420px) {
    .category-icon { width: 72px; height: 72px; font-size: 1.8rem; }
}
