@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');


/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.instrument-sans {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings:
    "wdth" 100;
}

body {
font-family: "Instrument Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background-color: #3d5a5a;
    color: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 44px;
}

.banner-content {
    flex: 1;
    text-align: center;
}

.banner-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.banner-nav {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.banner-nav:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.banner-nav svg {
    stroke-width: 2.5;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

/* ===== LOGO ===== */
.logo {
    flex-shrink: 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: color 0.2s ease;
}

.logo a:hover {
    color: #3d5a5a;
}

/* ===== NAVIGATION MENU ===== */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #3d5a5a;
}

.dropdown-arrow {
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===== SIMPLE DROPDOWN MENU ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.15s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f8f8;
    color: #3d5a5a;
    padding-left: 28px;
}

/* ===== MEGA MENU ===== */
.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 40px;
    width: 1100px;
    max-width: 95vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.mega-menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-25%) translateY(0);
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 280px;
    gap: 40px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.mega-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-menu-list a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    display: block;
}

.mega-menu-list a:hover {
    color: #3d5a5a;
    padding-left: 4px;
}

/* ===== MEGA MENU FEATURED CARD ===== */
.mega-menu-featured {
    display: flex;
    align-items: stretch;
}

.featured-card {
    background: linear-gradient(135deg, #d4c5b0 0%, #e8dcc8 100%);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.featured-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: #3d5a5a;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.featured-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c4a4a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-btn {
    background-color: #2c4a4a;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
    margin-bottom: 16px;
}

.featured-btn:hover {
    background-color: #1a3030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== HEADER ACTIONS (ICONS) ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    width: 40px;
    height: 40px;
}

.icon-btn:hover {
    background-color: #f5f5f5;
}

.icon-btn svg {
    color: #1a1a1a;
    stroke-width: 2;
}

/* ===== SEARCH MODAL ===== */
.search-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    max-width: 100%;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.search-modal.active {
    right: 0;
}

.search-modal-content {
    padding: 30px;
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.search-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.search-modal-close {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-modal-close:hover {
    background-color: #e0e0e0;
    transform: rotate(90deg);
}

.search-modal-close svg {
    color: #333;
}

/* ===== SEARCH INPUT ===== */
.search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 16px 18px 16px 50px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.search-input:focus {
    border-color: #3d5a5a;
}

.search-input::placeholder {
    color: #999;
}

/* ===== SEARCH FILTERS ===== */
.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-tag {
    background-color: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag:hover {
    background-color: #3d5a5a;
    color: #ffffff;
}

/* ===== SEARCH SUGGESTIONS ===== */
.search-suggestions {
    margin-top: 30px;
}

.suggestions-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f8f8f8;
}

.suggestion-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.suggestion-info {
    flex: 1;
}

.suggestion-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.suggestion-price {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* ===== SEARCH MODAL OVERLAY ===== */
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-list {
        gap: 24px;
    }

    .header-container {
        padding: 0 30px;
    }

    .mega-menu-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .mega-menu-featured {
        grid-column: span 3;
        margin-top: 20px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 116px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: none;
        margin: 0;
        max-height: calc(100vh - 116px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        padding: 16px 0;
        width: 100%;
        justify-content: space-between;
    }

    .mega-menu,
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 12px 20px;
        transform: none;
        border-radius: 0;
        display: none;
        width: 100%;
    }

    .nav-item.active .mega-menu,
    .nav-item.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        padding: 0 20px;
    }

    .search-modal {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo a {
        font-size: 20px;
    }

    .header-container {
        height: 64px;
    }

    .header-actions {
        gap: 4px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .banner-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 18px;
    }

    .header-actions {
        gap: 2px;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
    }

    .banner-content p {
        font-size: 12px;
    }

    .header-container {
        padding: 0 15px;
    }

    .search-modal-content {
        padding: 20px;
    }
}


/* banner styles */

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 197, 176, 0.95);
    color: #3d5a5a;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    margin-bottom: 24px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}
/* ===== HERO TITLE ===== */
.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-line {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.active .hero-line:nth-child(1) {
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.active .hero-line:nth-child(2) {
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

/* ===== WORD WITH SCRIBBLE (LAST WORD ONLY) ===== */
.word-with-scribble {
    position: relative;
    display: inline-block;
}

/* ===== SCRIBBLE UNDERLINE - EXACT DESIGN ===== */
.scribble-underline {
    position: absolute;
    bottom: -12px;
    left: -8px;
    width: calc(100% + 16px);
    height: 35px;
    pointer-events: none;
    opacity: 0;
}

.scribble-path {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
}

/* Start animation after 1.5 seconds (after text reveal) */
.active .word-with-scribble .scribble-underline {
    animation: scribbleShow 0.1s ease 1.5s forwards;
}

.active .word-with-scribble .scribble-path {
    animation: scribbleDraw 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

/* Show scribble container */
@keyframes scribbleShow {
    to {
        opacity: 1;
    }
}

/* Draw scribble from left to right */
@keyframes scribbleDraw {
    0% {
        stroke-dashoffset: 900;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* ===== TEXT REVEAL ANIMATION ===== */
@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .scribble-underline {
        bottom: -10px;
        height: 30px;
    }

    .scribble-path {
        stroke-width: 4;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .scribble-underline {
        bottom: -8px;
        height: 25px;
    }

    .scribble-path {
        stroke-width: 3.5;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .scribble-underline {
        bottom: -6px;
        left: -5px;
        width: calc(100% + 10px);
        height: 20px;
    }

    .scribble-path {
        stroke-width: 3;
    }
}

/* Apply the drawing animation to the path */
.active .hero-line:nth-child(2) .scribble-path {
    animation: scribbleDraw 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.9s forwards;
}


/* ===== HERO DESCRIPTION ===== */
.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

/* ===== HERO BUTTON ===== */
.hero-btn {
    background-color: #ffffff;
    color: #3d5a5a;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
    background-color: #3d5a5a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ===== SLIDER NAVIGATION ===== */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-arrow svg {
    stroke-width: 2.5;
}

/* ===== SLIDER INDICATORS ===== */
.slider-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
}

.indicator {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: left 5s linear;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 0.6);
}

.indicator.active::before {
    left: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scribbleDraw {
    0% {
        opacity: 0;
        stroke-dashoffset: 1000;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .slider-nav {
        bottom: 30px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .slider-indicators {
        gap: 8px;
    }

    .indicator {
        width: 30px;
    }
}



/* ===== FEATURES MARQUEE ===== */
.features-marquee {
    background-color: #f8f7f5;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #e8e6e3;
    border-bottom: 1px solid #e8e6e3;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marqueeScroll 30s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.features-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* ===== MARQUEE ITEM ===== */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== MARQUEE ICON ===== */
.marquee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.marquee-icon svg {
    color: #3d5a5a;
    stroke-width: 1.8;
}

.marquee-item:hover .marquee-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ===== MARQUEE TEXT ===== */
.marquee-text {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.01em;
}

/* ===== MARQUEE ANIMATION ===== */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .features-marquee {
        padding: 24px 0;
    }

    .marquee-content {
        gap: 60px;
        animation-duration: 25s;
    }

    .marquee-icon {
        width: 42px;
        height: 42px;
    }

    .marquee-icon svg {
        width: 28px;
        height: 28px;
    }

    .marquee-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .features-marquee {
        padding: 20px 0;
    }

    .marquee-content {
        gap: 50px;
        animation-duration: 20s;
    }

    .marquee-icon {
        width: 38px;
        height: 38px;
    }

    .marquee-icon svg {
        width: 24px;
        height: 24px;
    }

    .marquee-text {
        font-size: 14px;
    }
}


/* ===== TOP SELLERS SECTION ===== */
.top-sellers {
    padding: 80px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

/* ===== PRODUCT TABS ===== */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e8e6e3;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #999999;
    padding: 12px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn.active {
    color: #1a1a1a;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1a1a1a;
}

.tab-btn:hover {
    color: #1a1a1a;
}

/* ===== PRODUCTS CONTAINER ===== */
.products-container {
    position: relative;
    padding: 0 60px;
}

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

/* ===== PRODUCT CARD ===== */
.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ===== PRODUCT IMAGE WRAPPER ===== */
.product-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    background-color: #f8f7f5;
    overflow: hidden;
    border-radius: 12px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.product-main-image {
    opacity: 1;
    z-index: 1;
}

.product-hover-image {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-main-image {
    opacity: 0;
}

.product-card:hover .product-hover-image {
    opacity: 1;
}

/* ===== PRODUCT BADGE ===== */
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.badge-pink {
    background-color: #e91e63;
    color: #ffffff;
}

.badge-red {
    background-color: #c94141;
    color: #ffffff;
}

/* ===== PRODUCT RATING ===== */
.product-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-rating svg {
    width: 14px;
    height: 14px;
}

/* ===== ADD TO CART BUTTON ===== */
.add-to-cart-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    white-space: nowrap;
}

.product-card:hover .add-to-cart-btn {
    transform: translateX(-50%) translateY(0);
}

.add-to-cart-btn:hover {
    background-color: #2c4a4a;
    box-shadow: 0 4px 16px rgba(61, 90, 90, 0.3);
}

/* ===== QUICK VIEW (ALTERNATIVE HOVER) ===== */
.quick-view-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    z-index: 10;
}

.product-card:hover .quick-view-btn {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    background-color: #3d5a5a;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===== TAB CONTENT ===== */
.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}

/* ===== PRODUCT INFO ===== */
.product-card > .product-tags,
.product-card > .product-name,
.product-card > .product-price,
.shade-product-card > .product-tags,
.shade-product-card > .product-name,
.shade-product-card > .product-price {
    padding-left: 16px;
    padding-right: 16px;
}

.product-tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 10px;
}

.product-tag {
    background-color: #f5f5f5;
    color: #666666;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 15px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
}

.sale-price {
    color: #c94141;
}

.original-price {
    color: #999999;
    text-decoration: line-through;
    font-size: 14px;
}

/* ===== NAVIGATION ARROWS ===== */
.product-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #e8e6e3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-nav-arrow:hover {
    background-color: #3d5a5a;
    border-color: #3d5a5a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-nav-arrow:hover svg {
    stroke: #ffffff;
}

.product-nav-arrow svg {
    stroke: #1a1a1a;
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card:nth-child(4) {
        display: none;
    }
}

@media (max-width: 1024px) {
    .top-sellers {
        padding: 60px 0;
    }

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

    .products-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

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

    .product-tabs {
        gap: 24px;
    }

    .tab-btn {
        font-size: 16px;
    }

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

    .products-container {
        padding: 0 40px;
    }

    .product-card:nth-child(3),
    .product-card:nth-child(4) {
        display: none;
    }

    .product-name {
        font-size: 16px;
    }

    .product-price {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .product-tabs {
        gap: 16px;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-container {
        padding: 0;
    }

    .product-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4) {
        display: block;
    }
}




/* ===== EXPLORE COLLECTIONS SECTION ===== */
.explore-collections {
    padding: 80px 0;
    background-color: #fafafa;
}

.collections-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== FEATURED IMAGES (LEFT SIDE) ===== */
.collections-featured {
    display: flex;
    flex-direction: row;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5 / 6;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.featured-label sup {
    font-size: 14px;
    font-weight: 600;
    margin-left: 4px;
}

/* ===== COLLECTIONS CONTENT (RIGHT SIDE) ===== */
.collections-content {
    padding: 20px 0;
}

.collections-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.collections-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.collections-title .scribble-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 20px;
}

.collections-title .scribble-underline path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: scribbleDraw 1.5s ease-out 0.5s forwards;
}

/* ===== COLLECTIONS LIST ===== */
.collections-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.collection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-bottom: 1px solid #e8e6e3;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.collection-item:hover {
    padding-left: 20px;
    background-color: rgba(255, 255, 255, 0.5);
}

.collection-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.collection-name {
    font-size: 28px;
    font-weight: 600;
    color: #666666;
    transition: color 0.3s ease;
}

.collection-item:hover .collection-name {
    color: #1a1a1a;
}

.collection-count {
    font-size: 16px;
    font-weight: 600;
    color: #999999;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 12px;
    min-width: 36px;
    text-align: center;
}

.collection-arrow {
    background-color: #f5f5f5;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.collection-item:hover .collection-arrow {
    background-color: #3d5a5a;
    transform: scale(1.1);
}

.collection-arrow svg {
    stroke: #666666;
    transition: stroke 0.3s ease;
}

.collection-item:hover .collection-arrow svg {
    stroke: #ffffff;
}

/* ===== CURSOR FOLLOWING IMAGE ===== */
.cursor-image {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    z-index: 100;
    transition: opacity 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
}

.cursor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-item:hover .cursor-image {
    opacity: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes scribbleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .collections-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .collections-featured {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        position: static;
    }

    .collections-title {
        font-size: 38px;
    }

    .collection-name {
        font-size: 24px;
    }

    .cursor-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .explore-collections {
        padding: 60px 0;
    }

    .collections-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .collection-name {
        font-size: 20px;
    }

    .collection-item {
        padding: 20px 0;
    }

    .collection-arrow {
        width: 40px;
        height: 40px;
    }

    .cursor-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .collections-featured {
        grid-template-columns: 1fr;
    }

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

    .collection-name {
        font-size: 18px;
    }

    .collection-count {
        font-size: 14px;
    }

    /* Disable cursor image on mobile */
    .cursor-image {
        display: none;
    }
}



/* ===== BRAND VALUES SECTION ===== */
.brand-values {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== VALUE CARD ===== */
.value-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

/* ===== VALUE ICON ===== */
.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background-color: #3d5a5a;
    border-color: #3d5a5a;
    transform: rotate(360deg);
}

.value-icon svg {
    stroke: #1a1a1a;
    transition: stroke 0.4s ease;
}

.value-card:hover .value-icon svg {
    stroke: #ffffff;
}

/* ===== VALUE TITLE ===== */
.value-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

/* ===== VALUE DESCRIPTION ===== */
.value-description {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    max-width: 320px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .brand-values {
        padding: 60px 0;
    }

    .values-grid {
        gap: 50px;
    }

    .value-title {
        font-size: 22px;
    }

    .value-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .brand-values {
        padding: 50px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-icon svg {
        width: 40px;
        height: 40px;
    }

    .value-title {
        font-size: 20px;
    }

    .value-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .brand-values {
        padding: 40px 0;
    }

    .values-grid {
        gap: 40px;
    }

    .value-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .value-icon svg {
        width: 36px;
        height: 36px;
    }

    .value-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .value-description {
        font-size: 14px;
        max-width: 100%;
    }
}




/* ===== CHOOSE YOUR SHADE SECTION ===== */
.choose-shade {
    padding: 80px 0;
    background-color: #fafafa;
}

.choose-shade .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.choose-shade .scribble-underline {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
}

.choose-shade .scribble-underline path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: scribbleDraw 1.5s ease-out 0.5s forwards;
}

/* ===== SKIN TONE SELECTOR ===== */
.skin-tone-selector {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.skin-tone-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.skin-tone-option:hover {
    transform: translateY(-8px);
}

.skin-tone-image {
    width: 140px;
    height: 80px;
    border-radius: 50px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.skin-tone-option.active .skin-tone-image {
    border-color: #3d5a5a;
    box-shadow: 0 4px 16px rgba(61, 90, 90, 0.3);
}

.skin-tone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skin-tone-label {
    font-size: 15px;
    font-weight: 600;
    color: #666666;
    transition: color 0.3s ease;
}

.skin-tone-option.active .skin-tone-label {
    color: #1a1a1a;
}

/* ===== RANGE SLIDER ===== */
.shade-range-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.shade-range {
    width: 100%;
    opacity: 0;
    position: absolute;
    z-index: 10;
    cursor: pointer;
    height: 40px;
}

.range-track {
    position: relative;
    height: 4px;
    background: linear-gradient(to right, #f5d4c1 0%, #e8c4a8 33%, #c89b7e 66%, #8b6f5c 100%);
    border-radius: 10px;
}

.range-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.33%;
    background-color: #3d5a5a;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.range-handle {
    position: absolute;
    top: 50%;
    left: 33.33%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-color: #3d5a5a;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    cursor: pointer;
}

/* ===== PRODUCTS GRID ===== */
.shade-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.shade-product-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    display: flex;
    flex-direction: column;
}

.shade-product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.shade-product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.shade-product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.shade-product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.shade-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ===== PRODUCT IMAGE WITH HOVER CHANGE ===== */
.shade-product-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    background-color: #f8f7f5;
    overflow: hidden;
}

.product-main-image,
.product-hover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.shade-product-card:hover .product-hover-image {
    opacity: 1;
}

/* ===== SELECT OPTIONS BUTTON ===== */
.select-options-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shade-product-card:hover .select-options-btn {
    transform: translateX(-50%) translateY(0);
}

.select-options-btn:hover {
    background-color: #2c4a4a;
}

/* ===== NAVIGATION ARROWS ===== */
.shade-products-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.shade-nav-arrow {
    background-color: #ffffff;
    border: 1px solid #e8e6e3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shade-nav-arrow:hover {
    background-color: #3d5a5a;
    border-color: #3d5a5a;
}

.shade-nav-arrow:hover svg {
    stroke: #ffffff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .shade-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shade-product-card:nth-child(4) {
        display: none;
    }
}

@media (max-width: 1024px) {
    .choose-shade {
        padding: 60px 0;
    }

    .choose-shade .section-title {
        font-size: 38px;
    }

    .skin-tone-selector {
        gap: 20px;
    }

    .skin-tone-image {
        width: 120px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .choose-shade .section-title {
        font-size: 32px;
    }

    .skin-tone-selector {
        flex-wrap: wrap;
        gap: 16px;
    }

    .skin-tone-image {
        width: 100px;
        height: 60px;
    }

    .skin-tone-label {
        font-size: 13px;
    }

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

    .shade-product-card:nth-child(3),
    .shade-product-card:nth-child(4) {
        display: block;
    }
}

@media (max-width: 480px) {
    .shade-products-grid {
        grid-template-columns: 1fr;
    }

    .skin-tone-selector {
        gap: 12px;
    }

    .skin-tone-image {
        width: 80px;
        height: 50px;
    }
}



/* ===== FIND YOUR SOLUTIONS SECTION ===== */
.find-solutions {
    padding: 0;
    background-color: #d4c5b0;
    position: relative;
    overflow: hidden;
}

.solutions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 1600px;
    margin: 0 auto;
}

/* ===== LEFT CONTENT ===== */
.solutions-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solutions-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #5a4a3a;
    text-transform: capitalize;
    margin-bottom: 12px;
    display: block;
}

.solutions-title {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* ===== SOLUTIONS FORM ===== */
.solutions-form {
    max-width: 500px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.form-label {
    font-size: 18px;
    font-weight: 400;
    color: #2a2a2a;
}

/* ===== CUSTOM SELECT ===== */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #1a1a1a;
    padding: 8px 32px 8px 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    outline: none;
    min-width: 120px;
}

.custom-select:focus {
    border-bottom-color: #3d5a5a;
}

.select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    stroke: #1a1a1a;
}

/* ===== CUSTOM DROPDOWN ===== */
.custom-dropdown {
    position: relative;
    margin-bottom: 32px;
}

.dropdown-trigger {
    width: 100%;
    max-width: 280px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #1a1a1a;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 4px 4px 0 0;
}

.dropdown-trigger:hover {
    background-color: #f8f8f8;
}

.dropdown-trigger svg {
    stroke: #1a1a1a;
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 100%;
    max-width: 280px;
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
}

.custom-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: #f8f8f8;
    padding-left: 24px;
}

.dropdown-item.active {
    color: #3d5a5a;
    font-weight: 600;
    border-left-color: #3d5a5a;
    background-color: #f0f4f4;
}

/* ===== ACTION BUTTONS ===== */
.solutions-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-solutions {
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(61, 90, 90, 0.2);
}

.btn-solutions:hover {
    background-color: #2c4a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 90, 90, 0.3);
}

.link-skin-type {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.link-skin-type:hover {
    color: #3d5a5a;
}

/* ===== RIGHT IMAGE ===== */
.solutions-image {
    position: relative;
    overflow: hidden;
}

.solutions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .solutions-container {
        grid-template-columns: 1fr;
    }

    .solutions-content {
        padding: 60px 40px;
    }

    .solutions-title {
        font-size: 42px;
    }

    .solutions-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .solutions-content {
        padding: 50px 30px;
    }

    .solutions-title {
        font-size: 36px;
    }

    .form-label {
        font-size: 16px;
    }

    .custom-select,
    .dropdown-trigger {
        font-size: 16px;
    }

    .btn-solutions {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .solutions-content {
        padding: 40px 20px;
    }

    .solutions-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .form-row {
        gap: 8px;
    }

    .form-label {
        font-size: 15px;
    }

    .custom-select,
    .dropdown-trigger {
        font-size: 15px;
        max-width: 100%;
    }

    .dropdown-menu {
        max-width: 100%;
    }

    .solutions-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-solutions {
        width: 100%;
        text-align: center;
    }
}




/* ===== EDITOR'S CHOICE SECTION ===== */
.editors-choice {
    padding: 80px 0;
    background-color: #ffffff;
}

.editors-choice-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== BUNDLE IMAGE WITH HOTSPOTS ===== */
.bundle-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-color: #d4c5b0;
}

.bundle-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== HOTSPOTS ===== */
.hotspot {
    position: absolute;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.hotspot-1 {
    top: 18%;
    left: 28%;
}

.hotspot-2 {
    top: 38%;
    right: 22%;
}

.hotspot-3 {
    bottom: 32%;
    left: 26%;
}

.hotspot-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border: 3px solid #3d5a5a;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: rgba(61, 90, 90, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.hotspot:hover .hotspot-dot {
    transform: translate(-50%, -50%) scale(1.3);
    background-color: #3d5a5a;
}

/* ===== HOTSPOT POPUP ===== */
.hotspot-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background-color: #ffffff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.hotspot-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.hotspot.active .hotspot-popup,
.hotspot:hover .hotspot-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.popup-product-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.popup-content {
    flex: 1;
}

.popup-product-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.popup-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.popup-product-price .sale-price {
    color: #c94141;
    font-weight: 600;
}

.popup-product-price .original-price {
    color: #999999;
    text-decoration: line-through;
    font-size: 13px;
}

/* ===== BUNDLE INFO ===== */
.bundle-info {
    padding: 20px 0;
}

.bundle-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #666666;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.bundle-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.bundle-title .scribble-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 20px;
}

.bundle-title .scribble-underline path {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: scribbleDraw 1.5s ease-out 0.5s forwards;
}

/* ===== BUNDLE PRODUCTS ===== */
.bundle-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.bundle-product-card {
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
}

.bundle-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f5;
}

.bundle-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-product-info {
    padding: 16px;
}

.bundle-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.bundle-product-price {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== COLOR SELECTOR ===== */
.product-color-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background-color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-color-selector:hover {
    background-color: #f0f0f0;
}

.color-label {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}

.color-dropdown-icon {
    stroke: #666666;
    transition: transform 0.2s ease;
}

.product-color-selector:hover .color-dropdown-icon {
    transform: translateY(2px);
}

/* ===== BUNDLE ACTIONS ===== */
.bundle-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.btn-add-all-to-cart {
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(61, 90, 90, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-all-to-cart:hover {
    background-color: #2c4a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 90, 90, 0.3);
}

.bundle-total {
    font-weight: 700;
    margin-left: 4px;
}

.link-usage-guide {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.link-usage-guide:hover {
    color: #3d5a5a;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .editors-choice-wrapper {
        gap: 40px;
    }

    .bundle-title {
        font-size: 38px;
    }
}

@media (max-width: 1024px) {
    .editors-choice-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bundle-image-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .editors-choice {
        padding: 60px 0;
    }

    .bundle-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .bundle-products {
        grid-template-columns: 1fr;
    }

    .hotspot {
        width: 40px;
        height: 40px;
    }

    .hotspot-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .hotspot-popup {
        min-width: 240px;
    }
}

@media (max-width: 480px) {
    .bundle-title {
        font-size: 28px;
    }

    .btn-add-all-to-cart {
        width: 100%;
        justify-content: center;
    }
}


/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 80px 0;
    background-color: #fafafa;
    position: relative;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ===== QUOTE MARK ===== */
.quote-mark {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    opacity: 0.5;
}

.quote-mark svg {
    width: 100px;
    height: auto;
}

/* ===== TESTIMONIAL TEXT ===== */
.testimonial-text {
    margin: 0 0 50px;
    padding: 0;
}

.testimonial-text p {
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.testimonial-text em {
    font-style: italic;
}

/* ===== BRAND LOGOS ===== */
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.brand-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: grayscale(0%);
}

.brand-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ===== ANIMATION ON SCROLL ===== */
.testimonial-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonial-container.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-text p {
        font-size: 24px;
    }

    .brand-logos {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .quote-mark svg {
        width: 80px;
    }

    .testimonial-text p {
        font-size: 20px;
        line-height: 1.5;
    }

    .brand-logos {
        gap: 40px;
    }

    .brand-logo img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .quote-mark svg {
        width: 60px;
    }

    .quote-mark {
        margin-bottom: 20px;
    }

    .testimonial-text p {
        font-size: 18px;
    }

    .testimonial-text {
        margin-bottom: 40px;
    }

    .brand-logos {
        gap: 30px;
        flex-direction: column;
    }

    .brand-logo img {
        height: 28px;
    }
}


/* ===== COMMUNITY STORIES SECTION ===== */
.community-stories {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-subtitle {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #999999;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.community-stories .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

/* ===== STORIES CAROUSEL WRAPPER ===== */
.stories-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.stories-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: none; /* Hide default cursor for custom */
}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

/* ===== CUSTOM CURSOR (+ ICON) ===== */
.stories-carousel {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="3"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>') 12 12, auto;
}

/* ===== STORY CARD ===== */
.story-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: scale(0.9);
}

.story-card-active {
    opacity: 1;
    transform: scale(1);
}

.story-card:hover:not(.story-card-active) {
    opacity: 0.8;
    transform: scale(0.95);
}

/* ===== VIDEO CONTAINER ===== */
.story-video-container {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background-color: #000000;
    margin-bottom: 16px;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">ircle cx="16" cy="16" r="15" fill="white" opacityty="0.9"/><line x1="16" y1="8" x2="16" y2="24" stroke="%23000000" stroke-width="2.5" stroke-linecap="round"/><line x1="8" y1="16" x2="24" y2="16" stroke="%23000000" stroke-width="2.5" stroke-linecap="round"/></svg>') 16 16, pointer;
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* ===== VIDEO PLAY ICON ===== */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.video-play-icon svg {
    margin-left: 3px; /* Center play icon visually */
}

.story-video-container.playing .video-play-icon {
    opacity: 0;
    pointer-events: none;
}

/* ===== SOUND INDICATOR ===== */
.sound-indicator {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sound-indicator svg {
    width: 18px;
    height: 18px;
}

/* ===== STORY PRODUCT ===== */
.story-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #fafafa;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.story-product:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ffffff;
}

.product-details {
    flex: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.product-price {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.price-amount {
    color: #1a1a1a;
    font-weight: 600;
}

.sale-price {
    color: #c94141;
    font-weight: 600;
}

.original-price {
    color: #999999;
    text-decoration: line-through;
    font-size: 12px;
}

/* ===== NAVIGATION ARROWS ===== */
.story-nav-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #e8e6e3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.story-nav-arrow:hover {
    background-color: #3d5a5a;
    border-color: #3d5a5a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.story-nav-arrow:hover svg {
    stroke: #ffffff;
}

.story-nav-arrow svg {
    stroke: #1a1a1a;
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
}

.prev-story {
    left: 0;
}

.next-story {
    right: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .story-card {
        flex: 0 0 250px;
    }
}

@media (max-width: 1024px) {
    .community-stories {
        padding: 60px 0;
    }

    .community-stories .section-title {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .stories-carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .community-stories .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .story-card {
        flex: 0 0 220px;
    }

    .stories-carousel-wrapper {
        padding: 0 40px;
    }

    .story-nav-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .stories-carousel-wrapper {
        padding: 0;
    }

    .story-nav-arrow {
        display: none;
    }

    .story-card {
        flex: 0 0 280px;
    }
}




/* ===== PRODUCT FEATURES SECTION ===== */
.product-features {
    padding: 80px 0;
    background-color: #fafafa;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ===== TITLE ===== */
.features-title {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text .scribble-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 20px;
    pointer-events: none;
}

.highlight-text .scribble-underline path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: scribbleDraw 1.5s ease-out 0.5s forwards;
}

@keyframes scribbleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* ===== SUBTITLE ===== */
.features-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 60px 0;
}

.showcase-product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== FEATURE BADGES ===== */
.feature-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f2ed;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.feature-badge:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
}

.badge-icon {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 18px;
    height: 18px;
    stroke: #3d5a5a;
    stroke-width: 2;
}

.feature-badge span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ===== BADGE POSITIONS ===== */
.badge-top-left {
    top: 8%;
    left: 5%;
}

.badge-top-right {
    top: 8%;
    right: 5%;
}

.badge-middle-left {
    top: 38%;
    left: 0%;
}

.badge-middle-right {
    top: 38%;
    right: 0%;
}

.badge-bottom-left {
    bottom: 8%;
    left: 5%;
}

.badge-bottom-right {
    bottom: 8%;
    right: 5%;
}

/* ===== VIEW PRODUCT BUTTON ===== */
.features-action {
    margin-top: 40px;
}

.btn-view-product {
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(61, 90, 90, 0.2);
}

.btn-view-product:hover {
    background-color: #2c4a4a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 90, 90, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .product-showcase {
        max-width: 700px;
        padding: 40px 0;
    }

    .feature-badge {
        padding: 10px 16px;
        gap: 8px;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
    }

    .feature-badge span {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .product-features {
        padding: 60px 0;
    }

    .features-title {
        font-size: 42px;
    }

    .product-showcase {
        max-width: 600px;
    }

    .badge-top-left {
        top: 5%;
        left: 0%;
    }

    .badge-top-right {
        top: 5%;
        right: 0%;
    }

    .badge-middle-left {
        left: -5%;
    }

    .badge-middle-right {
        right: -5%;
    }

    .badge-bottom-left {
        bottom: 5%;
        left: 0%;
    }

    .badge-bottom-right {
        bottom: 5%;
        right: 0%;
    }
}

@media (max-width: 768px) {
    .features-title {
        font-size: 36px;
    }

    .features-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .product-showcase {
        max-width: 400px;
        padding: 30px 0;
    }

    .feature-badge {
        padding: 8px 12px;
        gap: 6px;
    }

    .badge-icon {
        width: 28px;
        height: 28px;
    }

    .badge-icon svg {
        width: 16px;
        height: 16px;
    }

    .feature-badge span {
        font-size: 12px;
    }

    .feature-badge:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 640px) {
    .features-title {
        font-size: 28px;
    }

    .product-showcase {
        max-width: 300px;
    }

    /* Stack badges on mobile */
    .badge-top-left,
    .badge-top-right,
    .badge-middle-left,
    .badge-middle-right,
    .badge-bottom-left,
    .badge-bottom-right {
        position: static;
        display: inline-flex;
        margin: 8px;
    }

    .product-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .showcase-product-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 24px;
    }

    .btn-view-product {
        padding: 14px 36px;
        font-size: 15px;
    }
}



/* ===== FEATURED BRANDS SECTION ===== */
.featured-brands {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* ===== TITLE & SUBTITLE ===== */
.brands-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.brands-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== MARQUEE CONTAINER ===== */
.brands-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-marquee {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: marqueeScroll 30s linear infinite;
    width: fit-content;
}

/* Pause on hover */
.brands-marquee-container:hover .brands-marquee {
    animation-play-state: paused;
}

/* ===== BRAND ITEM ===== */
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 180px;
}

/* ===== MARQUEE ANIMATION ===== */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .featured-brands {
        padding: 60px 0;
    }

    .brands-title {
        font-size: 38px;
    }

    .brands-marquee {
        gap: 80px;
        animation-duration: 25s;
    }

    .brand-item img {
        height: 42px;
    }
}

@media (max-width: 768px) {
    .brands-title {
        font-size: 32px;
    }

    .brands-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .brands-marquee {
        gap: 60px;
        animation-duration: 20s;
    }

    .brand-item img {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .brands-title {
        font-size: 28px;
    }

    .brands-subtitle {
        font-size: 14px;
    }

    .brands-marquee {
        gap: 50px;
        animation-duration: 18s;
    }

    .brand-item img {
        height: 30px;
        max-width: 120px;
    }
}



/* ===== HELP CENTER SECTION ===== */
.help-center-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.help-center-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* ===== LEFT SIDE - HELP CENTER INFO ===== */
.help-center-info {
    padding-right: 40px;
}

.help-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 12px;
}

.help-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.help-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-help-center {
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(61, 90, 90, 0.2);
}

.btn-help-center:hover {
    background-color: #2c4a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 90, 90, 0.3);
}

/* ===== RIGHT SIDE - FAQ ACCORDION ===== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ===== FAQ ITEM ===== */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

/* ===== FAQ QUESTION ===== */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-question:hover span {
    color: #3d5a5a;
}

.faq-icon {
    flex-shrink: 0;
    stroke: #666666;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ===== FAQ ANSWER ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    padding: 0 0 24px 0;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .help-center-section {
        padding: 60px 0;
    }

    .help-center-wrapper {
        gap: 60px;
    }

    .help-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .help-center-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .help-center-info {
        padding-right: 0;
        text-align: center;
    }

    .help-title {
        font-size: 32px;
    }

    .btn-help-center {
        width: 100%;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .help-title {
        font-size: 28px;
    }

    .help-description {
        font-size: 15px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question span {
        font-size: 15px;
        padding-right: 20px;
    }
}


/* ===== FOOTER ===== */
.site-footer {
    background-color: #ffffff;
    padding: 60px 0 40px;
    border-top: 1px solid #e8e6e3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

/* ===== FOOTER COLUMN ===== */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* ===== CONTACT INFO ===== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-link {
    font-size: 15px;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #3d5a5a;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #3d5a5a;
    border-color: #3d5a5a;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* ===== SPECIAL OFFERS ===== */
.footer-offers {
    margin-top: 10px;
}

.footer-offers p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.footer-link-inline {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link-inline:hover {
    color: #3d5a5a;
}

/* ===== FOOTER MENU ===== */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    font-size: 15px;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #3d5a5a;
    transform: translateX(3px);
}

/* ===== NEWSLETTER ===== */
.footer-newsletter-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #3d5a5a;
}

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

.newsletter-button {
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: #2c4a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 90, 90, 0.3);
}

.footer-terms {
    font-size: 12px;
    color: #999999;
    line-height: 1.6;
}

.footer-terms .footer-link-inline {
    font-size: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 30px;
    }

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

    .footer-column {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }
}

/* ===== CART DRAWER ===== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.cart-drawer.active {
    pointer-events: all;
    visibility: visible;
}

.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}

.cart-drawer-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    background-color: #3d5a5a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50%;
}

.cart-drawer-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cart-drawer-close:hover {
    background-color: #f5f5f5;
}

.cart-drawer-close svg {
    stroke: #1a1a1a;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 32px;
    text-align: center;
}

.cart-empty-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.cart-empty-content p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 30px;
}

.cart-empty-collections {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
}

.cart-collection-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 20 / 7;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cart-collection-item:hover {
    transform: scale(1.02);
}

.cart-collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #ffffff;
}

.cart-collection-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-collection-desc {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.cart-drawer-footer {
    border-top: 1px solid #e5e5e5;
    background-color: #ffffff;
    padding: 24px 32px;
}

.cart-empty-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-show-collections {
    width: 100%;
    padding: 16px 32px;
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-show-collections:hover {
    background-color: #2c4a4a;
}

.cart-free-shipping-message {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.cart-shipping-progress {
    padding: 20px 32px;
    background-color: #f8f7f5;
    border-bottom: 1px solid #e5e5e5;
}

.shipping-message {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.shipping-progress-bar {
    width: 100%;
    height: 6px;
    background-color: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.shipping-progress-fill {
    height: 100%;
    background-color: #3d5a5a;
    transition: width 0.3s ease;
}

.shipping-timer {
    font-size: 13px;
    color: #c94141;
    margin: 0;
}

.cart-items-list {
    padding: 24px 32px;
}

.cart-recommendations {
    padding: 24px 32px;
    border-top: 1px solid #e5e5e5;
}

.cart-recommendations h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.cart-discount-section {
    padding: 0 32px 24px;
    border-top: 1px solid #e5e5e5;
}

.cart-discount-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
}

.cart-discount-toggle .toggle-icon {
    margin-left: auto;
}

.cart-discount-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.discount-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
}

.discount-apply-btn {
    padding: 12px 24px;
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cart-items-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.cart-total-amount {
    font-size: 20px;
}

.cart-tax-note {
    font-size: 13px;
    color: #666666;
    text-align: center;
    margin: 0;
}

.cart-tax-note a {
    color: #3d5a5a;
    text-decoration: underline;
}

.cart-footer-actions {
    display: flex;
    gap: 12px;
}

.btn-view-cart {
    flex: 1;
    padding: 14px 24px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-cart:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-checkout {
    flex: 1;
    padding: 14px 24px;
    background-color: #3d5a5a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-checkout:hover {
    background-color: #2c4a4a;
}

@media (max-width: 768px) {
    .cart-drawer-content {
        max-width: 100%;
    }

    .cart-drawer-header {
        padding: 20px 24px;
    }

    .cart-empty-state {
        padding: 40px 24px;
    }

    .cart-drawer-footer {
        padding: 20px 24px;
    }
}

