/* Trackpanda Textiles - Dribbble Style v2 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {

    --primary-color: #0B57D0;
    --secondary-color: #ef4444;
    --shop-green: #0B57D0;
    /* Rose 500 */
    --text-main: #1e293b;
    /* Slate 800 */
    --text-light: #64748b;
    /* Slate 500 */
    --bg-body: #f8fafc;
    /* Slate 50 */
    --bg-card: #ffffff;
    --border-radius: 16px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.display-font {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0.6rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.4rem 0;
}


.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff !important;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}


.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--text-main) !important;
}


/* ── Navbar Items Styles ── */
.nav-link:hover,
.nav-link.active,
.dropdown-item.active,
.dropdown-item:hover,
.side-menu-link.active,
.sidebar-link.active,
.category-chip.active {
    color: #ffffff !important;
    background: rgb(54 135 254) !important;
}


.navbar-toggler i {
    color: var(--text-main) !important;
}

.shop-page .nav-search-input {
    background: rgba(11, 87, 208, 0.04);
    border: 1px solid rgba(11, 87, 208, 0.1);
    color: var(--text-main);
}

.shop-page .nav-search-input::placeholder {
    color: var(--text-light);
}

.shop-page .nav-search-input:focus {
    background: rgba(11, 87, 208, 0.06);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.12);
}

/* ── Mega Menu — 4-Column Grid ── */
.navbar .nav-item.dropdown {
    position: static;
}

.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow:
        0 25px 60px -15px rgba(0, 0, 0, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 16px 20px;
    margin-top: 8px;
    left: 0;
    right: 0;
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    animation: navDropIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top center;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 87, 208, 0.25) transparent;
}

/* Grid only when dropdown is open (Bootstrap adds .show) */
.navbar .dropdown-menu.show {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

/* Custom scrollbar for dropdown */
.navbar .dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

.navbar .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
    margin: 8px 0;
}

.navbar .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(11, 87, 208, 0.2);
    border-radius: 10px;
}

.navbar .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(11, 87, 208, 0.4);
}

@keyframes navDropIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Top arrow hidden for mega menu */
.navbar .dropdown-menu::before {
    display: none;
}

/* Individual dropdown items */
.navbar .dropdown-item {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 2px;
}

.navbar .dropdown-item:last-child {
    margin-bottom: 0;
}

.navbar .dropdown-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(11, 87, 208, 0.08) 0%, rgba(11, 87, 208, 0.04) 100%);
    color: var(--secondary-color);
    transform: translateX(4px);
    padding-left: 20px;
}

.navbar .dropdown-item:hover::before {
    background: var(--shop-green);
    box-shadow: 0 0 8px rgba(11, 87, 208, 0.4);
}

.navbar .dropdown-item:active,
.navbar .dropdown-item:focus {
    background: rgba(11, 87, 208, 0.12);
    color: var(--secondary-color);
}

/* Dropdown toggle caret */
.navbar .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.navbar .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* Scrolled state adjustments */
.navbar.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 20px 60px -15px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled .dropdown-menu::before {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Mobile Side Menu — Off-Canvas Left Slide ── */

/* Dark overlay */
.side-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.side-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Side panel */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 310px;
    max-width: 85vw;
    height: 100%;
    height: 100dvh;
    background: #ffffff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(-105%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
    border-radius: 0 20px 20px 0;
}

.side-menu.open {
    transform: translateX(0);
}

/* Header */
.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e8f0fe;
}

.side-menu-logo img {
    height: 34px;
}

.side-menu-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    color: #64748b;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.side-menu-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

/* Search */
.side-menu-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 16px 8px;
    padding: 11px 16px;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.side-menu-search:focus-within {
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.2);
    background: #fff;
}

.side-menu-search i {
    color: #94a3b8;
    font-size: 0.85rem;
}

.side-menu-search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-main);
}

.side-menu-search input::placeholder {
    color: #94a3b8;
}

/* Body — scrollable */
.side-menu-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.06) transparent;
}

.side-menu-body::-webkit-scrollbar {
    width: 3px;
}

.side-menu-body::-webkit-scrollbar-track {
    background: transparent;
}

