@media (max-width: 768px) {
    main {
        margin-top: 40px !important;
    }
}
@media (max-width: 768px) {
    .fusion-title {
        font-size: 1.4rem;
        word-break: break-word;
        white-space: normal;
        text-align: center;
        padding: 0 10px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

/* Custom Arabic Fonts */
@font-face {
    font-family: 'Al Ghazalia';
    src: url('/fonts/al_ghazalia/Al-Ghazalia.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Arabian Night';
    src: url('/fonts/arabian_night/ArabianNight-CommercialUsed.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Arabic Ramadhan';
    src: url('/fonts/arabic_ramadhan/Arabic Ramadhan.otf') format('opentype'),
         url('/fonts/arabic_ramadhan/Arabic Ramadhan.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Arab Dances';
    src: url('/fonts/arab_dances/ArabDances.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Scrolling Free Shipping Banner */
.scrolling-banner {
    background: linear-gradient(45deg, #03c6fb 0%, #0284c7 50%, #03c6fb 100%);
    color: white;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border-top: 2px solid #38bdf8;
    border-bottom: 2px solid #38bdf8;
}

.banner-track {
    display: flex;
    width: 200%;
    animation: scroll-left 30s linear infinite;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-item {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-separator {
    color: #38bdf8;
    font-size: 20px;
    font-weight: bold;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.scrolling-banner:hover .banner-track {
    animation-play-state: paused;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .scrolling-banner {
        padding: 12px 0;
    }
    
    .banner-content {
        font-size: 14px;
        gap: 30px;
    }
    
    .banner-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .banner-content {
        font-size: 13px;
        gap: 25px;
    }
    
    .banner-track {
        animation-duration: 20s;
    }
}

/* Smooth scrolling for better animation experience */
html {
    scroll-behavior: smooth;
}

/* Universal fade-in animation system */
.fade-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-element.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation variations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.fade-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-scale.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Fast subtle fade for collections grid */
.fusion-grid.fade-up {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fusion-grid.fade-up.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Collections load instantly - no fade animations */
.categories-fusion .fusion-card {
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.05s ease-out;
}

/* But fade in the collection title */
.categories-fusion .fusion-title.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.categories-fusion .fusion-title.fade-up.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Faster staggered animation delays for homepage */
.fade-element:nth-child(1).fade-in { transition-delay: 0.02s; }
.fade-element:nth-child(2).fade-in { transition-delay: 0.04s; }
.fade-element:nth-child(3).fade-in { transition-delay: 0.06s; }
.fade-element:nth-child(4).fade-in { transition-delay: 0.08s; }
.fade-element:nth-child(5).fade-in { transition-delay: 0.1s; }
.fade-element:nth-child(6).fade-in { transition-delay: 0.12s; }
.fade-element:nth-child(7).fade-in { transition-delay: 0.14s; }
.fade-element:nth-child(8).fade-in { transition-delay: 0.16s; }
.fade-element:nth-child(9).fade-in { transition-delay: 0.18s; }
.fade-element:nth-child(10).fade-in { transition-delay: 0.2s; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .fade-element,
    .fade-up,
    .fade-left,
    .fade-right,
    .fade-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #03c6fb;
    font-size: 18px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #03c6fb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.dropdown-arrow {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #03c6fb;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    color: #fff;
    background-color: rgba(3, 198, 251, 0.1);
}

/* Search Bar */
.search-bar {
    flex: 0 1 400px;
    max-width: 400px;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #03c6fb;
    box-shadow: 0 0 0 2px rgba(3, 198, 251, 0.2);
    background-color: #444;
}

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

.search-icon {
    position: absolute;
    left: 15px;
    color: #999;
    pointer-events: none;
    z-index: 2;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-link {
    display: flex;
    align-items: center;
    color: #03c6fb;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.action-link:hover {
    color: #fff;
    background-color: rgba(3, 198, 251, 0.1);
}

.cart-icon {
    position: relative;
    padding: 0.5rem;
    color: #03c6fb;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    text-decoration: none;
}

.cart-icon:hover {
    color: #fff;
    background-color: rgba(3, 198, 251, 0.1);
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #03c6fb;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #03c6fb;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.user-btn:hover {
    background-color: rgba(3, 198, 251, 0.1);
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-initials {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.user-name {
    font-weight: 500;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.user-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.user-info {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.user-info-email {
    font-size: 12px;
    color: #666;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.dropdown-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-menu-item:hover {
    background-color: #f8f9fa;
}

.dropdown-menu-item svg {
    color: #666;
}

.logout-btn {
    color: #dc3545;
}

.logout-btn svg {
    color: #dc3545;
}

.logout-btn:hover {
    background-color: #fff5f5;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #03c6fb;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #000;
    border-top: 1px solid #333;
    padding: 1rem 0;
}

.mobile-nav-link {
    padding: 1rem 2rem;
    color: #03c6fb;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
    background-color: rgba(3, 198, 251, 0.1);
    border-left-color: #03c6fb;
}

/* Mobile dropdown */
.mobile-dropdown {
    border-left: 3px solid transparent;
}

.mobile-dropdown-toggle {
    padding: 1rem 2rem;
    color: #03c6fb;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-dropdown-toggle::after {
    content: '▼';
    font-size: 12px;
    float: right;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle:hover {
    color: #fff;
    background-color: rgba(3, 198, 251, 0.1);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background-color: #111;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
}

.mobile-dropdown-item {
    display: block;
    padding: 0.8rem 3rem;
    color: #03c6fb;
    font-size: 16px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown-item:hover {
    color: #fff;
    background-color: rgba(3, 198, 251, 0.1);
    border-left-color: #03c6fb;
}

/* Main content spacing */
main {
    margin-top: 80px; /* Account for fixed header */
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 8rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    min-width: 150px;
    justify-content: center;
}

.btn-primary {
    background-color: #03c6fb;
    color: #fff;
    border-color: #03c6fb;
}

.btn-primary:hover {
    background-color: #029ad1;
    border-color: #029ad1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 198, 251, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

/* Categories Section (Original Style) */
.categories-title {
    font-size: 50px;
    text-align: center;
    font-family: "Amiri", serif;
    margin: 60px 0 40px 0;
    color: #333;
    font-weight: 700;
}

.categories {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 20px 60px;
}

.category-card {
    height: 400px;
    width: 325px;
    margin: 10px;
    display: flex;
    background-size: cover;
    background-position: center;
    transition: background-size 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.category-card h3 {
    font-size: 50px;
    text-align: center;
    align-content: center;
    width: 100%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

.category-card:hover {
    background-size: 120%;
    filter: brightness(1.5);
}

.gandouras {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/imgs/test.jpeg);
}

.gandouras:hover {
    background-position: top;
}



/* Fusion Style - Best of Both Worlds */
.categories-fusion {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fusion-title {
    text-align: center;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-family: "Cinzel", serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.fusion-title-text {
    font-family: "Cinzel", serif;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    letter-spacing: 1px;
}

/* Option 1: Text pops in on hover */
.option-1 .fusion-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.option-1:hover .fusion-content {
    opacity: 1;
    transform: translateY(0);
}

.option-1 .fusion-title-text {
    font-size: 2.8rem;
}

.option-1 .fusion-desc {
    display: block;
}

.option-1 .fusion-btn {
    display: none;
}

/* Option 2: Title in center of card */
.option-2 .fusion-content.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
    flex-direction: column;
}

.option-2 .fusion-title-text {
    font-size: 2.8rem;
    text-align: center;
    width: 100%;
    margin: 0 0 0.5rem 0;
    opacity: 1;
    transform: none;
}

.option-2 .fusion-desc {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    margin: 0;
}

.option-2:hover .fusion-desc {
    opacity: 1;
    transform: translateY(0);
}

.option-2 .fusion-btn {
    display: none;
}

/* Option 3: Always visible text with Al Ghazalia + Cinzel */
.option-3 .fusion-title-text {
    font-family: "Al Ghazalia", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 3.6rem;
}

.option-3 .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0;
}

.option-3 .fusion-btn {
    display: none;
}

.fusion-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fusion-card {
    position: relative;
    height: 450px;
    width: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.05s ease-out;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fusion-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background-size: 120%;
    filter: brightness(1.3);
}

.fusion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    transition: all 0.05s ease-out;
}

.fusion-card:hover .fusion-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.fusion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    text-align: center;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.05s ease-out;
    z-index: 10;
}

.fusion-card:hover .fusion-content {
    transform: translateY(0);
    opacity: 1;
}

/* Fix for centered content - maintain centering on hover */
.option-2 .fusion-card:hover .fusion-content.centered,
.option-2:hover .fusion-content.centered {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.option-2:hover .fusion-title-text {
    opacity: 1;
    transform: none;
}

/* Font Testing Section - Comprehensive Styles */
.font-test {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    margin-top: 0;
    padding: 4rem 0;
}

.font-test .fusion-title {
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Cinzel Variations */
.cinzel-bottom .fusion-title-text,
.cinzel-center .fusion-title-text,
.cinzel-desc .fusion-title-text {
    font-family: "Cinzel", serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.cinzel-desc .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Cinzel Option 3 - Always visible with Al Ghazalia + Cinzel */
.cinzel-option-3 .fusion-title-text {
    font-family: "Al Ghazalia", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.cinzel-option-3 .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 1rem;
    display: block;
}

/* Playfair Option 3 - Always visible with Al Ghazalia + Cinzel */
.playfair-option-3 .fusion-title-text {
    font-family: "Al Ghazalia", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.playfair-option-3 .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 1rem;
    display: block;
}

/* Al Ghazalia Variations - Matching first row styles */
.ghazalia-option-1 .fusion-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.ghazalia-option-1:hover .fusion-content {
    opacity: 1;
    transform: translateY(0);
}

.ghazalia-option-1 .fusion-title-text {
    font-family: "Al Ghazalia", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.ghazalia-option-1 .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-size: 1rem;
    display: block;
    letter-spacing: 0.5px;
}

.ghazalia-option-2 .fusion-content.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
    flex-direction: column;
}

.ghazalia-option-2 .fusion-title-text {
    font-family: "Al Ghazalia", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
    text-align: center;
    width: 100%;
    margin: 0 0 0.5rem 0;
    opacity: 1;
    transform: none;
}

.ghazalia-option-2 .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    margin: 0;
    letter-spacing: 0.5px;
}

.ghazalia-option-2:hover .fusion-desc {
    opacity: 1;
    transform: translateY(0);
}

.ghazalia-option-2:hover .fusion-content.centered {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.ghazalia-option-2:hover .fusion-title-text {
    opacity: 1;
    transform: none;
}

.ghazalia-option-3 .fusion-title-text {
    font-family: "Al Ghazalia", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.ghazalia-option-3 .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Cinzel Option 3 - Always visible with Al Ghazalia + Cinzel */
.cinzel-option-3 .fusion-title-text {
    font-family: "Al Ghazalia", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.cinzel-option-3 .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 1rem;
    display: block;
}

/* Playfair Option 3 - Always visible with Al Ghazalia + Cinzel */
.playfair-option-3 .fusion-title-text {
    font-family: "Al Ghazalia", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.playfair-option-3 .fusion-desc {
    font-family: "Cinzel", serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 1rem;
    display: block;
}

/* Arabian Night Variations */
.arabian-bottom .fusion-title-text,
.arabian-center .fusion-title-text,
.arabian-desc .fusion-title-text {
    font-family: "Arabian Night", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.arabian-desc .fusion-desc {
    font-family: "Arabian Night", serif;
    font-weight: normal;
    font-size: 1rem;
}

/* Arabic Ramadhan Variations */
.ramadhan-bottom .fusion-title-text,
.ramadhan-center .fusion-title-text,
.ramadhan-desc .fusion-title-text {
    font-family: "Arabic Ramadhan", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.ramadhan-desc .fusion-desc {
    font-family: "Arabic Ramadhan", serif;
    font-weight: normal;
    font-size: 1rem;
}

/* Arab Dances Variations */
.dances-bottom .fusion-title-text,
.dances-center .fusion-title-text,
.dances-desc .fusion-title-text {
    font-family: "Arab Dances", serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

.dances-desc .fusion-desc {
    font-family: "Arab Dances", serif;
    font-weight: normal;
    font-size: 1rem;
}

/* Centered content positioning for all font variations */
.font-test .cinzel-center .fusion-content.centered,
.font-test .playfair-center .fusion-content.centered,
.font-test .ghazalia-center .fusion-content.centered,
.font-test .arabian-center .fusion-content.centered,
.font-test .ramadhan-center .fusion-content.centered,
.font-test .dances-center .fusion-content.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
}

/* Hover fixes for centered content */
.font-test .cinzel-center:hover .fusion-content.centered,
.font-test .playfair-center:hover .fusion-content.centered,
.font-test .ghazalia-center:hover .fusion-content.centered,
.font-test .arabian-center:hover .fusion-content.centered,
.font-test .ramadhan-center:hover .fusion-content.centered,
.font-test .dances-center:hover .fusion-content.centered {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.fusion-arabic {
    font-size: 2.8rem;
    font-family: "Amiri", serif;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.fusion-english {
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #03c6fb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fusion-desc {
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
    line-height: 1.4;
}

.fusion-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #03c6fb, #029ad1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fusion-btn:hover {
    background: transparent;
    border-color: #03c6fb;
    color: #03c6fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 198, 251, 0.3);
}

.gandouras-card {
    background-image: url(/imgs/taliouine-rose-1.png);
    background-position: center 0%;
}

.djellabas-card {
    background-image: url(/imgs/djellaba.png);
    background-position: center 20%;
}

.qamees-card {
    background-image: url(/imgs/qamees.JPG);
    background-position: center 0%;
}

.shemaghs-card {
    background-image: url(/imgs/shemagh.JPEG);
    background-position: center 100%;
}

/* Force all collection cards to have identical hover behavior */
.gandouras-card,
.djellabas-card,
.qamees-card,
.shemaghs-card {
    transition: all 0.05s ease-out !important;
}

.gandouras-card:hover,
.djellabas-card:hover,
.qamees-card:hover,
.shemaghs-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
    background-size: 120% !important;
    filter: brightness(1.3) !important;
}

.kufi-card {
    background-image: url(/imgs/kufi.JPG);
    background-position: center top;
    background-size: 180%;
    transition: all 0.05s ease-out !important;
}

.kufi-card:hover {
    background-size: 200%;
}

/* Modern Style Categories */
.categories-modern {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.modern-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    font-family: "Amiri", serif;
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.modern-card {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
    transform-origin: center center;
}

.modern-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-front {
    position: relative;
    background-color: #000;
}

.card-back {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.card-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Amiri", serif;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card-subtitle {
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.card-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #03c6fb;
}

.modern-card:hover .card-arrow {
    transform: translateX(5px);
}

.card-back-content {
    color: white;
    text-align: center;
    padding: 2rem;
}

.card-back-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: "Amiri", serif;
    color: #03c6fb;
}

.card-back-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: "Open Sans", sans-serif;
    opacity: 0.9;
}

.card-back-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-family: "Open Sans", sans-serif;
}

.card-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #03c6fb;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #03c6fb;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Open Sans", sans-serif;
}

.card-link:hover {
    background-color: transparent;
    color: #03c6fb;
    transform: translateY(-2px);
}

/* Footer Styles */
.site-footer {
    background-color: #111;
    color: #fff;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #03c6fb;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: #03c6fb;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.contact-item svg {
    color: #03c6fb;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #03c6fb;
}

.newsletter-form {
    margin: 1.5rem 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background-color: #333;
    border: 1px solid #555;
    border-right: none;
    border-radius: 25px 0 0 25px;
    color: #fff;
    font-size: 14px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #03c6fb;
}

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

.newsletter-btn {
    padding: 12px 16px;
    background-color: #03c6fb;
    border: 1px solid #03c6fb;
    border-radius: 0 25px 25px 0;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #029ad1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: #ccc;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #03c6fb;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem;
    background-color: #000;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #03c6fb;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 14px;
}

.powered-by-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-bar {
        flex: 0 1 300px;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-content .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 1rem;
        gap: 1rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .search-bar {
        flex: 1;
        max-width: none;
    }
    
    .search-input {
        padding: 10px 12px 10px 40px;
        font-size: 13px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1rem 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #header {
        padding: 0.8rem;
    }
    
    .search-input {
        padding: 8px 10px 8px 35px;
        font-size: 12px;
    }
    
    .search-icon {
        left: 10px;
    }
    
    .logo {
        height: 45px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 130px;
    }
}

@media (max-width: 480px) {
    #header {
        padding: 0.8rem;
    }
    
    .search-input {
        padding: 8px 10px 8px 35px;
        font-size: 12px;
    }
    
    .search-icon {
        left: 10px;
    }
    
    .logo {
        height: 45px;
    }
}

/* Featured Products Carousel */
.featured-products {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: "Cinzel", serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-family: "Open Sans", sans-serif;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
}

.product-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.quick-view-btn {
    background: #03c6fb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Open Sans", sans-serif;
}

.quick-view-btn:hover {
    background: #029ad1;
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: "Open Sans", sans-serif;
}

.product-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.review-count {
    color: #666;
    font-size: 0.85rem;
    font-family: "Open Sans", sans-serif;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #03c6fb;
    font-family: "Open Sans", sans-serif;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #03c6fb;
    transform: scale(1.2);
}

/* Featured Products CTA */
.featured-cta {
    text-align: center;
    margin-top: 3rem;
}

.featured-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .featured-products {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .carousel-container {
        padding: 0 1rem;
    }
    
    .product-card {
        flex: 0 0 280px;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: 0.5rem;
    }
    
    .carousel-btn-next {
        right: 0.5rem;
    }
    
    .featured-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Shop the Look Section - Premium Modern Design */
.shop-the-look {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 25%, #f1f3f4 50%, #ffffff 75%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.shop-the-look::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f0f0f0" fill-opacity="0.05"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    pointer-events: none;
    opacity: 0.6;
}

.look-slider-container {
    position: relative;
    margin: 1.5rem auto;
    width: 100%;
    padding: 0 10px;
    max-width: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border: none;
    display: flex;
    flex-direction: column;
    z-index: 50;
}

@media (max-width: 768px) {
    .look-slider-container {
        padding: 0 5px;
    }
    
    .look-slider {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
        overflow: hidden;
    }
    
    .look-slide {
        position: relative;
        width: 95%;
        max-width: none;
        background: white;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04), 0 4px 15px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.8);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: none;
        z-index: 100;
        display: none;
        margin: 0 auto;
    }
    
    .look-slide.active {
        opacity: 1;
        transform: none;
        z-index: 200;
        display: block;
    }
    
    .look-slide.peek-left,
    .look-slide.peek-right {
        display: none;
    }
    
    .peek-nav-left,
    .peek-nav-right {
        display: none;
    }
}

.look-header-wrapper {
    width: 100%;
    background: white;
    padding: 40px 0 100px 0;
    z-index: 1;
    position: static;
    margin-bottom: 80px;
}

.section-header {
    position: static;
    z-index: 1;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    box-shadow: none;
}

.look-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.look-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.look-slide-content {
    position: absolute;
    width: 75vw;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04), 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100%);
    z-index: 310;
}

.look-slide-content.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 320;
}

.look-slide-content.peek-left {
    opacity: 0.4;
    transform: translateX(-60%) scale(0.85);
    z-index: 315;
}

.look-slide-content.peek-right {
    opacity: 0.4;
    transform: translateX(60%) scale(0.85);
    z-index: 315;
}

.look-slide-bg {
    position: absolute;
    width: 75vw;
    height: 500px;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100%);
    z-index: 100;
}

.look-slide-bg.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 110;
}

.look-slide-bg.peek-left {
    opacity: 0.4;
    transform: translateX(-60%) scale(0.85);
    z-index: 105;
}

.look-slide-bg.peek-right {
    opacity: 0.4;
    transform: translateX(60%) scale(0.85);
    z-index: 105;
}

@media (min-width: 769px) {
    .look-slide {
        position: absolute;
        width: calc(100% - 40px);
        max-width: 75vw;
        background: white;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04), 0 4px 15px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.8);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateX(100%);
        z-index: 100;
    }
}

.look-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 200;
}

.look-slide.peek-left {
    opacity: 0.4;
    transform: translateX(-60%) scale(0.85);
    z-index: 150;
}

.look-slide.peek-right {
    opacity: 0.4;
    transform: translateX(60%) scale(0.85);
    z-index: 150;
}

.peek-nav-left,
.peek-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 300;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.peek-nav-left {
    left: 20px;
}

.peek-nav-right {
    right: 20px;
}

.peek-nav-left:hover,
.peek-nav-right:hover {
    background: #f8f9fa;
    border-color: #03c6fb;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(3, 198, 251, 0.2);
}

.peek-nav-left svg,
.peek-nav-right svg {
    color: #333;
    transition: color 0.3s ease;
}

.peek-nav-left:hover svg,
.peek-nav-right:hover svg {
    color: #03c6fb;
}

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

/* Enhanced Theme Colors with Sophisticated Gradients */
.look-slide[data-theme="brown-blue"] {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 25%, #87CEEB 75%, #B0E0E6 100%);
}

.look-slide[data-theme="brown-blue"] .set-name-box,
.look-slide[data-theme="brown-blue"] .set-pricing {
    background: rgba(139, 69, 19, 0.1);
    border-color: rgba(139, 69, 19, 0.3);
}

.look-slide[data-theme="brown-blue"] .set-title {
    color: #8B4513;
}

.look-slide[data-theme="brown-blue"] .set-description {
    color: #87CEEB;
}

.look-slide[data-theme="brown-blue"] .product-link-btn,
.look-slide[data-theme="brown-blue"] .add-set-btn {
    background: #8B4513;
    border-color: #8B4513;
}

.look-slide[data-theme="brown-blue"] .price,
.look-slide[data-theme="brown-blue"] .individual-total,
.look-slide[data-theme="brown-blue"] .set-price,
.look-slide[data-theme="brown-blue"] .savings {
    color: #87CEEB;
    font-weight: bold;
}

.look-slide[data-theme="white-red"] {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8FF 25%, #DC143C 75%, #FF6B6B 100%);
}

.look-slide[data-theme="white-red"] .set-name-box,
.look-slide[data-theme="white-red"] .set-pricing {
    background: rgba(220, 20, 60, 0.1);
    border-color: rgba(220, 20, 60, 0.3);
}

.look-slide[data-theme="white-red"] .set-title {
    color: #DC143C;
}

.look-slide[data-theme="white-red"] .set-description {
    color: #FF6B6B;
}

.look-slide[data-theme="white-red"] .product-link-btn,
.look-slide[data-theme="white-red"] .add-set-btn {
    background: #DC143C;
    border-color: #DC143C;
}

.look-slide[data-theme="white-red"] .price,
.look-slide[data-theme="white-red"] .individual-total,
.look-slide[data-theme="white-red"] .set-price,
.look-slide[data-theme="white-red"] .savings {
    color: #DC143C;
    font-weight: bold;
}

.look-slide[data-theme="olive-gold"] {
    background: linear-gradient(135deg, #808000 0%, #9ACD32 25%, #FFD700 75%, #FFA500 100%);
}

.look-slide[data-theme="olive-gold"] .set-name-box,
.look-slide[data-theme="olive-gold"] .set-pricing {
    background: rgba(128, 128, 0, 0.1);
    border-color: rgba(128, 128, 0, 0.3);
}

.look-slide[data-theme="olive-gold"] .set-title {
    color: #808000;
}

.look-slide[data-theme="olive-gold"] .set-description {
    color: #9ACD32;
}

.look-slide[data-theme="olive-gold"] .product-link-btn,
.look-slide[data-theme="olive-gold"] .add-set-btn {
    background: #808000;
    border-color: #808000;
}

.look-slide[data-theme="olive-gold"] .price,
.look-slide[data-theme="olive-gold"] .individual-total,
.look-slide[data-theme="olive-gold"] .set-price,
.look-slide[data-theme="olive-gold"] .savings {
    color: #FFD700;
    font-weight: bold;
}

.look-slide[data-theme="gray-pink"] {
    background: linear-gradient(135deg, #808080 0%, #A9A9A9 25%, #FFC0CB 75%, #FFB6C1 100%);
}

.look-slide[data-theme="gray-pink"] .set-name-box,
.look-slide[data-theme="gray-pink"] .set-pricing {
    background: rgba(128, 128, 128, 0.1);
    border-color: rgba(128, 128, 128, 0.3);
}

.look-slide[data-theme="gray-pink"] .set-title {
    color: #808080;
}

.look-slide[data-theme="gray-pink"] .set-description {
    color: #A9A9A9;
}

.look-slide[data-theme="gray-pink"] .product-link-btn,
.look-slide[data-theme="gray-pink"] .add-set-btn {
    background: #808080;
    border-color: #808080;
}

.look-slide[data-theme="gray-pink"] .price,
.look-slide[data-theme="gray-pink"] .individual-total,
.look-slide[data-theme="gray-pink"] .set-price,
.look-slide[data-theme="gray-pink"] .savings {
    color: #FFC0CB;
    font-weight: bold;
}

.look-slide[data-theme="dark-brown-gold"] {
    background: linear-gradient(135deg, #654321 0%, #8B4513 25%, #FFD700 75%, #FFA500 100%);
}

.look-slide[data-theme="dark-brown-gold"] .set-name-box,
.look-slide[data-theme="dark-brown-gold"] .set-pricing {
    background: rgba(101, 67, 33, 0.1);
    border-color: rgba(101, 67, 33, 0.3);
}

.look-slide[data-theme="dark-brown-gold"] .set-title {
    color: #654321;
}

.look-slide[data-theme="dark-brown-gold"] .set-description {
    color: #8B4513;
}

.look-slide[data-theme="dark-brown-gold"] .product-link-btn,
.look-slide[data-theme="dark-brown-gold"] .add-set-btn {
    background: #654321;
    border-color: #654321;
}

.look-slide[data-theme="dark-brown-gold"] .price,
.look-slide[data-theme="dark-brown-gold"] .individual-total,
.look-slide[data-theme="dark-brown-gold"] .set-price,
.look-slide[data-theme="dark-brown-gold"] .savings {
    color: #FFD700;
    font-weight: bold;
}

.look-slide[data-theme="pure-white"] {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8FF 25%, #F0F8FF 75%, #FFFAFA 100%);
}

.look-slide[data-theme="pure-white"] .set-name-box,
.look-slide[data-theme="pure-white"] .set-pricing {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(192, 192, 192, 0.4);
}

.look-slide[data-theme="pure-white"] .set-title {
    color: #C0C0C0;
}

.look-slide[data-theme="pure-white"] .set-description {
    color: #D3D3D3;
}

.look-slide[data-theme="pure-white"] .product-link-btn,
.look-slide[data-theme="pure-white"] .add-set-btn {
    background: #C0C0C0;
    border-color: #C0C0C0;
}

.look-slide[data-theme="pure-white"] .price,
.look-slide[data-theme="pure-white"] .individual-total,
.look-slide[data-theme="pure-white"] .set-price,
.look-slide[data-theme="pure-white"] .savings {
    color: #C0C0C0;
    font-weight: bold;
}

.look-slide[data-theme="essential-white"] {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 25%, #F0F0F0 75%, #FAFAFA 100%);
}

.look-slide[data-theme="essential-white"] .set-name-box,
.look-slide[data-theme="essential-white"] .set-pricing {
    background: rgba(108, 117, 125, 0.1);
    border-color: rgba(108, 117, 125, 0.3);
}

.look-slide[data-theme="essential-white"] .set-title {
    color: #6C757D;
}

.look-slide[data-theme="essential-white"] .set-description {
    color: #A9A9A9;
}

.look-slide[data-theme="essential-white"] .product-link-btn,
.look-slide[data-theme="essential-white"] .add-set-btn {
    background: #6C757D;
    border-color: #6C757D;
}

.look-slide[data-theme="essential-white"] .price,
.look-slide[data-theme="essential-white"] .individual-total,
.look-slide[data-theme="essential-white"] .set-price,
.look-slide[data-theme="essential-white"] .savings {
    color: #6C757D;
    font-weight: bold;
}

/* Create Your Own Combo Slide Styles */
.look-slide[data-theme="create-your-own"] {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.look-slide[data-theme="create-your-own"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 198, 251, 0.1) 0%, rgba(3, 198, 251, 0.05) 50%, rgba(3, 198, 251, 0.1) 100%);
    z-index: 1;
}

.custom-combo-content {
    position: relative;
    z-index: 2;
}

.custom-combo-image {
    background: linear-gradient(135deg, #000 0%, #2a2a2a 50%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(3, 198, 251, 0.3);
}

.custom-combo-visual {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
}

.combo-builder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 200px;
}

.combo-item.placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(3, 198, 251, 0.6);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; border-color: rgba(3, 198, 251, 0.6); }
    50% { transform: scale(1.05); opacity: 1; border-color: #03c6fb; }
}

.combo-item.placeholder:hover {
    background: rgba(3, 198, 251, 0.2);
    border-color: #03c6fb;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 198, 251, 0.3);
}

.item-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.combo-item span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.plus-icon {
    font-size: 3rem;
    font-weight: bold;
    color: #03c6fb;
    text-shadow: 0 0 20px rgba(3, 198, 251, 0.8);
    animation: rotate 3s linear infinite;
    margin: 0.5rem 0;
}

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

.creativity-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #03c6fb;
    text-shadow: 0 0 10px rgba(3, 198, 251, 0.5);
    letter-spacing: 1px;
}

.custom-combo-info {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(3, 198, 251, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.custom-title {
    background: linear-gradient(135deg, #000, #03c6fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.custom-description {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.custom-combo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(3, 198, 251, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 198, 251, 0.1);
}

.feature-item:hover {
    background: rgba(3, 198, 251, 0.1);
    transform: translateX(5px);
    border-color: rgba(3, 198, 251, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000, #03c6fb);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
}

.feature-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

.custom-combo-action {
    background: none;
    padding: 0;
}

.custom-pricing-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.combo-discount-info {
    font-size: 1rem;
    font-weight: 700;
    color: #03c6fb;
    background: rgba(3, 198, 251, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(3, 198, 251, 0.2);
}

.auto-detect-info {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.custom-combo-btn {
    background: linear-gradient(135deg, #000 0%, #03c6fb 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(3, 198, 251, 0.3);
    border: 2px solid transparent;
}

.custom-combo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(3, 198, 251, 0.5);
    background: linear-gradient(135deg, #03c6fb 0%, #000 100%);
    border-color: rgba(3, 198, 251, 0.5);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.custom-combo-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.look-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.3rem;
    padding: 0.1rem;
    align-items: start;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    isolation: isolate;
}

.look-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    background: white;
    padding: 8px;
}

.look-image:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.combo-image-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.combo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.look-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-radius: 0 0 15px 15px;
    transform: translateY(15px);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.look-image:hover .look-overlay {
    transform: translateY(0);
    opacity: 1;
}

.look-overlay h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.look-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.look-products {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.3rem;
    border-radius: 9px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
    contain: layout;
}

.set-name-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08), rgba(160, 82, 45, 0.05));
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.3rem;
    border: 1px solid rgba(139, 69, 19, 0.12);
    position: relative;
    overflow: hidden;
}

.set-name-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #CD853F, #A0522D, #8B4513);
    opacity: 0.7;
}

.set-title {
    font-size: 1rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0 0 0.2rem 0;
    text-shadow: 0 1px 3px rgba(139, 69, 19, 0.1);
    letter-spacing: 0.3px;
    font-family: "Cinzel", serif;
}

.set-description {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.1rem;
    margin: 0;
    align-items: start;
    justify-items: stretch;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.2rem;
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 6px;
}

.product-item {
    text-align: center;
    background: white;
    padding: 0.8rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    height: auto;
    min-height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(139, 69, 19, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #CD853F, #A0522D, #8B4513);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.product-item:hover::before {
    transform: scaleX(1);
}



.product-item:hover {
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 69, 19, 0.2);
    background: linear-gradient(145deg, #ffffff, #fcfcfc);
    z-index: 2;
}

.product-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 auto 0.15rem auto;
    display: block;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.2s ease;
}

.product-item:hover .product-thumb {
    border-color: rgba(139, 69, 19, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-info {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 0.3rem;
    min-height: fit-content;
}

.product-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.2rem 0;
    color: #333;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.product-info .price {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8B4513;
    margin: 0 0 0.1rem 0;
}

.product-link-btn {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    background: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
}



.product-link-btn:hover {
    background: linear-gradient(135deg, #A0522D, #CD853F);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    color: white;
}

.look-action {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(139, 69, 19, 0.1);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.03), rgba(160, 82, 45, 0.03));
    border-radius: 15px;
    margin-top: 1rem;
    padding: 2rem;
    position: relative;
}

.look-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    border-radius: 0 0 10px 10px;
}

.set-pricing {
    margin-bottom: 0.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.2rem;
    border-radius: 3px;
}

.set-pricing span {
    display: block;
}

.individual-total {
    color: #6c757d;
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.8;
    font-weight: 400;
}

.set-price {
    font-size: 2rem;
    font-weight: 800;
    color: #8B4513;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
    letter-spacing: 0.5px;
}

.savings {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.08));
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(40, 167, 69, 0.2);
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.1);
}

.add-set-btn {
    background: #8B4513;
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    font-size: 0.5rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
}

.add-set-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.add-set-btn:hover::before {
    left: 100%;
}

.add-set-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #A0522D, #CD853F);
}

.add-set-btn:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

/* Enhanced Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0.3rem 0;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.slider-btn {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(139, 69, 19, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1rem;
    color: #8B4513;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.slider-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.slider-btn:hover::before {
    transform: scale(1);
}

.slider-btn:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    border-color: #8B4513;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.slider-dots {
    display: flex;
    gap: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
    z-index: -1;
}

.dot.active,
.dot:hover {
    background: #8B4513;
    transform: scale(1.4);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    border-color: #8B4513;
}

.dot:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .look-content {
        grid-template-columns: 350px 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 968px) {
    .look-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .look-image {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 568px) {
    .shop-the-look {
        padding: 4rem 0;
    }
    
    .look-slider-container {
        margin: 2rem 1rem;
    }
    
    .look-content {
        padding: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .product-item {
        padding: 1rem;
        min-height: 160px;
    }
    
    .product-thumb {
        width: 60px;
        height: 60px;
    }
    
    .slider-controls {
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .add-set-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    /* Custom combo responsive styles */
    .combo-builder-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        max-width: 160px;
    }
    
    .combo-item.placeholder {
        padding: 0.75rem 0.25rem;
    }
    
    .item-icon {
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }
    
    .combo-item span {
        font-size: 0.7rem;
    }
    
    .plus-icon {
        font-size: 2rem;
        margin: 0.25rem 0;
    }
    
    .creativity-text {
        font-size: 1rem;
    }
    
    .custom-combo-features {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .feature-text h4 {
        font-size: 0.85rem;
    }
    
    .feature-text p {
        font-size: 0.75rem;
    }
    
    .custom-combo-btn {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Review card styles for both homepage and reviews page */
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.2rem 0;
}

.verified-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
    display: inline-block;
    margin-top: 0.3rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-rating .star {
    color: #ffc107;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
}

.review-rating .star:not(.filled) {
    color: #e9ecef;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
}

.review-comment {
    color: #495057;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.review-date {
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-purchased {
    color: #6c757d;
    font-size: 0.75rem;
    margin: 0;
}

.product-link {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.product-link:hover {
    color: #A0522D;
    text-decoration: underline;
}

/* Cart item product links */
.cart-item .product-link {
    color: inherit;
    text-decoration: none;
}

.cart-item .product-link:hover {
    color: #8B4513;
    text-decoration: none;
}

.cart-item .product-link h3 {
    transition: color 0.2s ease;
}

.cart-item .product-link:hover h3 {
    color: #8B4513;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .customer-reviews {
        padding: 3rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .review-card {
        height: 350px;
    }
    
    .customer-badge {
        padding: 1.5rem 1rem 1rem;
    }
    
    .customer-name {
        font-size: 1.1rem;
    }
    
    .customer-username {
        font-size: 0.85rem;
    }
    
    .review-overlay {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Reviews Summary Stats */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #03c6fb;
    margin-bottom: 0.5rem;
    font-family: "Open Sans", sans-serif;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .customer-reviews {
        padding: 3rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .customer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .customer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Color Filter Styles */
.color-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 8px; /* Much larger vertical gap to push bottom row lower */
    margin-top: 8px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.color-option:hover {
    background-color: #f8f9fa;
}

.color-option input[type="checkbox"] {
    display: none;
}

.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-bottom: 2px; /* Reduced from 4px to move text closer to circles */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.color-option:hover .color-circle {
    transform: scale(1.1);
}

.color-option input[type="checkbox"]:checked + .color-circle {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #d4a574;
}

.color-name {
    font-size: 11px;
    color: #666;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.color-option input[type="checkbox"]:checked ~ .color-name {
    color: #d4a574;
    font-weight: 600;
}

/* Size Filter Styles */
.size-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.size-option {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.size-option input[type="checkbox"] {
    display: none;
}

.size-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
    background: white;
    font-size: 12px;
    letter-spacing: -0.5px;
}

.size-option:hover .size-label {
    border-color: #000000;
    color: #000000;
}

.size-option input[type="checkbox"]:checked + .size-label {
    background-color: #000000;
    border-color: #000000;
    color: white;
}

/* Product Page Size States */
.size-option.available {
    cursor: pointer;
    opacity: 1;
}

.size-option.unavailable {
    cursor: not-allowed;
    opacity: 0.4;
    background: #f5f5f5;
    color: #999;
    border: 2px solid #e0e0e0;
}

.size-option.unavailable:hover {
    border-color: #e0e0e0 !important;
    color: #999 !important;
}

.size-option.out-of-stock {
    cursor: not-allowed;
    background: #ffebee;
    border: 2px solid #ffcdd2;
    color: #c62828;
    position: relative;
}

.size-option.out-of-stock:hover {
    border-color: #ffcdd2 !important;
    color: #c62828 !important;
}

.unavailable-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: #999;
}

.sold-out-indicator {
    font-size: 10px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c62828;
    color: white;
    padding: 2px 4px;
    border-radius: 2px;
    white-space: nowrap;
}

.low-stock-indicator {
    font-size: 9px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: white;
    padding: 1px 3px;
    border-radius: 2px;
    white-space: nowrap;
}

/* Interactive Star Rating Filter Styles */
.rating-filter {
    margin-top: 8px;
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    justify-content: flex-start;
}

.star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star:hover {
    color: #ffc107;
    transform: scale(1.1);
}

.star.active {
    color: #ffc107;
}

.star.hovered {
    color: #ffc107;
}

.rating-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.rating-text.has-selection {
    color: #d4a574;
    font-weight: 500;
}

/* Featured Products Carousel Styles */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa !important;
}

/* Keep product cards white */
.featured-products .shop-product-card {
    background: white !important;
}

/* Keep button styling */
.featured-products .btn {
    background: #03c6fb !important;
    color: white !important;
}

/* Keep carousel indicators styling */
.featured-products .carousel-indicator {
    background: #bdc3c7 !important;
}

.featured-products .carousel-indicator.active {
    background: #03c6fb !important;
}

/* Keep carousel buttons styling */
.featured-products .carousel-btn {
    background: white !important;
    color: #2c3e50 !important;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    background: transparent;
}

.carousel-wrapper {
    overflow: hidden;
    background: transparent;
}

.carousel-track {
    /* Force single horizontal row for carousel */
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 2rem;
    transition: transform 0.3s ease;
    overflow: visible;
    align-items: flex-start;
    background: white;
}

.carousel-track .shop-product-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
}

/* Remove all custom product card styling - use shop.css styling */

.badge.bestseller {
    background: #03c6fb;
    color: white;
}

.badge.new {
    background: #16A34A;
    color: white;
}

/* Sold out badge for product cards */
.sold-out-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Disabled button styles */
.add-to-cart-btn.disabled,
.buy-now-btn.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.add-to-cart-btn.disabled:hover,
.buy-now-btn.disabled:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    transform: none !important;
}

/* Sold out message styling */
.sold-out-message {
    color: #dc3545 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
}

.product-details {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: "Open Sans", sans-serif;
}

.product-category {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-rating .stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-count {
    color: #666;
    font-size: 0.8rem;
}

.product-price {
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #03c6fb;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #2c3e50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #6c757d;
}

.carousel-btn:disabled:hover {
    background: #f8f9fa;
    color: #6c757d;
    transform: translateY(-50%);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

/* Free Shipping Styles for Shipping Calculator */
.shipping-option.free-option {
    border-color: #27ae60;
    background: #f0f8f4;
}

.shipping-option.free-option:hover {
    border-color: #219a52;
    background: #e8f5ed;
}

.shipping-option.free-option.selected {
    border-color: #27ae60;
    background: #d5f2e3;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.free-badge {
    color: #27ae60;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.shipping-price.free-price {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

.free-shipping-text {
    color: #27ae60;
    font-weight: 700;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #03c6fb; /* Same blue as shop page */
}

.carousel-indicator:hover {
    background: #95a5a6;
}

.featured-cta {
    text-align: center;
    margin-top: 50px;
    background: transparent;
    padding: 0;
}

.no-products {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 2rem;
    grid-column: 1 / -1;
}

/* Use shop.css responsive grid - no custom responsive needed */

/* Shipping Calculator Styles */
.shipping-calculator {
    margin: 1.5rem 0;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #f8f9fa;
}

.shipping-calculator h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.shipping-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shipping-form .form-group {
    display: flex;
    flex-direction: column;
}

.shipping-form label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #555;
}

.shipping-form .form-control {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.shipping-form .form-control:focus {
    outline: none;
    border-color: #03c6fb;
    box-shadow: 0 0 0 3px rgba(3, 198, 251, 0.1);
}

.calculate-shipping-btn {
    background: linear-gradient(135deg, #03c6fb, #0299d1);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.calculate-shipping-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0299d1, #0275a8);
    transform: translateY(-2px);
}

.calculate-shipping-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.shipping-options {
    margin-top: 1.5rem;
}

.shipping-options h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.shipping-option:hover {
    border-color: #03c6fb;
    background: #f8fcff;
}

.shipping-option.selected {
    border-color: #03c6fb;
    background: #f0f9ff;
    box-shadow: 0 0 0 3px rgba(3, 198, 251, 0.1);
}

.shipping-radio {
    margin-right: 1rem;
    accent-color: #03c6fb;
}

.shipping-details {
    flex: 1;
}

.shipping-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.shipping-time {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.shipping-price {
    font-weight: 700;
    color: #03c6fb;
    font-size: 1rem;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.checkout-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive shipping calculator */
@media (max-width: 768px) {
    .shipping-calculator {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .shipping-option {
        padding: 0.75rem;
    }
    
    .shipping-form {
        gap: 0.75rem;
    }
}

/* Combo item styles */
.combo-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
    margin: 0.25rem 0;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.combo-item {
    border-left: 4px solid #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 142, 0.05));
}

.combo-price {
    color: #ff6b6b !important;
    font-weight: 600;
}

.combo-price small {
    color: #666;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.add-set-btn {
    background: linear-gradient(135deg, #03c6fb, #0099d9);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(3, 198, 251, 0.3);
}

.add-set-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 198, 251, 0.4);
}

.add-set-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Combo discount display styles */
.combo-discount-row {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 142, 0.1));
    border-left: 4px solid #ff6b6b;
    padding: 0.5rem !important;
    margin: 0.5rem 0;
    border-radius: 4px;
}

.combo-total-discount {
    color: #ff6b6b !important;
    font-weight: 700;
}

.combo-details {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.combo-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: #666;
}

.combo-name {
    font-weight: 600;
}

.combo-discount {
    color: #ff6b6b;
    font-weight: 600;
}

