/* ============================================
   TRIOBLI WEBSHOP - MODERN FRONTEND DESIGN
   Fonts: Manrope (body), Axiforma (headings, buttons)
   Colors: #e20613 (red), #141414 (black), white
   ============================================ */

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

:root {
    /* Brand Colors - Triobli Logo Colors */
    --primary-red: #e20613;
    --primary-black: #141414;
    --white: #ffffff;
    
    /* Logo Gradient Colors */
    --logo-blue-start: #4A90E2;
    --logo-blue-end: #1E5FA8;
    --logo-orange-start: #FF6B35;
    --logo-orange-end: #E63946;
    --logo-purple: #8B5CF6;
    --logo-magenta: #EC4899;
    --logo-rainbow-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 25%, #3B82F6 50%, #10B981 75%, #F59E0B 100%);
    
    /* Semantic Colors */
    --text-color: #141414;
    --text-light: #666666;
    --text-lighter: #999999;
    --border-color: #e0e0e0;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --success-color: #4caf50;
    --error-color: #e20613;
    --sale-color: #e20613;
    
    /* Typography */
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Axiforma', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 60px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

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

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background-color: #e20613;
    color: #ffffff;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.announcement-content {
    position: relative;
}

.announcement-content p {
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .header-search-wrapper {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .header-search-input {
        font-size: 14px;
        padding: 10px 40px 10px 15px;
    }
    
    .header-search-icon {
        right: 12px;
        font-size: 16px;
    }
    
    .search-suggestion-item {
        padding: 12px 15px;
    }
    
    .search-suggestion-image {
        width: 50px;
        height: 50px;
    }
    
    .search-suggestion-title {
        font-size: 13px;
    }
    
    .search-suggestion-price {
        font-size: 14px;
    }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    display: none; /* Hidden as per design */
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    font-size: 11px;
    color: var(--primary-red);
}

.top-bar-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    white-space: nowrap;
    transition: color var(--transition-base);
}

.top-bar-right a:hover {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    .contact-info span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.main-header.hidden {
    transform: translateY(-100%);
}

/* Add padding to body to compensate for fixed header */
body {
    padding-top: 100px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.header-right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity var(--transition-base);
}

.logo-icon {
    font-size: 28px;
    color: #ff6b35;
    display: block;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
    letter-spacing: 0.5px;
    margin: 0;
    display: inline;
}

.logo a:hover {
    opacity: 0.8;
}

.main-nav-inline {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav-inline .nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav-inline .nav-menu li {
    position: relative;
}

.main-nav-inline .nav-menu a {
    font-family: var(--font-heading);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition-base);
    display: block;
    padding: 5px 0;
}

.main-nav-inline .nav-menu a:hover {
    color: #ff6b35;
}

.main-nav-inline .has-dropdown {
    position: relative;
}

.main-nav-inline .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    min-width: 250px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    list-style: none;
    pointer-events: none;
}

/* Invisible bridge between parent link and dropdown to prevent closing */
.main-nav-inline .has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 999;
}

.main-nav-inline .dropdown-menu.show {
    pointer-events: auto;
}

.main-nav-inline .dropdown-menu li {
    padding: 0;
    position: relative;
    list-style: none;
}

.main-nav-inline .dropdown-menu > li {
    position: relative;
}

.main-nav-inline .dropdown-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    text-transform: none;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
}

/* Invisible bridge between category item and subcategory */
.main-nav-inline .dropdown-menu > li.has-submenu::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    width: 10px;
    background: transparent;
    z-index: 1002;
    pointer-events: auto;
}

.main-nav-inline .dropdown-menu > li > a i {
    font-size: 10px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.main-nav-inline .dropdown-menu > li:hover > a {
    background-color: var(--bg-light);
    color: var(--primary-red);
}

.main-nav-inline .dropdown-menu > li:hover > a i {
    transform: translateX(3px);
}

/* Submenu styles */
.main-nav-inline .submenu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    padding: 10px 0;
    z-index: 1001;
    margin-left: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    list-style: none;
    pointer-events: none;
}

.main-nav-inline .submenu.show {
    pointer-events: auto;
}

.main-nav-inline .submenu li {
    padding: 0;
    list-style: none;
}

.main-nav-inline .submenu a {
    display: block;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-color);
    text-decoration: none;
}

.main-nav-inline .submenu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search-wrapper {
    width: 300px;
    position: relative;
}

.header-search-container {
    position: relative;
    width: 100%;
}

.header-search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid #e20613;
    border-radius: 8px;
    font-size: 15px;
    color: #141414;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.header-search-input:focus {
    outline: none;
    border-color: #e20613;
    box-shadow: 0 0 0 3px rgba(226, 6, 19, 0.1);
}

.header-search-input::placeholder {
    color: #999999;
}

.header-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e20613;
    font-size: 18px;
    pointer-events: none;
}

.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #e20613;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    margin-top: -2px;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: inherit;
}

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

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

.search-suggestion-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 5px;
    line-height: 1.3;
}

.search-suggestion-price {
    font-size: 16px;
    font-weight: 700;
    color: #e20613;
}

.header-icon {
    position: relative;
    color: var(--text-color);
    font-size: 20px;
    text-decoration: none;
    transition: color var(--transition-base);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.header-icon:hover {
    color: #ff6b35;
}

.icon-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.cart-total {
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
    font-family: var(--font-heading);
}

/* ============================================
   CATEGORIES BAR (MOBILE)
   ============================================ */
.categories-bar-mobile {
    display: none;
    background-color: var(--primary-black);
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.categories-bar-mobile .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.categories-bar-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base);
}

.categories-bar-toggle:hover {
    color: var(--primary-red);
}

.categories-bar-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .categories-bar-mobile {
        display: block;
    }
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: opacity var(--transition-base), max-height var(--transition-base);
}