.side-menu-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

/* Nav list */
.side-menu-nav {
    list-style: none;
    margin: 8px 0 0;
    padding: 0 10px;
}

.side-menu-nav li {
    margin-bottom: 2px;
}

/* Links */
.side-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.side-menu-link i:first-child {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.side-menu-link:hover,
.side-menu-link.active {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.15) 0%, rgba(11, 87, 208, 0.08) 100%);
    color: #0B57D0;
}

.side-menu-link:hover i:first-child,
.side-menu-link.active i:first-child {
    color: #0B57D0;
}

.side-menu-link:active {
    transform: scale(0.98);
}

/* Dropdown arrow */
.side-menu-arrow {
    margin-left: auto;
    font-size: 0.65rem;
    color: #cbd5e1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.side-menu-dropdown.open .side-menu-arrow {
    transform: rotate(180deg);
    color: #0B57D0;
}

/* Submenu */
.side-menu-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 46px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-menu-dropdown.open .side-menu-submenu {
    max-height: 600px;
}

.side-menu-submenu li {
    margin-bottom: 0;
}

.side-menu-submenu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.84rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    padding-left: 22px;
    transition: all 0.2s ease;
}

.side-menu-submenu a::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.2s ease;
}

.side-menu-submenu a:hover {
    background: rgba(135, 206, 235, 0.12);
    color: #0B57D0;
}

.side-menu-submenu a:hover::before {
    background: #0B57D0;
    box-shadow: 0 0 6px rgba(11, 87, 208, 0.4);
}

/* Footer — pinned bottom */
.side-menu-footer {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #e8f0fe;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
}

.side-menu-footer-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 14px 10px;
    text-decoration: none;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.side-menu-footer-btn i {
    font-size: 1.1rem;
}

.side-menu-footer-btn:first-child {
    border-right: 1px solid #e8f0fe;
}

.side-menu-footer-btn:hover {
    background: rgba(135, 206, 235, 0.15);
    color: #0B57D0;
}

.side-menu-footer-btn:active {
    transform: scale(0.95);
}

/* Hide side menu on desktop */
@media (min-width: 992px) {

    .side-menu,
    .side-menu-overlay,
    #sideMenuToggle {
        display: none !important;
    }
}

/* ── Mobile Top Bar — Premium Modern Style ── */
.mobile-topbar {
    justify-content: space-between;
    gap: 0;
    padding: 2px 0;
}

.mobile-topbar-logo {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 4px;
}

.mobile-topbar-logo img {
    height: 36px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}

.mobile-topbar-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-topbar-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border-radius: 12px;
    position: relative;
}

.navbar.scrolled .mobile-topbar-btn {
    color: var(--text-main) !important;
}

.shop-page .navbar .mobile-topbar-btn {
    color: var(--text-main) !important;
}

.mobile-topbar-btn:hover {
    color: var(--secondary-color);
    background: rgba(11, 87, 208, 0.06);
}

.mobile-topbar-btn:active {
    transform: scale(0.92);
    background: rgba(11, 87, 208, 0.1);
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 4px 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
    }

    .navbar.scrolled {
        padding: 4px 0 !important;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08) !important;
    }

    .navbar.scrolled .mobile-topbar-btn {
        color: #1e293b;
    }
}

/* ── Nav Search Bar ── */
.nav-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-toggle {
    transition: var(--transition);
}

.nav-search-close {
    display: none;
}

.nav-search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-search-wrapper.active .nav-search-form {
    width: 250px;
    opacity: 1;
    margin-left: 8px;
}

.nav-search-input {
    width: 100%;
    padding: 8px 36px 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.nav-search-input:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.15);
}

/* Scrolled state search input */
.navbar.scrolled .nav-search-input {
    background: rgba(11, 87, 208, 0.04);
    border: 1px solid rgba(11, 87, 208, 0.1);
    color: var(--text-main);
}

.navbar.scrolled .nav-search-input::placeholder {
    color: var(--text-light);
}

.navbar.scrolled .nav-search-input:focus {
    background: rgba(11, 87, 208, 0.06);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.12);
}

