/* ==========================================================================
   Shishunest E-Commerce Landing Page Styles
   ========================================================================== */

/* Design System / Variables */
:root {
    --primary-color: #322723; /* Dark Taupe/Ebony from logo text */
    --accent-color: #d79a8f; /* Soft Dusty Rose Pink from logo birds */
    --accent-dark: #b57a70; /* Darker Rose Gold */
    --text-color: #322723; /* Dark Taupe/Ebony */
    --text-muted: #8e7a75; /* Warm greyish brown */
    --bg-light: #FAF5F2; /* Very soft cream background matching logo */
    --bg-white: #ffffff;
    --border-color: #f0e6e2; /* Light rose-tinted border */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-stack: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Top Promotional Bar
   ========================================================================== */
.promo-bar {
    background-color: var(--primary-color);
    color: var(--bg-light); /* Cohesive warm cream */
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 8px 30px;
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 0.6s ease;
    transition: height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.promo-bar.hidden {
    height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
}

.close-promo {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.close-promo:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo {
    height: 75px; /* Fit inside the 80px navbar beautifully */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Central Navbar */
.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.buy-now {
    color: #e63946;
    font-weight: 600;
}

/* Header Utilities */
.header-utilities {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Currency Dropdown */
.currency-selector {
    position: relative;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.currency-btn:hover {
    background-color: var(--bg-light);
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.currency-selector.open .chevron-icon {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 10;
}

.currency-selector.open .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-dropdown li {
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.currency-dropdown li:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
}

/* Icons styling */
.utility-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.utility-icon-btn {
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    position: relative;
}

.utility-icon-btn:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.cart-btn .cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    height: calc(100vh - 116px);
    min-height: 500px;
    max-height: 850px;
    overflow: hidden;
    background-color: #0b0b0b;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 650px;
    color: var(--bg-white);
    transform: translateY(20px);
    transition: transform 0.8s ease-out;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.slide-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

/* Button style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations for Slide elements */
.slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.slide.active .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 5;
}

.slider-arrow:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.indicator.active {
    background-color: var(--bg-white);
    transform: scale(1.3);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background-color: var(--bg-light);
    transform: translateY(-4px);
}

.feature-icon {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--bg-white);
    color: var(--text-color);
    padding: 80px 0 40px 0;
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.footer-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 16px;
}

.footer-contact-info {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icons a {
    color: var(--primary-color);
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    opacity: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-dark);
    padding-left: 4px;
}

.newsletter-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: #f7f3f0;
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
    max-width: 420px;
}

.newsletter-input {
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-color);
    width: 100%;
    outline: none;
}

.newsletter-input::placeholder {
    color: #a3908a;
}

.newsletter-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.payment-badge.visa { background-color: #1a1f71; }
.payment-badge.mastercard { background-color: #eb001b; }
.payment-badge.amex { background-color: #0173b2; }
.payment-badge.paypal { background-color: #003087; }
.payment-badge.diners { background-color: #0079c1; }
.payment-badge.discover { background-color: #f68121; }

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   New Arrivals Section
   ========================================================================== */
.new-arrivals-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.separator-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ornament-svg {
    opacity: 0.8;
}

/* Filter tabs style */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.filter-tab {
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.filter-tab:hover {
    border-color: var(--primary-color);
}

.filter-tab.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* Products grid style */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card.active {
    display: flex;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* 4:5 aspect ratio */
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

/* Badges styling */
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 30px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-badge.best-selling {
    background-color: #e65c00; /* Warm orange */
}

.product-badge.discount {
    background-color: #ff4d6d; /* Festive pink/red badge */
}

/* Action hover buttons styling */
.product-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 3;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
}

/* Countdown timer inside 3rd card wrapper (vertical box on bottom-left) */
.countdown-timer {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.timer-segment {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 50px;
}

.timer-num {
    font-size: 13px;
    font-weight: 700;
    color: #e63946;
    display: inline-block;
    width: 18px;
}

.timer-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

/* Info section styles */
.product-info {
    padding: 4px 8px;
}

.product-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 500;
    margin-right: 8px;
}

.price-new {
    color: #e63946;
}

/* Scroll Up Indicator on absolute position */
.scroll-up-indicator {
    position: absolute;
    right: 24px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 4;
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-color);
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.scroll-arrow {
    font-size: 16px;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.scroll-up-indicator:hover .scroll-text,
.scroll-up-indicator:hover .scroll-arrow {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-5px);
}


/* ==========================================================================
   Shop By Categories Section
   ========================================================================== */
.categories-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: -6px;
    margin-bottom: 12px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* 4:5 aspect ratio */
    background-color: var(--bg-light);
    overflow: hidden;
    border-radius: 12px;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-card:hover .category-image {
    transform: scale(1.06);
}

.category-btn-wrapper {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.category-card-btn {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.category-card:hover .category-card-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Infinite Scrolling Marquee Banner
   ========================================================================== */
.marquee-banner-section {
    overflow: hidden;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    display: flex;
    align-items: center;
    margin: 70px 0px 70px 0px;
}

/* ==========================================================================
   Promo Banners Section
   ========================================================================== */
.promo-banners-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.promo-banner-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.promo-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.promo-banner-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-smooth);
}

.promo-banner-card:hover .promo-banner-border {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.01);
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.promo-banner-title {
    color: var(--bg-white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    max-width: 250px;
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 40px;
    align-items: center;
    animation: scrollMarquee 35s linear infinite;
    padding-right: 40px;
}

.marquee-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.marquee-item-separator {
    color: var(--accent-color);
    font-size: 18px;
    display: inline-block;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ==========================================================================
   Happy Customers Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
    border: 3px solid var(--border-color);
}

.testimonial-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #e6c229;
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}


/* ==========================================================================
   Shop Collection Page Styles
   ========================================================================== */
.shop-banner-section {
    height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.shop-banner-title {
    color: var(--bg-white);
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.shop-main-content {
    padding-bottom: 80px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sidebar Filters */
.shop-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.filter-group {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.filter-group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-item {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.filter-item span {
    font-size: 12px;
    opacity: 0.6;
}

.filter-item:hover,
.filter-item.active {
    color: var(--accent-dark);
    font-weight: 600;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.color-swatch-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Checkboxes styling */
.checkbox-filters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Sidebar Promo Banner */
.sidebar-promo-banner {
    border-radius: 12px;
    height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.sidebar-promo-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
}

.sidebar-promo-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: block;
}

.sidebar-promo-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.sidebar-promo-btn {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.sidebar-promo-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Products Area Toolbar */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.products-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.products-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.layout-switches {
    display: flex;
    gap: 8px;
}

.layout-switch-btn {
    color: var(--text-muted);
    opacity: 0.6;
    padding: 4px;
    transition: var(--transition-smooth);
}

.layout-switch-btn.active,
.layout-switch-btn:hover {
    color: var(--primary-color);
    opacity: 1;
}

.sort-select {
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-color);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sort-select:hover {
    border-color: var(--primary-color);
}

/* Shop Products Grid */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shop-product-card {
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

/* Color dots list for product cards */
.product-colors-list {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    align-items: center;
}

.product-colors-list .color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.product-colors-list .color-dot.active {
    box-shadow: 0 0 0 2px var(--bg-white), 0 0 0 3px var(--primary-color);
}

.product-colors-list .color-dot:hover {
    transform: scale(1.2);
}


/* ==========================================================================
   Product Inner Page Detail Styles
   ========================================================================== */
.product-details-main {
    padding: 30px 0 80px 0;
    background-color: var(--bg-white);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.breadcrumbs a {
    transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs .sep {
    font-size: 11px;
}

.breadcrumbs .current {
    color: var(--primary-color);
    font-weight: 500;
}

/* Product Upper Grid */
.product-upper-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Gallery Track */
.product-gallery-container {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
}

.thumbnail-item {
    width: 80px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.gallery-main-image-wrapper {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Right Specs Side */
.product-specs-container {
    display: flex;
    flex-direction: column;
}

.product-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 12px;
}

.product-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Hot Tag Flame icon styling */
.hot-badge {
    background-color: #ffeae6;
    color: #e63946;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    align-self: flex-start;
}

.spec-section {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.spec-section:first-of-type {
    border-top: 1px solid var(--border-color);
}

.spec-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.spec-label span {
    font-weight: 500;
    color: var(--text-muted);
}

/* Color Cards list */
.color-cards {
    display: flex;
    gap: 12px;
}

.color-card-item {
    width: 60px;
    height: 75px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.color-card-item.active,
.color-card-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Size specs */
.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size-chart-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
    text-decoration: underline;
}

.size-buttons {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.size-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.size-btn.crossed-out {
    opacity: 0.4;
    cursor: not-allowed;
}

.size-btn.crossed-out::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: var(--primary-color);
    transform: rotate(-45deg);
}

/* Stock warning */
.stock-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cc7a00;
    font-size: 13px;
    font-weight: 600;
    padding: 20px 0;
}

/* Quantity Actions section */
.actions-section {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background-color: var(--bg-light);
}

.qty-input {
    width: 44px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    outline: none;
}

.utility-buttons {
    display: flex;
    gap: 16px;
}

.wishlist-btn,
.question-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.wishlist-btn:hover,
.question-btn:hover {
    color: var(--primary-color);
}

/* Large cart button */
.add-to-cart-big-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    width: 100%;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.add-to-cart-big-btn:hover {
    background-color: var(--accent-dark);
}

/* Trust badge bar */
.payment-trust-bar {
    display: flex;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

/* Notices list */
.delivery-notices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.delivery-notice-item strong {
    color: var(--primary-color);
}

/* Middle Interactive Tabs styling */
.product-tabs-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
    margin-bottom: 60px;
}

.tabs-header-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.tab-header-btn {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.tab-header-btn::after {
    content: '';
    position: absolute;
    bottom: -21px; /* aligns exactly with header border bottom */
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.tab-header-btn:hover,
.tab-header-btn.active {
    color: var(--primary-color);
}

.tab-header-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane-intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Specs grids inside description tab */
.specifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.spec-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.spec-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-col li {
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    padding-left: 14px;
}

.spec-col li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.disclaimer-block {
    border-top: 1px dashed var(--border-color);
    padding-top: 30px;
}

.disclaimer-block h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.disclaimer-block p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sliders grid details */
.carousel-section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.recommended-section {
    margin-bottom: 60px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.recently-viewed-grid {
    text-align: center;
    padding: 20px 0;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}

.recently-viewed-empty {
    font-size: 14px;
    color: var(--text-muted);
}


/* ==========================================================================
   Mini Cart Slide Drawer Styles
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

/* Header */
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-color);
}

.cart-drawer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-drawer-close {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1;
    transition: var(--transition-smooth);
}

.cart-drawer-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Shipping Goal tracker */
.shipping-tracker {
    background-color: var(--bg-light);
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.shipping-tracker-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.shipping-progress-bg {
    height: 6px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.shipping-progress-bar {
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        #4cd964,
        #4cd964 10px,
        #3cd054 10px,
        #3cd054 20px
    );
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

/* Cart list container */
.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-state {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 14px;
}

/* Cart Item Rows */
.cart-item-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cart-item-qty-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qty-selector-small {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.qty-selector-small .qty-btn-sm {
    width: 28px;
    height: 28px;
    background: none;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.qty-selector-small .qty-btn-sm:hover {
    background-color: var(--bg-light);
}

.qty-selector-small .qty-input-sm {
    width: 32px;
    height: 28px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    outline: none;
}

.cart-item-delete {
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.cart-item-delete:hover {
    color: #e63946;
    opacity: 1;
}

/* Popular cross-sell item styles */
.cart-popular-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 30px;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.popular-header h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.popular-dots {
    display: flex;
    gap: 6px;
}

.popular-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ddd;
}

.popular-dots .dot.active {
    background-color: var(--primary-color);
}

.popular-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    align-items: center;
}

.popular-item-img {
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    background-color: var(--bg-white);
}

.popular-item-info h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.popular-item-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.quick-add-cart-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.quick-add-cart-btn:hover {
    background-color: var(--accent-dark);
}

/* Utilities tabs footer */
.cart-utility-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.cart-tab-icon-btn {
    padding: 12px;
    color: var(--text-muted);
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background-color: var(--bg-white);
}

.cart-tab-icon-btn:last-child {
    border-right: none;
}

.cart-tab-icon-btn:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Checkout Footer */
.cart-drawer-footer {
    padding: 24px 30px;
    background-color: var(--bg-white);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.total-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.total-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

.tax-shipping-notice {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    background-color: #333333;
    color: var(--bg-white);
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.checkout-btn:hover {
    background-color: var(--primary-color);
}

.view-cart-btn {
    display: block;
    text-align: center;
    width: 100%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.view-cart-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
}


/* ==========================================================================
   Cart Page Styles
   ========================================================================== */
.cart-header-title-section {
    padding: 60px 0 30px;
    text-align: center;
    background-color: var(--bg-white);
}

.cart-header-title-section h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.cart-page-main {
    padding-bottom: 80px;
    background-color: var(--bg-white);
}

.cart-urgency-alert {
    background-color: #eafaf1;
    border: 1px solid #d4edda;
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 30px;
}

.urgency-icon-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #155724;
    font-size: 14px;
    font-weight: 500;
}

.urgency-icon-text svg {
    flex-shrink: 0;
    color: #28a745;
}

.cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.cart-table-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: var(--bg-white);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.cart-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.cart-table td {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.col-product {
    width: 55%;
}

.col-quantity {
    width: 25%;
}

.col-total {
    width: 20%;
    text-align: right;
}

.cart-table th.col-total {
    text-align: right;
}

/* Product column content styling */
.cart-page-prod-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-page-prod-img {
    width: 90px;
    height: 110px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--bg-light);
    flex-shrink: 0;
}

.cart-page-prod-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-page-prod-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-page-prod-title a {
    color: inherit;
    text-decoration: none;
}

.cart-page-prod-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.cart-page-prod-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 4px;
}

/* Quantity Actions column */
.cart-page-qty-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-page-total-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.cart-page-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
}

.cart-page-empty p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Gift Wrap Box */
.gift-wrap-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 30px;
}

.gift-wrap-desc {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

.gift-wrap-desc svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.add-gift-wrap-btn {
    background-color: #333;
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.add-gift-wrap-btn:hover {
    background-color: var(--primary-color);
}

.add-gift-wrap-btn.added {
    background-color: #28a745;
}

/* Right Sidebar block styles */
.summary-section-block {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-section-block .block-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.order-notes-textarea {
    width: 100%;
    height: 100px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-color);
    outline: none;
    resize: none;
    background-color: var(--bg-white);
    transition: border-color 0.3s;
}

.order-notes-textarea:focus {
    border-color: var(--primary-color);
}

.coupon-input-row {
    display: flex;
    gap: 12px;
}

.coupon-input-field {
    flex-grow: 1;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-color);
    outline: none;
    background-color: var(--bg-white);
}

.coupon-input-field:focus {
    border-color: var(--primary-color);
}

.coupon-apply-btn {
    background-color: #333;
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.coupon-apply-btn:hover {
    background-color: var(--primary-color);
}

.coupon-applied-feedback {
    font-size: 12px;
    margin-top: 8px;
    font-weight: 600;
}

.coupon-applied-feedback.success {
    color: #28a745;
}

.coupon-applied-feedback.error {
    color: #dc3545;
}

/* Checkout Summary Card */
.cart-page-summary-banner {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.summary-row .sum-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-row .sum-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}

.cart-page-checkout-btn {
    width: 100%;
    background-color: #222222;
    color: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.cart-page-checkout-btn:hover {
    background-color: var(--primary-color);
}

.cart-page-continue-btn {
    display: block;
    text-align: center;
    width: 100%;
    background-color: #4cd964;
    color: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.cart-page-continue-btn:hover {
    background-color: #3cd054;
}

.summary-payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

/* Dynamic Purchase Toast styling */
.purchase-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    max-width: 320px;
    z-index: 9999;
    transform: translateY(120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s, visibility 0.5s;
}

.purchase-toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.close-toast-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
}

.close-toast-btn:hover {
    color: var(--primary-color);
}

.toast-body {
    display: flex;
    gap: 14px;
    align-items: center;
}

.toast-img {
    width: 60px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    background-color: var(--bg-light);
    flex-shrink: 0;
}

.toast-content {
    padding-right: 12px;
}

.toast-text {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.toast-text span {
    font-weight: 700;
    color: var(--primary-color);
}

.toast-prod-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1.25;
}

.toast-time {
    font-size: 10px;
    color: var(--text-muted);
}

/* Extra media queries for cart grid */
@media (max-width: 992px) {
    .cart-page-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .cart-table th, .cart-table td {
        padding: 12px;
    }
    
    .cart-page-prod-item {
        gap: 10px;
    }
    
    .cart-page-prod-img {
        width: 60px;
        height: 75px;
    }
    
    .cart-page-prod-title {
        font-size: 13px;
    }
    
    .cart-page-qty-actions {
        gap: 8px;
    }
    
    .gift-wrap-banner {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 16px 20px;
    }
}


/* ==========================================================================
   Checkout Page Styles
   ========================================================================== */
.checkout-page-body {
    background-color: #fafafa;
    color: var(--text-color);
}

.checkout-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.checkout-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-logo img {
    height: 38px;
    width: auto;
}

.return-to-cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.return-to-cart-link:hover {
    color: var(--accent-color);
}

.checkout-main {
    padding: 40px 0 80px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 50px;
    align-items: start;
}

.checkout-left {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.checkout-form-section {
    margin-bottom: 40px;
}

.checkout-form-section:last-of-type {
    margin-bottom: 30px;
}

.checkout-form-section .section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.checkout-form-section .section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: -15px;
    margin-bottom: 20px;
}

.input-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    width: 100%;
}

.form-group.half {
    width: 50%;
}

.form-group.third {
    width: 33.33%;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checkout-input {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-color);
    outline: none;
    background-color: var(--bg-white);
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.checkout-input:focus {
    border-color: var(--primary-color);
}

/* Shipping Method Selection Cards */
.shipping-method-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.method-option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 18px 20px;
    cursor: pointer;
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
}

.method-option-card:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
}

.method-option-card.active {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.method-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.method-left input[type="radio"] {
    margin: 0;
    accent-color: var(--primary-color);
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.method-time {
    font-size: 12px;
    color: var(--text-muted);
}

.method-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Payment fields wrapper */
.payment-method-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.payment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.payment-header-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.payment-card-logos {
    display: flex;
    gap: 6px;
}

.payment-card-body {
    padding: 24px;
    background-color: var(--bg-white);
}

.checkout-submit-btn {
    width: 100%;
    background-color: #222222;
    color: var(--bg-white);
    padding: 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.checkout-submit-btn:hover {
    background-color: var(--primary-color);
}

/* Right Summary Sidebar */
.checkout-right {
    position: sticky;
    top: 40px;
}

.checkout-summary-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.summary-box-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.checkout-summary-items {
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.checkout-summary-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.checkout-summary-item-img {
    width: 50px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    background-color: var(--bg-light);
    position: relative;
    border: 1px solid var(--border-color);
}

.checkout-summary-item-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #333;
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-summary-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkout-summary-item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-summary-item-meta {
    font-size: 11px;
    color: var(--text-muted);
}

.checkout-summary-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

.checkout-totals-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-color);
}

.summary-line .line-label {
    font-weight: 500;
}

.summary-line .line-val {
    font-weight: 700;
    color: var(--primary-color);
}

.summary-line .discount-val {
    color: #28a745;
}

.summary-total-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 8px 0;
}

.summary-line.total-line {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-line.total-line .grand-total-val {
    font-size: 20px;
    font-weight: 800;
}

/* Success Modal Overlay */
.checkout-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.checkout-success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    padding: 40px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.checkout-success-overlay.show .success-card {
    transform: translateY(0);
}

.success-checkmark-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #eafaf1;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-checkmark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: block;
    stroke-width: 2.5;
    stroke: #28a745;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #28a745;
    animation: fillCheckmark .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s forwards;
}

.success-checkmark-circle-stroke {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2.5;
    stroke-miterlimit: 10;
    stroke: #28a745;
    fill: none;
    animation: strokeCheckmark .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheckmark .3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeCheckmark {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scaleCheckmark {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fillCheckmark {
    100% {
        box-shadow: inset 0px 0px 0px 30px #28a745;
        stroke: #fff;
    }
}

.success-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.success-msg {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 24px;
}

.order-id-box {
    background-color: var(--bg-light);
    border: 1px dashed var(--border-color);
    padding: 12px 20px;
    font-size: 14px;
    color: var(--primary-color);
    border-radius: 6px;
    margin-bottom: 30px;
    display: inline-block;
}

.success-continue-btn {
    width: 100%;
    background-color: #28a745;
    color: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.success-continue-btn:hover {
    background-color: #218838;
}

/* Extra media queries for checkout page layout */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .checkout-right {
        position: static;
        order: -1; /* Place summary on top for tablets/mobiles */
    }
}

@media (max-width: 480px) {
    .checkout-left {
        padding: 24px 20px;
    }
    
    .input-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0;
    }
    
    .form-group.half, .form-group.third {
        width: 100%;
        margin-bottom: 16px;
    }
    
    .method-option-card {
        padding: 14px;
    }
    
    .payment-card-body {
        padding: 16px;
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .slide-title {
        font-size: 56px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .shop-layout {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
    
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-upper-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: 70px;
    }
    
    .header-container {
        height: 70px;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    /* Responsive Mobile Menu Drawer */
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 40px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }
    
    .navbar.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hamburger-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-slider-section {
        height: calc(100vh - 100px);
    }
    
    .slide-title {
        font-size: 40px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-banner-card {
        height: 380px;
        padding: 30px;
    }

    .promo-banner-title {
        font-size: 32px;
    }

    .categories-section {
        padding: 50px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .new-arrivals-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .scroll-up-indicator {
        display: none;
    }

    .marquee-banner-section {
        padding: 12px 0;
    }

    .marquee-item {
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .shop-sidebar {
        position: static;
    }

    .shop-banner-section {
        height: 220px;
        margin-bottom: 30px;
    }

    .shop-banner-title {
        font-size: 38px;
    }

    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        flex-direction: row;
        order: 2;
        max-height: none;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 75px;
    }
    
    .gallery-main-image-wrapper {
        height: 380px;
        order: 1;
    }
    
    .product-detail-title {
        font-size: 26px;
    }

    .tabs-header-row {
        gap: 20px;
        flex-wrap: wrap;
    }

    .tab-header-btn {
        font-size: 14px;
    }

    .specifications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ==========================================================================
   Newsletter Subscription Popup Modal
   ========================================================================== */
.newsletter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal-card {
    background-color: #ffffff;
    width: 860px;
    max-width: 90%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.newsletter-modal-overlay.show .newsletter-modal-card {
    transform: scale(1);
}

.newsletter-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333333;
    padding: 8px;
    z-index: 10;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-modal-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.newsletter-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.newsletter-modal-left {
    background-color: #f7f7f7;
    height: 500px;
}

.newsletter-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.newsletter-modal-right {
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.newsletter-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.newsletter-modal-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-modal-form {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
}

.newsletter-modal-input {
    width: 100%;
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 12px;
    color: #333333;
    outline: none;
    transition: background-color 0.3s ease;
}

.newsletter-modal-input:focus {
    background-color: #ededed;
}

.newsletter-modal-submit-btn {
    width: 100%;
    background-color: #111111;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-modal-submit-btn:hover {
    background-color: #333333;
}

.newsletter-opt-out {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 25px;
}

/* Custom Checkbox Design matching screenshot */
.newsletter-opt-out input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    height: 14px;
    width: 14px;
    background-color: #ffffff;
    border: 1px solid #0076ff;
    border-radius: 2px;
}

.newsletter-opt-out input:checked ~ .checkbox-custom {
    background-color: #0076ff;
    border-color: #0076ff;
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
}

.newsletter-opt-out input:checked ~ .checkbox-custom:after {
    display: block;
}

.newsletter-opt-out .checkbox-custom:after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.newsletter-footnote {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #666666;
}

/* Mobile responsive popup rules */
@media (max-width: 768px) {
    .newsletter-modal-card {
        max-width: 95%;
    }
    .newsletter-modal-content {
        grid-template-columns: 1fr;
    }
    .newsletter-modal-left {
        display: none; /* Hide image on mobile for best focus */
    }
    .newsletter-modal-right {
        padding: 50px 30px;
    }
    .newsletter-modal-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

/* Wishlist States */
.action-btn.wishlisted svg,
.wishlist-btn.wishlisted svg {
    fill: #ef4444;
    stroke: #ef4444;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.2));
    transition: transform 0.2s ease;
}
.action-btn.wishlisted:hover svg,
.wishlist-btn.wishlisted:hover svg {
    transform: scale(1.15);
}
.wishlist-btn.wishlisted {
    color: #ef4444 !important;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-left: 4px solid var(--accent-color, #d4a373);
}
.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-notification .toast-icon {
    display: flex;
    align-items: center;
    color: #ef4444;
}

/* Wishlist Drawer Styles */
.wishlist-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.wishlist-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}
.wishlist-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Outfit', sans-serif;
}
.wishlist-drawer.open {
    transform: translateX(0);
}
.wishlist-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-color);
}
.wishlist-drawer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}
.wishlist-drawer-close {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-smooth);
}
.wishlist-drawer-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}
.wishlist-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
}
.wishlist-empty-state {
    text-align: center;
    padding: 60px 0;
}
.wishlist-empty-text {
    font-size: 15px;
    color: var(--text-muted);
}
.wishlist-item-row {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}
.wishlist-item-row:first-of-type {
    padding-top: 0;
}
.wishlist-item-img {
    width: 70px;
    height: 90px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}
.wishlist-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wishlist-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
}
.wishlist-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
}
.wishlist-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}
.wishlist-add-to-cart-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.wishlist-add-to-cart-btn:hover {
    background-color: var(--accent-color);
}
.wishlist-item-delete {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px;
    display: flex;
    align-items: center;
}
.wishlist-item-delete:hover {
    color: #ef4444;
}

/* Wishlist header badge style */
.wishlist-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #ef4444;
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


