/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #000;
    --secondary-color: #666;
    --accent-color: #ff6b6b;
    --bg-color: #fff;
    --border-color: #e5e5e5;
    --hover-color: #f8f8f8;
    --text-dark: #333;
    --text-light: #999;
    --sale-color: #e74c3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Image Optimization */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Fix for broken images */
img:not([src]),
img[src=""] {
    opacity: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Banner */
.top-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 50px;
    font-size: 13px;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.language-selector {
    font-size: 11px;
    letter-spacing: 0.5px;
}

.lang-active {
    color: #b4ff39;
    font-weight: 600;
}

.banner-center {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.banner-nav {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.banner-messages {
    display: flex;
    overflow: hidden;
    min-width: 280px;
    justify-content: center;
}

.banner-msg {
    display: none;
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.banner-msg.active {
    display: inline;
}

.banner-msg strong {
    color: #b4ff39;
    font-weight: 700;
}

.country-flag-top img {
    width: 24px;
    height: auto;
    display: block;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main-row {
    display: flex;
    align-items: center;
    padding: 12px 50px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 15px;
    flex-wrap: nowrap;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo a {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.02);
}

/* Header Navigation */
.header-nav {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.header-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    font-size: 13px;
    font-weight: 700;
    color: white;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1.2;
    min-width: fit-content;
    height: fit-content;
}

.nav-tab:hover,
.nav-tab-active {
    background: linear-gradient(135deg, #1a202c 0%, #000 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.nav-tab img,
.nav-tab .outlet-badge {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    flex-shrink: 0;
}

.nav-tab img {
    object-fit: cover;
    display: block;
    background: white;
    padding: 2px;
}

.outlet-badge {
    background: #f59e0b;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
}

.nav-tab > span:not(.outlet-badge) {
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
}

/* Header Right Section */
.header-right-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding-left: 28px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.search-bar {
    position: relative;
    width: 160px;
    flex-shrink: 0;
}

.search-bar input {
    width: 100%;
    padding: 9px 36px 9px 14px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
    color: #333;
}

.search-bar input::placeholder {
    color: #999;
}

.search-bar input:focus {
    outline: none;
    border-color: #555;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover svg {
    stroke: #333;
}

.header-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: all 0.2s ease;
    padding: 5px 6px;
    color: #222;
    white-space: nowrap;
}

.icon-btn:hover {
    color: #000;
}

.user-dropdown-wrapper {
    position: relative;
}

.icon-btn-login {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
}

.dropdown-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.icon-btn-login.open .dropdown-chevron {
    transform: rotate(180deg);
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    min-width: 210px;
    z-index: 9999;
    border-radius: 2px;
    overflow: hidden;
}

.user-dropdown.open {
    display: block;
}

.user-dropdown-login {
    display: block;
    background: #111;
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    padding: 15px 16px;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.user-dropdown-login:hover {
    background: #333;
}

.user-dropdown-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 13px;
    color: #222;
    border-top: 1px solid #f0f0f0;
}

.user-dropdown-help:hover {
    background: #f7f7f7;
}

.icon-btn-count {
    position: relative;
    padding: 5px 8px;
}

.icon-count {
    position: absolute;
    top: -4px;
    right: 0px;
    background-color: #ff3b3b;
    color: white;
    border-radius: 50%;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.dropdown-arrow {
    font-size: 10px;
    opacity: 0.6;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--sale-color);
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 700;
}

/* Secondary Navigation */
.secondary-nav {
    background-color: #f5f5f5;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 500;
    overflow: visible;
}

.secondary-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.category-dropdown {
    background: white;
    border: 1px solid var(--border-color);
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.category-dropdown:hover {
    background-color: var(--hover-color);
}

.category-links {
    display: flex;
    gap: 25px;
    flex: 1;
    overflow-x: auto;
}

.category-links::-webkit-scrollbar {
    display: none;
}

.category-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.category-links a:hover {
    color: var(--accent-color);
}

.category-links .sale-link {
    color: var(--sale-color);
    font-weight: 700;
}

.category-links .sale-link:hover {
    color: #c0392b;
}

/* === MEGA MENU === */
.mega-menu-wrapper {
    position: static;
    display: inline-flex;
    align-items: center;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
}

.mega-menu-wrapper:hover .mega-menu,
.mega-menu-wrapper.active .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-menu-wrapper:hover .mega-trigger,
.mega-menu-wrapper.active .mega-trigger {
    color: var(--accent-color);
}

.mega-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 50px;
    display: flex;
    gap: 36px;
}

.mega-col {
    flex: 1;
    min-width: 130px;
}

.mega-col-wide {
    flex: 2;
}

.mega-col h4 {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #ebebeb;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col-wide ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.mega-col ul li {
    margin-bottom: 8px;
}

.mega-col-wide ul li {
    margin-bottom: 0;
}

.mega-col ul li a {
    font-size: 13px;
    color: #333;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
    transition: color 0.2s;
    padding: 0;
}

.mega-col ul li a:hover {
    color: var(--accent-color);
}

.mega-col ul li a.view-all {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mega-col ul li a.view-all:hover {
    text-decoration: underline;
}

.mega-brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
    flex-direction: column;
}

.mega-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.28);
    z-index: 498;
}

.mega-overlay.active {
    display: block;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    max-height: 614px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-content .btn-primary {
    padding: 15px 50px;
    font-size: 16px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.hero-content .btn-primary:hover {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.05);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-arrow:hover {
    background: #f0f0f0;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Category Grid Section */
.category-grid-section {
    background-color: white;
    padding: 40px 0;
    margin-top: 0;
    border-bottom: 1px solid #e5e5e5;
}

.category-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.category-grid-wrapper {
    overflow: hidden;
    position: relative;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    transition: transform 0.3s ease;
}

.category-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    background-color: #f5f5f5;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

.category-label {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.3px;
}

/* Ramadan Offer Styling */
.ramadan-offer .category-image {
    background: linear-gradient(135deg, #cd7f32 0%, #e89e4f 100%);
}

.ramadan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.ramadan-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #cd7f32;
    margin-bottom: 20px;
}

.ramadan-overlay h3 {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 2px;
}

/* Category Slider Arrows */
.category-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    border: 1px solid #e5e5e5;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-prev {
    left: 0;
}

.category-next {
    right: 0;
}

.category-slider-arrow:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .category-item:nth-child(7) {
        display: none;
    }
    
    .category-item:nth-child(14) {
        display: none;
    }
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .category-item:nth-child(6),
    .category-item:nth-child(7) {
        display: none;
    }
    
    .category-item:nth-child(13),
    .category-item:nth-child(14) {
        display: none;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .category-grid-section {
        padding: 30px 0;
    }
    
    .category-grid-container {
        padding: 0 30px;
    }
    
    .category-label {
        font-size: 13px;
    }
    
    .ramadan-overlay h3 {
        font-size: 20px;
    }
    
    .ramadan-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Glam Mode Section */
.glam-mode-section {
    background-color: #f8f8f8;
    padding: 60px 0;
    margin-top: 0;
}

.glam-mode-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Mode Toggle */
.mode-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.mode-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 8px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.mode-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mode-label.active {
    color: #000;
}

.mode-label.inactive {
    color: #ccc;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.comfort .toggle-slider {
    transform: translateX(30px);
}

.toggle-switch.comfort {
    background: linear-gradient(90deg, #aaa 0%, #ccc 100%);
}

/* Glam Grid */
.glam-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 15px;
}

.glam-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #fff;
}

.glam-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.glam-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.glam-item:hover img {
    transform: scale(1.05);
}

.glam-item-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 0.3px;
}

/* Center Hero */
.glam-hero {
    grid-column: 2 / 5;
    grid-row: 1 / 4;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #8B4789 0%, #D946A0 100%);
}

.glam-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glam-hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    z-index: 2;
}

.glam-hero-title {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1;
}

.glam-edit {
    color: #b4ff39;
    font-style: italic;
    font-weight: 400;
}

.glam-shop-all {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.glam-shop-all:hover {
    text-decoration-thickness: 2px;
    transform: translateX(5px);
}

/* Grid positioning for specific items */
.glam-grid .glam-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.glam-grid .glam-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.glam-grid .glam-item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

.glam-grid .glam-item:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
}

.glam-grid .glam-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.glam-grid .glam-item:nth-child(7) {
    grid-column: 4;
    grid-row: 1;
}

.glam-grid .glam-item:nth-child(8) {
    grid-column: 4;
    grid-row: 2;
}

.glam-grid .glam-item:nth-child(9) {
    grid-column: 2;
    grid-row: 3;
}

.glam-grid .glam-item:nth-child(10) {
    grid-column: 4;
    grid-row: 3;
}

.glam-grid .glam-item:nth-child(11) {
    grid-column: 5;
    grid-row: 1;
}

.glam-grid .glam-item:nth-child(12) {
    grid-column: 5;
    grid-row: 2;
}

.glam-grid .glam-item:nth-child(13) {
    grid-column: 5;
    grid-row: 3;
}

.glam-grid .glam-item:nth-child(14) {
    grid-column: 3;
    grid-row: 1;
}

.glam-grid .glam-item:nth-child(15) {
    grid-column: 3;
    grid-row: 3;
}

/* Responsive Glam Mode */
@media (max-width: 1200px) {
    .glam-grid {
        grid-template-rows: repeat(3, 180px);
    }
    
    .glam-hero-title {
        font-size: 48px;
    }
    
    .glam-hero-content {
        bottom: 40px;
        left: 40px;
    }
}

@media (max-width: 992px) {
    .glam-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }
    
    .glam-hero {
        grid-column: 1 / 4;
        grid-row: 2 / 4;
        min-height: 400px;
    }
    
    .glam-grid .glam-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .glam-mode-section {
        padding: 40px 0;
    }
    
    .mode-toggle-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .glam-mode-container {
        padding: 0 30px;
    }
    
    .glam-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .glam-hero {
        grid-column: 1 / 3;
        min-height: 350px;
    }
    
    .glam-hero-title {
        font-size: 36px;
    }
    
    .glam-hero-content {
        bottom: 30px;
        left: 30px;
    }
    
    .mode-toggle {
        padding: 6px 20px;
        gap: 15px;
    }
    
    .mode-label {
        font-size: 12px;
    }
    
    .toggle-switch {
        width: 50px;
        height: 26px;
    }
    
    .toggle-slider {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .glam-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .glam-hero {
        grid-column: 1;
        min-height: 300px;
    }
    
    .glam-hero-title {
        font-size: 28px;
    }
    
    .glam-item-label {
        font-size: 13px;
        bottom: 10px;
        left: 10px;
    }
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 14px 45px;
    border: 2px solid white;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Category Tabs */
.category-tabs {
    background-color: var(--hover-color);
    padding: 20px 0;
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.tab-btn {
    padding: 10px 25px;
    background-color: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* AD Banner Sections */
.ad-banner-section {
    padding: 60px 0;
    margin-top: 40px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ad-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
    z-index: 2;
}

.ad-text {
    flex: 1;
}

.ad-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.ad-subtitle {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.ad-cta {
    display: flex;
    align-items: center;
}

.ad-btn {
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
}

.ad-btn:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.timer-unit {
    text-align: center;
}

.timer-value {
    background: rgba(255, 255, 255, 0.2);
    padding: 16px 22px;
    border-radius: 8px;
    font-size: 32px;
    font-weight: bold;
    min-width: 70px;
    backdrop-filter: blur(5px);
}

.timer-label {
    font-size: 12px;
    margin-top: 8px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.timer-separator {
    font-size: 28px;
    font-weight: bold;
    opacity: 0.7;
}

/* Different banner color schemes with background images */
.flash-sale-banner {
    background-image: 
        linear-gradient(90deg, rgba(255, 107, 107, 0.85) 0%, rgba(255, 142, 83, 0.85) 100%),
        url('https://images.pexels.com/photos/1884581/pexels-photo-1884581.jpeg?auto=compress&cs=tinysrgb&w=1914&h=614');
    background-position: center;
    background-size: cover;
    min-height: 350px;
}

.new-arrivals-banner {
    background-image: 
        linear-gradient(90deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%),
        url('https://images.pexels.com/photos/1926769/pexels-photo-1926769.jpeg?auto=compress&cs=tinysrgb&w=1914&h=614');
    background-position: center;
    background-size: cover;
    min-height: 350px;
}

.premium-brands-banner {
    background-image: 
        linear-gradient(90deg, rgba(26, 26, 26, 0.85) 0%, rgba(67, 67, 67, 0.85) 100%),
        url('https://images.pexels.com/photos/1336873/pexels-photo-1336873.jpeg?auto=compress&cs=tinysrgb&w=1914&h=614');
    background-position: center;
    background-size: cover;
    min-height: 350px;
}

/* Responsive AD Banners */
@media (max-width: 992px) {
    .hero-slider {
        height: 400px;
    }
    
    .ad-banner-section {
        padding: 30px 0;
        min-height: 300px;
    }
    
    .ad-banner-content {
        padding: 0 40px;
    }
    
    .ad-title {
        font-size: 28px;
    }
    
    .ad-subtitle {
        font-size: 15px;
    }
    
    .timer-value {
        padding: 12px 18px;
        font-size: 26px;
        min-width: 60px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }
    
    .ad-banner-section {
        min-height: 250px;
    }
    
    .ad-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 30px;
    }
    
    .ad-title {
        font-size: 24px;
    }
    
    .ad-subtitle {
        font-size: 14px;
    }
    
    .timer-value {
        padding: 10px 15px;
        font-size: 22px;
        min-width: 50px;
    }
    
    .timer-label {
        font-size: 10px;
    }
    
    .ad-btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }
    
    .ad-banner-section {
        padding: 25px 0;
        margin-top: 20px;
        min-height: 200px;
    }
    
    .ad-title {
        font-size: 20px;
    }
    
    .ad-subtitle {
        font-size: 12px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .timer-value {
        padding: 8px 12px;
        font-size: 18px;
        min-width: 45px;
    }
    
    .timer-separator {
        font-size: 20px;
    }
}

/* The Store Edit Section */
.store-edit-section {
    background-color: #ffffff;
    padding: 60px 0;
    margin: 40px 0;
}

.store-edit-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.store-edit-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1a3b5d;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.store-edit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.store-edit-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 5;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-edit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.store-edit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.store-edit-card:hover img {
    transform: scale(1.05);
}

.store-edit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.store-edit-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

/* Store Edit Responsive */
@media (max-width: 1200px) {
    .store-edit-container {
        padding: 0 30px;
    }
    
    .store-edit-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
    
    .store-edit-grid {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .store-edit-section {
        padding: 50px 0;
        margin: 30px 0;
    }
    
    .store-edit-title {
        font-size: 34px;
        margin-bottom: 35px;
    }
    
    .store-edit-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .store-edit-name {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .store-edit-container {
        padding: 0 20px;
    }
    
    .store-edit-title {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: 1.5px;
    }
    
    .store-edit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .store-edit-overlay {
        padding: 20px 15px 15px;
    }
    
    .store-edit-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .store-edit-section {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .store-edit-container {
        padding: 0 15px;
    }
    
    .store-edit-title {
        font-size: 24px;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .store-edit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .store-edit-overlay {
        padding: 15px 10px 10px;
    }
    
    .store-edit-name {
        font-size: 14px;
    }
}

/* Sports & Gym Wear Section */
.sports-gym-section {
    margin: 40px 0;
    background-color: #ffffff;
}

/* Sports Banner */
.sports-gym-banner {
    position: relative;
    height: 500px;
    max-height: 614px;
    background-image: url('https://images.pexels.com/photos/2294361/pexels-photo-2294361.jpeg?auto=compress&cs=tinysrgb&w=1914&h=614');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sports-gym-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 70%);
    display: flex;
    align-items: center;
}

.sports-gym-banner-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sports-banner-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sports-banner-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.sports-banner-btn {
    background-color: #b8ff3c;
    color: #000000;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    text-transform: capitalize;
    box-shadow: 0 4px 12px rgba(184, 255, 60, 0.4);
}

.sports-banner-btn:hover {
    background-color: #a3e835;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 255, 60, 0.5);
}

.sports-banner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Sports Products */
.sports-gym-products {
    background-color: #ffffff;
    padding: 40px 0;
}

.sports-gym-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.sports-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sports-product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
}

.sports-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sports-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px;
    background-color: #ffffff;
}

.sports-timer-badge {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.timer-red-text {
    color: #e53935;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timer-values {
    display: flex;
    gap: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
}

.timer-digit {
    background-color: #e53935;
    color: #ffffff;
    padding: 2px 5px;
    border-radius: 3px;
    min-width: 22px;
    text-align: center;
}

.sports-wishlist-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: color 0.3s ease;
}

.sports-wishlist-btn:hover {
    color: #e53935;
}

.sports-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f8f8f8;
}

.sports-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sports-verified-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sports-promo-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #e53935;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.sports-product-info {
    padding: 12px;
}

.sports-brand {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.sports-product-name {
    font-size: 13px;
    color: #666666;
    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: 36px;
}

.sports-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.sports-price {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.sports-original-price {
    font-size: 14px;
    color: #999999;
    text-decoration: line-through;
}

.sports-discount {
    font-size: 13px;
    color: #e53935;
    font-weight: 600;
}

.sports-price-label {
    font-size: 11px;
    color: #666666;
    margin-bottom: 8px;
}

.sports-get-today {
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    margin-top: 4px;
}

.today-highlight {
    background-color: #fff59d;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
}

/* Sports Section Responsive */
@media (max-width: 1200px) {
    .sports-gym-container {
        padding: 0 30px;
    }
    
    .sports-gym-banner-content {
        padding: 0 30px;
    }
    
    .sports-banner-title {
        font-size: 48px;
    }
    
    .sports-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .sports-gym-banner {
        height: 400px;
    }
    
    .sports-banner-title {
        font-size: 42px;
    }
    
    .sports-banner-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
    
    .sports-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sports-gym-container {
        padding: 0 20px;
    }
    
    .sports-gym-banner {
        height: 350px;
    }
    
    .sports-gym-banner-content {
        padding: 0 20px;
    }
    
    .sports-banner-title {
        font-size: 36px;
    }
    
    .sports-banner-btn {
        padding: 10px 28px;
        font-size: 14px;
    }
    
    .sports-banner-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .sports-gym-products {
        padding: 30px 0;
    }
    
    .sports-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sports-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sports-gym-banner {
        height: 300px;
    }
    
    .sports-gym-banner-content {
        padding: 0 15px;
        gap: 15px;
    }
    
    .sports-banner-logo svg {
        width: 100px;
        height: 34px;
    }
    
    .sports-banner-title {
        font-size: 32px;
    }
    
    .sports-banner-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .sports-gym-container {
        padding: 0 15px;
    }
    
    .sports-products-grid {
        gap: 10px;
    }
    
    .sports-product-header {
        padding: 10px;
    }
    
    .sports-product-info {
        padding: 10px;
    }
    
    .sports-brand {
        font-size: 12px;
    }
    
    .sports-product-name {
        font-size: 12px;
        min-height: 32px;
    }
    
    .sports-price {
        font-size: 15px;
    }
    
    .sports-original-price {
        font-size: 12px;
    }
    
    .sports-discount {
        font-size: 11px;
    }
}

/* Schwarzkopf Cosmetics Section */
.cosmetics-section {
    margin: 40px 0;
    background-color: #ffffff;
}

/* Cosmetics Banner */
.cosmetics-banner {
    position: relative;
    height: 500px;
    max-height: 614px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    overflow: hidden;
}

.cosmetics-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.cosmetics-banner-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
}

.cosmetics-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cosmetics-new-badge {
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cosmetics-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cosmetics-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 1px;
}

.cosmetics-subtitle {
    font-size: 18px;
    color: #333333;
    margin: 0;
}

.cosmetics-shop-btn {
    background-color: #b8ff3c;
    color: #000000;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(184, 255, 60, 0.4);
}

.cosmetics-shop-btn:hover {
    background-color: #a3e835;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 255, 60, 0.5);
}

.cosmetics-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cosmetics-feature {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    line-height: 1.2;
}

.cosmetics-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
}

.cosmetics-model {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: top center;
}

.cosmetics-products-display {
    display: flex;
    align-items: center;
    justify-content: center;
}

.display-products {
    width: 280px;
    height: auto;
    object-fit: contain;
}

.cosmetics-banner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Cosmetics Products */
.cosmetics-products {
    background-color: #ffffff;
    padding: 40px 0;
}

.cosmetics-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.cosmetics-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.cosmetics-product-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
}

.cosmetics-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cosmetics-free-gift {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffffff;
    color: #000000;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cosmetics-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: color 0.3s ease;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cosmetics-wishlist-btn:hover {
    color: #e53935;
}

.cosmetics-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f8f8f8;
}

.cosmetics-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cosmetics-product-info {
    padding: 12px;
}

.cosmetics-brand {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.cosmetics-product-name {
    font-size: 13px;
    color: #666666;
    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: 36px;
}

.cosmetics-price {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.cosmetics-delivery {
    font-size: 11px;
    color: #00a650;
    margin-bottom: 4px;
    font-weight: 600;
}

.cosmetics-get-today {
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    margin-top: 4px;
}

/* Cosmetics Section Responsive */
@media (max-width: 1200px) {
    .cosmetics-container {
        padding: 0 30px;
    }
    
    .cosmetics-banner-content {
        padding: 0 30px;
        gap: 30px;
    }
    
    .cosmetics-title {
        font-size: 42px;
    }
    
    .cosmetics-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .display-products {
        width: 240px;
    }
}

@media (max-width: 992px) {
    .cosmetics-banner {
        height: 400px;
    }
    
    .cosmetics-banner-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .cosmetics-right {
        height: 400px;
    }
    
    .cosmetics-products-display {
        display: none;
    }
    
    .cosmetics-title {
        font-size: 36px;
    }
    
    .cosmetics-subtitle {
        font-size: 16px;
    }
    
    .cosmetics-shop-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
    
    .cosmetics-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cosmetics-container {
        padding: 0 20px;
    }
    
    .cosmetics-banner {
        height: 350px;
    }
    
    .cosmetics-banner-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cosmetics-center {
        display: none;
    }
    
    .cosmetics-right {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 50%;
        opacity: 0.3;
    }
    
    .cosmetics-left {
        z-index: 1;
    }
    
    .cosmetics-title {
        font-size: 32px;
    }
    
    .cosmetics-subtitle {
        font-size: 14px;
    }
    
    .cosmetics-shop-btn {
        padding: 10px 28px;
        font-size: 14px;
    }
    
    .cosmetics-banner-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .cosmetics-products {
        padding: 30px 0;
    }
    
    .cosmetics-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .cosmetics-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cosmetics-banner {
        height: 300px;
    }
    
    .cosmetics-banner-content {
        padding: 0 15px;
        gap: 12px;
    }
    
    .cosmetics-new-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .brand-subtitle {
        font-size: 9px;
    }
    
    .cosmetics-title {
        font-size: 28px;
    }
    
    .cosmetics-subtitle {
        font-size: 13px;
    }
    
    .cosmetics-shop-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .cosmetics-container {
        padding: 0 15px;
    }
    
    .cosmetics-products-grid {
        gap: 10px;
    }
    
    .cosmetics-product-info {
        padding: 10px;
    }
    
    .cosmetics-brand {
        font-size: 12px;
    }
    
    .cosmetics-product-name {
        font-size: 12px;
        min-height: 32px;
    }
    
    .cosmetics-price {
        font-size: 15px;
    }
}

/* H&M Women's Trends Section */
.hm-trends-section {
    margin: 40px 0;
    background-color: #ffffff;
}

/* H&M Trends Banner */
.hm-trends-banner {
    position: relative;
    height: 500px;
    max-height: 614px;
    background: linear-gradient(135deg, #d8d8d8 0%, #bdbdbd 100%);
    overflow: hidden;
}

.hm-trends-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hm-trends-banner-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
}

.hm-trends-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hm-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hm-trends-title {
    font-size: 42px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    max-width: 400px;
}

.hm-trends-shop-btn {
    background-color: #b8ff3c;
    color: #000000;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(184, 255, 60, 0.4);
}

.hm-trends-shop-btn:hover {
    background-color: #a3e835;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 255, 60, 0.5);
}

.hm-trends-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hm-trends-model {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: top center;
}

.hm-trends-banner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* H&M Trends Products */
.hm-trends-products {
    background-color: #ffffff;
    padding: 40px 0;
}

.hm-trends-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.hm-trends-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.hm-trends-product-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
}

.hm-trends-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hm-trends-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: color 0.3s ease;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hm-trends-wishlist-btn:hover {
    color: #e53935;
}

.hm-trends-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f8f8f8;
}

.hm-trends-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hm-trends-product-info {
    padding: 12px;
}

.hm-trends-brand {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.hm-trends-product-name {
    font-size: 13px;
    color: #666666;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 36px;
}

.hm-trends-price {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.hm-trends-delivery {
    font-size: 11px;
    color: #666666;
    margin-bottom: 4px;
}

/* H&M Trends Section Responsive */
@media (max-width: 1200px) {
    .hm-trends-container {
        padding: 0 30px;
    }
    
    .hm-trends-banner-content {
        padding: 0 30px;
        gap: 30px;
    }
    
    .hm-trends-title {
        font-size: 38px;
    }
    
    .hm-trends-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .hm-trends-banner {
        height: 400px;
    }
    
    .hm-trends-right {
        height: 400px;
    }
    
    .hm-trends-title {
        font-size: 34px;
    }
    
    .hm-trends-shop-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
    
    .hm-trends-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hm-trends-container {
        padding: 0 20px;
    }
    
    .hm-trends-banner {
        height: 350px;
    }
    
    .hm-trends-banner-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hm-trends-right {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 50%;
        opacity: 0.3;
    }
    
    .hm-trends-left {
        z-index: 1;
    }
    
    .hm-trends-title {
        font-size: 28px;
        max-width: 250px;
    }
    
    .hm-trends-shop-btn {
        padding: 10px 28px;
        font-size: 14px;
    }
    
    .hm-trends-banner-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hm-trends-products {
        padding: 30px 0;
    }
    
    .hm-trends-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .hm-trends-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hm-trends-banner {
        height: 300px;
    }
    
    .hm-trends-banner-content {
        padding: 0 15px;
        gap: 15px;
    }
    
    .hm-trends-logo svg {
        width: 100px;
        height: 50px;
    }
    
    .hm-trends-title {
        font-size: 24px;
        max-width: 200px;
    }
    
    .hm-trends-shop-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .hm-trends-container {
        padding: 0 15px;
    }
    
    .hm-trends-products-grid {
        gap: 10px;
    }
    
    .hm-trends-product-info {
        padding: 10px;
    }
    
    .hm-trends-brand {
        font-size: 12px;
    }
    
    .hm-trends-product-name {
        font-size: 12px;
        min-height: 32px;
    }
    
    .hm-trends-price {
        font-size: 15px;
    }
}

/* Women's Sneakers & Trainers Section */
.sneakers-section {
    margin: 40px 0;
    background-color: #ffffff;
}

.sneakers-banner {
    position: relative;
    height: 614px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.sneakers-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sneakers-banner-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

.sneakers-logo {
    margin-bottom: 20px;
}

.sneakers-brand-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.sneakers-banner-title {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 400;
    margin: 20px 0 30px 0;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sneakers-shop-btn {
    background: linear-gradient(135deg, #84d63d, #6bb830);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(132, 214, 61, 0.3);
}

.sneakers-shop-btn:hover {
    background: linear-gradient(135deg, #9ae04d, #7bc940);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 214, 61, 0.4);
}

.sneakers-ad-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 3;
}

.sneakers-products {
    padding: 0 20px;
}

.sneakers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.sneakers-product {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.sneakers-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sneakers-product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #fafafa;
}

.sneakers-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sneakers-product:hover .sneakers-product-image img {
    transform: scale(1.05);
}

.sneakers-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

.sneakers-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sneakers-wishlist:hover {
    background: #ff4757;
    color: white;
}

.sneakers-wishlist svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    transition: all 0.3s ease;
}

.sneakers-wishlist:hover svg {
    stroke: white;
    fill: white;
}

.sneakers-sale-timer {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 11px;
}

.sneakers-sale-label {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.5px;
}

.sneakers-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.sneakers-timer-hours,
.sneakers-timer-minutes,
.sneakers-timer-seconds {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 3px;
    min-width: 24px;
    text-align: center;
}

.sneakers-timer-separator {
    margin: 0 4px;
    font-weight: 700;
}

.sneakers-product-info {
    padding: 16px;
}

.sneakers-brand {
    font-size: 12px;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sneakers-model {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 36px;
    display: flex;
    align-items: flex-start;
}

.sneakers-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.sneakers-stars {
    color: #ffa726;
    font-size: 14px;
    letter-spacing: 1px;
}

.sneakers-rating-count {
    font-size: 12px;
    color: #666;
}

.sneakers-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sneakers-price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.sneakers-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.sneakers-discount {
    background: linear-gradient(135deg, #84d63d, #6bb830);
    color: white;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.sneakers-delivery {
    font-size: 12px;
    color: #84d63d;
    font-weight: 600;
    margin-bottom: 8px;
}

.sneakers-badge {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Sneakers Section Responsive */
@media (max-width: 1200px) {
    .sneakers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .sneakers-banner-content {
        left: 40px;
    }
    
    .sneakers-banner-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .sneakers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .sneakers-banner {
        height: 450px;
    }
    
    .sneakers-banner-title {
        font-size: 32px;
    }
    
    .sneakers-brand-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .sneakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sneakers-banner {
        height: 350px;
    }
    
    .sneakers-banner-content {
        left: 30px;
    }
    
    .sneakers-banner-title {
        font-size: 28px;
    }
    
    .sneakers-product-image {
        height: 280px;
    }
    
    .sneakers-model {
        font-size: 13px;
        min-height: 32px;
    }
    
    .sneakers-price {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sneakers-products {
        padding: 0 15px;
    }
    
    .sneakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sneakers-banner {
        height: 300px;
    }
    
    .sneakers-banner-content {
        left: 20px;
    }
    
    .sneakers-banner-title {
        font-size: 24px;
    }
    
    .sneakers-brand-logo {
        height: 40px;
    }
    
    .sneakers-shop-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .sneakers-product-image {
        height: 240px;
    }
    
    .sneakers-product-info {
        padding: 12px;
    }
    
    .sneakers-model {
        font-size: 12px;
        min-height: 30px;
    }
    
    .sneakers-price {
        font-size: 14px;
    }
}

/* Shop by Colour Section */
.shop-by-colour-section {
    margin: 60px 0;
    background-color: #ffffff;
    padding: 0 20px;
}

.shop-by-colour-header {
    text-align: center;
    margin-bottom: 40px;
}

.shop-by-colour-title {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.shop-by-colour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.colour-category {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.colour-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.colour-category-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.colour-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.colour-category:hover .colour-bg {
    transform: scale(1.05);
}

.colour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 40px 30px 30px;
    transition: all 0.3s ease;
}

.colour-category:hover .colour-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.colour-content {
    color: white;
    text-align: center;
}

.colour-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 0 0 8px 0;
    opacity: 0.9;
}

.colour-main-title {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Shop by Colour Responsive */
@media (max-width: 1200px) {
    .shop-by-colour-grid {
        gap: 12px;
    }
    
    .colour-category {
        height: 450px;
    }
    
    .shop-by-colour-title {
        font-size: 36px;
    }
    
    .colour-main-title {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .shop-by-colour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .colour-category {
        height: 400px;
    }
    
    .shop-by-colour-title {
        font-size: 32px;
    }
    
    .colour-main-title {
        font-size: 24px;
    }
    
    .colour-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .shop-by-colour-section {
        padding: 0 15px;
    }
    
    .colour-category {
        height: 350px;
    }
    
    .shop-by-colour-title {
        font-size: 28px;
        letter-spacing: 1.5px;
    }
    
    .colour-main-title {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    
    .colour-overlay {
        padding: 30px 20px 25px;
    }
}

@media (max-width: 480px) {
    .shop-by-colour-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .colour-category {
        height: 400px;
    }
    
    .shop-by-colour-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .colour-main-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .colour-subtitle {
        font-size: 15px;
        letter-spacing: 1px;
    }
    
    .colour-overlay {
        padding: 35px 25px 30px;
    }
}

/* Sports Edit Section */
.sports-edit-section {
    margin: 60px 0;
    background: #ffffff;
}

.sports-edit-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 4px;
}

.sports-edit-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.4s ease;
}

.sports-edit-banner:hover .sports-edit-banner-bg {
    transform: scale(1.03);
}

.sports-edit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

.sports-edit-banner-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
}

.sports-edit-title {
    font-family: 'Georgia', serif;
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.sports-edit-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 28px 0;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.sports-edit-btn {
    background: linear-gradient(135deg, #84d63d, #6bb830);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(107, 184, 48, 0.4);
}

.sports-edit-btn:hover {
    background: linear-gradient(135deg, #9ae04d, #7bc940);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 184, 48, 0.5);
}

.sports-edit-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.sports-edit-card {
    cursor: pointer;
    overflow: hidden;
}

.sports-edit-card:hover .sports-edit-card-image img {
    transform: scale(1.05);
}

.sports-edit-card-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sports-edit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.sports-edit-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin: 0 0 30px 0;
    letter-spacing: 0.3px;
}

/* Sports Edit Responsive */
@media (max-width: 1200px) {
    .sports-edit-banner {
        height: 370px;
    }
    .sports-edit-title {
        font-size: 40px;
    }
    .sports-edit-card-image {
        height: 340px;
    }
    .sports-edit-card-title {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .sports-edit-banner {
        height: 320px;
    }
    .sports-edit-banner-content {
        left: 40px;
    }
    .sports-edit-title {
        font-size: 34px;
    }
    .sports-edit-subtitle {
        font-size: 17px;
    }
    .sports-edit-card-image {
        height: 290px;
    }
    .sports-edit-card-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .sports-edit-banner {
        height: 260px;
    }
    .sports-edit-banner-content {
        left: 30px;
    }
    .sports-edit-title {
        font-size: 28px;
    }
    .sports-edit-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .sports-edit-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sports-edit-card-image {
        height: 320px;
    }
    .sports-edit-card-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .sports-edit-banner {
        height: 220px;
    }
    .sports-edit-banner-content {
        left: 20px;
    }
    .sports-edit-title {
        font-size: 24px;
    }
    .sports-edit-subtitle {
        font-size: 13px;
    }
    .sports-edit-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
    .sports-edit-card-image {
        height: 280px;
    }
    .sports-edit-card-title {
        font-size: 18px;
    }
}

/* Secret Finds Section */
.secret-finds-section {
    margin: 60px 0;
    padding: 0 20px;
    background: #ffffff;
}

.secret-finds-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.secret-finds-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: 0.2px;
}

.secret-finds-see-all {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 2px solid #111;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.secret-finds-see-all:hover {
    opacity: 0.6;
}

.secret-finds-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.secret-finds-product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.secret-finds-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.secret-finds-image {
    position: relative;
    height: 320px;
    background: #f7f7f7;
    overflow: hidden;
}

.secret-finds-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.secret-finds-product:hover .secret-finds-image img {
    transform: scale(1.04);
}

.secret-finds-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
    z-index: 2;
}

.secret-finds-wishlist:hover {
    background: #ff4757;
}

.secret-finds-wishlist:hover svg path {
    stroke: white;
    fill: white;
}

.secret-finds-special-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.3px;
    z-index: 2;
}

.secret-finds-timer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 2;
    text-align: center;
}

.secret-finds-timer-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.secret-finds-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    font-size: 13px;
    font-weight: 700;
}

.sf-timer-hours,
.sf-timer-minutes,
.sf-timer-seconds {
    background: rgba(255,255,255,0.2);
    padding: 1px 5px;
    border-radius: 3px;
    min-width: 22px;
    text-align: center;
}

.sf-timer-sep {
    font-weight: 900;
    margin: 0 1px;
}

.secret-finds-info {
    padding: 14px 16px 16px;
}

.secret-finds-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.secret-finds-stars {
    color: #ffa726;
    font-size: 15px;
}

.secret-finds-rating-text {
    font-size: 12px;
    color: #666;
}

.secret-finds-brand {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.secret-finds-name {
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.secret-finds-prices {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.secret-finds-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.secret-finds-old-price {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
}

.secret-finds-discount {
    font-size: 12px;
    font-weight: 700;
    color: #e53935;
}

.secret-finds-delivery {
    font-size: 12px;
    color: #84d63d;
    font-weight: 600;
    margin-bottom: 10px;
}

.secret-finds-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0;
    color: #111;
}

.secret-finds-badge.today span {
    background: #ffe600;
    color: #111;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 800;
}

.secret-finds-badge.tomorrow span {
    background: #84d63d;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 800;
}

/* Secret Finds Responsive */
@media (max-width: 1200px) {
    .secret-finds-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .secret-finds-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .secret-finds-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .secret-finds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .secret-finds-image {
        height: 260px;
    }
    .secret-finds-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .secret-finds-section {
        padding: 0 15px;
    }
    .secret-finds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .secret-finds-image {
        height: 220px;
    }
    .secret-finds-info {
        padding: 10px 12px 12px;
    }
    .secret-finds-name {
        font-size: 12px;
    }
    .secret-finds-price {
        font-size: 14px;
    }
}

/* Nike Sport Street Section */
.nike-sport-section {
    margin: 40px 0;
    background: #fff;
}

.nike-sport-banner {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 2px;
    background: #1a1a1a;
}

.nike-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
    transition: transform 0.4s ease;
}

.nike-sport-banner:hover .nike-banner-bg {
    transform: scale(1.03);
}

.nike-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
}

.nike-banner-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
}

.nike-logo {
    margin-bottom: 18px;
}

.nike-banner-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.nike-shop-btn {
    background: linear-gradient(135deg, #84d63d, #6bb830);
    color: white;
    border: none;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(107, 184, 48, 0.4);
}

.nike-shop-btn:hover {
    background: linear-gradient(135deg, #9ae04d, #7bc940);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 184, 48, 0.5);
}

.nike-ad-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    z-index: 3;
    letter-spacing: 0.5px;
}

.nike-products {
    padding: 0 20px;
    margin-top: 16px;
}

.nike-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.nike-product {
    background: #f7f7f7;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.nike-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

.nike-product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.nike-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.nike-product:hover .nike-product-image img {
    transform: scale(1.06);
}

.nike-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
    z-index: 2;
}

.nike-wishlist:hover {
    background: #ff4757;
}

.nike-wishlist:hover svg path {
    stroke: white;
    fill: white;
}

/* Just In Section */
.just-in-section {
    margin: 50px 0 60px;
    padding: 0 20px;
    background: #fff;
}

.just-in-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.just-in-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: 0.2px;
}

.just-in-see-all {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 2px solid #111;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.just-in-see-all:hover {
    opacity: 0.6;
}

.just-in-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

.just-in-product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.just-in-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.just-in-image {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: #fafafa;
}

.just-in-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.just-in-product:hover .just-in-image img {
    transform: scale(1.04);
}

.just-in-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
    z-index: 2;
}

.just-in-wishlist:hover {
    background: #ff4757;
}

.just-in-wishlist:hover svg path {
    stroke: white;
    fill: white;
}

.just-in-exclusive {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    z-index: 2;
}

/* Nike & Just In Responsive */
@media (max-width: 1200px) {
    .nike-products-grid,
    .just-in-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .just-in-image {
        height: 340px;
    }
}

@media (max-width: 992px) {
    .nike-products-grid,
    .just-in-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .nike-sport-banner {
        height: 320px;
    }
    .nike-banner-title {
        font-size: 30px;
    }
    .nike-banner-content {
        left: 40px;
    }
    .just-in-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nike-products-grid,
    .just-in-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nike-sport-banner {
        height: 260px;
    }
    .nike-banner-content {
        left: 28px;
    }
    .nike-banner-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    .just-in-image {
        height: 260px;
    }
    .just-in-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nike-products {
        padding: 0 15px;
    }
    .just-in-section {
        padding: 0 15px;
    }
    .nike-sport-banner {
        height: 220px;
    }
    .nike-banner-content {
        left: 20px;
    }
    .nike-banner-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    .nike-shop-btn {
        padding: 10px 22px;
        font-size: 13px;
    }
    .nike-product-image {
        height: 170px;
    }
    .just-in-image {
        height: 220px;
    }
}

/* Top Brands Section */
.top-brands-section {
    margin: 60px 0 40px;
    text-align: center;
    overflow: hidden;
}

.top-brands-heading {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 400;
    color: #222;
    letter-spacing: 2px;
    margin: 0 0 28px 0;
    text-transform: uppercase;
}

.top-brands-track-wrapper {
    overflow: hidden;
    padding: 0 20px;
}

.top-brands-track {
    display: flex;
    transition: transform 0.5s ease;
}

.top-brands-slide {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    min-width: 100%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
}

.top-brands-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.top-brand-logo-card {
    border: 1px solid #e8e8e8;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.top-brand-logo-card:hover {
    background: #fafafa;
    box-shadow: inset 0 0 0 2px #eee;
}

.top-brand-logo-card img {
    max-height: 44px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.2s;
}

.top-brand-logo-card:hover img {
    filter: grayscale(0);
}

.top-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.top-brand-text.small {
    font-size: 14px;
    letter-spacing: 0.3px;
}

.top-brands-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.top-brands-dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.top-brands-dot.active {
    background: #222;
}

/* Keds Section */
.keds-section {
    margin: 0 0 50px;
    background: #fff;
}

.keds-banner {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: #c8bfb0;
}

.keds-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    transition: transform 0.4s ease;
}

.keds-banner:hover .keds-banner-bg {
    transform: scale(1.03);
}

.keds-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.keds-banner-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
}

.keds-brand-name {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #84d63d;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.keds-tagline {
    font-size: 20px;
    margin: 0 0 24px 0;
    color: white;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.keds-shop-btn {
    background: linear-gradient(135deg, #84d63d, #6bb830);
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(107, 184, 48, 0.4);
}

.keds-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 184, 48, 0.5);
}

.keds-ad-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    z-index: 3;
    letter-spacing: 0.5px;
}

.keds-products {
    padding: 10px 20px 0;
}

.keds-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.keds-product {
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.keds-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.keds-product-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.keds-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.keds-product:hover .keds-product-img img {
    transform: scale(1.06);
}

.keds-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
    z-index: 2;
}

.keds-wishlist:hover {
    background: #ff4757;
}

.keds-wishlist:hover svg path {
    stroke: white;
    fill: white;
}

.keds-drop-dot {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2196F3, #1565C0);
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.4);
}

/* Most Wishlisted Section */
.most-wishlisted-section {
    margin: 50px 0;
    padding: 0 20px;
    background: #fff;
}

.most-wishlisted-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.most-wishlisted-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.most-wishlisted-see-all {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 2px solid #111;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.most-wishlisted-see-all:hover {
    opacity: 0.6;
}

.most-wishlisted-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

.mw-product {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mw-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mw-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.mw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.mw-product:hover .mw-image img {
    transform: scale(1.04);
}

.mw-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.25s ease;
}

.mw-wishlist:hover {
    background: #ff4757;
}

.mw-wishlist:hover svg path {
    stroke: white;
    fill: white;
}

.mw-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 3px;
    z-index: 2;
}

.mw-badge.exclusive {
    background: rgba(0,0,0,0.75);
    color: white;
}

.mw-badge.bestseller {
    background: #ff6b35;
    color: white;
}

.mw-badge.made-in-uae {
    background: white;
    color: #111;
    border: 1px solid #ddd;
    font-size: 10px;
}

/* Explore More Section */
.explore-more-section {
    margin: 60px 0;
    padding: 0 20px;
    text-align: center;
    background: #fff;
}

.explore-more-heading {
    font-family: 'Georgia', serif;
    font-size: 34px;
    font-weight: 400;
    color: #222;
    letter-spacing: 3px;
    margin: 0 0 32px 0;
    font-style: italic;
}

.explore-more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.explore-card {
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-4px);
}

.explore-card-image {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.explore-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.explore-card:hover .explore-card-image img {
    transform: scale(1.05);
}

.explore-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px 0;
}

.explore-card-sub {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Top Brands / Keds / MostWishlisted / Explore Responsive */
@media (max-width: 1200px) {
    .top-brands-slide {
        grid-template-columns: repeat(5, 1fr);
    }
    .keds-grid,
    .most-wishlisted-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .explore-more-grid {
        gap: 14px;
    }
}

@media (max-width: 992px) {
    .top-brands-slide {
        grid-template-columns: repeat(4, 1fr);
    }
    .keds-grid,
    .most-wishlisted-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .explore-more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .keds-banner {
        height: 280px;
    }
    .keds-banner-content {
        left: 40px;
    }
    .explore-card-image {
        height: 240px;
    }
    .mw-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .top-brands-slide {
        grid-template-columns: repeat(3, 1fr);
    }
    .keds-grid,
    .most-wishlisted-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .keds-banner {
        height: 240px;
    }
    .keds-banner-content {
        left: 28px;
    }
    .keds-brand-name {
        font-size: 34px;
    }
    .keds-tagline {
        font-size: 16px;
    }
    .explore-card-image {
        height: 200px;
    }
    .top-brands-heading {
        font-size: 26px;
    }
    .explore-more-heading {
        font-size: 28px;
    }
    .mw-image {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .top-brands-slide {
        grid-template-columns: repeat(2, 1fr);
    }
    .keds-products,
    .most-wishlisted-section,
    .explore-more-section {
        padding: 0 15px;
    }
    .keds-banner {
        height: 200px;
    }
    .keds-banner-content {
        left: 20px;
    }
    .keds-brand-name {
        font-size: 28px;
    }
    .keds-tagline {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .keds-product-img {
        height: 150px;
    }
    .explore-more-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .explore-card-image {
        height: 160px;
    }
    .explore-card-title {
        font-size: 15px;
    }
    .mw-image {
        height: 200px;
    }
}

/* Suhoor Surprises Section */
.suhoor-surprises-section {
    background-color: #f5f7fa;
    padding: 50px 0;
    margin: 40px 0;
}

.suhoor-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.suhoor-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.suhoor-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #333;
}

.suhoor-timer {
    background: #b4ff39;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

.suhoor-timer-value {
    font-weight: 700;
}

/* Suhoor Carousel */
.suhoor-carousel-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.suhoor-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.suhoor-carousel::-webkit-scrollbar {
    display: none;
}

.suhoor-product-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.suhoor-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.suhoor-product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.suhoor-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.suhoor-product-card:hover .suhoor-product-image img {
    transform: scale(1.05);
}

/* Product Timer Badge */
.product-timer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timer-badge-text {
    color: #ff3b3b;
    font-size: 10px;
    letter-spacing: 0.5px;
}

.timer-badge-value {
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

/* Wishlist Button */
.product-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.wishlist-icon {
    font-size: 20px;
    color: #333;
}

.product-wishlist-btn:hover .wishlist-icon {
    color: #ff3b3b;
}

/* Product Info */
.suhoor-product-info {
    padding: 15px;
}

.product-brand {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.stars {
    color: #ffa500;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-count {
    font-size: 12px;
    color: #999;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.product-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-discount {
    font-size: 12px;
    font-weight: 600;
    color: #ff3b3b;
}

.product-delivery {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.product-today-badge {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.product-today-badge span {
    color: #b4ff39;
    font-weight: 700;
    background: #333;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Suhoor Arrows */
.suhoor-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.suhoor-arrow:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.suhoor-prev {
    left: -20px;
}

.suhoor-next {
    right: -20px;
}

/* See All Button */
.suhoor-see-all {
    display: flex;
    justify-content: center;
}

.see-all-btn {
    background: #b4ff39;
    color: #333;
    border: none;
    padding: 14px 60px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.see-all-btn:hover {
    background: #a3ee28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 255, 57, 0.4);
}

/* Responsive Suhoor Section */
@media (max-width: 992px) {
    .suhoor-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .suhoor-title {
        font-size: 28px;
    }
    
    .suhoor-product-card {
        flex: 0 0 250px;
    }
    
    .suhoor-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .suhoor-surprises-section {
        padding: 40px 0;
    }
    
    .suhoor-container {
        padding: 0 20px;
    }
    
    .suhoor-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .suhoor-timer {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .suhoor-product-card {
        flex: 0 0 220px;
    }
    
    .suhoor-product-image {
        height: 300px;
    }
    
    .suhoor-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .suhoor-title {
        font-size: 20px;
    }
    
    .suhoor-timer {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .suhoor-product-card {
        flex: 0 0 200px;
    }
    
    .see-all-btn {
        padding: 12px 40px;
        font-size: 14px;
    }
}

/* Product Grid */
.products-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
}

.view-all {
    color: var(--secondary-color);
    font-size: 14px;
    text-decoration: underline;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border: 1px solid transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: var(--border-color);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 350px;
    background-color: var(--hover-color);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 10;
}

.wishlist-btn:hover {
    background-color: white;
    color: var(--sale-color);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.wishlist-btn.active {
    color: red;
}

.product-info {
    padding: 15px;
}

.product-brand {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-name {
    font-size: 14px;
    margin-bottom: 12px;
    height: 40px;
    overflow: hidden;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--secondary-color);
}

.discount {
    font-size: 11px;
    color: var(--sale-color);
    font-weight: 600;
    background: #fee;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Cart & Wishlist Pages */
.page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 50px;
    min-height: 60vh;
}

.page-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    background: white;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-color: #ddd;
}

.cart-item-image {
    width: 120px;
    height: 150px;
    background-color: var(--hover-color);
    border-radius: 4px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-item-details p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.quantity-control button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background-color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 2px;
    transition: all 0.2s ease;
    font-weight: 600;
}

.quantity-control button:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-price {
    font-size: 18px;
    font-weight: bold;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    color: var(--sale-color);
    text-decoration: none;
}

.cart-summary {
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 4px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-row.total {
    border-top: 2px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.checkout-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.empty-state {
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-state-icon {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.empty-state h2 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Account Page */
.account-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.account-sidebar {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 20px;
    height: fit-content;
}

.account-menu {
    list-style: none;
}

.account-menu li {
    padding: 14px 16px;
    cursor: pointer;
    border-radius: 2px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.account-menu li:hover,
.account-menu li.active {
    background-color: var(--hover-color);
    padding-left: 20px;
}

.account-content {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.btn-save {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-save:hover {
    background-color: var(--accent-color);
}

.order-card {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-info p {
    font-size: 14px;
    margin-bottom: 5px;
}

.order-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.order-status.delivered {
    background-color: #d4edda;
    color: #155724;
}

.order-status.processing {
    background-color: #fff3cd;
    color: #856404;
}

.order-items {
    display: flex;
    gap: 15px;
}

.order-item-image {
    width: 80px;
    height: 100px;
    background-color: var(--hover-color);
    border-radius: 4px;
}

/* Popular Searches */
.popular-searches-section {
    background-color: #f9f9f9;
    padding: 28px 0;
    border-top: 1px solid #e8e8e8;
}

.popular-searches-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.popular-searches-title {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.popular-searches-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-bottom: 6px;
    line-height: 1.8;
}

.popular-searches-links a {
    font-size: 12px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.popular-searches-links a:hover {
    color: #000;
    text-decoration: underline;
}

.popular-searches-links span {
    color: #bbb;
    margin: 0 6px;
    font-size: 11px;
    user-select: none;
}

/* SEO Description Section */
.seo-description-section {
    background-color: #fff;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
}

.seo-description-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.seo-desc-heading {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.seo-desc-text {
    font-size: 12.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 900px;
}

.seo-desc-text a {
    color: #555;
    text-decoration: underline;
}

.seo-desc-text a:hover {
    color: #000;
}

.seo-read-more {
    background: none;
    border: 1px solid #ccc;
    padding: 7px 20px;
    font-size: 12px;
    color: #444;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.seo-read-more:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* Footer */
.footer {
    background-color: #ffffff;
    color: #333;
    padding: 40px 0 0;
    border-top: 1px solid #e4e4e4;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* 6 link columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e8e8e8;
}

.footer-col-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #111;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-list li {
    margin-bottom: 8px;
}

.footer-col-list li a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}

.footer-col-list li a:hover {
    color: #000;
}

.footer-col-all-link {
    font-weight: 600;
    color: #333 !important;
}

/* App + Social Row */
.footer-app-social-row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
}

.footer-app-block,
.footer-social-block {
    display: flex;
    flex-direction: column;
}

.footer-app-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-app-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #111;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.footer-app-badge:hover {
    background-color: #333;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    background-color: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.footer-social-icon:hover {
    background-color: #444;
    transform: translateY(-2px);
}

/* Payment Methods */
.footer-payments {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-payment-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-payment-badge span {
    font-size: 10px;
    color: #888;
    white-space: nowrap;
}

/* Copyright bar */
.footer-copyright {
    padding: 16px 0;
    text-align: center;
}

.footer-copyright p {
    font-size: 12px;
    color: #999;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .popular-searches-inner,
    .seo-description-inner,
    .footer-container {
        padding: 0 20px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-app-social-row {
        flex-direction: column;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-app-badges {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .top-banner {
        padding: 8px 20px;
        font-size: 11px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .language-selector,
    .country-flag-top {
        display: none;
    }
    
    .banner-center {
        font-size: 12px;
    }
    
    .banner-nav {
        font-size: 16px;
    }
    
    .header-main-row {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo {
        font-size: 24px;
    }

    .header-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        gap: 6px;
    }
    
    .header-nav::-webkit-scrollbar {
        display: none;
    }
    
    .nav-tab {
        padding: 9px 14px;
        font-size: 12px;
        gap: 6px;
        min-width: fit-content;
        height: fit-content;
    }
    
    .nav-tab img,
    .nav-tab .outlet-badge {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .nav-tab img {
        padding: 2px;
    }
    
    .outlet-badge {
        font-size: 12px;
    }
    
    .nav-tab > span:not(.outlet-badge) {
        white-space: nowrap;
        flex-shrink: 0;
        line-height: 1.2;
    }
    
    .header-right-section {
        margin-left: auto;
        gap: 6px;
        padding-left: 8px;
    }
    
    .icon-btn-login {
        padding: 4px 6px;
    }

    .user-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .search-bar {
        width: 130px;
    }
    
    .search-bar input {
        padding: 8px 35px 8px 12px;
        font-size: 12px;
        border-radius: 25px;
    }
    
    .header-icons {
        gap: 6px;
    }
    
    .icon-btn {
        font-size: 17px;
        padding: 4px;
    }
    
    .secondary-nav-container {
        padding: 0 15px;
        gap: 15px;
    }
    
    .category-dropdown {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .category-links {
        gap: 15px;
    }
    
    .category-links a {
        font-size: 13px;
    }

    /* Mega menu responsive */
    .mega-menu-inner {
        padding: 20px 15px;
        flex-direction: column;
        gap: 20px;
        max-height: 70vh;
        overflow-y: auto;
    }

    .mega-col,
    .mega-col-wide {
        flex: none;
        width: 100%;
    }

    .mega-col-wide ul {
        grid-template-columns: 1fr 1fr;
    }

    .products-section,
    .page-container,
    .footer-container {
        padding: 0 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-slider {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-content .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 20px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Product Card Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: slideIn 0.4s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.05s;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.15s;
}

.product-card:nth-child(4) {
    animation-delay: 0.2s;
}

.product-card:nth-child(5) {
    animation-delay: 0.25s;
}

.product-card:nth-child(6) {
    animation-delay: 0.3s;
}

/* Smooth Transitions */
a, button, input, select, textarea {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* RTL Support for Arabic */
body.rtl,
html[dir="rtl"] {
    direction: rtl;
}

/* RTL Banner */
html[dir="rtl"] .banner-content {
    direction: rtl;
}

html[dir="rtl"] .language-selector {
    text-align: right;
}

/* RTL Header */
html[dir="rtl"] .header-main-row {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-nav {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-right-section {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-icons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .search-bar input {
    text-align: right;
    padding: 12px 15px 12px 45px;
}

html[dir="rtl"] .search-bar button {
    left: 10px;
    right: auto;
}

/* RTL Navigation */
html[dir="rtl"] .secondary-nav-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .category-links {
    flex-direction: row-reverse;
}

/* RTL Product Cards */
html[dir="rtl"] .product-info {
    text-align: right;
}

html[dir="rtl"] .product-price {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

html[dir="rtl"] .wishlist-btn {
    right: auto;
    left: 10px;
}

/* RTL Cart and Checkout */
html[dir="rtl"] .cart-item-details {
    text-align: right;
}

html[dir="rtl"] .cart-summary {
    text-align: right;
}

html[dir="rtl"] .summary-row {
    flex-direction: row-reverse;
}

/* RTL Footer */
html[dir="rtl"] .footer-content {
    direction: rtl;
}

html[dir="rtl"] .footer-links {
    text-align: right;
}

/* RTL Dropdown */
html[dir="rtl"] .user-dropdown {
    right: auto;
    left: 0;
    text-align: right;
}

html[dir="rtl"] .dropdown-chevron {
    margin-left: 0;
    margin-right: 5px;
}

/* RTL Hero Content */
html[dir="rtl"] .hero-content {
    text-align: right;
}

/* RTL Slider Arrows */
html[dir="rtl"] .slider-arrow.slider-prev {
    right: 20px;
    left: auto;
}

html[dir="rtl"] .slider-arrow.slider-next {
    left: 20px;
    right: auto;
}

html[dir="rtl"] .category-slider-arrow.category-prev {
    right: 5px;
    left: auto;
}

html[dir="rtl"] .category-slider-arrow.category-next {
    left: 5px;
    right: auto;
}

/* RTL Glam Mode */
html[dir="rtl"] .mode-toggle {
    flex-direction: row-reverse;
}

html[dir="rtl"] .glam-item-label {
    text-align: right;
}

/* RTL Account Menu */
html[dir="rtl"] .account-menu a {
    text-align: right;
}

html[dir="rtl"] .account-menu svg {
    margin-left: 0;
    margin-right: 15px;
}

/* RTL Forms */
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .form-group textarea {
    text-align: right;
}

/* RTL Quantity Controls */
html[dir="rtl"] .quantity-controls {
    flex-direction: row-reverse;
}

/* RTL Brand Logos */
html[dir="rtl"] .brand-logo {
    transform: scaleX(1);
}

/* RTL Icons that should not flip */
html[dir="rtl"] .icon-btn svg {
    transform: scaleX(1);
}

/* RTL Animations */
@keyframes slideInRTL {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

html[dir="rtl"] .product-card {
    animation: slideInRTL 0.4s ease forwards;
}

/* Gender Selection Modal */
.gender-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.gender-modal.active {
    display: block;
}

.gender-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.gender-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideInModal 0.3s ease;
}

.gender-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 36px;
    color: #666;
    cursor: pointer;
    padding: 5px 15px;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 1;
}

.gender-modal-close:hover {
    color: #000;
}

.gender-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.gender-option {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.gender-option:hover {
    transform: scale(1.02);
}

.gender-option-active {
    pointer-events: none;
    opacity: 0.6;
}

.gender-option-active::after {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #b4ff39;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    z-index: 2;
}

.gender-option-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f5f5f5;
}

.gender-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gender-option:hover .gender-option-image img {
    transform: scale(1.05);
}

.gender-option-title {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .gender-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .gender-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gender-option-image {
        height: 350px;
    }
    
    .gender-option-title {
        font-size: 28px;
        bottom: 20px;
    }
}

/* RTL Modal Support */
html[dir="rtl"] .gender-modal-close {
    right: auto;
    left: 15px;
}