.nav-search-submit {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--shop-green);
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.nav-search-submit:hover {
    background: #0B57D0;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 12px rgba(11, 87, 208, 0.3);
}

/* ── Mobile Search ── */
@media (max-width: 991.98px) {
    .nav-search-item {
        width: 100%;
        margin: 12px 0 8px;
    }

    .nav-search-wrapper {
        width: 100%;
    }

    .nav-search-toggle {
        display: none !important;
    }

    .nav-search-form {
        width: 100% !important;
        opacity: 1 !important;
        margin-left: 0 !important;
        overflow: visible;
        pointer-events: auto !important;
    }

    .nav-search-input {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #1e293b;
        border-radius: 50px;
        padding: 12px 48px 12px 20px;
        width: 100%;
    }

    .nav-search-input::placeholder {
        color: #94a3b8;
    }

    .nav-search-input:focus {
        background: #ffffff;
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.1);
    }

    .navbar.scrolled .nav-search-input {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #0B57D0;
    margin-top: -100px;
    /* Pull up behind navbar */
    padding-top: 100px;
    /* Push content down */
}

.hero-slider,
.hero-slider .swiper-slide {
    height: 100%;
    width: 100%;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Enhanced Gradient Overlay */
.hero-slider .swiper-slide .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(11, 87, 208, 0.4) 0%,
            rgba(60, 81, 139, 0.27) 50%,
            rgba(30, 59, 138, 0.426) 100%);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography & Elements */
.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FDE68A 0%, #D97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-hero {
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.3;
    width: 6px;
    height: 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .hero-section {
        height: 100vh;
        /* Use dynamic viewport height if supported, else fallback */
        height: 100svh;
        min-height: auto;
        border-radius: 0 0 24px 24px;
        margin-top: -80px;
        /* Adjust for mobile navbar */
        padding-top: 0;
    }

    .hero-slider .swiper-slide .overlay {
        background: linear-gradient(to bottom,
                rgba(11, 87, 208, 0.3) 0%,
                rgba(11, 87, 208, 0.8) 100%);
    }

    .hero-content {
        justify-content: flex-end;
        /* Push content to bottom for better mobile reach/vis */
        padding-bottom: 120px;
        text-align: left !important;
        /* Left align on mobile usually looks better */
    }

    .hero-content .col-lg-8 {
        text-align: left !important;
        padding: 0 20px;
    }

    /* Glass Card for Text - Removed Background as per request */
    .hero-text-card {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        padding: 0;
        margin-top: 4rem;
        /* Move text down */
        box-shadow: none !important;
    }

    .hero-title {
        font-size: 3rem;
        /* Large but fits */
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem !important;
        margin-left: 0;
        margin-right: 0;
    }

    .glass-badge {
        display: inline-block;
        margin-bottom: 1.5rem !important;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
    }
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(11, 87, 208, 0.2);
}