.search-bar-form {
    display: flex;
    gap: 0;
    max-width: 100%;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-right: none;
    font-size: 14px;
    font-family: var(--font-body);
    -webkit-appearance: none;
    appearance: none;
    transition: border-color var(--transition-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.search-input::placeholder {
    color: var(--text-lighter);
}

.category-select {
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-right: none;
    background-color: var(--bg-white);
    font-size: 14px;
    font-family: var(--font-body);
    min-width: 180px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color var(--transition-base);
}

.category-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.search-submit {
    padding: 14px 30px;
    background-color: var(--primary-red);
    color: var(--white);
    min-height: 48px;
    border: 1px solid var(--primary-red);
    cursor: pointer;
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: background-color var(--transition-base), transform var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-submit:hover {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    transform: translateY(-1px);
}

.search-submit:active {
    transform: translateY(0);
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-black);
    border-radius: 3px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* ============================================
   HOMEPAGE LAYOUT - MODERN DESIGN
   ============================================ */
.homepage-layout {
    padding: 0;
}

/* ============================================
   MODERN HEADER WITH INTERACTIVE SEARCH
   ============================================ */
body.homepage-minimal-page .top-bar {
    display: none;
}

body.homepage-minimal-page .main-header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.homepage-minimal-page .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

body.homepage-minimal-page .logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-blue-end) 50%, var(--logo-orange-start) 50%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation is now always visible */

body.homepage-minimal-page .header-search-wrapper {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}

body.homepage-minimal-page .header-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

body.homepage-minimal-page .header-search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

body.homepage-minimal-page .header-search-input:focus {
    outline: none;
    border-color: var(--logo-blue-start);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

body.homepage-minimal-page .header-search-btn {
    position: absolute;
    right: 8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-blue-end) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

body.homepage-minimal-page .header-search-btn:hover {
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    transform: scale(1.1);
}

body.homepage-minimal-page .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

body.homepage-minimal-page .header-icon {
    color: #141414;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

body.homepage-minimal-page .header-icon:hover {
    color: var(--logo-blue-start);
    transform: translateY(-2px);
}

body.homepage-minimal-page .search-bar-section {
    display: none;
}

/* Hide search bar section on all pages */
.search-bar-section {
    display: none;
}

.categories-bar-mobile {
    display: none;
}

/* ============================================
   CART DROPDOWN MODAL
   ============================================ */
.cart-dropdown-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 80px 20px 20px;
}

.cart-dropdown-modal.active {
    display: flex;
}

.cart-dropdown-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-dropdown-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-dropdown-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #141414;
    margin: 0;
}

.cart-dropdown-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.cart-dropdown-close:hover {
    color: #141414;
}

.cart-dropdown-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
}

.cart-empty p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.btn-back-to-shop {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-back-to-shop:hover {
    background: #ff8555;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item-dropdown {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.cart-item-dropdown img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 5px;
}

.cart-item-info p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.cart-dropdown-footer {
    padding: 20px;
    border-top: 1px solid #e5e5e5;
    background: #f8f8f8;
}

.cart-total-dropdown {
    margin-bottom: 15px;
    font-size: 18px;
    color: #141414;
}

.btn-cart-checkout {
    display: block;
    width: 100%;
    padding: 14px;
    background: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-cart-checkout:hover {
    background: #ff8555;
}

@media (max-width: 768px) {
    .cart-dropdown-modal {
        padding: 60px 10px 10px;
    }
    
    .cart-dropdown-content {
        max-width: 100%;
        max-height: 90vh;
    }
}

/* ============================================
   3DPOKLONI.COM STYLE HOMEPAGE
   Clean, modern, product-focused design
   ============================================ */
.homepage-3dpokloni {
    padding: 0;
    background: #ffffff;
    overflow-x: hidden;
}

/* ============================================
   SPOTIFY HERO SLIDER
   ============================================ */
.hero-slider-spotify {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

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

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

.slide-spotify {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.05);
}

.slide-spotify.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-bg-spotify {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d26 100%);
}

.slide-pattern-spotify {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(46, 213, 115, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 213, 115, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(46, 213, 115, 0.05) 50%, transparent 70%);
    background-size: 100% 100%, 100% 100%, 200% 200%;
    animation: wavePattern 20s ease-in-out infinite;
}

@keyframes wavePattern {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
    }
    50% {
        background-position: 100% 50%, 0% 100%, 50% 50%;
    }
}

.slide-content-spotify {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content-inner-spotify {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.slide-text-spotify {
    flex: 1;
    text-align: center;
}

.slide-title-spotify {
    font-size: 64px;
    font-weight: 800;
    color: #2ed573;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(46, 213, 115, 0.5);
    letter-spacing: 2px;
}

.slide-subtitle-spotify {
    font-size: 32px;
    font-weight: 700;
    color: #2ed573;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(46, 213, 115, 0.4);
}

.slide-images-spotify {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex: 1;
}

.slide-image-item-spotify {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #2ed573;
    background: #ffffff;
    padding: 10px;
}

.slide-image-item-spotify.large {
    width: 320px;
    height: 320px;
}

.slide-image-item-spotify img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slider-nav-spotify {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    z-index: 10;
}

.slider-nav-spotify:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-nav-spotify.prev-spotify {
    left: 30px;
}

.slider-nav-spotify.next-spotify {
    right: 30px;
}

.slider-dots-spotify {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot-spotify {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-spotify.active {
    background: #ff6b35;
    border-color: #ff6b35;
    width: 30px;
    border-radius: 15px;
}

@media (max-width: 1024px) {
    .slide-content-inner-spotify {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
    }
    
    .slide-title-spotify {
        font-size: 48px;
    }
    
    .slide-subtitle-spotify {
        font-size: 24px;
    }
    
    .slide-image-item-spotify {
        width: 200px;
        height: 200px;
    }
    
    .slide-image-item-spotify.large {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-slider-spotify {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-content-inner-spotify {
        gap: 30px;
        padding: 0 20px;
    }
    
    .slide-title-spotify {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .slide-subtitle-spotify {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .slide-images-spotify {
        gap: 20px;
    }
    
    .slide-image-item-spotify {
        width: 150px;
        height: 150px;
    }
    
    .slide-image-item-spotify.large {
        width: 180px;
        height: 180px;
    }
    
    .slider-nav-spotify {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav-spotify.prev-spotify {
        left: 15px;
    }
    
    .slider-nav-spotify.next-spotify {
        right: 15px;
    }
    
    .slider-dots-spotify {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider-spotify {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-title-spotify {
        font-size: 28px;
    }
    
    .slide-subtitle-spotify {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .slide-images-spotify {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-image-item-spotify {
        width: 120px;
        height: 120px;
    }
    
    .slide-image-item-spotify.large {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   HERO LANDING CARDS SECTION
   ============================================ */
.hero-landing-cards {
    padding: 60px 0;
    background: #ffffff;
}

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

.landing-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
}

.landing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.landing-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.landing-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.landing-card-overlay {
    display: none;
}

.landing-card-content {
    padding: 30px;
    background: #2a2a2a;
    color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.landing-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.landing-card-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    flex: 1;
}

.landing-card-cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    background: #ff6b35;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
}

.landing-card:hover .landing-card-cta {
    background: #ff8555;
    transform: translateY(-2px);
}

/* ============================================
   PRODUCTS SECTION HOMEPAGE
   ============================================ */
.products-section-homepage {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-title-products {
    font-size: 36px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 30px;
    text-align: center;
}

.category-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-tab:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.filter-tab.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
}

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

.product-card-homepage {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card-homepage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image-homepage {
    width: 100%;
    height: 200px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-info-homepage {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title-homepage {
    font-size: 18px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-desc-homepage {
    font-size: 13px;
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.4;
    flex: 1;
}

.product-price-homepage {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
    margin-top: auto;
}

.product-price-homepage .currency {
    font-size: 14px;
    font-weight: 600;
}

/* Show all products by default, filtering handled by JavaScript */
.product-card-homepage {
    display: flex;
}

@media (max-width: 1400px) {
    .products-grid-homepage {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-grid-homepage {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-grid-homepage {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-section-homepage {
        padding: 60px 0;
    }
    
    .section-title-products {
        font-size: 28px;
    }
    
    .category-filter-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-tab {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .products-grid-homepage {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image-homepage {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .products-grid-homepage {
        grid-template-columns: 1fr;
    }
    
    .category-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-filter-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .category-filter-tabs::-webkit-scrollbar-thumb {
        background: #ff6b35;
        border-radius: 2px;
    }
}

/* ============================================
   CATEGORIES SECTION HOMEPAGE
   ============================================ */
.categories-section-homepage {
    padding: 80px 0;
    background: #ffffff;
}

.section-title-categories {
    font-size: 36px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 50px;
    text-align: center;
}

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

.category-card-homepage {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
}

.category-card-homepage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-image-homepage {
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.category-name-homepage {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}

@media (max-width: 1024px) {
    .categories-grid-homepage {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .categories-section-homepage {
        padding: 60px 0;
    }
    
    .section-title-categories {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .categories-grid-homepage {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-name-homepage {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .categories-grid-homepage {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title-categories {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section-3dpokloni {
    padding: 60px 0;
    background: #f8f8f8;
}

.section-title-3dpokloni {
    font-size: 32px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 40px;
    text-align: center;
}

.products-grid-3dpokloni {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.product-card-3dpokloni {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card-3dpokloni:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image-3dpokloni {
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    background: #f5f5f5;
    overflow: hidden;
}

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

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

.product-placeholder-3dpokloni {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
}

.product-placeholder-3dpokloni i {
    font-size: 50px;
}

.product-badge-3dpokloni {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
}

.product-info-3dpokloni {
    padding: 20px;
}

.product-name-3dpokloni {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name-3dpokloni a {
    color: #141414;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name-3dpokloni a:hover {
    color: var(--primary-red);
}

.product-meta-3dpokloni {
    margin-bottom: 12px;
}

.product-category-3dpokloni {
    display: inline-block;
    font-size: 12px;
    color: #666666;
    padding: 4px 8px;
    background: #f0f0f0;
    border-radius: 4px;
}

.product-footer-3dpokloni {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-price-3dpokloni {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-old-3dpokloni {
    font-size: 13px;
    color: #999999;
    text-decoration: line-through;
}

.price-current-3dpokloni {
    font-size: 20px;
    font-weight: 700;
    color: #141414;
}

.btn-add-cart-3dpokloni {
    padding: 10px 20px;
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-cart-3dpokloni:hover {
    background: var(--primary-black);
    transform: translateY(-2px);
}

.products-footer-3dpokloni {
    text-align: center;
}

.btn-view-all-3dpokloni {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-red);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-view-all-3dpokloni:hover {
    background: var(--primary-black);
    transform: translateY(-2px);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section-3dpokloni {
    padding: 60px 0;
    background: #ffffff;
}

.categories-grid-3dpokloni {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card-3dpokloni {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card-3dpokloni:hover {
    background: #ffffff;
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-name-3dpokloni {
    font-size: 16px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 8px;
}

.category-count-3dpokloni {
    font-size: 13px;
    color: #666666;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products-grid-3dpokloni {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid-3dpokloni {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-card-image {
        height: 250px;
    }
    
    .products-grid-3dpokloni {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .categories-grid-3dpokloni {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title-3dpokloni {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .products-grid-3dpokloni {
        grid-template-columns: 1fr;
    }
    
    .product-footer-3dpokloni {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-add-cart-3dpokloni {
        width: 100%;
    }
}

/* ============================================
   OLD ADVANCED STYLES (KEEP FOR COMPATIBILITY)
   ============================================ */
.hero-slider-advanced {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

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

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

.slide-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.1);
}

.slide-advanced.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-bg-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.slide-overlay-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(20, 20, 20, 0.4) 100%);
}

.slide-content-advanced {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
    padding: 0 40px;
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-badge-advanced {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.slide-title-advanced {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-desc-advanced {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.slide-actions-advanced {
    display: flex;
    gap: 16px;
}

.btn-slide-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-blue-end) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-slide-primary:hover {
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-slide-secondary {
    padding: 16px 36px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-slide-secondary:hover {
    background: #ffffff;
    color: #141414;
}

.slider-controls-advanced {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

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

.slider-nav-advanced:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots-advanced {
    display: flex;
    gap: 10px;
}

.dot-advanced {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-advanced.active {
    background: #ffffff;
    width: 30px;
    border-radius: 15px;
}

/* ============================================
   QUICK CATEGORIES BAR
   ============================================ */
.quick-categories-advanced {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e5e5;
}

.quick-cats-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.quick-cat-advanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-cat-advanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--logo-rainbow-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.quick-cat-advanced:hover::before {
    opacity: 0.1;
}

.quick-cat-advanced:hover {
    border-color: var(--logo-blue-start);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.quick-cat-icon-advanced {
    font-size: 36px;
    background: var(--logo-rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.quick-cat-advanced:hover .quick-cat-icon-advanced {
    transform: scale(1.2) rotate(10deg);
}

.quick-cat-name-advanced {
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    position: relative;
    z-index: 1;
}

/* ============================================
   FEATURED PRODUCTS - ASYMMETRIC GRID
   ============================================ */
.featured-products-advanced {
    padding: 80px 0;
    background: #ffffff;
}

.section-header-advanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title-advanced {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 15px;
}

.section-title-advanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--logo-rainbow-gradient);
    border-radius: 2px;
}

.section-link-advanced {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--logo-blue-start);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.section-link-advanced:hover {
    gap: 12px;
    color: var(--logo-orange-start);
}

.products-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    grid-auto-rows: 400px;
}

.product-card-advanced {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card-advanced.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.product-card-advanced:hover {
    border-color: var(--logo-blue-start);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
}

.product-image-advanced {
    position: relative;
    display: block;
    width: 100%;
    height: 70%;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image-advanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-overlay-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-quick-view-advanced {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-quick-view-advanced:hover {
    transform: scale(1.1);
}

.product-badge-advanced {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    color: #ffffff;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.product-placeholder-advanced {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
}

.product-placeholder-advanced i {
    font-size: 60px;
}

.product-info-advanced {
    padding: 20px;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name-advanced {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-name-advanced a {
    color: #141414;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name-advanced a:hover {
    color: var(--logo-blue-start);
}

.product-footer-advanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-advanced {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

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

.price-current-advanced {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-add-cart-advanced {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-blue-end) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-add-cart-advanced:hover {
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ============================================
   SALE SECTION - SPLIT LAYOUT
   ============================================ */
.sale-section-advanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.sale-section-advanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.sale-layout-advanced {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sale-content-advanced {
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sale-badge-large {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.sale-title-advanced {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.sale-desc-advanced {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-sale-advanced {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-blue-end) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-sale-advanced:hover {
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    transform: translateY(-3px);
}

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

.sale-product-card-advanced {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sale-product-card-advanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sale-product-image-advanced {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.sale-product-image-advanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sale-product-card-advanced:hover .sale-product-image-advanced img {
    transform: scale(1.1);
}

.sale-badge-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 15px;
}

.sale-product-info-advanced {
    padding: 16px;
}

.sale-product-info-advanced h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sale-product-info-advanced h4 a {
    color: #141414;
    text-decoration: none;
}

.sale-price-advanced {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

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

.new-price-advanced {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NEW PRODUCTS - MASONRY LAYOUT
   ============================================ */
.new-products-advanced {
    padding: 80px 0;
    background: #ffffff;
}

.products-masonry-advanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 300px;
}

.masonry-item-advanced {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.masonry-item-advanced.tall {
    grid-row: span 2;
}

.masonry-item-advanced.medium {
    grid-row: span 1;
}

.masonry-item-advanced.short {
    grid-row: span 1;
}

.masonry-item-advanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.masonry-image-advanced {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.masonry-image-advanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.masonry-item-advanced:hover .masonry-image-advanced img {
    transform: scale(1.15);
}

.masonry-overlay-advanced {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.9) 0%, transparent 100%);
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.masonry-item-advanced:hover .masonry-overlay-advanced {
    transform: translateY(0);
    opacity: 1;
}

.masonry-overlay-advanced h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.masonry-price-advanced {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   WHY TRIOBLI - ENHANCED
   ============================================ */
.why-triobli-advanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.benefit-card-advanced {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--logo-rainbow-gradient);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.benefit-card-advanced:hover::before {
    left: 0;
}

.benefit-card-advanced:hover {
    border-color: var(--logo-blue-start);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.15);
}

.benefit-icon-advanced {
    font-size: 48px;
    background: var(--logo-rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-card-advanced:hover .benefit-icon-advanced {
    transform: scale(1.2) rotate(10deg);
}

.benefit-card-advanced h3 {
    font-size: 20px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 12px;
}

.benefit-card-advanced p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-advanced {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-advanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content-advanced {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.newsletter-text-advanced h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.newsletter-text-advanced h2 span {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text-advanced p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form-advanced {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form-advanced input {
    flex: 1;
    padding: 18px 28px;
    border: none;
    font-size: 16px;
    background: transparent;
}

.newsletter-form-advanced input:focus {
    outline: none;
}

.newsletter-form-advanced button {
    padding: 18px 40px;
    background: #141414;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form-advanced button:hover {
    background: #333333;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products-grid-asymmetric {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card-advanced.large-card {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .sale-layout-advanced {
        grid-template-columns: 1fr;
    }
    
    .sale-products-grid-advanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-masonry-advanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid-advanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider-advanced {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-title-advanced {
        font-size: 36px;
    }
    
    .products-grid-asymmetric {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }
    
    .sale-products-grid-advanced {
        grid-template-columns: 1fr;
    }
    
    .products-masonry-advanced {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .benefits-grid-advanced {
        grid-template-columns: 1fr;
    }
    
    .newsletter-text-advanced h2 {
        font-size: 32px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-conversion {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.hero-content-conversion {
    max-width: 700px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-blue-end) 50%, var(--logo-orange-start) 50%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-subheadline {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-blue-end) 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ============================================
   PRODUCT CATEGORIES
   ============================================ */
.categories-conversion {
    padding: 60px 0;
    background: #f8f8f8;
}

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

.category-card-conversion {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card-conversion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card-conversion:hover::before {
    left: 100%;
}

.category-card-conversion:hover {
    border-color: var(--logo-blue-start);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.category-icon-conversion {
    font-size: 48px;
    background: var(--logo-rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.category-card-conversion:hover .category-icon-conversion {
    transform: scale(1.1) rotate(5deg);
}

.category-title-conversion {
    font-size: 20px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 8px;
}

.category-desc-conversion {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* ============================================
   FEATURED PRODUCTS GRID
   ============================================ */
.products-conversion {
    padding: 80px 0;
    background: #ffffff;
}

.section-title-conversion {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title-conversion::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--logo-rainbow-gradient);
    border-radius: 2px;
}

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

.product-card-conversion {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-conversion:hover {
    border-color: var(--logo-blue-start);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.product-image-conversion {
    display: block;
    width: 100%;
    height: 300px;
    background: #f8f8f8;
    overflow: hidden;
}

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

.product-placeholder-conversion {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
}

.product-placeholder-conversion i {
    font-size: 60px;
}

.product-info-conversion {
    padding: 20px;
}

.product-name-conversion {
    font-size: 16px;
    font-weight: 500;
    color: #141414;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-name-conversion a {
    color: #141414;
    text-decoration: none;
}

.product-name-conversion a:hover {
    color: #666666;
}

.product-price-conversion {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

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

.price-current-conversion {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-add-cart-conversion {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-blue-end) 100%);
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-add-cart-conversion:hover {
    background: linear-gradient(135deg, var(--logo-orange-start) 0%, var(--logo-orange-end) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* ============================================
   WHY TRIOBLI
   ============================================ */
.why-triobli {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.benefit-item-conversion {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.benefit-item-conversion i {
    font-size: 32px;
    background: var(--logo-rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.benefit-item-conversion h3 {
    font-size: 18px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 8px;
}

.benefit-item-conversion p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background: #ffffff;
}

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

.step-item-conversion {
    text-align: center;
}

.step-number-conversion {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--logo-blue-start) 0%, var(--logo-orange-end) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease;
}

.step-item-conversion:hover .step-number-conversion {
    transform: scale(1.1) rotate(5deg);
}

.step-item-conversion h3 {
    font-size: 20px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 8px;
}

.step-item-conversion p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .categories-grid-conversion {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid-conversion {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid-conversion {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body.homepage-minimal-page .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    body.homepage-minimal-page .header-search-wrapper {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    body.homepage-minimal-page .header-actions {
        margin-left: auto;
    }
    
    .hero-conversion {
        padding: 60px 0;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .categories-conversion,
    .products-conversion,
    .why-triobli,
    .how-it-works {
        padding: 60px 0;
    }
    
    .categories-grid-conversion,
    .products-grid-conversion,
    .benefits-grid-conversion,
    .steps-grid-conversion {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title-conversion {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* ============================================
   OLD STYLES (KEEP FOR COMPATIBILITY)
   ============================================ */
.homepage-modern {
    padding: 0;
    background: #ffffff;
}

/* ============================================
   FULL-WIDTH HEADER IMAGE WITH CTA
   ============================================ */
.hero-fullwidth-modern {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-title-modern {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-subtitle-modern {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hero-cta-modern {
    display: inline-block;
    padding: 16px 48px;
    background: #141414;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #141414;
    transition: all 0.3s ease;
}

.hero-cta-modern:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* ============================================
   3X3 CATEGORY GRID
   ============================================ */
.categories-grid-modern {
    padding: 80px 0;
    background: #ffffff;
}

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

.category-card-modern {
    background: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 1px solid #e5e5e5;
}

.category-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-image-modern {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    overflow: hidden;
}

.category-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-placeholder-modern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
}

.category-placeholder-modern i {
    font-size: 60px;
}

.category-name-modern {
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #141414;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PRODUCTS GRID - MINIMALIST CARDS
   ============================================ */
.products-modern {
    padding: 80px 0;
    background: #fafafa;
}

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

.product-card-modern {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image-modern {
    display: block;
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    overflow: hidden;
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.product-placeholder-modern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
}

.product-placeholder-modern i {
    font-size: 60px;
}

.product-info-modern {
    padding: 24px;
}

.product-name-modern {
    font-size: 14px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-name-modern a {
    color: #141414;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name-modern a:hover {
    color: #666666;
}

.product-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-modern {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-old-modern {
    font-size: 13px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 300;
}

.price-current-modern {
    font-size: 18px;
    color: #141414;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.add-to-cart-icon-modern {
    width: 40px;
    height: 40px;
    background: #141414;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.add-to-cart-icon-modern:hover {
    background: #e20613;
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-title-modern {
        font-size: 56px;
    }
    
    .categories-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-fullwidth-modern {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title-modern {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle-modern {
        font-size: 14px;
    }
    
    .hero-cta-modern {
        padding: 14px 36px;
        font-size: 12px;
    }
    
    .categories-grid-modern {
        padding: 60px 0;
    }
    
    .categories-3x3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-image-modern {
        height: 250px;
    }
    
    .products-modern {
        padding: 60px 0;
    }
    
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image-modern {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-fullwidth-modern {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title-modern {
        font-size: 32px;
    }
    
    .hero-subtitle-modern {
        font-size: 12px;
    }
    
    .category-image-modern {
        height: 200px;
    }
    
    .product-image-modern {
        height: 300px;
    }
}

/* ============================================
   OLD STYLES (KEEP FOR COMPATIBILITY)
   ============================================ */
.homepage-minimal {
    padding: 0;
    background: #ffffff;
}

/* ============================================
   HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */
.hero-minimal {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 600px;
    background: #fafafa;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
}

.hero-placeholder i {
    font-size: 120px;
}

.hero-content {
    padding-left: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    color: #141414;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #141414;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #141414;
}

.hero-cta:hover {
    background: #ffffff;
    color: #141414;
}

/* ============================================
   PRODUCTS GRID - CLEAN 4-COLUMN
   ============================================ */
.products-minimal {
    padding: 100px 0;
    background: #ffffff;
}

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

.product-card-minimal {
    background: #ffffff;
    transition: opacity 0.3s ease;
}

.product-card-minimal:hover {
    opacity: 0.8;
}

.product-image-minimal {
    display: block;
    width: 100%;
    height: 400px;
    background: #fafafa;
    overflow: hidden;
    margin-bottom: 24px;
}

.product-image-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.product-placeholder-minimal {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
}

.product-placeholder-minimal i {
    font-size: 60px;
}

.product-info-minimal {
    text-align: left;
}

.product-name-minimal {
    font-size: 14px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name-minimal a {
    color: #141414;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name-minimal a:hover {
    color: #666666;
}

.product-price-minimal {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-old-minimal {
    font-size: 13px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 300;
}

.price-current-minimal {
    font-size: 16px;
    color: #141414;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 60px;
    }
    
    .hero-image {
        height: 500px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .products-grid-minimal {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-minimal {
        padding: 60px 0;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .hero-content {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .products-minimal {
        padding: 60px 0;
    }
    
    .products-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .product-image-minimal {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-minimal {
        padding: 40px 0;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .products-grid-minimal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-image-minimal {
        height: 400px;
    }
}

/* ============================================
   OLD STYLES (KEEP FOR COMPATIBILITY)
   ============================================ */
.homepage-new {
    padding: 0;
}

/* ============================================
   FULL WIDTH HERO BANNER
   ============================================ */
.hero-fullwidth {
    position: relative;
    margin-bottom: 50px;
    height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-black);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85) 0%, rgba(20, 20, 20, 0.6) 100%);
}

.hero-content-new {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 120px;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    margin-bottom: 30px;
}

.hero-heading {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-accent {
    color: var(--primary-red);
    position: relative;
}

.hero-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-main {
    padding: 18px 40px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s;
    display: inline-block;
}

.hero-btn-main:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.hero-btn-alt {
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s;
    border: 2px solid var(--white);
    display: inline-block;
}

.hero-btn-alt:hover {
    background: var(--white);
    color: var(--primary-black);
}

/* ============================================
   QUICK CATEGORIES
   ============================================ */
.quick-cats {
    background: var(--white);
    padding: 40px 0;
    margin-bottom: 60px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quick-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.quick-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.quick-cat-item:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(226, 6, 19, 0.2);
}

.quick-cat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary-red);
    transition: all 0.3s;
}

.quick-cat-item:hover .quick-cat-icon {
    background: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.quick-cat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
    transition: color 0.3s;
}

.quick-cat-item:hover .quick-cat-name {
    color: var(--white);
}

/* ============================================
   PRODUCTS SHOWCASE - NEW DESIGN
   ============================================ */
.featured-products-new,
.sale-products-new,
.new-products-new {
    padding: 60px 0;
    margin-bottom: 60px;
}

.sale-products-new {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-heading-new {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-black);
    margin: 0;
    letter-spacing: -1px;
}

.view-all-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-link:hover {
    gap: 12px;
    color: var(--primary-black);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-item-new {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.product-img-wrap {
    position: relative;
    display: block;
    height: 300px;
    background: var(--bg-light);
    overflow: hidden;
}

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

.prod-img-main {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.prod-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-item-new:hover .prod-img-main {
    opacity: 0;
}

.product-item-new:hover .prod-img-hover {
    opacity: 1;
}

.prod-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
}

.prod-placeholder i {
    font-size: 80px;
    opacity: 0.2;
}

.discount-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(226, 6, 19, 0.4);
    z-index: 2;
}

.product-details {
    padding: 24px;
    background: var(--white);
}

.product-name-new {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-name-new a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.product-name-new a:hover {
    color: var(--primary-red);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.price-old-new {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-new {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-red);
}

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

.prod-btn-view {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
}

.prod-btn-view:hover {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: var(--white);
}

.prod-btn-cart {
    flex: 1;
    height: 44px;
    border-radius: 8px;
    border: none;
    background: var(--primary-black);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.prod-btn-cart:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(226, 6, 19, 0.3);
}

/* ============================================
   NEWSLETTER NEW
   ============================================ */
.newsletter-new {
    background: var(--primary-black);
    padding: 80px 0;
    margin-bottom: 60px;
}

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

.newsletter-title-new {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.newsletter-title-new span {
    color: var(--primary-red);
}

.newsletter-text-new {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.newsletter-form-new {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.newsletter-form-new input {
    flex: 1;
    padding: 18px 28px;
    border: none;
    font-size: 16px;
    background: transparent;
}

.newsletter-form-new input:focus {
    outline: none;
}

.newsletter-form-new button {
    padding: 18px 40px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.newsletter-form-new button:hover {
    background: #c00510;
}

/* ============================================
   HOMEPAGE WRAPPER (OLD - KEEP FOR COMPATIBILITY)
   ============================================ */
.homepage-wrapper {
    padding: 0;
}

/* ============================================
   HERO SLIDER - CLEAN MODERN
   ============================================ */
.hero-slider {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    background: var(--white);
}

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

.slide-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.slide-text {
    max-width: 550px;
}

.slide-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-black);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.slide-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 28px;
}

.slide-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    padding: 14px 28px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-black);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--white);
}

.slide-image {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
}

.image-placeholder i {
    font-size: 100px;
    opacity: 0.3;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 12px;
}

.slider-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot.active {
    background: var(--primary-red);
    width: 24px;
    border-radius: 4px;
}

.no-image-placeholder-large {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: var(--text-lighter);
    z-index: 1;
}

.no-image-placeholder-large i {
    font-size: 80px;
}

/* ============================================
   CATEGORIES SIDEBAR - MODERN
   ============================================ */
.homepage-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.categories-sidebar-modern {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.categories-header-modern {
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.categories-header-modern i {
    font-size: 18px;
    color: var(--primary-red);
}

.categories-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list-modern li {
    border-bottom: 1px solid #f5f5f5;
}

.categories-list-modern li:last-child {
    border-bottom: none;
}

.category-link-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.category-link-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c00510 100%);
    transition: width var(--transition-base);
}

.category-link-modern:hover::before {
    width: 4px;
}

.category-link-modern:hover {
    background: linear-gradient(90deg, rgba(226, 6, 19, 0.05) 0%, transparent 100%);
    color: var(--primary-red);
    padding-left: 28px;
}

.category-icon {
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 6px;
    color: var(--text-lighter);
    transition: color var(--transition-base);
}

.category-link-modern:hover .category-icon i {
    color: var(--primary-red);
}

.category-name {
    flex: 1;
}

.category-arrow {
    color: var(--text-lighter);
    transition: all var(--transition-base);
}

.category-link-modern:hover .category-arrow {
    color: var(--primary-red);
    transform: translateX(4px);
}

/* ============================================
   PROMO CARDS - MODERN
   ============================================ */
.promo-cards-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.promo-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.promo-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.1);
}

.promo-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.promo-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--white);
}

.promo-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.promo-card-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.promo-card-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
}

.promo-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap var(--transition-base);
}

.promo-card-link:hover {
    gap: 12px;
}

.promo-card-link i {
    transition: transform var(--transition-base);
}

.promo-card-link:hover i {
    transform: translateX(4px);
}

.promo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: var(--text-lighter);
}

.promo-placeholder i {
    font-size: 64px;
}

/* ============================================
   PRODUCTS SECTION - MODERN
   ============================================ */
.products-section-modern {
    margin-top: 60px;
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.section-title-wrapper {
    flex: 1;
}

.section-title-modern {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.filter-tabs-modern {
    display: flex;
    gap: 0;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 4px;
}

.filter-tab-modern {
    padding: 12px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    transition: all var(--transition-base);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tab-modern.active {
    background: var(--primary-black);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-tab-modern:hover:not(.active) {
    color: var(--primary-red);
}

/* ============================================
   PRODUCTS GRID - MODERN
   ============================================ */
.homepage-main-modern {
    min-width: 0;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.product-card-modern {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-card-modern:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--bg-light);
}

.product-card-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-base), transform var(--transition-slow);
}

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

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

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

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


.product-badge-sale {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(226, 6, 19, 0.3);
}

.product-card-actions {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

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

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: none;
    background: var(--white);
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    font-size: 14px;
}

.product-action-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.product-action-cart:hover {
    background: var(--primary-black);
}

.product-card-body {
    padding: 20px;
    background: var(--white);
}

.product-card-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-base);
    display: block;
}

.product-card-title a:hover {
    color: var(--primary-red);
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 14px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-light);
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-lighter);
    font-size: 14px;
    font-weight: 400;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: var(--text-lighter);
}

.product-placeholder i {
    font-size: 64px;
}

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

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

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-bar {
    background: var(--white);
    color: var(--text-color);
    padding: 40px 0;
    margin-bottom: 50px;
}

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

.proof-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all var(--transition-base);
}

.proof-item:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(226, 6, 19, 0.2);
}

.proof-item:hover i {
    color: var(--white);
}

.proof-item i {
    font-size: 32px;
    color: var(--primary-red);
    min-width: 40px;
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .proof-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .proof-item {
        font-size: 13px;
    }
    
    .proof-item i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .proof-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    background: var(--bg-light);
    padding: 30px 0;
    margin-bottom: 60px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-red);
    width: 40px;
    flex-shrink: 0;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 4px;
}

.feature-item span {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-bottom: 60px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0;
    letter-spacing: -0.5px;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.section-link:hover {
    gap: 10px;
}

.section-link i {
    font-size: 12px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    height: 260px;
    background: var(--bg-light);
    overflow: hidden;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.img-main {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

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

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

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

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
}

.img-placeholder i {
    font-size: 60px;
    opacity: 0.3;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
}

.product-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

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

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: none;
    background: var(--white);
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 14px;
}

.action-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.cart-btn:hover {
    background: var(--primary-black);
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-info h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.product-info h3 a:hover {
    color: var(--primary-red);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.old-price {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.category-card:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateX(4px);
}

.category-card i {
    font-size: 20px;
    color: var(--primary-red);
    width: 24px;
    transition: all 0.3s;
}

.category-card:hover i {
    color: var(--white);
}

.category-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
    transition: color 0.3s;
}

.category-card:hover span {
    color: var(--white);
}

/* ============================================
   SALE SECTION
   ============================================ */
.sale-section {
    background: var(--bg-light);
    padding: 60px 0;
    margin-bottom: 60px;
}

/* ============================================
   NEW SECTION
   ============================================ */
.new-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    background: var(--primary-black);
    padding: 60px 0;
    margin-bottom: 60px;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.newsletter-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.newsletter-box h2 span {
    color: var(--primary-red);
}

.newsletter-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    font-size: 15px;
    background: transparent;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #c00510;
}

@media (max-width: 1024px) {
    .slider-container {
        height: 500px;
    }
    
    .slide-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide-image {
        height: 300px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .categories-section {
        position: static;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .featured-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-category-card {
        padding: 30px 20px;
    }
}


/* ============================================
   SECTION HEADERS - JUNKO STYLE
   ============================================ */
.section-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title-clean {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: -0.5px;
    margin: 0;
}

.section-link-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    padding: 8px 16px;
    border: 1px solid var(--primary-red);
    border-radius: 4px;
}

.section-link-all:hover {
    background: var(--primary-red);
    color: var(--white);
}

.section-link-all i {
    font-size: 12px;
    transition: transform var(--transition-base);
}

.section-link-all:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .hero-fullwidth {
        height: 450px;
    }
    
    .hero-content-new {
        padding-top: 80px;
    }
    
    .hero-heading {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn-main,
    .hero-btn-alt {
        width: 100%;
        text-align: center;
    }
    
    .quick-cats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-heading-new {
        font-size: 28px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-img-wrap {
        height: 250px;
    }
    
    .newsletter-title-new {
        font-size: 32px;
    }
    
    .newsletter-form-new {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .newsletter-form-new input {
        padding: 16px 24px;
    }
    
    .newsletter-form-new button {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
}

/* ============================================
   PRODUCTS ON SALE SECTION
   ============================================ */
.products-on-sale-section {
    padding: 80px 0;
    background: var(--white);
    margin-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   NEW PRODUCTS SECTION
   ============================================ */
.new-products-section {
    padding: 80px 0;
    background: var(--white);
    margin-bottom: 80px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
    color: var(--white);
    margin-bottom: 60px;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.newsletter-highlight {
    color: var(--primary-red);
    display: inline-block;
    position: relative;
}

.newsletter-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.newsletter-form {
    margin-top: 40px;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 15px;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.newsletter-input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    font-size: 16px;
    font-family: var(--font-body);
    background: transparent;
    color: var(--text-color);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--text-lighter);
}

.newsletter-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c00510 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #c00510 0%, #a0040d 100%);
    transform: scale(1.05);
}

.newsletter-btn i {
    transition: transform var(--transition-base);
}

.newsletter-btn:hover i {
    transform: translateX(4px);
}

.newsletter-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

.newsletter-privacy a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color var(--transition-base);
}

.newsletter-privacy a:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 32px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .newsletter-input {
        padding: 16px 20px;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        border-radius: 0 0 16px 16px;
    }
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.instagram-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.instagram-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.instagram-item:hover .instagram-image {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 32px;
    color: var(--white);
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: var(--white);
}

.instagram-placeholder i {
    font-size: 48px;
}

.instagram-cta {
    text-align: center;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
}

.btn-instagram i {
    font-size: 20px;
}

@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-title {
        font-size: 32px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MODERN
   ============================================ */
@media (max-width: 1024px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .homepage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories-sidebar-modern {
        display: none;
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 999;
        overflow-y: auto;
        border-radius: 0;
        box-shadow: none;
    }
    
    .categories-sidebar-modern.mobile-active {
        display: block;
    }
    
    .promo-cards-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-card {
        height: 320px;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-right-section {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .header-search-wrapper {
        width: 100%;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .main-header {
        padding: 12px 0;
        z-index: 9997;
    }
    
    .logo h1 {
        font-size: 16px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .main-nav-inline {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-white);
        z-index: 9998;
        overflow-y: auto;
        max-height: calc(100vh - 60px);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }
    
    .main-nav-inline.active {
        display: block !important;
    }
    
    .header-right-section {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .header-search-wrapper {
        width: 100%;
    }
    
    .header-actions {
        gap: 12px;
        flex-shrink: 0;
        width: 100%;
        justify-content: flex-end;
    }
    
    .header-icon {
        font-size: 18px;
        width: 36px;
        height: 36px;
    }
    
    .header-icon.wishlist-icon {
        display: none;
    }
    
    .cart-total {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav-inline .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .main-nav-inline .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav-inline .nav-menu a {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
        justify-content: space-between;
    }
    
    .main-nav-inline .has-dropdown .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-color);
        background-color: var(--bg-light);
    }
    
    .main-nav-inline .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .main-nav-inline .submenu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-color);
        background-color: #f0f0f0;
        margin-left: 0;
        padding-left: 20px;
    }
    
    .search-bar-section {
        padding: 12px 0;
    }
    
    .search-bar-form {
        flex-direction: column;
        gap: 0;
    }
    
    .search-input,
    .category-select {
        width: 100%;
        border: 1px solid var(--border-color);
        border-bottom: none;
        padding: 14px 15px;
        font-size: 16px;
        border-radius: 0;
    }
    
    .search-input {
        border-top: 1px solid var(--border-color);
    }
    
    .category-select {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
    
    .search-submit {
        width: 100%;
        padding: 14px 20px;
        border: 1px solid var(--border-color);
        border-top: none;
        border-radius: 0;
    }
    
    .hero-banner {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .social-proof-bar {
        padding: 15px 0;
        margin-bottom: 40px;
    }
    
    .featured-categories-section {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .products-on-sale-section {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .new-products-section {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .newsletter-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .instagram-section {
        padding: 60px 0;
    }
    
    .homepage-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .promo-cards-section {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .promo-card {
        height: 280px;
    }
    
    .promo-card-content {
        padding: 30px 24px;
    }
    
    .promo-card-title {
        font-size: 28px;
    }
    
    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .section-title-modern {
        font-size: 32px;
    }
    
    .filter-tabs-modern {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-tab-modern {
        padding: 10px 18px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .product-card-image-wrapper {
        height: 240px;
    }
    
    .product-card-body {
        padding: 20px;
    }
    
    .product-card-title {
        font-size: 15px;
    }
    
    .price-current {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-image-container {
        height: 250px;
    }
    
    .social-proof-bar {
        padding: 12px 0;
        margin-bottom: 30px;
    }
    
    .proof-item {
        font-size: 12px;
    }
    
    .featured-categories-section {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .featured-category-card {
        padding: 25px 20px;
    }
    
    .featured-category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .featured-category-title {
        font-size: 16px;
    }
    
    .products-on-sale-section {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .new-products-section {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .section-title-clean {
        font-size: 24px;
    }
    
    .newsletter-section {
        padding: 40px 0;
        margin-bottom: 30px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-subtitle {
        font-size: 16px;
    }
    
    .instagram-section {
        padding: 40px 0;
    }
    
    .instagram-title {
        font-size: 28px;
    }
    
    .promo-cards-section {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .promo-card {
        height: 240px;
    }
    
    .promo-card-content {
        padding: 24px 20px;
    }
    
    .promo-card-title {
        font-size: 24px;
    }
    
    .promo-card-subtitle {
        font-size: 14px;
    }
    
    .section-title-modern {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card-image-wrapper {
        height: 200px;
    }
    
    .product-card-body {
        padding: 16px;
    }
    
    .product-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .product-card-rating {
        margin-bottom: 12px;
    }
    
    .price-current {
        font-size: 18px;
    }
    
    .product-badge-sale {
        top: 12px;
        right: 12px;
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-md);
    margin-top: var(--spacing-xxl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: var(--spacing-xl);
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h4 {
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.footer-company {
    max-width: 100%;
}

.footer-contact {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    margin-top: 3px;
    font-size: 16px;
    min-width: 20px;
    color: var(--primary-red);
}

.contact-item span {
    flex: 1;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--primary-red);
}

.footer-social {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.social-link:hover {
    background: var(--primary-red);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.rss-icon {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    text-decoration: none;
    transition: color var(--transition-base);
}

.rss-icon:hover {
    color: var(--primary-red);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.payment-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: opacity var(--transition-base);
    font-size: 14px;
    line-height: 1;
}

.back-to-top i {
    display: block;
    margin: -3px 0;
}

.back-to-top:hover {
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ============================================
   CART MODAL
   ============================================ */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    pointer-events: none;
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.cart-modal-content {
    position: relative;
    background-color: var(--bg-white);
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
    z-index: 10001;
}

.cart-modal.active .cart-modal-content {
    transform: scale(1) translateY(0);
}

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.cart-modal-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-modal-header h3 i {
    color: var(--success-color);
    font-size: 24px;
}

.cart-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color var(--transition-base);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.cart-modal-close:hover {
    color: var(--text-color);
    background-color: var(--bg-light);
}

.cart-modal-body {
    padding: 25px;
}

.cart-modal-product-details {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 20px;
}

.cart-modal-product-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

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

.cart-modal-product-text {
    flex: 1;
    min-width: 0;
}

.cart-modal-product-text h4 {
    margin: 0 0 8px 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

.cart-modal-variation {
    margin: 0 0 6px 0;
    font-size: 13px;
    color: var(--text-light);
}

.cart-modal-quantity,
.cart-modal-price {
    margin: 4px 0;
    font-size: 14px;
    color: var(--text-color);
}

.cart-modal-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-red);
    font-size: 16px;
}

.cart-modal-message {
    text-align: center;
    margin-bottom: 10px;
}

.cart-modal-message p {
    margin: 0;
    font-size: 15px;
    color: var(--text-color);
}

.cart-modal-footer {
    display: flex;
    gap: 15px;
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.cart-modal-footer .btn {
    flex: 1;
    min-height: 48px;
    font-size: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 6px;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-modal-footer .btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.cart-modal-footer .btn-secondary:hover {
    background-color: var(--border-color);
}

.cart-modal-footer .btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.cart-modal-footer .btn-primary:hover {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
}

@media (max-width: 768px) {
    .cart-modal-content {
        width: 95%;
        max-width: 95%;
        margin: 20px;
    }
    
    .cart-modal-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .cart-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cart-modal-content {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
        margin: 0;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ============================================
   TOUCH FRIENDLY & ACCESSIBILITY
   ============================================ */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

button, a, input[type="submit"], input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent text selection on buttons */
.btn, button, .header-icon {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ============================================
   PAGE HEADER & BREADCRUMBS
   ============================================ */
.page-header {
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.breadcrumbs {
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

/* ============================================
   CART PAGE
   ============================================ */
.cart-page {
    padding: 40px 0;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.cart-items {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
}

.cart-table thead {
    background-color: var(--bg-light);
}

.cart-table th,
.cart-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-black);
}

.product-cell {
    min-width: 300px;
}

.product-info-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-info-cart img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.product-info-cart h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-info-cart h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

.product-info-cart h4 a:hover {
    color: var(--primary-red);
}

.variation-name {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.price-cell {
    font-weight: 600;
}

.quantity-cell {
    min-width: 150px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    padding: 10px 15px;
    background-color: var(--bg-light);
    border: none;
    border-right: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    transition: all var(--transition-base);
    min-width: 44px;
}

.qty-btn:last-child {
    border-right: none;
    border-left: 1px solid var(--border-color);
}

.qty-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.qty-input {
    width: 60px;
    padding: 10px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.total-cell {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-black);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    transition: all var(--transition-base);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background-color: rgba(226, 6, 19, 0.1);
    transform: scale(1.1);
}

.cart-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-black);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-color);
}

.summary-row.total {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
    color: var(--primary-black);
}

.cart-summary .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
    padding: 40px 0;
}

.checkout-form h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin: 30px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-black);
}

.checkout-form h2:first-child {
    margin-top: 0;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
}

.checkout-main {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.checkout-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(226, 6, 19, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.delivery-methods,
.payment-methods {
    margin: 20px 0;
}

.method-option {
    margin-bottom: 15px;
}

.method-option input[type="radio"] {
    display: none;
}

.method-option label {
    display: block;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--white);
}

.method-option input[type="radio"]:checked + label {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(226, 6, 19, 0.05) 0%, transparent 100%);
    box-shadow: 0 4px 12px rgba(226, 6, 19, 0.1);
}

.method-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.method-price {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
}

.method-description {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    line-height: 1.5;
}

.order-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    box-shadow: var(--shadow-sm);
}

.order-summary h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-black);
}

.order-items {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-color);
}

.order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}

.order-summary .summary-row.total {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
    color: var(--primary-black);
}

.order-summary .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-page {
    padding: 40px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
}

.products-sidebar {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-black);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 4px;
}

.category-list > li.has-subcategories {
    margin-bottom: 8px;
}

.category-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-weight: 500;
    position: relative;
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary-red);
    font-weight: 700;
    padding-left: 8px;
}

.category-list a .category-toggle {
    font-size: 10px;
    transition: transform var(--transition-base);
    color: var(--text-light);
}

.category-list li.has-subcategories.active > a .category-toggle,
.category-list li.has-subcategories:has(.subcategory-list.expanded) > a .category-toggle {
    transform: rotate(180deg);
}

.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-left: 0;
}

.subcategory-list.expanded {
    max-height: 1000px;
    padding-top: 8px;
    padding-left: 20px;
}

.subcategory-list li {
    margin-bottom: 4px;
}

.subcategory-list a {
    font-size: 13px;
    font-weight: 400;
    padding: 6px 0;
    padding-left: 0;
    color: var(--text-light);
}

.subcategory-list a:hover,
.subcategory-list a.active {
    color: var(--primary-red);
    font-weight: 600;
    padding-left: 8px;
}

/* Additional styles for better subcategory visibility */
.category-list li.has-subcategories.active > a {
    color: var(--primary-red);
    font-weight: 700;
}

.category-list li.has-subcategories.active > .subcategory-list {
    max-height: 1000px;
    padding-top: 8px;
    padding-left: 20px;
}

.products-content {
    min-width: 0;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.view-options {
    display: flex;
    gap: 5px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    padding: 10px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 16px;
}

.view-btn.active {
    background: var(--primary-black);
    color: var(--white);
}

.view-btn:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
}

.sort-options select {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition-base);
}

.sort-options select:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 18px;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-page {
    padding: 40px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-images .main-image {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-images .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.thumbnail-images img:hover {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.product-info-detail h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-black);
    line-height: 1.2;
}

.product-info-detail .product-price {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.product-info-detail .old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--text-light);
}

.product-info-detail .current-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-red);
}

.discount-percent {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c00510 100%);
    color: var(--white);
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 20px;
    margin-left: 10px;
}

.product-description {
    margin: 30px 0;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 15px;
}

.product-variations,
.product-quantity {
    margin: 25px 0;
}

.product-variations label,
.product-quantity label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
    font-family: var(--font-heading);
}

.variation-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition-base);
}

.variation-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.product-actions-detail .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.product-meta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

.meta-item strong {
    font-weight: 700;
    color: var(--primary-black);
    margin-right: 8px;
}

.product-tabs {
    margin-top: 60px;
}

.tab-nav {
    display: flex;
    list-style: none;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
    gap: 0;
}

.tab-item {
    padding: 15px 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition-base);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    color: var(--text-color);
}

.tab-item.active {
    border-bottom-color: var(--primary-red);
    color: var(--primary-red);
}

.tab-item:hover:not(.active) {
    color: var(--primary-red);
}

.tab-pane {
    display: none;
    line-height: 1.8;
    font-size: 15px;
    color: var(--text-color);
}

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

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-error {
    background-color: #ffebee;
    color: var(--error-color);
    border: 1px solid #ffcdd2;
}

.alert-success {
    background-color: #e8f5e9;
    color: var(--success-color);
    border: 1px solid #c8e6c9;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-base);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination-ellipsis {
    padding: 12px 18px;
    color: var(--text-light);
}

/* ============================================
   RESPONSIVE - CART, CHECKOUT, PRODUCTS
   ============================================ */
@media (max-width: 1024px) {
    .cart-content,
    .checkout-content,
    .products-layout,
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-summary,
    .checkout-sidebar,
    .products-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-table {
        font-size: 14px;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 12px 8px;
    }
    
    .product-info-cart {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .product-info-cart img {
        width: 60px;
        height: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkout-main {
        padding: 30px 20px;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-detail {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-table {
        font-size: 12px;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 10px 6px;
    }
    
    .product-info-cart img {
        width: 50px;
        height: 50px;
    }
    
    .cart-summary {
        padding: 20px;
    }
    
    .checkout-main {
        padding: 20px 15px;
    }
    
    .checkout-form h2 {
        font-size: 20px;
    }
    
    .method-option label {
        padding: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-detail {
        gap: 20px;
    }
    
    .product-info-detail h1 {
        font-size: 28px;
    }
    
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-item {
        padding: 12px 20px;
        font-size: 14px;
    }
}
