* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f244c;
    --secondary-color: #e50004;
    --accent-color: #e50004;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--bg-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Fix for H1UserAgentFontSizeInSection deprecation warning */
/* Ensure all H1 tags inside sectioning elements have explicit font-size */
section h1,
article h1,
nav h1,
aside h1 {
    font-size: inherit;
}

section h1:not([style*="font-size"]) {
    font-size: 2em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 20px;
}

/* Header phone number - visible on desktop, hidden on mobile */
.header-phone {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
}

.header-phone:hover {
    background: rgba(15, 36, 76, 0.1);
}

.header-phone .phone-icon {
    margin-right: 5px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo img {
    max-height: 50px;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-color); /* Fallback for browsers that don't support background-clip */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.mobile-menu-toggle:hover {
    background: rgba(15, 36, 76, 0.1);
}

.mobile-search-toggle {
    display: none;
}

.search-form {
    display: flex;
    gap: 0;
    position: relative;
    min-width: 300px;
    max-width: 450px;
    width: 100%;
}

@media (min-width: 1200px) {
    .search-form {
        min-width: 400px;
    }
}

.search-form input {
    padding: 12px 50px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
    background: #fff;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-form input:focus {
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(229, 0, 4, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.search-form input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-form::before {
    content: "🔍";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

.search-form input:focus ~ button,
.search-form:focus-within::before {
    opacity: 0.7;
}

.search-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    box-shadow: 0 2px 8px rgba(229, 0, 4, 0.2);
}

.search-form button:hover {
    background: #cc0003;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(229, 0, 4, 0.4);
}

.search-form button:active {
    transform: translateY(-50%) scale(0.95);
}

.search-form button:focus {
    outline: 2px solid rgba(229, 0, 4, 0.3);
    outline-offset: 2px;
}

.cart-icon {
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 26px;
    padding: 10px 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.cart-icon:hover {
    background: rgba(15, 36, 76, 0.08);
    transform: scale(1.1);
    color: var(--secondary-color);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(229, 0, 4, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Navigation - Desktop (default) */
.main-nav {
    background: var(--primary-color);
    width: 100%;
    display: block;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hide mobile-only elements on desktop */
.mobile-menu-close,
.main-nav .mobile-search {
    display: none;
}

/* Desktop Navigation Styles */
@media (min-width: 769px) {
    /* Hide mobile-only elements on desktop */
    .mobile-menu-toggle,
    .mobile-search-toggle {
        display: none !important;
    }
    
    .main-nav .mobile-menu-close,
    .main-nav .mobile-search {
        display: none !important;
    }
    
    .main-nav .container {
        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .main-nav ul {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
    }
    
    /* Show desktop search form */
    .header-actions .search-form {
        display: flex !important;
    }
}

/* Breadcrumb */
.breadcrumb-container {
    background: #f8f9fa;
}

.breadcrumb {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb .separator {
    margin: 0 4px;
    color: #999;
    flex-shrink: 0;
}

.breadcrumb span:not(.separator) {
    color: #999;
}

/* Home Icon Styling */
.breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-home-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #666;
    transition: color 0.3s;
}

.breadcrumb-home:hover .breadcrumb-home-icon {
    color: var(--secondary-color);
}

.breadcrumb-home-text {
    display: inline;
}

.breadcrumb-text {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-link,
.breadcrumb-current {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.breadcrumb-current .breadcrumb-text {
    color: #999;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.main-nav ul > li {
    position: relative;
}

.main-nav ul > li > a {
    display: block;
    padding: 18px 24px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.main-nav ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.main-nav ul > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.main-nav ul > li > a:hover::after {
    width: 80%;
}

.main-nav ul > li.active > a::after,
.main-nav ul > li > a.active::after {
    width: 80%;
}

.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown-toggle span {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle span {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: none !important;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 8px 0;
    list-style: none;
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
    overflow: hidden;
    transform: translateY(-10px);
}

/* Only show dropdown when hovering directly over the dropdown li (desktop only) */
@media (min-width: 769px) {
    .main-nav ul > li.dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Hide dropdown when not hovering - this is the key fix */
    .main-nav ul > li.dropdown:not(:hover) > .dropdown-menu {
        display: none !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
}

.dropdown-menu li {
    position: relative;
    transition: background 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a,
.main-nav .dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: #333 !important;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}

.dropdown-menu a::before {
    content: '→';
    position: absolute;
    left: 12px;
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--secondary-color);
}

.dropdown-menu a:hover,
.main-nav .dropdown-menu a:hover {
    background: linear-gradient(to right, rgba(229, 0, 4, 0.1), rgba(229, 0, 4, 0.05));
    color: var(--primary-color) !important;
    padding-left: 35px;
    transform: translateX(3px);
}

.dropdown-menu a:hover::before {
    opacity: 1;
    left: 15px;
}

.dropdown-menu ul {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
    min-width: 200px;
    padding: 8px 0;
    margin-left: 5px;
}

.dropdown-menu li:hover > ul {
    display: block;
}

/* Hero Section */
.hero-section {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 30px 20px;
    overflow: hidden;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 36, 76, 0.6), rgba(15, 36, 76, 0.6));
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: #e50004;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.seo-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    font-size: 1px !important;
    line-height: 1;
    display: block;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    opacity: 0.95;
}

.hero-pricing-info {
    font-size: 14px;
    margin-bottom: 30px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-pricing-info .separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.timer-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 24px 20px;
    min-width: 100px;   
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.timer-value {
    font-size: 44px;
    font-weight: bold;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.timer-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 600;
}

.timer-separator {
    font-size: 40px;
    font-weight: bold;
    color: #e50004;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    background: #e50004;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
    border: 2px solid #e50004;
}

.btn-hero:hover {
    background: #cc0003;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 0, 4, 0.6);
}

@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Header Mobile - Modern & Clean */
    .main-header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .main-header .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .header-top {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 12px 0;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .logo {
        flex: 0 0 auto;
        min-width: 0;
        overflow: hidden;
    }
    
    .logo a {
        display: flex;
        align-items: center;
        max-width: 100%;
    }
    
    .logo img {
        max-width: 120px !important;
        max-height: 36px !important;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .logo h1 {
        font-size: 18px;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
        display: block;
    }
    
    .header-actions {
        gap: 4px;
        flex-wrap: nowrap;
        align-items: center;
        flex-shrink: 0;
        min-width: 0;
    }
    
    /* Hide phone number on mobile */
    .header-phone {
        display: none !important;
    }
    
    .search-form {
        display: none !important; /* Hide search on mobile, show in menu */
    }
    
    .mobile-search-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        padding: 8px;
        background: rgba(15, 36, 76, 0.05);
        color: var(--primary-color);
        border-radius: 10px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid rgba(15, 36, 76, 0.1);
        z-index: 10001;
        position: relative;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    /* Hide desktop navigation completely on mobile - use sidebar instead */
    .main-nav {
        display: none !important;
    }
    
    .mobile-search-toggle:hover {
        background: rgba(229, 0, 4, 0.1);
        color: var(--secondary-color);
        border-color: rgba(229, 0, 4, 0.2);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-search-toggle:active {
        transform: scale(0.95) translateY(0);
    }
    
    /* Hide menu toggle and search toggle when menu is open */
    body.menu-open .header-actions .mobile-menu-toggle,
    body.menu-open .header-actions .mobile-search-toggle {
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
        display: none !important;
    }
    
    .cart-icon {
        font-size: 20px;
        padding: 6px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        min-width: 40px;
        min-height: 40px;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: 2px;
        right: 2px;
        border: 2px solid white;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        padding: 6px 10px;
        background: var(--primary-color);
        color: white;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        z-index: 10001;
        position: relative;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--secondary-color);
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
        background: var(--secondary-color);
    }
    
    .mobile-menu-toggle:focus {
        outline: 2px solid var(--secondary-color);
        outline-offset: 2px;
    }
    
    /* Hide toggle buttons when menu is open */
    .main-nav.active ~ .header-top .mobile-menu-toggle,
    .main-nav.active ~ .header-top .mobile-search-toggle {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    
    /* Better approach - hide when body has menu active */
    body.menu-open .header-actions .mobile-menu-toggle,
    body.menu-open .header-actions .mobile-search-toggle {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    
    /* Navigation Mobile - Modern Slide-in from Right */
    /* Hide desktop navigation on mobile, replace with sidebar */
    .main-nav {
        display: none !important;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 88%;
        max-width: 380px;
        background: linear-gradient(165deg, 
            rgba(15, 36, 76, 0.98) 0%, 
            rgba(15, 36, 76, 0.95) 50%,
            rgba(10, 25, 50, 0.98) 100%);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        z-index: 10000;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(229, 0, 4, 0.5) transparent;
        box-shadow: 
            -8px 0 40px rgba(0, 0, 0, 0.6),
            -4px 0 20px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.05) inset;
        border-left: 4px solid var(--secondary-color);
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        isolation: isolate;
    }
    
    /* Custom scrollbar for sidebar */
    .main-nav::-webkit-scrollbar {
        width: 8px;
    }
    
    .main-nav::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        margin: 10px 0;
    }
    
    .main-nav::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, 
            var(--secondary-color) 0%, 
            rgba(229, 0, 4, 0.8) 100%);
        border-radius: 4px;
        border: 2px solid transparent;
        background-clip: padding-box;
    }
    
    .main-nav::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, 
            #ff0005 0%, 
            var(--secondary-color) 100%);
    }
    
    .main-nav.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: slideInFromRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    /* Debug: Make sure menu is visible when active */
    .main-nav.active * {
        visibility: inherit;
    }
    
    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(100%) scale(0.95);
        }
        50% {
            opacity: 0.8;
        }
        100% {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }
    
    /* Show mobile-only elements on mobile */
    .mobile-menu-close {
        display: flex !important;
        position: fixed;
        top: 20px;
        right: 20px;
        left: auto;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #cc0003 100%);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.2);
        font-size: 22px;
        font-weight: bold;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 10001;
        box-shadow: 
            0 6px 20px rgba(229, 0, 4, 0.4),
            0 0 0 4px rgba(229, 0, 4, 0.1);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-close:hover {
        background: linear-gradient(135deg, #ff0005 0%, var(--secondary-color) 100%);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 
            0 8px 25px rgba(229, 0, 4, 0.6),
            0 0 0 6px rgba(229, 0, 4, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .mobile-menu-close:active {
        transform: rotate(90deg) scale(0.95);
        box-shadow: 
            0 4px 15px rgba(229, 0, 4, 0.4),
            0 0 0 2px rgba(229, 0, 4, 0.1);
    }
    
    .main-nav .container {
        padding: 90px 24px 30px;
        position: relative;
    }
    
    /* Sidebar Logo/Header Section */
    .main-nav .container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(135deg, 
            rgba(229, 0, 4, 0.15) 0%, 
            rgba(229, 0, 4, 0.08) 50%,
            rgba(229, 0, 4, 0.03) 100%);
        border-bottom: 2px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }
    
    /* Add logo space if needed */
    .main-nav .sidebar-logo {
        padding: 15px 0 20px 0;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .main-nav .sidebar-logo img {
        max-height: 40px;
        max-width: 150px;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }
    
    /* Menu label */
    .main-nav .menu-label {
        position: relative;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 4px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        padding: 15px 0 10px 0;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0;
        margin-top: 10px;
        gap: 8px;
    }
    
    .main-nav ul > li {
        border: none;
        margin-bottom: 6px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        overflow: hidden;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.05);
        animation: fadeInUp 0.4s ease-out backwards;
    }
    
    .main-nav ul > li:nth-child(1) { animation-delay: 0.1s; }
    .main-nav ul > li:nth-child(2) { animation-delay: 0.15s; }
    .main-nav ul > li:nth-child(3) { animation-delay: 0.2s; }
    .main-nav ul > li:nth-child(4) { animation-delay: 0.25s; }
    .main-nav ul > li:nth-child(5) { animation-delay: 0.3s; }
    .main-nav ul > li:nth-child(6) { animation-delay: 0.35s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-nav ul > li:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border-color: rgba(229, 0, 4, 0.3);
    }
    
    .main-nav ul > li > a {
        padding: 18px 22px;
        width: 100%;
        font-size: 15px;
        font-weight: 600;
        border-radius: 14px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        position: relative;
        letter-spacing: 0.6px;
        color: rgba(255, 255, 255, 0.98);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav ul > li > a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(180deg, 
            var(--secondary-color) 0%, 
            rgba(229, 0, 4, 0.8) 100%);
        transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 14px 0 0 14px;
        box-shadow: 2px 0 8px rgba(229, 0, 4, 0.4);
    }
    
    .main-nav ul > li > a::after {
        content: '';
        position: absolute;
        right: 20px;
        width: 0;
        height: 2px;
        bottom: 14px;
        background: var(--secondary-color);
        transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 1px;
    }
    
    .main-nav ul > li > a:hover::before,
    .main-nav ul > li.active > a::before {
        width: 5px;
    }
    
    .main-nav ul > li > a:hover::after {
        width: 20px;
    }
    
    .main-nav ul > li > a:active {
        background: rgba(229, 0, 4, 0.2);
        transform: translateX(-4px) scale(0.98);
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile search in menu */
    .mobile-search {
        display: none;
    }
    
    .main-nav .mobile-search {
        display: flex !important;
        margin: 30px 0 25px 0;
        padding: 0;
        gap: 10px;
        width: 85% !important;
        max-width: 280px !important;
        align-items: center;
        box-sizing: border-box;
        position: relative;
    }
    
    .main-nav .mobile-search::before {
        content: '🔍 Search';
        position: absolute;
        top: -28px;
        left: 0;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
    }
    
    .main-nav .mobile-search input[type="text"] {
        flex: 1;
        padding: 14px 50px 14px 45px;
        border: 2px solid rgba(255,255,255,0.25);
        background: rgba(255,255,255,0.12);
        color: white;
        border-radius: 50px;
        font-size: 15px;
        backdrop-filter: blur(10px);
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        height: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav .mobile-search input::placeholder {
        color: rgba(255,255,255,0.75);
        font-weight: 400;
    }
    
    .main-nav .mobile-search input:focus {
        border-color: var(--secondary-color);
        background: rgba(255,255,255,0.18);
        box-shadow: 0 0 0 3px rgba(229, 0, 4, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
        outline: none;
        transform: translateY(-1px);
    }
    
    .main-nav .mobile-search::after {
        content: "🔍";
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        pointer-events: none;
        opacity: 0.7;
        z-index: 1;
    }
    
    .main-nav .mobile-search button[type="submit"] {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--secondary-color);
        border-radius: 50%;
        padding: 0;
        font-size: 18px;
        border: none;
        box-shadow: 0 4px 12px rgba(229, 0, 4, 0.4);
        color: white;
        cursor: pointer;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 2;
    }
    
    .main-nav .mobile-search button[type="submit"]:hover {
        background: #cc0003;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 16px rgba(229, 0, 4, 0.5);
    }
    
    .main-nav .mobile-search button[type="submit"]:active {
        transform: translateY(-50%) scale(0.95);
        transform: scale(0.9);
    }
    
    .main-nav .mobile-search button[type="submit"]:hover {
        background: #cc0003;
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(229, 0, 4, 0.5);
    }
    
    .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 1;
        visibility: visible;
        background: rgba(0,0,0,0.15);
        box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
        margin: 8px 0 0 0;
        padding: 8px 0;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .dropdown.active > .dropdown-menu {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-menu a {
        padding: 12px 35px;
        color: rgba(255,255,255,0.9) !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .dropdown-menu a::before {
        content: '▸';
        position: absolute;
        left: 18px;
        opacity: 0.6;
        font-size: 12px;
        transition: all 0.2s ease;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:focus,
    .dropdown-menu a:active {
        color: white !important;
        background: rgba(229, 0, 4, 0.25);
        padding-left: 40px;
    }
    
    .dropdown-menu a:hover::before {
        opacity: 1;
        left: 22px;
    }
    
    .dropdown-menu li {
        list-style: none;
    }
    
    .dropdown-menu li a {
        color: white !important;
    }
    
    .dropdown-menu ul {
        position: static;
        display: none;
        background: rgba(0,0,0,0.15);
        padding: 0;
        margin: 0;
        border-radius: 6px;
        margin-left: 15px;
        margin-top: 5px;
    }
    
    .dropdown-menu ul a {
        padding: 10px 50px 10px 35px;
        color: white !important;
        font-size: 13px;
    }
    
    .dropdown-menu ul li a {
        color: white !important;
    }
    
    .dropdown-menu li.active > ul {
        display: block;
        animation: slideDown 0.3s ease-out;
    }
    
    .dropdown-menu li.active > ul a {
        color: white !important;
    }
    
    /* Ensure all dropdown menu text is white on mobile */
    .main-nav .dropdown-menu,
    .main-nav .dropdown-menu li,
    .main-nav .dropdown-menu a,
    .main-nav .dropdown-menu ul,
    .main-nav .dropdown-menu ul li,
    .main-nav .dropdown-menu ul a {
        color: white !important;
    }
    
    .main-nav .dropdown-menu a:link,
    .main-nav .dropdown-menu a:visited,
    .main-nav .dropdown-menu a:hover,
    .main-nav .dropdown-menu a:active {
        color: white !important;
    }
    
    /* Hero Section Mobile - Modern Redesign */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background-attachment: scroll;
    }
    
    .hero-section::before {
        display: none; /* Disabled - using .hero-overlay div instead */
    }
    
    .hero-section img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(15, 36, 76, 0.75) 0%, rgba(15, 36, 76, 0.65) 50%, rgba(15, 36, 76, 0.8) 100%);
        z-index: 1;
    }
    
    .hero-content {
        padding: 60px 24px 50px;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 24px;
        margin-bottom: 24px;
        border-radius: 30px;
        box-shadow: 0 4px 20px rgba(229, 0, 4, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.1);
        animation: pulse 2s infinite;
        display: inline-block;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #e50004 0%, #ff1a1a 100%);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-title {
        font-size: 32px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.25;
        margin-bottom: 16px;
        font-weight: 800;
        letter-spacing: -0.8px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 28px;
        opacity: 0.98;
        line-height: 1.5;
        font-weight: 400;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        color: rgba(255, 255, 255, 0.95);
    }
    
    .hero-pricing-info {
        font-size: 13px;
        gap: 12px;
        margin-bottom: 32px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.15);
        padding: 14px 20px;
        border-radius: 12px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .hero-pricing-info .separator {
        color: rgba(255, 255, 255, 0.5);
        font-weight: 400;
        margin: 0 4px;
    }
    
    .hero-section .countdown-timer {
        gap: 8px !important;
        margin: 32px auto 36px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-section .timer-item {
        min-width: 70px !important;
        max-width: 75px !important;
        padding: 14px 8px !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
        background: rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
    
    .hero-section .timer-value {
        font-size: 32px !important;
        font-weight: 800 !important;
        color: white !important;
        line-height: 1 !important;
        margin-bottom: 4px !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    
    .hero-section .timer-label {
        font-size: 9px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.9) !important;
        opacity: 0.95 !important;
        white-space: nowrap !important;
    }
    
    .hero-section .timer-separator {
        font-size: 28px !important;
        font-weight: 800 !important;
        color: white !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
        margin: 0 2px !important;
        flex-shrink: 0 !important;
    }
    
    .btn-hero {
        padding: 18px 48px;
        font-size: 17px;
        font-weight: 700;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(229, 0, 4, 0.5);
        width: auto;
        display: inline-block;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .btn-hero {
        padding: 18px 48px;
        font-size: 17px;
        font-weight: 700;
        border-radius: 50px;
        box-shadow: 0 6px 24px rgba(229, 0, 4, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, var(--secondary-color) 0%, #ff1a1a 100%);
        border: 2px solid rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-block;
        position: relative;
        overflow: hidden;
    }
    
    .btn-hero:active {
        transform: translateY(2px) scale(0.98);
        box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
    }
    
    /* Container Mobile */
    .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Grids Mobile - Modern Cards */
    /* Category Page Mobile */
    .category-header {
        padding: 40px 0 30px;
    }
    
    .category-header h1 {
        font-size: 2em !important;
        margin-bottom: 15px;
        margin-top: 0;
        padding: 0;
        line-height: 1.2;
        display: block;
    }
    
    .category-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .subcategories {
        padding: 40px 0;
    }
    
    .subcategories-header {
        margin-bottom: 30px;
    }
    
    .subcategories-header .section-title {
        font-size: 26px;
    }
    
    .subcategories-header .section-title::after {
        width: 60px;
        height: 3px;
        margin: 15px auto 0;
    }
    
    .products-listing {
        padding: 40px 0;
    }
    
    .products-listing-header {
        margin-bottom: 30px;
    }
    
    .products-listing-header .section-title {
        font-size: 26px;
    }
    
    .products-listing-header .section-title::after {
        width: 60px;
        height: 3px;
        margin: 15px auto 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 5px;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    /* Hide product overlay completely on mobile */
    .product-card .product-overlay {
        opacity: 0 !important;
        display: none !important;
        visibility: hidden !important;
    }
    
    .product-card:active .product-overlay,
    .product-card:hover .product-overlay,
    .product-card:focus .product-overlay {
        opacity: 0 !important;
        display: none !important;
        visibility: hidden !important;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 16px;
        min-height: 44px;
    }
    
    .price {
        font-size: 18px;
    }
    
    .view-product {
        font-size: 13px;
        padding: 10px 20px;
        display: none;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 15px;
    }
    
    /* Search Results Mobile Styles */
    .search-results-section {
        padding: 30px 0 40px;
    }
    
    .search-results-section h1 {
        font-size: 22px;
        font-weight: 700;
        padding: 0 15px;
        margin-bottom: 12px;
        color: var(--primary-color);
        letter-spacing: -0.3px;
        line-height: 1.2;
    }
    
    .search-results-section p {
        padding: 0 15px;
        color: #666;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .search-results-section .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 12px !important;
        margin-top: 20px !important;
        max-width: 100% !important;
    }
    
    .search-results-section .product-card {
        border-radius: 14px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        background: white !important;
        border: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
    }
    
    .search-results-section .product-card::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 3px !important;
        background: linear-gradient(90deg, var(--secondary-color), #ff3333) !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
        z-index: 1 !important;
    }
    
    .search-results-section .product-card:active::before {
        opacity: 1 !important;
    }
    
    .search-results-section .product-card a {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        text-decoration: none !important;
        color: inherit !important;
    }
    
    .search-results-section .product-card:active {
        transform: scale(0.98) translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 3px 8px rgba(0, 0, 0, 0.2) !important;
    }
    
    .search-results-section .product-card:active::before {
        opacity: 1 !important;
    }
    
    .search-results-section .product-card img {
        height: 170px !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block !important;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .search-results-section .product-card:active img {
        transform: scale(1.02) !important;
    }
    
    .search-results-section .product-card .placeholder-image {
        height: 170px !important;
        width: 100% !important;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #999 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
    }
    
    .search-results-section .product-card .product-info {
        padding: 14px 12px 12px !important;
        background: white !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .search-results-section .product-card .product-info h3 {
        font-size: 14px !important;
        font-weight: 600 !important;
        min-height: 38px !important;
        margin: 0 !important;
        line-height: 1.4 !important;
        color: #1a1a1a !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        letter-spacing: -0.2px !important;
    }
    
    .search-results-section .product-card .product-info .price {
        font-size: 17px !important;
        font-weight: 700 !important;
        color: var(--secondary-color) !important;
        margin: 0 !important;
        margin-top: auto !important;
    }
    
    /* Style the "From" text that's already in HTML */
    .search-results-section .product-card .product-info .price {
        font-size: 17px !important;
        font-weight: 700 !important;
        color: var(--secondary-color) !important;
        margin: 0 !important;
        margin-top: auto !important;
    }
    
    /* Very small mobile - ensure 2 columns still work */
    @media (max-width: 480px) {
        .search-results-section .products-grid {
            gap: 10px !important;
            padding: 0 10px !important;
        }
        
        .search-results-section .product-card {
            border-radius: 12px !important;
        }
        
        .search-results-section .product-card::before {
            height: 2px !important;
        }
        
        .search-results-section .product-card .product-info {
            padding: 12px 10px 10px !important;
            gap: 6px !important;
        }
        
        .search-results-section .product-card .product-info h3 {
            font-size: 13px !important;
            min-height: 36px !important;
            line-height: 1.35 !important;
        }
        
        .search-results-section .product-card .product-info .price {
            font-size: 16px !important;
        }
        
        .search-results-section .product-card img,
        .search-results-section .product-card .placeholder-image {
            height: 160px !important;
        }
    }
    
    .product-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .product-card:active {
        transform: scale(0.97);
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    
    .product-card img {
        height: 200px;
        object-fit: cover;
        width: 100%;
        transition: transform 0.3s;
    }
    
    .product-card:active img {
        transform: scale(1.05);
    }
    
    .product-info {
        padding: 16px 12px;
    }
    
    .product-info h3 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.4;
        color: var(--text-color);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .price {
        font-size: 18px;
        font-weight: 700;
        color: var(--secondary-color);
    }
    
    .category-card {
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }
    
    .category-image-wrapper {
        width: 150px;
        height: 150px;
        border-radius: 14px;
        margin-bottom: 18px;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 0 0 3px rgba(255, 255, 255, 1),
            0 0 0 5px rgba(229, 0, 4, 0.1);
    }
    
    .category-overlay {
        border-radius: 14px;
    }
    
    .category-label {
        bottom: -15px;
        padding: 8px 20px;
        box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(0, 0, 0, 0.05);
    }
    
    .category-name {
        font-size: 13px;
        font-weight: 700;
    }
    
    .category-count {
        margin-top: 25px;
        font-size: 12px;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .section-title {
        margin-bottom: 32px;
        font-size: 28px;
    }
    
    .faq-list {
        padding: 0 16px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 16px;
        gap: 12px;
    }
    
    .faq-question::after {
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding-top: 12px;
        line-height: 1.6;
    }
    
    /* WhatsApp Floating Button Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-4px) scale(1.1);
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none !important;
    }
    
    .category-card:active {
        transform: translateY(-6px);
    }
    
    .category-card:active .category-image-wrapper {
        transform: scale(1.03);
    }
    
    /* Product Detail Mobile */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-detail-grid img {
        width: 100%;
        max-width: 100%;
    }
    
    /* Forms Mobile */
    .review-form-container {
        padding: 20px 15px;
    }
    
    .review-form input[type="text"],
    .review-form input[type="email"],
    .review-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Buttons Mobile - Modern & Touch-Friendly */
    .btn {
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        text-align: center;
        display: block;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(229, 0, 4, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 52px;
        letter-spacing: 0.5px;
    }
    
    .btn:active {
        transform: translateY(2px);
        box-shadow: 0 2px 8px rgba(229, 0, 4, 0.2);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #cc0003 100%);
        box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
    }
    
    .btn-primary:active {
        background: linear-gradient(135deg, #cc0003 0%, #aa0002 100%);
    }
    
    .btn-hero {
        width: auto;
        display: inline-block;
        min-width: 200px;
    }
    
    /* Tabs Mobile */
    .product-tabs {
        flex-wrap: wrap;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
        flex: 1;
        min-width: 50%;
    }
    
    /* Checkout Mobile */
    .checkout-section {
        padding: 16px 0 32px;
        background: #f8f9fa;
    }
    
    .checkout-section .container {
        padding: 0 12px !important;
        max-width: 100% !important;
    }
    
    .checkout-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #e9ecef;
    }
    
    .checkout-header h1 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 4px;
        color: #0f244c;
    }
    
    .checkout-subtitle {
        font-size: 13px;
        color: #666;
        margin: 0;
    }
    
    .checkout-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
    }
    
    .checkout-summary-wrapper {
        position: static !important;
        order: 999 !important; /* Move to bottom on mobile */
        margin-bottom: 0 !important;
        width: 100% !important;
        flex: none !important;
    }
    
    .checkout-form-wrapper {
        order: 0 !important; /* Show forms first on mobile */
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        flex: none !important;
    }
    
    /* Ensure proper stacking on mobile */
    .checkout-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .checkout-form-card,
    .checkout-summary-card {
        padding: 18px 14px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border: 1px solid #e9ecef;
        background: white;
        margin: 0;
    }
    
    .form-section-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid #e9ecef;
    }
    
    .form-section-header h2 {
        font-size: 18px;
        font-weight: 700;
        color: #0f244c;
        margin: 0;
    }
    
    .checkout-form .form-group {
        margin-bottom: 18px;
    }
    
    .checkout-form label {
        font-size: 14px;
        font-weight: 600;
        color: #0f244c;
        margin-bottom: 6px;
        display: block;
    }
    
    .checkout-form input,
    .checkout-form textarea,
    .checkout-form select {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border: 2px solid #dee2e6;
        border-radius: 10px;
        background: #fff;
        box-sizing: border-box;
    }
    
    .checkout-form input:focus,
    .checkout-form textarea:focus,
    .checkout-form select:focus {
        border-color: #0f244c;
        outline: none;
        box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
    }
    
    .form-help-text {
        font-size: 12px;
        color: #666;
        margin-top: 4px;
        display: block;
    }
    
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .form-group-half {
        margin-bottom: 18px;
        width: 100%;
    }
    
    /* Delivery Options Mobile */
    .delivery-option-banner,
    .payment-option-banner {
        padding: 14px;
        gap: 12px;
        margin-bottom: 16px;
        border-radius: 10px;
    }
    
    .delivery-option-banner svg,
    .payment-option-banner svg {
        width: 20px;
        height: 20px;
    }
    
    .delivery-option-banner strong,
    .payment-option-banner strong {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .delivery-option-banner p,
    .payment-option-banner p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .radio-group {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .radio-option {
        padding: 16px;
        gap: 14px;
        border-radius: 10px;
        align-items: flex-start;
    }
    
    .radio-option:hover {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    
    .radio-option:has(input[type="radio"]:checked) {
        box-shadow: 0 2px 8px rgba(15, 36, 76, 0.12);
    }
    
    .radio-custom {
        width: 20px;
        height: 20px;
        margin-top: 2px;
        border-width: 2.5px;
    }
    
    .radio-custom::after {
        width: 7px;
        height: 7px;
    }
    
    .radio-content {
        gap: 3px;
        flex: 1;
    }
    
    .radio-content strong {
        font-size: 15px;
        flex-wrap: wrap;
        line-height: 1.4;
        gap: 6px;
    }
    
    .radio-content .price-badge {
        font-size: 10px;
        padding: 3px 8px;
        letter-spacing: 0.3px;
    }
    
    .radio-content p {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
    }
    
    .info-box {
        padding: 14px;
        gap: 12px;
        font-size: 12px;
        line-height: 1.6;
        border-radius: 10px;
    }
    
    .info-box svg {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }
    
    .info-box strong {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .info-box ul {
        padding-left: 18px;
        margin-top: 6px;
    }
    
    .info-box ul li {
        margin-bottom: 4px;
        font-size: 12px;
    }
    
    /* Order Summary Mobile */
    .summary-title {
        font-size: 18px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .summary-items {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .summary-item {
        gap: 10px;
        padding-bottom: 12px;
    }
    
    .summary-item-image {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }
    
    .summary-item-details h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .summary-item-variations {
        font-size: 11px;
        margin: 2px 0;
    }
    
    .summary-item-meta {
        margin-top: 6px;
        font-size: 12px;
    }
    
    .summary-item-price {
        font-size: 14px;
    }
    
    .summary-totals {
        padding: 16px 0;
        margin-bottom: 16px;
    }
    
    .summary-total-row {
        padding: 6px 0;
        font-size: 14px;
    }
    
    .summary-total-row.final {
        font-size: 18px;
        padding-top: 10px;
        margin-top: 10px;
    }
    
    .summary-total-row.final span:last-child {
        font-size: 20px;
    }
    
    .btn-place-order {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 10px;
        margin-bottom: 16px;
    }
    
    .trust-badges {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .trust-badge {
        font-size: 11px;
        gap: 8px;
    }
    
    .trust-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .terms-text {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .form-section-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .form-section-header h2 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .form-section-subtitle {
        font-size: 13px;
    }
    
    .checkout-form .form-group {
        margin-bottom: 20px;
    }
    
    .checkout-form label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .checkout-form input,
    .checkout-form textarea {
        padding: 13px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }
    
    .checkout-form textarea {
        min-height: 90px;
    }
    
    .order-summary {
        padding: 20px 16px;
        margin-top: 24px;
        border-radius: 12px;
    }
    
    .order-items-list {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .order-item-card {
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .order-item-title {
        font-size: 15px;
    }
    
    .order-item-variations {
        font-size: 12px;
    }
    
    .order-item-pricing {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 12px;
        border-top: 1px solid #e9ecef;
    }
    
    .order-item-quantity,
    .order-item-price {
        font-size: 13px;
    }
    
    .order-item-subtotal {
        font-size: 18px;
    }
    
    .order-delivery-info {
        padding: 10px 14px;
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .order-total-row {
        padding: 14px 0;
    }
    
    .total-label {
        font-size: 18px;
    }
    
    .total-value {
        font-size: 24px;
    }
    
    .btn-place-order {
        margin-top: 24px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .alert {
        padding: 14px 16px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Tables Mobile - Keep for other tables */
    table:not(.cart-table) {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Section Titles Mobile - Modern Typography */
    .section-title {
        font-size: 26px;
        margin-bottom: 24px;
        font-weight: 700;
        letter-spacing: -0.5px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .featured-products {
        padding: 40px 0 50px;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        margin: 0;
    }
    
    .featured-products-header {
        margin-bottom: 32px;
        padding: 0 20px;
        text-align: center;
    }
    
    .featured-products-header .section-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        width: 100%;
        font-weight: 800;
        color: var(--primary-color);
        letter-spacing: -0.5px;
    }
    
    .featured-products-header .section-title::after {
        width: 60px;
        height: 3px;
        margin: 12px auto 0;
        background: linear-gradient(90deg, var(--secondary-color), #ff1a1a);
        border-radius: 2px;
    }
    
    .featured-products .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
        padding: 0;
        margin-top: 16px;
        color: #666;
        font-weight: 400;
    }
    
    .featured-products .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 16px;
        gap: 16px;
        max-width: 100%;
    }
    
    /* Featured Products - Mobile Card Improvements */
    .featured-products .product-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.06);
        position: relative;
    }
    
    .featured-products .product-card:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    }
    
    .featured-products .product-image-wrapper {
        height: 180px;
        background: #f5f5f5;
        position: relative;
        overflow: hidden;
    }
    
    .featured-products .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .featured-products .product-card:active .product-image {
        transform: scale(1.05);
    }
    
    .featured-products .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .featured-products .product-card:active .product-overlay {
        opacity: 1;
    }
    
    .featured-products .view-product {
        color: white;
        font-weight: 600;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 8px 16px;
        background: var(--secondary-color);
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(229, 0, 4, 0.3);
    }
    
    .featured-products .product-info {
        padding: 14px 12px;
        background: white;
    }
    
    .featured-products .product-info h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-color);
        line-height: 1.4;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 42px;
    }
    
    .featured-products .product-info .price {
        font-size: 17px;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0;
    }
    
    .shop-categories {
        padding: 50px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    .shop-categories-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .shop-categories-header .section-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .shop-categories-header .section-title::after {
        width: 60px;
        height: 3px;
        margin: 15px auto 0;
    }
    
    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    /* Cart Mobile */
    .cart-section {
        padding: 20px 0 40px;
    }
    
    .cart-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .cart-header h1 {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .cart-item-count {
        font-size: 14px;
    }
    
    /* Hide desktop table on mobile */
    .cart-table-wrapper {
        display: none !important;
    }
    
    /* Show mobile cards on mobile */
    .cart-items-mobile {
        display: block !important;
        margin-bottom: 20px;
    }
    
    .cart-item-card {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .cart-item-title {
        font-size: 16px;
    }
    
    .cart-item-variations {
        font-size: 13px;
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .cart-item-details {
        gap: 10px;
    }
    
    .price-value {
        font-size: 15px;
    }
    
    .quantity-input-mobile {
        width: 90px;
        padding: 8px 10px;
        font-size: 15px;
    }
    
    .subtotal-value {
        font-size: 16px;
    }
    
    .cart-summary {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .cart-total-row {
        padding: 14px 0;
    }
    
    .total-label {
        font-size: 18px;
    }
    
    .total-value {
        font-size: 24px;
    }
    
    .cart-delivery-info {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .cart-actions {
        gap: 12px;
    }
    
    .btn-checkout {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .cart-actions-secondary {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-secondary {
        width: 100%;
        padding: 14px 20px;
        text-align: center;
    }
    
    .empty-cart {
        padding: 60px 24px;
        margin: 0 12px;
    }
    
    .empty-cart-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .empty-cart h2 {
        font-size: 24px;
    }
    
    .empty-cart p {
        font-size: 15px;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .breadcrumb .separator {
        margin: 0 5px;
    }
    
    /* Footer Mobile */
    .main-footer {
        padding: 32px 0 20px;
        margin-top: 40px;
    }
    
    .main-footer .container {
        padding: 0 16px;
    }
    
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    /* First section (Site Title) - Full width, spans 2 columns */
    .footer-section:first-child {
        grid-column: 1 / -1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Quick Links and Categories - Side by side in one row */
    .footer-section:nth-child(2) {
        grid-column: 1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:nth-child(3) {
        grid-column: 2;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Contact Info - Full width, spans 2 columns */
    .footer-section:last-child {
        grid-column: 1 / -1;
        border-bottom: none;
        padding-bottom: 0;
        margin-top: 0;
    }
    
    .footer-section {
        padding-bottom: 20px;
    }
    
    .footer-logo {
        margin-bottom: 12px;
    }
    
    .footer-logo-img {
        max-height: 45px;
        max-width: 180px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .footer-section p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 6px;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .footer-section ul {
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .footer-social {
        gap: 10px;
        margin-top: 12px;
    }
    
    .footer-social .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-social .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        padding-top: 16px;
        margin-top: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.7);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background: #2980b9;
}

.btn-primary {
    background: var(--secondary-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Sections */
section {
    padding: 20px 0;
}

/* Product detail section - less padding at top */
.product-detail {
    padding-top: 10px;
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    margin: 0;
    position: relative;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 36, 76, 0.1), transparent);
}

.featured-products-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.featured-products-header .section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary-color);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.featured-products-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #ff1a1a);
    border-radius: 2px;
}

.featured-products .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 24px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-products .products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product Reviews Section */
.product-reviews {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.product-reviews h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.product-reviews h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Review Form */
.review-form-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.review-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Rating Input */
.rating-input {
    display: flex;
    gap: 5px;
    align-items: center;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s, transform 0.1s;
    user-select: none;
    display: inline-block;
}

.rating-input .star-label:hover {
    color: #f39c12;
    transform: scale(1.1);
}

.rating-input input[type="radio"]:checked + .star-label {
    color: #f39c12;
}

/* Highlight all stars from the selected one onwards (since they're in reverse order visually) */
.rating-input input[type="radio"]#rating1:checked ~ .star-label,
.rating-input input[type="radio"]#rating2:checked ~ .star-label[for="rating1"],
.rating-input input[type="radio"]#rating2:checked ~ .star-label[for="rating2"],
.rating-input input[type="radio"]#rating3:checked ~ .star-label[for="rating1"],
.rating-input input[type="radio"]#rating3:checked ~ .star-label[for="rating2"],
.rating-input input[type="radio"]#rating3:checked ~ .star-label[for="rating3"],
.rating-input input[type="radio"]#rating4:checked ~ .star-label[for="rating1"],
.rating-input input[type="radio"]#rating4:checked ~ .star-label[for="rating2"],
.rating-input input[type="radio"]#rating4:checked ~ .star-label[for="rating3"],
.rating-input input[type="radio"]#rating4:checked ~ .star-label[for="rating4"],
.rating-input input[type="radio"]#rating5:checked ~ .star-label {
    color: #f39c12;
}

/* Existing Reviews */
.existing-reviews {
    margin-top: 40px;
}

.review-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-item .review-rating {
    margin-bottom: 10px;
}

.review-item .review-comment {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.review-item .review-author {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 14px;
}

/* Review Reply */
.review-reply {
    margin-top: 20px;
    padding: 15px;
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.review-reply .reply-header {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.review-reply .reply-text {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Related Products Section */
.related-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.related-products-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.related-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.related-products-section .product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-products-section .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.related-products-section .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f5f5f5;
}

.related-products-section .product-card:hover img {
    transform: scale(1.05);
}

.related-products-section .product-card .product-info {
    padding: 16px;
}

.related-products-section .product-card .product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.related-products-section .product-card .product-info .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.related-products-section .product-card .placeholder-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* Product Tabs */
.product-tabs-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.product-tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 15px;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    top: 2px;
}

.tab-button:hover {
    color: var(--primary-color);
    background: #f8f9fa;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tab-content {
    display: none !important;
    padding: 10px 0;
    min-height: 200px;
}

.tab-content.active {
    display: block !important;
}

.product-description {
    padding: 0;
    line-height: 1.8;
    color: var(--text-color);
}

.product-description p {
    margin-bottom: 15px;
}

/* Category Grid */
/* Shop Categories Section */
.shop-categories {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.shop-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 36, 76, 0.1) 50%, transparent 100%);
}

.shop-categories-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.shop-categories-header .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-transform: none;
}

.shop-categories-header .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #ff3333);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 17px;
    color: #555;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    position: relative;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-12px);
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.category-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 6px rgba(229, 0, 4, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 25px;
    background: white;
}

.category-card:hover .category-image-wrapper {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 8px rgba(229, 0, 4, 0.2);
    transform: scale(1.08);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.05);
}

.category-card:hover .category-image {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 16px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 0.6;
}

.category-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 10px 28px;
    border-radius: 35px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    z-index: 2;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.category-card:hover .category-label {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #cc0003 100%);
    box-shadow: 
        0 8px 25px rgba(229, 0, 4, 0.35),
        0 0 0 1px rgba(229, 0, 4, 0.2);
    transform: translateX(-50%) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.category-card:hover .category-name {
    color: white;
}

.category-count {
    margin-top: 30px;
    font-size: 13px;
    color: #777;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.category-card:hover .category-count {
    color: var(--secondary-color);
    font-weight: 600;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: 700;
    color: #bbb;
    background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
    border-radius: 16px;
}

/* Products Grid */
/* Category Page Styles */
.category-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.category-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.category-header h1 {
    font-size: 2em !important;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 0;
    padding: 0;
    line-height: 1.2;
    display: block;
    color: white;
    letter-spacing: -1px;
    line-height: 1.2;
}

.category-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.subcategories {
    padding: 60px 0;
    background: #f8f9fa;
}

.subcategories-header {
    text-align: center;
    margin-bottom: 50px;
}

.subcategories-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.subcategories-header .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #ff3333);
    margin: 20px auto 0;
    border-radius: 2px;
}

.products-listing {
    padding: 60px 0;
    background: white;
}

.products-listing-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-listing-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.products-listing-header .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #ff3333);
    margin: 20px auto 0;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-product {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    background: var(--secondary-color);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
    transform: translateY(10px);
    transition: transform 0.3s ease;
    display: none;
}

.product-card:hover .view-product {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
    background: white;
}

.product-info h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

/* Search Results Section - Specific Styles */
.search-results-section {
    padding: 40px 0 60px;
    background: #fff;
}

.search-results-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: -0.5px;
}

.search-results-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Search Results Product Cards - Fixed Structure */
.search-results-section .product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.search-results-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.search-results-section .product-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.search-results-section .product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f5f5f5;
    display: block;
}

.search-results-section .product-card:hover img {
    transform: scale(1.05);
}

.search-results-section .product-card .placeholder-image {
    width: 100%;
    height: 280px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
}

.search-results-section .product-card .product-info {
    padding: 20px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-results-section .product-card .product-info h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
    flex: 1;
}

.search-results-section .product-card .product-info .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    margin-top: auto;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.reviews-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-header-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.reviews-section .section-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}

.btn-view-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view-all-reviews:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 36, 76, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.review-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(15, 36, 76, 0.15);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 16px;
}

.review-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.star {
    color: #ddd;
    font-size: 18px;
    line-height: 1;
    transition: color 0.2s ease;
}

.star.filled {
    color: #ffc107;
    text-shadow: 0 0 4px rgba(255, 193, 7, 0.3);
}

.review-date {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

.review-comment {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-comment::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.review-author-details {
    flex: 1;
    min-width: 0;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 4px 0;
    font-size: 15px;
}

.review-product {
    font-size: 13px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-reply-badge {
    margin-top: 12px;
    padding: 8px 12px;
    background: #e8f5e9;
    border-radius: 6px;
    font-size: 12px;
    color: #2e7d32;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.review-reply-badge::before {
    content: '✓';
    font-weight: bold;
}

.reviews-empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.empty-reviews-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.reviews-empty p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 36, 76, 0.1), transparent);
}

.faq-section .section-title {
    margin-bottom: 50px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 16px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 6px 24px rgba(15, 36, 76, 0.15);
    border-color: rgba(15, 36, 76, 0.2);
}

.faq-question {
    padding: 20px 24px;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 0, 4, 0.1);
    border-radius: 50%;
    line-height: 1;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    background: var(--secondary-color);
    color: white;
}

.faq-question:hover {
    color: var(--secondary-color);
    background: rgba(15, 36, 76, 0.02);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(15, 36, 76, 0.03) 0%, rgba(15, 36, 76, 0.01) 100%);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    padding-top: 16px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Product Detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.product-images .main-image img {
    width: 100%;
    border-radius: 10px;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.image-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.image-thumbnails img:hover {
    border-color: var(--secondary-color);
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.product-price {
    font-size: 28px;
    margin: 10px 0;
    color: var(--secondary-color);
}

/* Mobile Product Page - Applied at 768px and below */
@media (max-width: 768px) {
    .product-detail {
        padding: 0 !important;
        width: 100%;
        overflow-x: hidden;
    }
    
    .product-detail .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin-bottom: 0 !important;
        width: 100%;
        overflow-x: hidden;
    }
    
    .product-images {
        position: static !important;
        top: auto !important;
        order: 1;
        background: #fff;
        border-radius: 0;
        margin-bottom: 0;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .product-images .main-image {
        border-radius: 0;
        overflow: hidden;
        background: #f8f9fa;
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .product-images .main-image img {
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        object-fit: cover;
        object-position: center top;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }
    
    .product-images .main-image:active img {
        transform: scale(1.02);
    }
    
    .product-info {
        order: 2;
        padding: 20px 16px !important;
        background: #fff;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .product-info h1 {
        font-size: 24px !important;
        margin-bottom: 16px !important;
        line-height: 1.3 !important;
        font-weight: 700;
        color: #0f244c;
        letter-spacing: -0.5px;
    }
    
    .product-price {
        font-size: 20px !important;
        margin: 0 0 20px 0 !important;
        padding: 16px;
        background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
        border-radius: 12px;
        border: 1px solid #ffe0e0;
    }
    
    .product-price > div {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100%;
    }
    
    .product-price > div > span {
        width: 100% !important;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .product-price .price-amount,
    .product-price #productPrice {
        font-size: 28px !important;
        font-weight: 800;
        color: #e50004;
        letter-spacing: -0.5px;
    }
    
    .product-price #originalPriceDisplay {
        font-size: 18px !important;
        color: #999;
        font-weight: 500;
    }
    
    .product-price span[style*="background: #e50004"] {
        background: #e50004 !important;
        color: white !important;
        padding: 6px 12px !important;
        border-radius: 6px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .product-detail .countdown-timer {
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-top: 0 !important;
        width: 100% !important;
        justify-content: flex-start;
    }
    
    .product-detail .timer-item {
        min-width: 60px !important;
        padding: 10px 8px !important;
        background: #fff !important;
        border: 2px solid #e50004 !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 8px rgba(229, 0, 4, 0.15);
    }
    
    .product-detail .timer-value {
        font-size: 20px !important;
        font-weight: 800 !important;
        color: #e50004 !important;
        line-height: 1.2 !important;
    }
    
    .product-detail .timer-label {
        font-size: 9px !important;
        font-weight: 600 !important;
        color: #666 !important;
        letter-spacing: 0.5px !important;
    }
    
    .product-detail .timer-separator {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #e50004 !important;
        padding: 0 4px !important;
        margin: 0 !important;
    }
    
    .image-thumbnails {
        gap: 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 12px 16px !important;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
        display: flex !important;
        flex-wrap: nowrap !important;
        background: #fff;
        width: 100%;
        box-sizing: border-box;
    }
    
    .image-thumbnails img {
        width: 75px !important;
        height: 75px !important;
        flex-shrink: 0 !important;
        border-radius: 8px !important;
        border: 2px solid transparent !important;
        transition: all 0.3s ease;
    }
    
    .image-thumbnails img:hover,
    .image-thumbnails img.active {
        border-color: #e50004 !important;
        transform: scale(1.05);
    }
    
    .variation-group {
        margin-bottom: 24px !important;
        padding: 16px;
        background: #f8f9fa;
        border-radius: 12px;
        border: 1px solid #e9ecef;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .variation-group label {
        font-size: 15px !important;
        margin-bottom: 12px !important;
        font-weight: 700;
        color: #0f244c;
        display: block;
    }
    
    .variation-group select {
        padding: 14px 16px !important;
        font-size: 16px !important;
        width: 100% !important;
        border: 2px solid #dee2e6 !important;
        border-radius: 10px !important;
        background: #fff;
        transition: all 0.3s ease;
    }
    
    .variation-group select:focus {
        border-color: #0f244c !important;
        outline: none;
        box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
    }
    
    .fabric-variation-group {
        padding: 16px !important;
        background: #f8f9fa !important;
        border-radius: 12px !important;
        border: 1px solid #e9ecef !important;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .fabric-type-tabs {
        gap: 6px !important;
        padding-bottom: 12px !important;
        margin-bottom: 12px !important;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        flex-wrap: nowrap !important;
        border-bottom: 2px solid #e0e0e0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .fabric-type-tab-btn {
        padding: 10px 14px !important;
        font-size: 12px !important;
        min-width: auto !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        font-weight: 600 !important;
        white-space: nowrap;
    }
    
    .fabric-type-tab-btn.active {
        background: #0f244c !important;
        color: white !important;
        box-shadow: 0 2px 8px rgba(15, 36, 76, 0.3);
    }
    
    .fabric-type-content,
    .fabric-type-content[style*="grid-template-columns"],
    .fabric-type-content[data-mobile-cols="4"],
    #fabric-type-crushed-velvet,
    #fabric-type-plush-velvet,
    #fabric-type-naples,
    #fabric-type-chenille,
    #fabric-type-leather,
    [id^="fabric-type-"] {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }
    
    .fabric-tab {
        padding: 8px !important;
        border-radius: 10px !important;
        transition: all 0.3s ease !important;
    }
    
    .fabric-tab.active {
        border-color: #0f244c !important;
        background: #f0f7ff !important;
        box-shadow: 0 2px 8px rgba(15, 36, 76, 0.2) !important;
        transform: translateY(-2px);
    }
    
    .fabric-tab img {
        height: 55px !important;
        border-radius: 6px !important;
    }
    
    .fabric-tab div[style*="height: 60px"] {
        height: 55px !important;
        border-radius: 6px !important;
    }
    
    .fabric-tab div[style*="font-size: 10px"] {
        font-size: 10px !important;
        font-weight: 600 !important;
    }
    
    .fabric-tab div[style*="font-size: 9px"] {
        font-size: 9px !important;
    }
    
    .quantity-group {
        margin: 24px 0 !important;
        padding: 16px;
        background: #f8f9fa;
        border-radius: 12px;
        border: 1px solid #e9ecef;
    }
    
    .quantity-group label {
        font-size: 15px !important;
        font-weight: 700;
        color: #0f244c;
        margin-bottom: 10px !important;
        display: block;
    }
    
    .quantity-group input {
        width: 100% !important;
        padding: 14px 16px !important;
        font-size: 16px !important;
        border: 2px solid #dee2e6 !important;
        border-radius: 10px !important;
        background: #fff;
        transition: all 0.3s ease;
    }
    
    .quantity-group input:focus {
        border-color: #0f244c !important;
        outline: none;
        box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
    }
    
    .add-to-cart-form {
        padding: 0;
    }
    
    .btn-primary.btn-large,
    button[type="submit"].btn-primary.btn-large {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 17px !important;
        font-weight: 700 !important;
        margin-top: 0 !important;
        border-radius: 12px !important;
        background: linear-gradient(135deg, #e50004 0%, #c40003 100%) !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4) !important;
        transition: all 0.3s ease !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .btn-primary.btn-large:active {
        transform: translateY(2px) !important;
        box-shadow: 0 2px 10px rgba(229, 0, 4, 0.3) !important;
    }
    
    .product-tabs-container {
        margin-top: 0 !important;
        background: #fff;
        padding: 0 16px 20px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .product-tabs {
        flex-wrap: wrap !important;
        gap: 8px !important;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0;
        margin-bottom: 0 !important;
    }
    
    .tab-button {
        padding: 12px 18px !important;
        font-size: 14px !important;
        flex: 1 !important;
        min-width: auto !important;
        border-radius: 10px 10px 0 0 !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 3px solid transparent !important;
        font-weight: 600 !important;
        color: #666 !important;
        transition: all 0.3s ease !important;
    }
    
    .tab-button.active {
        color: #0f244c !important;
        border-bottom-color: #e50004 !important;
        background: #f8f9fa !important;
    }
    
    .tab-content {
        padding: 0 !important;
        margin-top: 0 !important;
    }
    
    .product-description {
        padding: 0 16px;
        line-height: 1.8;
        font-size: 15px;
        color: #444;
    }
    
    .product-description p {
        margin-bottom: 16px;
    }
    
    .product-description h1,
    .product-description h2,
    .product-description h3 {
        color: #0f244c;
        margin-top: 24px;
        margin-bottom: 12px;
        font-weight: 700;
    }
    
    .product-description ul,
    .product-description ol {
        padding-left: 20px;
        margin-bottom: 16px;
    }
    
    .product-description li {
        margin-bottom: 8px;
    }
    
    .dimensions-container {
        padding: 20px 0 !important;
    }
    
    .dimensions-container > div {
        padding: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .dimensions-container h2,
    .dimensions-container h3 {
        font-size: 20px !important;
    }
    
    .dimensions-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .dimensions-table {
        min-width: 600px !important;
    }
    
    .dimensions-table th,
    .dimensions-table td {
        padding: 12px 10px !important;
        font-size: 14px !important;
    }
    
    /* Review Form Mobile */
    .review-form-container {
        padding: 20px 16px !important;
        background: #f8f9fa;
        border-radius: 12px;
        margin-bottom: 24px;
    }
    
    .review-form-container h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
        color: #0f244c;
        font-weight: 700;
    }
    
    .review-form .form-group {
        margin-bottom: 18px !important;
    }
    
    .review-form label {
        font-size: 14px !important;
        font-weight: 600;
        color: #0f244c;
        margin-bottom: 8px !important;
        display: block;
    }
    
    .review-form input[type="text"],
    .review-form input[type="email"],
    .review-form textarea {
        width: 100% !important;
        padding: 14px 16px !important;
        font-size: 16px !important;
        border: 2px solid #dee2e6 !important;
        border-radius: 10px !important;
        background: #fff;
        transition: all 0.3s ease;
    }
    
    .review-form input:focus,
    .review-form textarea:focus {
        border-color: #0f244c !important;
        outline: none;
        box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
    }
    
    .rating-input {
        display: flex;
        gap: 8px;
        margin-top: 8px;
    }
    
    .rating-input .star-label {
        font-size: 32px !important;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    
    .rating-input .star-label:active {
        transform: scale(1.2);
    }
    
    .existing-reviews {
        padding: 0 16px 20px !important;
    }
    
    .existing-reviews h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
        color: #0f244c;
        font-weight: 700;
    }
    
    .review-item {
        background: #fff;
        padding: 18px;
        border-radius: 12px;
        margin-bottom: 16px;
        border: 1px solid #e9ecef;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .review-rating {
        margin-bottom: 12px;
    }
    
    .review-rating .star {
        font-size: 18px;
    }
    
    .review-comment {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 12px;
    }
    
    .review-author {
        font-size: 14px;
        color: #666;
        font-weight: 600;
    }
    
    /* Related Products Mobile */
    .related-products-section {
        padding: 32px 16px 40px !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        margin-top: 0;
        border-top: 1px solid #e9ecef;
    }
    
    .related-products-section h2 {
        font-size: 26px !important;
        margin-bottom: 28px !important;
        color: #0f244c;
        font-weight: 800;
        text-align: center;
        letter-spacing: -0.5px;
        position: relative;
        padding-bottom: 16px;
    }
    
    .related-products-section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #e50004, #ff3333);
        border-radius: 2px;
    }
    
    .related-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
        padding: 0;
    }
    
    .related-products-section .product-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.06);
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .related-products-section .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #0f244c, #e50004);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .related-products-section .product-card:active {
        transform: translateY(-4px) scale(0.98);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    .related-products-section .product-card:active::before {
        opacity: 1;
    }
    
    .related-products-section .product-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: #f5f5f5;
    }
    
    .related-products-section .product-card:active img {
        transform: scale(1.08);
    }
    
    .related-products-section .product-card .product-info {
        padding: 16px 14px 18px !important;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        background: #fff;
    }
    
    .related-products-section .product-card .product-info h3 {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #0f244c !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 42px;
    }
    
    .related-products-section .product-card .product-info .price {
        font-size: 20px !important;
        font-weight: 800 !important;
        color: #e50004 !important;
        margin-top: auto;
        letter-spacing: -0.3px;
    }
    
    .related-products-section .product-card .placeholder-image {
        width: 100%;
        height: 180px;
        background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 14px;
        font-weight: 500;
    }
}

.variation-group {
    margin-bottom: 15px;
}

.variation-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.variation-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quantity-group {
    margin: 20px 0;
}

.quantity-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Cart Section */
.cart-section {
    padding: 40px 0 60px;
    background: #f8f9fa;
    min-height: 60vh;
}

.cart-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.cart-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0f244c;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.cart-item-count {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.empty-cart-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.empty-cart h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f244c;
    margin: 0 0 12px 0;
}

.empty-cart p {
    font-size: 16px;
    color: #666;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

/* Cart Table - Desktop */
.cart-table-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: block; /* Show by default on desktop */
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.cart-table thead {
    background: linear-gradient(135deg, #0f244c 0%, #1a3a6b 100%);
}

.cart-table th {
    padding: 18px 20px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease;
}

.cart-table tbody tr:hover {
    background: #f8f9fa;
}

.cart-table tbody tr:last-child {
    border-bottom: none;
}

.cart-table td {
    padding: 20px;
    vertical-align: middle;
}

.product-name {
    font-weight: 600;
    color: #0f244c;
    font-size: 16px;
}

.product-variations {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.no-variations {
    color: #999;
    font-style: italic;
}

.product-price {
    font-weight: 700;
    color: #0f244c;
    font-size: 16px;
}

.quantity-input {
    width: 80px;
    padding: 10px 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: #0f244c;
    box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
}

.product-subtotal {
    font-weight: 700;
    color: #e50004;
    font-size: 18px;
}

.btn-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fee;
    color: #e50004;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #fcc;
}

.btn-remove:hover {
    background: #e50004;
    color: white;
    transform: scale(1.1);
}

/* Mobile Cart Items */
.cart-items-mobile {
    display: none;
}

.cart-item-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f244c;
    margin: 0;
    flex: 1;
    padding-right: 12px;
    line-height: 1.4;
}

.cart-item-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fee;
    color: #e50004;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #e50004;
    color: white;
}

.cart-item-variations {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    line-height: 1.5;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item-price-row,
.cart-item-quantity-row,
.cart-item-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label,
.quantity-label,
.subtotal-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.price-value {
    font-weight: 700;
    color: #0f244c;
    font-size: 16px;
}

.quantity-input-mobile {
    width: 100px;
    padding: 10px 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.quantity-input-mobile:focus {
    outline: none;
    border-color: #0f244c;
    box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
}

.subtotal-value {
    font-weight: 800;
    color: #e50004;
    font-size: 18px;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.cart-summary-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
}

.total-label {
    font-size: 20px;
    font-weight: 700;
    color: #0f244c;
}

.total-value {
    font-size: 28px;
    font-weight: 800;
    color: #e50004;
    letter-spacing: -0.5px;
}

.cart-delivery-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #065f46;
}

.cart-delivery-info svg {
    flex-shrink: 0;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-actions-primary {
    width: 100%;
}

.btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #e50004 0%, #c40003 100%);
    box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 0, 4, 0.5);
}

.btn-checkout:active {
    transform: translateY(0);
}

.cart-actions-secondary {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: #0f244c;
    border: 2px solid #dee2e6;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #0f244c;
    color: #0f244c;
}

/* Checkout Section */
.checkout-section {
    padding: 40px 0 60px;
    background: #f8f9fa;
    min-height: 60vh;
}

.checkout-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.checkout-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0f244c;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.checkout-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Checkout Grid - Two Column Layout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.checkout-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-form-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.checkout-summary-wrapper {
    position: sticky;
    top: 20px;
}

.checkout-summary-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.form-section-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.form-section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f244c;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.form-section-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Checkout Form */
.checkout-form {
    width: 100%;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-half {
    margin-bottom: 20px;
}

.form-help-text {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #666;
}

.checkout-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.checkout-form select:focus {
    outline: none;
    border-color: #0f244c;
    box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
}

.checkout-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #0f244c;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #0f244c;
    box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
    background: #fff;
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
    color: #999;
}

.checkout-form textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Order Summary */
.order-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e9ecef;
    margin-top: 32px;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.order-item-card {
    background: white;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.order-item-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #0f244c;
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f244c;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.order-item-variations {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-top: 4px;
}

.order-item-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.order-item-quantity {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.order-item-price {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.order-item-subtotal {
    font-size: 16px;
    font-weight: 700;
    color: #e50004;
}

.order-summary-footer {
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.order-delivery-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 20px;
}

.order-delivery-info svg {
    flex-shrink: 0;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.total-label {
    font-size: 20px;
    font-weight: 700;
    color: #0f244c;
}

.total-value {
    font-size: 28px;
    font-weight: 800;
    color: #e50004;
    letter-spacing: -0.5px;
}

/* Delivery & Payment Options */
.delivery-option-banner,
.payment-option-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
}

.delivery-option-banner::before,
.payment-option-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.delivery-option-banner svg,
.payment-option-banner svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.delivery-option-banner > div,
.payment-option-banner > div {
    flex: 1;
}

.delivery-option-banner strong,
.payment-option-banner strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.delivery-option-banner p,
.payment-option-banner p {
    margin: 0;
    font-size: 14px;
    color: #047857;
    line-height: 1.5;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.radio-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0f244c 0%, #1a3a6b 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.radio-option:hover {
    border-color: #0f244c;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(15, 36, 76, 0.1);
}

.radio-option:hover::before {
    transform: scaleY(1);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background: #0f244c;
    border-color: #0f244c;
    box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.15);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #0f244c;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    box-shadow: 0 4px 12px rgba(15, 36, 76, 0.15);
}

.radio-option:has(input[type="radio"]:checked)::before {
    transform: scaleY(1);
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2.5px solid #dee2e6;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    cursor: pointer;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.radio-content strong {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0f244c;
    margin-bottom: 0;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.radio-content .price-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.25);
    white-space: nowrap;
}

.radio-content .price-badge.paid {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.25);
}

.radio-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    position: relative;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px 0 0 12px;
}

.info-box svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #3b82f6;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.info-box > div {
    flex: 1;
}

.info-box strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.info-box ul {
    margin: 8px 0 0 0;
    padding-left: 22px;
    list-style: none;
}

.info-box ul li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 8px;
}

.info-box ul li::before {
    content: '✓';
    position: absolute;
    left: -18px;
    color: #3b82f6;
    font-weight: 700;
    font-size: 14px;
}

/* Order Summary Sidebar */
.summary-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f244c;
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.summary-item-image img[src=""],
.summary-item-image img:not([src]) {
    display: none;
}

.summary-item-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.summary-item-details {
    flex: 1;
    min-width: 0;
}

.summary-item-details h3 {
    font-size: 14px;
    font-weight: 600;
    color: #0f244c;
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.summary-item-variations {
    font-size: 12px;
    color: #666;
    margin: 4px 0;
    line-height: 1.4;
}

.summary-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

.summary-item-price {
    font-weight: 700;
    color: #e50004;
    font-size: 15px;
}

.summary-totals {
    padding: 20px 0;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 20px;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    color: #666;
}

.summary-total-row.free {
    color: #10b981;
    font-weight: 600;
}

.summary-total-row.final {
    font-size: 20px;
    font-weight: 800;
    color: #0f244c;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #e9ecef;
}

.summary-total-row.final span:last-child {
    color: #e50004;
    font-size: 24px;
}

.checkout-form-summary {
    margin-bottom: 20px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.trust-badge svg {
    flex-shrink: 0;
}

.terms-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.terms-text a {
    color: #0f244c;
    text-decoration: underline;
}

/* Place Order Button */
.btn-place-order {
    width: 100%;
    margin-top: 0;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #e50004 0%, #c40003 100%);
    box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 0, 4, 0.5);
}

.btn-place-order:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(229, 0, 4, 0.3);
}

/* Alert Styles */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}

.alert-error {
    background: #fee;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Footer sections wrapper for better control */
.footer-content::after {
    content: '';
    display: none;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo-img {
    max-height: 50px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    pointer-events: none;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section {
    margin-bottom: 0;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 8px 0;
}

.footer-section ul {
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
    transform: translateX(3px);
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.footer-social .social-icon svg {
    width: 20px;
    height: 20px;
}

/* WhatsApp Floating Button - Enhanced for Lead Generation */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #1DA851 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite, whatsapp-bounce 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: visible;
}


.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.2);
    background: linear-gradient(135deg, #2FE576 0%, #25D366 50%, #20BA5A 100%);
    animation: whatsapp-pulse 1.5s infinite, whatsapp-bounce 2s ease-in-out infinite;
}

.whatsapp-float:active {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 1;
    position: relative;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(15, 36, 76, 0.98) 0%, rgba(25, 50, 100, 0.98) 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(37, 211, 102, 0.3);
    letter-spacing: 0.3px;
}

.whatsapp-tooltip::before {
    content: '💬';
    margin-right: 6px;
    font-size: 16px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(15, 36, 76, 0.98);
    filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.2));
}

/* Only show tooltip on hover for desktop (not touch devices) */
@media (hover: hover) and (pointer: fine) {
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
        transform: translateY(-50%) translateX(-12px);
    }
}

/* Hide tooltip on touch devices */
@media (hover: none) and (pointer: coarse) {
    .whatsapp-tooltip {
        display: none;
    }
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


/* Alerts */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-content {
        padding: 50px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 9px 20px;
        margin-bottom: 20px;
        letter-spacing: 1.2px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 14px;
        letter-spacing: -0.6px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-pricing-info {
        font-size: 12px;
        padding: 12px 18px;
        margin-bottom: 28px;
        gap: 10px;
    }
    
    .hero-section .countdown-timer {
        gap: 6px !important;
        margin: 28px auto 32px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-section .timer-item {
        min-width: 65px !important;
        max-width: 70px !important;
        padding: 12px 6px !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important;
    }
    
    .hero-section .timer-value {
        font-size: 28px !important;
    }
    
    .hero-section .timer-label {
        font-size: 8px !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }
    
    .hero-section .timer-separator {
        font-size: 24px !important;
        margin: 0 1px !important;
        flex-shrink: 0 !important;
    }
    
    .btn-hero {
        padding: 16px 40px;
        font-size: 16px;
    }
    
    /* FAQ Section Extra Small */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .section-title {
        margin-bottom: 28px;
        font-size: 24px;
    }
    
    .faq-list {
        padding: 0 12px;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 15px;
        gap: 10px;
    }
    
    .faq-question::after {
        width: 22px;
        height: 22px;
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
    
    .faq-answer p {
        font-size: 13px;
        padding-top: 10px;
    }
    
    .shop-categories {
        padding: 40px 0;
    }
    
    .shop-categories-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .shop-categories-header .section-title {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .shop-categories-header .section-title::after {
        width: 50px;
        height: 3px;
        margin: 12px auto 0;
    }
    
    .section-subtitle {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 5px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 10px;
    }
    
    .category-image-wrapper {
        width: 130px;
        height: 130px;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.12),
            0 0 0 2px rgba(255, 255, 255, 1),
            0 0 0 4px rgba(229, 0, 4, 0.08);
    }
    
    .category-overlay {
        border-radius: 12px;
    }
    
    .placeholder-image {
        border-radius: 12px;
    }
    
    .category-label {
        padding: 7px 18px;
        bottom: -12px;
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(0, 0, 0, 0.05);
    }
    
    .category-name {
        font-size: 12px;
        font-weight: 700;
    }
    
    .category-count {
        margin-top: 20px;
        font-size: 11px;
    }
    
    /* Category Page Small Mobile */
    .category-header {
        padding: 30px 0 25px;
    }
    
    .category-header h1 {
        font-size: 2em !important;
        margin-bottom: 12px;
        margin-top: 0;
        padding: 0;
        line-height: 1.2;
        display: block;
    }
    
    .category-description {
        font-size: 14px;
    }
    
    .subcategories {
        padding: 30px 0;
    }
    
    .subcategories-header .section-title {
        font-size: 22px;
    }
    
    .subcategories-header .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .products-listing {
        padding: 30px 0;
    }
    
    .products-listing-header .section-title {
        font-size: 22px;
    }
    
    .products-listing-header .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .product-image-wrapper {
        height: 250px;
    }
    
    /* Hide product overlay completely on mobile */
    .product-card .product-overlay {
        opacity: 0 !important;
        display: none !important;
        visibility: hidden !important;
    }
    
    .product-card:active .product-overlay,
    .product-card:hover .product-overlay,
    .product-card:focus .product-overlay {
        opacity: 0 !important;
        display: none !important;
        visibility: hidden !important;
    }
    
    .product-info h3 {
        font-size: 15px;
        min-height: auto;
    }
    
    .price {
        font-size: 20px;
    }
    
    .product-detail .timer-item {
        min-width: 45px;
        padding: 10px 6px;
    }
    
    .product-detail .timer-value {
        font-size: 20px;
    }
    
    .product-detail .timer-label {
        font-size: 8px;
    }
    
    .product-detail .timer-separator {
        font-size: 18px;
    }
    
    .product-detail .countdown-timer {
        gap: 5px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb-container {
        width: 100%;
        overflow-x: hidden;
    }
    
    .breadcrumb-container .container {
        padding: 0 12px;
    }
    
    .breadcrumb {
        font-size: 13px;
        padding: 8px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 6px;
    }
    
    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
    
    .breadcrumb {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* Hide "Home" text on mobile, show only icon */
    .breadcrumb-home-text {
        display: none;
    }
    
    .breadcrumb-home-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Truncate long breadcrumb items on mobile */
    .breadcrumb-link:not(.breadcrumb-home),
    .breadcrumb-current {
        max-width: 150px;
        min-width: 0;
    }
    
    .breadcrumb-link:not(.breadcrumb-home) .breadcrumb-text,
    .breadcrumb-current .breadcrumb-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        display: inline-block;
    }
    
    .breadcrumb .separator {
        margin: 0 6px;
        flex-shrink: 0;
    }
    
    /* Ensure home icon doesn't shrink */
    .breadcrumb-home {
        flex-shrink: 0;
    }
}

/* Tablet breakpoint for breadcrumb */
@media (max-width: 768px) and (min-width: 481px) {
    .breadcrumb-link:not(.breadcrumb-home),
    .breadcrumb-current {
        max-width: 200px;
    }
    
    .breadcrumb-home-text {
        display: inline;
    }
    
    .breadcrumb-home-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-pricing-info {
        font-size: 11px;
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-pricing-info .separator {
        display: none;
    }
    
    /* Product Detail Page Mobile - Extra Small */
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin-bottom: 0 !important;
        display: grid !important;
    }
    
    .product-images {
        order: 1;
        position: static !important;
        top: auto !important;
    }
    
    .product-info {
        order: 2;
        padding: 18px 14px !important;
    }
    
    .product-info h1 {
        font-size: 22px !important;
        margin-bottom: 14px !important;
        line-height: 1.3 !important;
    }
    
    .product-price {
        font-size: 18px !important;
        margin: 0 0 18px 0 !important;
        padding: 14px !important;
    }
    
    .product-price .price-amount,
    .product-price #productPrice {
        font-size: 26px !important;
    }
    
    .product-price #originalPriceDisplay {
        font-size: 17px !important;
    }
    
    .product-detail .countdown-timer {
        flex-wrap: wrap !important;
        gap: 5px !important;
        margin-top: 0 !important;
        width: 100% !important;
    }
    
    .product-detail .timer-item {
        min-width: 55px !important;
        padding: 9px 7px !important;
    }
    
    .product-detail .timer-value {
        font-size: 18px !important;
    }
    
    .product-detail .timer-label {
        font-size: 8px !important;
    }
    
    .product-detail .timer-separator {
        font-size: 16px !important;
    }
    
    .image-thumbnails {
        gap: 8px !important;
        overflow-x: auto !important;
        padding: 10px 14px !important;
        -webkit-overflow-scrolling: touch;
        display: flex !important;
        flex-wrap: nowrap !important;
    }
    
    .image-thumbnails img {
        width: 70px !important;
        height: 70px !important;
        flex-shrink: 0 !important;
    }
    
    .variation-group {
        margin-bottom: 20px !important;
        padding: 14px !important;
    }
    
    .variation-group label {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    .variation-group select {
        padding: 13px 14px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        width: 100% !important;
    }
    
    .fabric-variation-group {
        padding: 14px !important;
    }
    
    .fabric-type-tabs {
        gap: 5px !important;
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
    }
    
    .fabric-type-tab-btn {
        padding: 9px 12px !important;
        font-size: 11px !important;
        min-width: auto !important;
    }
    
    .fabric-type-content,
    .fabric-type-content[style*="grid-template-columns"],
    .fabric-type-content[data-mobile-cols="4"] {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 7px !important;
    }
    
    /* Override inline styles for fabric swatches on mobile */
    #fabric-type-crushed-velvet,
    #fabric-type-plush-velvet,
    #fabric-type-naples,
    #fabric-type-chenille,
    #fabric-type-leather,
    [id^="fabric-type-"] {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .fabric-tab {
        padding: 7px !important;
    }
    
    .fabric-tab img {
        height: 50px !important;
    }
    
    .fabric-tab div[style*="height: 60px"] {
        height: 50px !important;
    }
    
    .fabric-tab div[style*="font-size: 10px"] {
        font-size: 9px !important;
    }
    
    .fabric-tab div[style*="font-size: 9px"] {
        font-size: 8px !important;
    }
    
    .quantity-group {
        margin: 20px 0 !important;
        padding: 14px !important;
    }
    
    .quantity-group input {
        width: 100% !important;
        padding: 13px 14px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    .btn-primary.btn-large,
    button[type="submit"].btn-primary.btn-large {
        width: 100% !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        margin-top: 0 !important;
    }
    
    .product-tabs-container {
        margin-top: 0 !important;
        padding: 0 14px 18px;
    }
    
    .product-tabs {
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 0 !important;
    }
    
    .tab-button {
        padding: 11px 16px !important;
        font-size: 13px !important;
        flex: 1 !important;
        min-width: auto !important;
    }
    
    .tab-content {
        padding: 0 !important;
        margin-top: 0 !important;
    }
    
    .product-description {
        padding: 0 14px;
        font-size: 14px;
    }
    
    /* Checkout Mobile - Extra Small */
    .checkout-section {
        padding: 12px 0 28px;
    }
    
    .checkout-section .container {
        padding: 0 10px;
    }
    
    .checkout-header {
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .checkout-header h1 {
        font-size: 22px;
        margin-bottom: 3px;
    }
    
    .checkout-subtitle {
        font-size: 12px;
    }
    
    .checkout-grid {
        gap: 12px;
    }
    
    .checkout-form-card,
    .checkout-summary-card {
        padding: 16px 12px;
        border-radius: 10px;
    }
    
    .form-section-header {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }
    
    .form-section-header h2 {
        font-size: 17px;
    }
    
    .checkout-form .form-group {
        margin-bottom: 16px;
    }
    
    .checkout-form label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .checkout-form input,
    .checkout-form textarea,
    .checkout-form select {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form-help-text {
        font-size: 11px;
    }
    
    .delivery-option-banner,
    .payment-option-banner {
        padding: 12px;
        gap: 10px;
        margin-bottom: 14px;
    }
    
    .delivery-option-banner strong,
    .payment-option-banner strong {
        font-size: 14px;
    }
    
    .delivery-option-banner p,
    .payment-option-banner p {
        font-size: 11px;
    }
    
    .radio-group {
        gap: 10px;
        margin-bottom: 14px;
    }
    
    .radio-option {
        padding: 12px;
        gap: 10px;
    }
    
    .radio-content strong {
        font-size: 13px;
    }
    
    .radio-content .price-badge {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .radio-content p {
        font-size: 11px;
    }
    
    .info-box {
        padding: 12px;
        gap: 10px;
        font-size: 11px;
    }
    
    .info-box strong {
        font-size: 12px;
    }
    
    .info-box ul li {
        font-size: 11px;
    }
    
    .summary-title {
        font-size: 17px;
        margin-bottom: 14px;
    }
    
    .summary-item-image {
        width: 60px;
        height: 60px;
    }
    
    .summary-item-details h3 {
        font-size: 12px;
    }
    
    .summary-item-variations {
        font-size: 10px;
    }
    
    .summary-item-meta {
        font-size: 11px;
    }
    
    .summary-item-price {
        font-size: 13px;
    }
    
    .summary-total-row {
        font-size: 13px;
    }
    
    .summary-total-row.final {
        font-size: 17px;
    }
    
    .summary-total-row.final span:last-child {
        font-size: 19px;
    }
    
    .btn-place-order {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .trust-badge {
        font-size: 10px;
    }
    
    .terms-text {
        font-size: 10px;
    }
    
    .dimensions-container {
        padding: 18px 0 !important;
    }
    
    .dimensions-container > div {
        padding: 18px !important;
        margin-bottom: 22px !important;
    }
    
    .dimensions-container h2,
    .dimensions-container h3 {
        font-size: 19px !important;
    }
    
    .dimensions-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .dimensions-table {
        min-width: 600px !important;
    }
    
    .dimensions-table th,
    .dimensions-table td {
        padding: 11px 9px !important;
        font-size: 13px !important;
    }
    
    /* Fix product price container */
    .product-price > div {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .product-price > div > span {
        width: 100% !important;
    }
    
    /* Review Form Mobile - Extra Small */
    .review-form-container {
        padding: 18px 14px !important;
    }
    
    .review-form-container h3 {
        font-size: 19px !important;
    }
    
    .review-form input[type="text"],
    .review-form input[type="email"],
    .review-form textarea {
        padding: 13px 14px !important;
    }
    
    .existing-reviews {
        padding: 0 14px 18px !important;
    }
    
    .existing-reviews h3 {
        font-size: 19px !important;
    }
    
    .review-item {
        padding: 16px;
    }
    
    /* Related Products Mobile - Extra Small */
    .related-products-section {
        padding: 28px 14px 36px !important;
    }
    
    .related-products-section h2 {
        font-size: 24px !important;
        margin-bottom: 24px !important;
        padding-bottom: 14px !important;
    }
    
    .related-products-section h2::after {
        width: 50px;
        height: 3px;
    }
    
    .related-products-section .products-grid {
        gap: 14px !important;
    }
    
    .related-products-section .product-card img {
        height: 160px !important;
    }
    
    .related-products-section .product-card .placeholder-image {
        height: 160px !important;
    }
    
    .related-products-section .product-card .product-info {
        padding: 14px 12px 16px !important;
    }
    
    .related-products-section .product-card .product-info h3 {
        font-size: 14px !important;
        min-height: 40px;
    }
    
    .related-products-section .product-card .product-info .price {
        font-size: 18px !important;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-info h1 {
        font-size: 26px;
    }
    
    .product-price .price-amount {
        font-size: 24px !important;
    }
    
    .fabric-type-content {
        grid-template-columns: repeat(6, 1fr) !important;
    }
    
    .product-detail .countdown-timer {
        gap: 6px !important;
    }
    
    .product-detail .timer-item {
        min-width: 48px !important;
        padding: 6px 7px !important;
    }
    
    .product-detail .timer-value {
        font-size: 17px !important;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    .cart-section {
        padding: 30px 0 50px;
    }
    
    .cart-header h1 {
        font-size: 32px;
    }
    
    .cart-item-card {
        padding: 18px;
    }
    
    .cart-summary {
        padding: 22px;
    }
    
    .cart-actions-secondary {
        flex-direction: row;
    }
    
    .btn-secondary {
        flex: 1;
    }
}

/* Small Desktop / Large Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-detail-grid {
        gap: 30px;
    }
    
    .fabric-type-content {
        grid-template-columns: repeat(6, 1fr) !important;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 16px;
        font-size: 14px;
    }
    
    .cart-item-title {
        font-size: 15px;
    }
}

/* Desktop - Show table, hide mobile cards */
@media (min-width: 769px) {
    .cart-table-wrapper {
        display: block;
    }
    
    .cart-items-mobile {
        display: none;
    }
    
    /* Checkout Desktop - Two Column Layout */
    .checkout-grid {
        grid-template-columns: 1fr 400px;
        gap: 30px;
        max-width: 1200px;
    }
    
    .checkout-summary-wrapper {
        position: sticky;
        top: 20px;
        order: 0;
    }
    
    .checkout-form-card {
        padding: 32px;
    }
    
    .checkout-summary-card {
        padding: 28px;
    }
    
    .form-section-header h2 {
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Cart Success Modal */
.cart-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cart-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px 32px 32px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.cart-modal-close:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.cart-modal-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.cart-modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f244c;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.cart-modal-message {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.cart-delivery-banner {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 14px 20px;
    margin: 0 0 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #065f46;
}

.cart-delivery-banner svg {
    flex-shrink: 0;
}

.cart-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-btn-primary {
    background: linear-gradient(135deg, #e50004 0%, #c40003 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
}

.cart-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 0, 4, 0.5);
}

.cart-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(229, 0, 4, 0.3);
}

.cart-btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #0f244c;
    color: #0f244c;
}

.cart-btn-secondary:active {
    transform: scale(0.98);
}

/* Mobile Styles for Modal */
@media (max-width: 768px) {
    .cart-success-modal {
        padding: 16px;
    }
    
    .cart-modal-content {
        padding: 32px 24px 24px;
        border-radius: 16px;
        max-width: 100%;
    }
    
    .cart-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
    
    .success-checkmark {
        width: 70px;
        height: 70px;
    }
    
    .cart-modal-title {
        font-size: 24px;
    }
    
    .cart-modal-message {
        font-size: 15px;
    }
    
    .cart-delivery-banner {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .cart-btn-primary {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .cart-btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .featured-products {
        padding: 32px 0 40px;
    }
    
    .featured-products-header {
        margin-bottom: 28px;
        padding: 0 16px;
    }
    
    .featured-products-header .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .featured-products-header .section-title::after {
        width: 50px;
        height: 2.5px;
        margin: 10px auto 0;
    }
    
    .featured-products .section-subtitle {
        font-size: 13px;
        margin-top: 12px;
    }
    
    .featured-products .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px;
        padding: 0 14px;
    }
    
    .featured-products .product-image-wrapper {
        height: 160px;
    }
    
    .featured-products .product-info {
        padding: 12px 10px;
    }
    
    .featured-products .product-info h3 {
        font-size: 14px;
        min-height: 40px;
        margin-bottom: 6px;
    }
    
    .featured-products .product-info .price {
        font-size: 16px;
    }
    
    .featured-products .view-product {
        font-size: 11px;
        padding: 7px 14px;
    }
    
    .cart-modal-content {
        padding: 28px 20px 20px;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .cart-modal-title {
        font-size: 22px;
    }
    
    .cart-modal-message {
        font-size: 14px;
    }
    
    /* WhatsApp Floating Button Extra Small */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
        border-width: 2px;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.08);
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-tooltip {
        display: none !important;
    }
    
    /* Footer Mobile - Extra Small */
    .main-footer {
        padding: 24px 0 16px;
        margin-top: 28px;
    }
    
    .main-footer .container {
        padding: 0 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px;
        margin-bottom: 18px;
    }
    
    .footer-section {
        padding-bottom: 18px;
    }
    
    .footer-logo {
        margin-bottom: 10px;
    }
    
    .footer-logo-img {
        max-height: 40px;
        max-width: 160px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .footer-section p {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .footer-section ul li {
        margin-bottom: 6px;
    }
    
    .footer-section a {
        font-size: 12px;
    }
    
    .footer-social {
        gap: 8px;
        margin-top: 10px;
    }
    
    .footer-social .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-social .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-bottom {
        padding-top: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}

/* ============================================
   Page Hero Section
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0f244c 0%, #1a3a6b 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px 0;
    padding: 0;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1.2;
    display: block;
}

.page-hero .hero-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-content {
    padding: 40px 0 60px;
}

.about-intro {
    margin-bottom: 50px;
}

.about-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-text h2 {
    font-size: 36px;
    color: #0f244c;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-intro-text .lead {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-intro-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    color: #0f244c;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-mission {
    background: #f8f9fa;
    padding: 50px 0;
    margin: 50px 0;
    border-radius: 12px;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 32px;
    color: #0f244c;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.mission-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.mission-list li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    position: relative;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f244c;
    font-weight: 700;
    font-size: 18px;
}

.about-values {
    margin: 50px 0;
}

.about-values h2 {
    font-size: 32px;
    color: #0f244c;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #0f244c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    color: #0f244c;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    background: linear-gradient(135deg, #0f244c 0%, #1a3a6b 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #0f244c;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-content {
    padding: 40px 0 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-card,
.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-form-card h2,
.contact-info-card h2 {
    font-size: 28px;
    color: #0f244c;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-subtitle,
.info-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0f244c;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #0f244c;
    box-shadow: 0 0 0 3px rgba(15, 36, 76, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-method:hover {
    background: #e9ecef;
}

.method-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 18px;
    color: #0f244c;
    margin-bottom: 6px;
    font-weight: 700;
}

.method-content p {
    font-size: 16px;
    color: #444;
    margin: 0 0 4px 0;
}

.method-content a {
    color: #0f244c;
    text-decoration: none;
    font-weight: 600;
}

.method-content a:hover {
    text-decoration: underline;
}

.method-note {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: 4px;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.contact-social h3 {
    font-size: 18px;
    color: #0f244c;
    margin-bottom: 16px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #0f244c;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #0f244c;
    color: white;
    transform: translateY(-2px);
}

.contact-faq {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-faq h3 {
    font-size: 22px;
    color: #0f244c;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    font-size: 16px;
    color: #0f244c;
    margin-bottom: 8px;
    font-weight: 600;
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item a {
    color: #0f244c;
    text-decoration: underline;
}

.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ============================================
   Policy Pages (Privacy & Terms) Styles
   ============================================ */
.policy-content {
    padding: 40px 0 60px;
}

.policy-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.policy-intro p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-section {
    max-width: 900px;
    margin: 0 auto 40px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.policy-section h2 {
    font-size: 28px;
    color: #0f244c;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

.policy-section p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.policy-section ul li {
    padding: 10px 0 10px 25px;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    position: relative;
}

.policy-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0f244c;
    font-weight: 700;
    font-size: 20px;
}

.policy-section ul li strong {
    color: #0f244c;
    font-weight: 600;
}

.contact-details {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-details p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-details a {
    color: #0f244c;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1.2;
        display: block;
    }
    
    .page-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .about-content {
        padding: 30px 0 40px;
    }
    
    .about-intro-text h2 {
        font-size: 28px;
    }
    
    .about-intro-text .lead {
        font-size: 18px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .about-mission {
        padding: 35px 20px;
        margin: 40px 0;
    }
    
    .mission-content h2 {
        font-size: 26px;
    }
    
    .about-values h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-cta {
        padding: 35px 20px;
    }
    
    .about-cta h2 {
        font-size: 26px;
    }
    
    .about-cta p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .contact-content {
        padding: 30px 0 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-form-card h2,
    .contact-info-card h2 {
        font-size: 24px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-faq {
        padding: 25px 20px;
    }
    
    .policy-content {
        padding: 30px 0 40px;
    }
    
    .policy-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero .hero-subtitle {
        font-size: 14px;
    }
    
    .about-intro-text h2 {
        font-size: 24px;
    }
    
    .about-intro-text .lead {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 14px;
    }
    
    .policy-section {
        padding: 20px 15px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
}

  
/* Reviews Page Styles */
.reviews-page {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.reviews-page-header {
    margin-bottom: 50px;
}

.reviews-page-title h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.reviews-stats {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.stats-card {
    text-align: center;
}

.stats-rating {
    margin-bottom: 15px;
}

.stats-rating-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stats-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stats-stars .star {
    font-size: 24px;
}

.stats-total {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-label {
    min-width: 70px;
    font-size: 14px;
    color: #666;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-count {
    min-width: 30px;
    text-align: right;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item-full {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-item-full:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.review-item-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.review-item-date {
    font-size: 13px;
    color: #999;
}

.review-item-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-item-rating .star {
    font-size: 20px;
}

.review-product-link {
    margin-bottom: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--primary-color);
}

.product-link-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.product-link-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.review-item-content {
    margin-bottom: 20px;
}

.review-item-comment {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.review-item-reply {
    margin-top: 20px;
    padding: 20px;
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.reply-header {
    margin-bottom: 12px;
}

.reply-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reply-author strong {
    color: var(--primary-color);
    font-size: 15px;
}

.reply-date {
    font-size: 13px;
    color: #666;
}

.reply-content {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .reviews-page {
        padding: 40px 0;
    }
    
    .reviews-page-title h1 {
        font-size: 2em;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .review-item-full {
        padding: 20px;
    }
    
    .review-item-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-item-author {
        width: 100%;
    }
    
    .product-link {
        flex-wrap: wrap;
    }
}

/* City and Keyword Pages */
.city-page-hero,
.keyword-page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.city-hero-content h1,
.keyword-hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.city-subtitle,
.keyword-subtitle {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn-hero-city,
.btn-hero-keyword {
    display: inline-block;
    padding: 18px 50px;
    background: #e50004;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(229, 0, 4, 0.4);
    border: 2px solid #e50004;
    margin-top: 20px;
}

.btn-hero-city:hover,
.btn-hero-keyword:hover {
    background: #cc0003;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 0, 4, 0.6);
}

.city-content-section,
.keyword-content-section {
    padding: 60px 0;
    background: white;
}

.city-intro,
.keyword-intro {
    max-width: 900px;
    margin: 0 auto;
}

.city-intro h2,
.keyword-intro h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.city-intro h3,
.keyword-intro h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.city-intro p,
.keyword-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.city-benefits,
.keyword-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.city-benefits li,
.keyword-benefits li {
    padding: 10px 0;
    font-size: 1.1em;
    color: #333;
}

.city-cta-section,
.keyword-cta-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Delivery Areas and Suggested Products Pages */
.delivery-areas-page,
.suggested-products-page {
    padding: 60px 0;
    background: #f8f9fa;
}

.delivery-areas-header,
.suggested-products-header {
    text-align: center;
    margin-bottom: 50px;
}

.delivery-areas-header h1,
.suggested-products-header h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.delivery-areas-content,
.suggested-products-content {
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-intro,
.keywords-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cities-grid,
.keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.city-card,
.keyword-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.city-card:hover,
.keyword-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.city-link,
.keyword-link {
    display: block;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.city-link h3,
.keyword-link h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.city-link p,
.keyword-link p {
    font-size: 0.95em;
    color: #666;
    margin: 0;
}

.city-arrow,
.keyword-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.city-card:hover .city-arrow,
.keyword-card:hover .keyword-arrow {
    transform: translateY(-50%) translateX(5px);
}

.delivery-note {
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.delivery-note p {
    margin: 0;
    color: #555;
    font-size: 1em;
}

@media (max-width: 768px) {
    .city-hero-content h1,
    .keyword-hero-content h1 {
        font-size: 1.8em;
    }
    
    .city-subtitle,
    .keyword-subtitle {
        font-size: 1em;
        padding: 0 20px;
    }
    
    .city-content-section,
    .keyword-content-section {
        padding: 40px 0;
    }
    
    .city-intro h2,
    .keyword-intro h2 {
        font-size: 1.5em;
    }
    
    .city-intro p,
    .keyword-intro p {
        font-size: 1em;
    }
    
    .cities-grid,
    .keywords-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .delivery-areas-header h1,
    .suggested-products-header h1 {
        font-size: 2em;
    }
}

/* FAQs Section Styles */
.city-faqs-section,
.keyword-faqs-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faqs-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question.active {
    background-color: #e8f4f8;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    margin: 20px 0 0;
    color: #555;
    line-height: 1.8;
    font-size: 1em;
}

/* Google Maps Section Styles */
.city-map-section {
    padding: 60px 0;
    background: white;
}

.city-map-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.city-map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-info {
    padding: 25px;
    background: #f8f9fa;
    border-top: 3px solid var(--secondary-color);
}

.map-info h3 {
    margin: 0 0 15px;
    color: var(--primary-color);
    font-size: 1.3em;
}

.map-info p {
    margin: 8px 0;
    color: #555;
    line-height: 1.6;
}

.map-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.map-info a:hover {
    text-decoration: underline;
}

/* Mobile Responsive for FAQs and Maps */
@media (max-width: 768px) {
    .city-faqs-section,
    .keyword-faqs-section,
    .city-map-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1em;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .city-map-wrapper iframe {
        height: 350px;
    }
    
    .map-info {
        padding: 20px;
    }
}