.btn-primary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-img-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.product-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.card-body {
    padding: 1.5rem;
    text-align: left;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.price {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background-color: #f1f5f9;
    color: var(--text-main);
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
}

.add-to-cart:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Section Styling */
section {
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--shop-green);
    margin: 0 auto;
    border-radius: 2px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #cbd5e1;
    padding-top: 5rem;
    padding-bottom: 2rem;
    margin-top: 4rem;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer-heading {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Legacy hero styles removed - handled by new Dribbble styles above */

    /* Fix overlap on mobile */
    .neg-margin-mobile {
        margin-top: 0 !important;
    }

    /* Ensure cards don't touch edges on mobile */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Fix product card alignment */
.product-card {
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body .d-grid {
    margin-top: auto;
}

/* Category Cards - Dribbble Style */
/* ── Category Circle Design ── */
.category-circle-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.category-circle-item {
    text-align: center;
    flex: 0 0 auto;
}

.category-circle-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.category-circle-img-wrap {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid #e8ecf3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-circle-link:hover .category-circle-img-wrap {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(11, 87, 208, 0.25);
    transform: translateY(-8px);
}

.category-circle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-circle-link:hover .category-circle-img-wrap img {
    transform: scale(1.12);
}

.category-circle-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 40%, rgba(11, 87, 208, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-circle-link:hover .category-circle-overlay {
    opacity: 1;
}

.category-circle-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.category-circle-link:hover .category-circle-name {
    color: var(--primary-color);
}

.category-circle-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-circle-cta i {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.category-circle-link:hover .category-circle-cta {
    opacity: 1;
    transform: translateY(0);
}

.category-circle-link:hover .category-circle-cta i {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .category-circle-row {
        gap: 1.5rem;
    }

    .category-circle-img-wrap {
        width: 170px;
        height: 170px;
    }

    .category-circle-name {
        font-size: 1rem;
    }
}

/* ── Section Divider with Logo ── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.section-divider-line {
    flex: 1;
    height: 0;
    border: none;
    border-top: 2px dashed #b0b8c9;
    background: transparent;
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.section-divider-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 0 0.8rem;
}

.section-divider-logo img {
    height: 28px;
    width: auto;
    opacity: 0.8;
}

/* ── Blog Section ── */
.blog-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.blog-card-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.blog-card-read i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-read {
    gap: 10px;
}

.blog-card:hover .blog-card-read i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .blog-section {
        padding: 3rem 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .blog-card {
        border-radius: 16px;
    }
    .blog-card-img {
        height: 200px;
    }
    .blog-card-body {
        padding: 1.2rem;
    }
    .blog-card-title {
        font-size: 1.05rem;
    }
}

/* Glass Float Effect for Specific Cards if needed */
.glass-float {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1rem;
}

/* =============================================
   SHOP PAGE STYLES — Green (#0B57D0) + Black
   ============================================= */

.shop-page {
    --shop-green: #0B57D0;
    --shop-green-dark: #1d4ed8;
    --shop-green-light: #dbeafe;
    --shop-red: #3759d5;
    --shop-red-dark: #dc2626;
    --shop-red-light: #fee2e2;
    --shop-black: #1a1a1a;
    --shop-dark: #111111;
}

/* --- Modern Back Button --- */
.btn-back-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    gap: 8px;
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.btn-back-modern.icon-only {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
}

.btn-back-modern i {
    font-size: 1rem;
    color: var(--text-light);
    transition: transform 0.3s ease, color 0.3s ease;
    margin: 0 !important;
}

.btn-back-modern:hover {
    background: var(--shop-red-light);
    color: var(--shop-red);
    border-color: rgba(55, 89, 213, 0.2);
    box-shadow: 0 4px 12px rgba(55, 89, 213, 0.15);
    transform: translateY(-2px);
}

.btn-back-modern:hover i {
    color: var(--shop-red);
    transform: translateX(-4px);
}

/* Force navbar visible on shop page (no hero to overlay) */
.shop-page .navbar {
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.shop-page .navbar .nav-link {
    color: var(--shop-black) !important;
}

.shop-page .navbar .nav-link:hover,
.shop-page .navbar .nav-link.active {
    color: #ffffff !important;
    background: rgb(0 98 255 / 70%);
}

.shop-page .navbar.scrolled {
    background: #ffffff !important;
}

.shop-page .navbar.scrolled .nav-link {
    color: var(--shop-black) !important;
}

.shop-page .navbar.scrolled .nav-link:hover,
.shop-page .navbar.scrolled .nav-link.active {
    color: #ffffff !important;
    background: rgb(54 135 254) !important;
}

.shop-page .navbar-toggler i {
    color: var(--shop-black) !important;
}

/* Shop Hero Banner */
.shop-hero {
    background: linear-gradient(135deg, var(--shop-black) 0%, #0d2b06 50%, var(--shop-black) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 87, 208, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.shop-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 87, 208, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.shop-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.text-green {
    color: var(--shop-green) !important;
}

.shop-badge {
    background: rgba(11, 87, 208, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(11, 87, 208, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    letter-spacing: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--shop-green);
}

.shop-breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.shop-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-breadcrumb .breadcrumb-item a:hover {
    color: var(--shop-green);
}

.shop-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.4);
}

.shop-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* Category Chips (Mobile) */
.category-chips-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.category-chips-scroll::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--shop-black);
    background: #f1f5f9;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-chip:hover {
    color: var(--shop-red-dark);
    background: var(--shop-red-light);
    border-color: var(--shop-red);
}

.category-chip.active {
    color: white;
    background: var(--shop-red);
    border-color: var(--shop-red);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Sidebar (Desktop) */
.shop-sidebar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.sidebar-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #87CEEB;
    color: white;
}

.sidebar-header h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.sidebar-body {
    padding: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.sidebar-link i:first-child {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.sidebar-link i.fa-chevron-right {
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--shop-green);
}

.sidebar-link:hover {
    background: var(--shop-red-light);
    color: var(--shop-red-dark);
}

.sidebar-link:hover i:first-child {
    color: var(--shop-red);
}

.sidebar-link:hover i.fa-chevron-right {
    opacity: 1;
    transform: translateX(4px);
}

.sidebar-link.active {
    background: var(--shop-red);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.sidebar-link.active i {
    color: white !important;
}

.sidebar-link.active i.fa-chevron-right {
    opacity: 1;
}

/* Subcategory Expand/Collapse */
.sidebar-expand-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
}

.sidebar-expand-icon.rotated {
    transform: rotate(180deg);
}

.sidebar-link:hover .sidebar-expand-icon {
    color: var(--shop-red);
}

.sidebar-link.active .sidebar-expand-icon {
    color: white !important;
}

.sidebar-subcategories {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 8px;
}

.sidebar-subcategories.show {
    max-height: 1200px;
}

.sidebar-sub-link {
    padding: 10px 16px 10px 24px !important;
    font-size: 0.85rem !important;
    gap: 10px !important;
    border-left: 2px solid #e2e8f0;
    border-radius: 0 12px 12px 0 !important;
    margin-left: 8px;
}

.sidebar-sub-link i:first-child {
    font-size: 5px !important;
    color: #cbd5e1 !important;
}

.sidebar-sub-link:hover {
    border-left-color: var(--shop-green);
}

.sidebar-sub-link.active {
    background: var(--shop-green-light) !important;
    color: var(--shop-green-dark) !important;
    border-left-color: var(--shop-green);
    box-shadow: none !important;
}

.sidebar-sub-link.active i:first-child {
    color: var(--shop-green) !important;
}

/* Mobile Sub-chips */
.sub-chip {
    font-size: 0.78rem !important;
    padding: 8px 14px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}

.sub-chip:hover {
    background: var(--shop-green-light) !important;
}

.sub-chip.active {
    background: var(--shop-green-dark) !important;
    border-color: var(--shop-green-dark) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(11, 87, 208, 0.25) !important;
}


/* Search & Sort Toolbar */
.shop-toolbar {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
}

.search-box .form-control {
    padding: 14px 16px 14px 44px;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
}

.search-box .form-control:focus {
    border-color: var(--shop-green);
    box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.1);
}

.sort-box .form-select {
    padding: 14px 40px 14px 16px;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: white;
    min-width: 180px;
    transition: all 0.3s ease;
}

.sort-box .form-select:focus {
    border-color: var(--shop-green);
    box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.1);
}

/* Shop Product Cards */
.shop-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.shop-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.shop-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-card:hover .shop-img-wrapper img {
    transform: scale(1.08);
}

.shop-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--shop-black);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Wishlist Heart Button on Product Cards */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #94a3b8;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    padding: 0;
    line-height: 1;
}

.wishlist-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #e11d48;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wishlist-btn:active {
    transform: scale(0.9);
}

.wishlist-btn.wishlisted {
    color: #e11d48;
}

.wishlist-btn.wishlisted i {
    animation: wishlistPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes wishlistPop {
    0% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Desktop Product Detail Wishlist Button */
.btn-wishlist-detail {
    position: static;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    font-size: 1.3rem;
    color: #94a3b8;
    transition: all 0.25s ease;
}

.btn-wishlist-detail:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #e11d48;
    transform: none;
    box-shadow: none;
}

.btn-wishlist-detail.wishlisted {
    background: #fef2f2;
    border-color: #fecaca;
    color: #e11d48;
}

.btn-share-detail {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    font-size: 1.3rem;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-share-detail:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.shop-card .card-body {
    padding: 16px;
}

.shop-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--shop-black);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--shop-green);
    margin-bottom: 12px;
}

.shop-card-actions {
    display: flex;
    gap: 8px;
}

.btn-shop {
    flex: 1;
    background: var(--shop-green);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: var(--shop-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 87, 208, 0.35);
}

.btn-shop-outline {
    flex: 1;
    background: transparent;
    color: var(--shop-black);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-shop-outline:hover {
    border-color: var(--shop-black);
    background: var(--shop-black);
    color: white;
    transform: translateY(-2px);
}

/* Shop Page Mobile Responsive */
@media (max-width: 768px) {
    .shop-page .navbar {
        padding: 0.5rem 0;
    }

    .shop-hero {
        padding: 80px 0 40px;
    }

    .shop-hero-title {
        font-size: 2rem;
    }

    .shop-badge {
        font-size: 0.6rem;
        padding: 8px 16px;
        letter-spacing: 2px;
    }

    .mobile-category-wrapper {
        position: sticky;
        top: 54px;
        z-index: 1020;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        margin-bottom: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .category-chips-scroll {
        padding: 10px 0;
        gap: 8px;
    }

    /* Upgraded category chips */
    .category-chip {
        padding: 9px 18px;
        border-radius: 12px;
        font-size: 0.82rem;
        font-weight: 600;
        background: #f1f5f9;
        border: 1.5px solid #e2e8f0;
        color: #475569;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .category-chip:hover {
        background: #e8f4fe;
        border-color: #87CEEB;
        color: #0B57D0;
    }

    .category-chip.active {
        background: linear-gradient(135deg, #87CEEB 0%, #5BA8D4 100%);
        border-color: transparent;
        color: white;
        box-shadow: 0 3px 12px rgba(135, 206, 235, 0.4);
    }

    .shop-toolbar {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 16px;
    }

    .search-box {
        flex: 1;
    }

    .search-box .form-control {
        padding: 10px 14px 10px 38px;
        font-size: 0.88rem;
        height: 44px;
        border-radius: 12px;
        border: 1.5px solid #e2e8f0;
        background: #f8fafc;
    }

    .search-box .form-control:focus {
        background: #fff;
        border-color: #87CEEB;
        box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.2);
    }

    .search-icon {
        left: 14px;
    }

    .sort-box {
        width: auto;
        flex-shrink: 0;
    }

    .sort-box .form-select {
        width: auto;
        min-width: unset;
        padding: 10px 30px 10px 14px;
        font-size: 0.85rem;
        height: 44px;
        border-radius: 12px;
    }

    /* Upgraded product cards */
    .shop-card {
        border-radius: 16px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .shop-card:active {
        transform: scale(0.97);
    }

    .shop-card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .shop-img-wrapper {
        height: 200px;
        border-radius: 16px 16px 0 0;
        position: relative;
    }

    .shop-card .card-body {
        padding: 12px 12px 14px;
    }

    .shop-card-title {
        font-size: 0.82rem;
        font-weight: 600;
        line-height: 1.35;
        margin-bottom: 4px;
        color: #1e293b;
    }

    .shop-card-price {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .shop-card-actions {
        flex-direction: column;
        gap: 6px;
    }

    .btn-shop,
    .btn-shop-outline {
        font-size: 0.75rem;
        padding: 9px 10px;
        border-radius: 10px;
        font-weight: 600;
    }

    .shop-card-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
        top: 8px;
        right: 8px;
        border-radius: 8px;
        font-weight: 700;
    }
}

@media (max-width: 400px) {
    .shop-hero-title {
        font-size: 1.6rem;
    }

    .shop-img-wrapper {
        height: 170px;
    }

    .shop-card-title {
        font-size: 0.78rem;
    }

    .shop-card-price {
        font-size: 0.95rem;
    }
}

/* =============================================
   FILTER SIDEBAR STYLES
   ============================================= */

/* Filter Section */
.filter-body {
    padding: 0 !important;
}

.filter-section {
    border-bottom: 1px solid #f0f0f0;
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    color: #2d3748;
    transition: background 0.2s ease;
    user-select: none;
}

.filter-title:hover {
    background: #f8fafc;
}

.filter-title span i {
    color: #94a3b8;
    font-size: 0.82rem;
}

.filter-toggle-icon {
    font-size: 0.65rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.filter-title[aria-expanded="false"] .filter-toggle-icon,
.filter-title.collapsed .filter-toggle-icon {
    transform: rotate(-90deg);
}

.filter-content {
    padding: 0 16px 14px;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.color-swatch.active {
    transform: scale(1.1);
    box-shadow: 0 0 0 3px var(--shop-green), 0 2px 8px rgba(11, 87, 208, 0.3);
}

.color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.color-swatch[data-color="White"].active::after,
.color-swatch[data-color="Cream"].active::after,
.color-swatch[data-color="Beige"].active::after,
.color-swatch[data-color="Yellow"].active::after {
    color: #333;
    text-shadow: none;
}

/* Size Pills */
.size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.size-pill {
    padding: 6px 14px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    background: white;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.size-pill:hover {
    border-color: var(--shop-green);
    color: var(--shop-green-dark);
    background: var(--shop-green-light);
}

.size-pill.active {
    background: var(--shop-green);
    color: white;
    border-color: var(--shop-green);
    box-shadow: 0 2px 8px rgba(11, 87, 208, 0.25);
}

/* Type Checkboxes */
.type-checks {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.type-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 0;
}

.type-check:hover {
    background: #f8fafc;
}

.type-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--shop-green);
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
}

.type-check input[type="checkbox"]:checked+span {
    color: var(--shop-green-dark);
    font-weight: 600;
}

/* Price Range */
.price-range-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--shop-green-dark);
    margin-bottom: 8px;
}

.price-slider-wrapper {
    position: relative;
    height: 30px;
    margin-bottom: 12px;
}

.price-range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--shop-green);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(11, 87, 208, 0.3);
    border: 3px solid white;
    transition: transform 0.2s ease;
}

.price-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.price-range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--shop-green);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(11, 87, 208, 0.3);
    border: 3px solid white;
}

.price-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.price-preset {
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.price-preset:hover {
    border-color: var(--shop-green);
    color: var(--shop-green-dark);
    background: var(--shop-green-light);
}

.price-preset.active {
    background: var(--shop-green);
    color: white;
    border-color: var(--shop-green);
}

/* Availability Toggles */
.avail-toggles {
    display: flex;
    gap: 8px;
}

.avail-pill {
    flex: 1;
    padding: 8px 14px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background: white;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    text-align: center;
}

.avail-pill:hover {
    border-color: var(--shop-green);
    background: var(--shop-green-light);
}

.avail-pill.active {
    background: var(--shop-green);
    color: white;
    border-color: var(--shop-green);
    box-shadow: 0 2px 8px rgba(11, 87, 208, 0.25);
}

.avail-pill i {
    font-size: 0.75rem;
}

/* ══════════════════════════════════════════════
   Mobile Bottom Action Bar — Premium Design 
   ══════════════════════════════════════════════ */

.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    padding: 0;
    height: 54px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    background: transparent;
    color: #334155;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 0 16px;
}

.mobile-bottom-action i {
    font-size: 0.95rem;
    color: #64748b;
    transition: all 0.2s ease;
}

.mobile-bottom-action:active {
    background: rgba(135, 206, 235, 0.15);
    transform: scale(0.96);
}

.mobile-bottom-action:active i {
    color: #0B57D0;
}

.mobile-bottom-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
    margin: 10px 0;
}

/* Filter badge */
.mobile-filter-badge {
    position: absolute;
    top: 8px;
    right: calc(50% - 50px);
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* ── Sort Bottom Sheet ── */
.mobile-sort-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sort-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-sort-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    max-height: 70vh;
    overflow-y: auto;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-sort-sheet.open {
    transform: translateY(0);
}

.mobile-sort-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-sort-header h6 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B57D0;
}

.mobile-sort-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f8fafc;
    border-radius: 50%;
    color: #94a3b8;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-sort-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.mobile-sort-options {
    padding: 8px 0;
}

.mobile-sort-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    position: relative;
}

.mobile-sort-option input {
    display: none;
}

.mobile-sort-option i:first-of-type {
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.mobile-sort-option span {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #334155;
}

.mobile-sort-check {
    display: none;
    color: var(--shop-green);
    font-size: 0.9rem;
}

.mobile-sort-option.active {
    background: rgba(11, 87, 208, 0.06);
}

.mobile-sort-option.active i:first-of-type {
    color: var(--shop-green);
}

.mobile-sort-option.active span {
    color: var(--shop-green);
    font-weight: 600;
}

.mobile-sort-option.active .mobile-sort-check {
    display: block;
}

.mobile-sort-option:active {
    background: rgba(11, 87, 208, 0.1);
}

/* ── Upgraded Off-canvas Filter Panel ── */
#mobileFilterOffcanvas {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    height: 75vh;
    max-height: 75vh;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
    border: none;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.offcanvas-drag-handle {
    width: 40px;
    height: 5px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1, #e2e8f0);
    border-radius: 6px;
    margin: 12px auto 0;
}

#mobileFilterOffcanvas .offcanvas-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9 !important;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

#mobileFilterOffcanvas .offcanvas-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B57D0;
}

#mobileFilterOffcanvas .offcanvas-body {
    padding: 20px 24px 100px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.06) transparent;
}

#mobileFilterOffcanvas .offcanvas-body::-webkit-scrollbar {
    width: 4px;
}

#mobileFilterOffcanvas .offcanvas-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

#mobileFilterOffcanvas .offcanvas-body h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0B57D0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

#mobileFilterOffcanvas .offcanvas-footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px !important;
    border-top: 1px solid #f1f5f9 !important;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

#mobileFilterOffcanvas .offcanvas-footer .btn-shop {
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 24px;
    background: linear-gradient(135deg, #87CEEB 0%, #0B57D0 100%);
    border: none;
    box-shadow: 0 4px 16px rgba(135, 206, 235, 0.35);
    transition: all 0.3s ease;
}

#mobileFilterOffcanvas .offcanvas-footer .btn-shop:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(11, 87, 208, 0.2);
}

/* Filter section responsive within offcanvas */
#mobileFilterBody .color-swatches {
    gap: 10px;
}

#mobileFilterBody .color-swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

#mobileFilterBody .color-swatch.active {
    transform: scale(1.15);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.3);
}

#mobileFilterBody .size-pills {
    gap: 8px;
}

#mobileFilterBody .size-pill {
    padding: 9px 18px;
    font-size: 0.82rem;
    border-radius: 10px;
}

/* Extra bottom padding on shop page for the bottom bar */
@media (max-width: 991.98px) {
    .shop-section {
        padding-bottom: 80px !important;
    }
}

/* --- Spin to Win Feature --- */
.stw-launcher {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: bounceIcon 2s infinite;
}

.stw-launcher-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
    transition: transform 0.3s ease;
}

.stw-launcher:hover .stw-launcher-icon {
    transform: scale(1.1) rotate(10deg);
}

.stw-launcher-text {
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    color: #ff4b2b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

@keyframes bounceIcon {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* Modal */
.stw-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.stw-modal.show {
    opacity: 1;
    visibility: visible;
}

.stw-modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stw-modal.show .stw-modal-content {
    transform: scale(1);
}

.stw-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.stw-close:hover {
    color: #333;
}

.stw-header h2 {
    font-family: 'Playfair Display', serif;
    color: #ff4b2b;
    margin-bottom: 5px;
    font-size: 2rem;
}

.stw-header p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.stw-wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 25px;
}

#stw-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 0 8px #1a237e, 0 0 15px rgba(0, 0, 0, 0.2);
}

.stw-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 35px solid #ff4b2b;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stw-coupon-code {
    background: #f1f5f9;
    border: 2px dashed #ff4b2b;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4b2b;
    letter-spacing: 2px;
    border-radius: 10px;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .stw-launcher-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stw-launcher {
        bottom: 20px;
        left: 20px;
    }

    .stw-launcher-text {
        display: none;
    }

    .stw-wheel-container {
        width: 250px;
        height: 250px;
    }

    .stw-modal-content {
        padding: 20px;
    }

    .stw-header h2 {
        font-size: 1.5rem;
    }
}