/* ========================================
   Site-wide Styles
   ======================================== */

:root {
    /* ── Eleganza Design System ── */
    --primary-color:   #c8a96e;   /* Gold */
    --primary-dark:    #1a1a2e;   /* Deep navy */
    --primary-mid:     #16213e;   /* Mid navy */
    --primary-light:   #0f3460;   /* Light navy */
    --gold:            #c8a96e;
    --gold-light:      #d4b97e;
    --secondary-color: #1a1a2e;
    --success-color:   #10b981;
    --danger-color:    #ef4444;
    --warning-color:   #f59e0b;
    --info-color:      #3b82f6;
    --light-color:     #f5f5f7;
    --dark-color:      #1a1a2e;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #212529;
    background-color: #fff;
}

/* ========================================
   Header Styles — Eleganza Design System
   ======================================== */

.site-header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 2px 16px rgba(26,26,46,0.10);
}

/* ========================================
   Minimalist Mega Menu Styles
   ======================================== */

/* Mega Menu Container — Eleganza Dark Navy */
.mega-menu {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    z-index: 1010;
    padding: 0;
    border-top: 1px solid rgba(200,169,110,0.15);
    border-bottom: 2px solid rgba(200,169,110,0.2);
}

.mega-menu .navbar {
    padding: 0;
}

.mega-menu .navbar-nav {
    margin: 0;
    padding: 0;
    gap: 0;
}

/* Navigation Items */
.mega-menu .nav-link {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 13px;
    padding: 18px 16px;
    transition: all 0.25s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.mega-menu .nav-link:hover,
.mega-menu .nav-link:focus {
    color: #c8a96e;
    background-color: rgba(200,169,110,0.06);
    border-bottom-color: #c8a96e;
}

/* Dropdown Arrow */
.mega-menu .dropdown-toggle::after {
    border: none;
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 10px;
    margin-left: 0;
    vertical-align: middle;
    transition: transform 0.3s ease;
    display: inline-block;
}

.mega-menu .nav-item:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mega Menu Dropdown (Fullscreen White) */
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 16px 48px rgba(26,26,46,0.18);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 30px 0;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    border-top: 3px solid #c8a96e;
}

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

/* Mega Menu Column */
/* Mega Menu Grid Layout */
.mega-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
}

/* Categories Section (Left) */
.categories-section {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
    max-height: 340px;
    overflow-y: auto;
}

.categories-section::-webkit-scrollbar {
    width: 6px;
}

.categories-section::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.categories-section::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c8a96e, #d4b97e);
    border-radius: 10px;
}

.categories-section::-webkit-scrollbar-thumb:hover {
    background: #c8a96e;
}

/* Category Menu List */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 2px;
}

.menu-list a {
    color: #374151;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-list a:hover,
.menu-list a.active {
    background: #fffdf7;
    color: #c8a96e;
    padding-left: 16px;
    box-shadow: 0 2px 8px rgba(200,169,110,0.08);
}

.menu-list a i {
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #c8a96e;
}

.menu-list a:hover i,
.menu-list a.active i {
    opacity: 1;
}

/* "Toate" link — öne çıkar */
.mega-sub-all {
    font-weight: 700 !important;
    color: #c8a96e !important;
    border-bottom: 1px dashed rgba(200,169,110,0.2);
    margin-bottom: 4px;
}

.mega-sub-all i {
    font-size: 11px !important;
    opacity: 1 !important;
}

/* Active subcategory state */
.menu-list a.mega-sub-link.active {
    background: rgba(200,169,110,0.12);
    color: #c8a96e;
    padding-left: 16px;
    border-left: 3px solid #c8a96e;
}

/* Product grid transition */
#mega-grid-* {
    transition: opacity .18s;
}

/* Loading state shimmer on grid */
.mega-products-loading {
    opacity: 0.35;
    pointer-events: none;
}

/* Products Section (Right) */
.products-section {
    position: relative;
}

.products-section h6 {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}
.products-section h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #c8a96e, #d4b97e);
}

/* Product Container - No scroll for grid layout */
.product-scroll-container {
    overflow: visible;
    margin-bottom: 10px;
}

/* Mega Menu Product Grid - 6 Columns (1 row, 6 cards) */
.mega-menu-product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    width: 100%;
}

/* Adjust category product card for mega menu (compact for 6 columns) */
.mega-menu-product-grid .eleganza-category-product-card {
    width: 100%;
    border: 1px solid #e5e7eb;
}

.mega-menu-product-grid .eleganza-category-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.mega-menu-product-grid .eleganza-category-product-name {
    font-size: 0.65rem;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    max-height: 1.56rem; /* 0.65rem * 1.2 * 2 lines */
}

.mega-menu-product-grid .eleganza-category-product-category {
    font-size: 0.55rem;
    margin-bottom: 0.15rem;
}

.mega-menu-product-grid .eleganza-category-product-price-current {
    font-size: 0.75rem;
}

.mega-menu-product-grid .eleganza-category-product-price-old {
    font-size: 0.6rem;
}

.mega-menu-product-grid .eleganza-category-product-discount {
    font-size: 0.5rem;
    padding: 0.1rem 0.25rem;
}

.mega-menu-product-grid .eleganza-category-product-info {
    padding: 0.4rem;
}

.mega-menu-product-grid .eleganza-category-product-add-to-cart {
    font-size: 0.6rem;
    padding: 0.4rem 0.6rem;
}

.mega-menu-product-grid .eleganza-category-product-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.4rem;
    top: 0.4rem;
    left: 0.4rem;
}

/* pcard inside mega-menu: strip to image + name + price only */
.mega-menu-product-grid .pcard-brand,
.mega-menu-product-grid .pcard-variants,
.mega-menu-product-grid .pcard-btn,
.mega-menu-product-grid .pcard-ship { display: none !important; }

.mega-menu-product-grid .pcard-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
    padding: .4rem .6rem .55rem;
}
.mega-menu-product-grid .pcard-price .price-current { font-size: .82rem; }
.mega-menu-product-grid .pcard-price .price-original { font-size: .68rem; }
.mega-menu-product-grid .pcard-body { padding: .45rem .6rem .3rem; gap: .2rem; }
.mega-menu-product-grid .pcard-name { font-size: .72rem; -webkit-line-clamp: 2; }
.mega-menu-product-grid .pcard-quick { font-size: .68rem; padding: .55rem; }
.mega-menu-product-grid .pcard { border-radius: 10px; }

.mega-menu-product-grid .eleganza-category-product-image {
    padding-bottom: 125%; /* 4:5 aspect ratio for better fit in narrow cards */
}

/* Simple Dropdown */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(26,26,46,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    z-index: 999;
    list-style: none;
    margin: 0;
    border-top: 2px solid #c8a96e;
    border-radius: 0 0 10px 10px;
}

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

.simple-dropdown li {
    list-style: none;
    border-bottom: 1px solid #f5f5f5;
}

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

.simple-dropdown a {
    color: #4a4a4a;
    text-decoration: none;
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.simple-dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: #fafafa;
    transition: width 0.3s ease;
    z-index: -1;
}

.simple-dropdown a:hover {
    color: #c8a96e;
    padding-left: 32px;
    font-weight: 600;
}

.simple-dropdown a:hover::before {
    width: 100%;
}

/* Badge */
.badge-new {
    background: linear-gradient(135deg, #c8a96e 0%, #1a1a2e 100%);
    color: white;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Announcements Bar — Eleganza */
.announcements-bar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%) !important;
    color: #fff;
    border-bottom: 1px solid rgba(200,169,110,0.2);
}

.announcements-slider {
    min-height: 24px;
    overflow: hidden;
}

.announcement-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.announcement-item.active {
    display: block;
    opacity: 1;
}

.social-icons a {
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.top-bar {
    background-color: #fffdf7;
    padding: 7px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.navbar-brand strong {
    font-size: 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    background: linear-gradient(135deg, #1a1a2e, #c8a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.category-menu {
    padding: 10px 0;
}

.category-menu .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.2s;
}

.category-menu .nav-link:hover {
    color: #c8a96e;
}

.mobile-search {
    padding: 10px 0;
}

/* Category Dropdown Styles */
.category-menu .dropdown-menu {
    border-radius: 0;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 0;
    min-width: 220px;
}

.category-menu .dropdown-item {
    padding: 8px 16px;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.category-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #c8a96e;
}

/* Nested dropdown (submenu) */
.category-menu .dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
}

.category-menu .dropdown-item:hover + .dropdown-submenu,
.category-menu .dropdown-submenu:hover {
    display: block;
}

.category-menu .dropdown-toggle::after {
    float: right;
    margin-top: 6px;
}

/* Mobile Category Menu */
#mobileCategoryMenu .accordion-button {
    padding: 12px 16px;
    font-weight: 500;
    background-color: transparent;
}

#mobileCategoryMenu .accordion-button:not(.collapsed) {
    background-color: rgba(200,169,110,0.08);
    color: #c8a96e;
}

#mobileCategoryMenu .accordion-body a {
    color: #495057;
    border-bottom: 1px solid #f0f0f0;
}

#mobileCategoryMenu .accordion-body a:hover {
    background-color: rgba(200,169,110,0.06);
    color: #c8a96e;
}

#mobileCategoryMenu .accordion-body ul ul a {
    font-size: 0.9rem;
    padding-left: 2rem !important;
}

@media (max-width: 991.98px) {
    .mega-menu {
        display: none !important;
    }
    
    body {
        padding-top: 0; /* Remove fixed navbar padding on mobile */
    }
    
    .site-header {
        position: relative; /* Not fixed on mobile */
    }
    
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories-section {
        max-height: none;
    }
}

/* ========================================
   Main Content
   ======================================== */

.site-main {
    min-height: 60vh;
}

/* ========================================
   Footer Styles
   ======================================== */

.site-footer {
}

.site-footer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: #fff !important;
}

.newsletter-form .input-group {
    max-width: 100%;
}

/* ========================================
   Responsive Utilities
   ======================================== */

@media (max-width: 991.98px) {
    .navbar-brand img {
        max-height: 40px !important;
    }
    
    .site-main {
        padding: 0px;
    }
}

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

/* ========================================
   Product Cards (for future use)
   ======================================== */

.product-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.product-card img {
    width: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: 15px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-old-price {
    font-size: 0.95rem;
    color: #6c757d;
    text-decoration: line-through;
}

/* ========================================
   Utilities
   ======================================== */

.badge-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-cart:hover {
    background-color: #b91c1c;
    color: white;
}

/* ========================================
   Modern Category Page Styles
   ======================================== */

/* Breadcrumb Inline */
.breadcrumb-inline {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    font-size: 0.85rem;
}

.breadcrumb-inline .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #666;
}

.breadcrumb-inline .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-inline .breadcrumb-item a:hover {
    color: #dc2626;
}

.breadcrumb-inline .breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 500;
}

/* Subcategories Section */
.subcategories-section {
    background: #fff;
}

.subcategories-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    justify-content: center;
}

.subcategories-container::-webkit-scrollbar {
    display: none;
}

.subcat-item {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subcat-item:nth-child(1) { animation-delay: 0.1s; }
.subcat-item:nth-child(2) { animation-delay: 0.15s; }
.subcat-item:nth-child(3) { animation-delay: 0.2s; }
.subcat-item:nth-child(4) { animation-delay: 0.25s; }
.subcat-item:nth-child(5) { animation-delay: 0.3s; }
.subcat-item:nth-child(6) { animation-delay: 0.35s; }

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

.subcat-item:hover {
    transform: translateY(-5px);
}

.subcat-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #dc2626, #000000) border-box;
    padding: 3px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcat-item:hover .subcat-image {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.subcat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.subcat-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    max-width: 120px;
    text-align: center;
    line-height: 1.3;
}

/* Filters Section */
.filters-section {
    background: #fff;
    position: relative;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    font-size: 0.95rem;
    color: #666;
}

.results-count strong {
    color: #1a1a1a;
    font-weight: 600;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    padding: 0.6rem 1.2rem;
    border: 1.5px solid #E0E0E0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
}

.filter-select:hover,
.filter-select:focus {
    border-color: #dc2626;
    outline: none;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.filter-btn-clear {
    padding: 0.6rem 1.2rem;
    border: 1.5px solid #E0E0E0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn-clear:hover {
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}


/* Modern Product Card */
.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInScale 0.6s ease backwards;
}

.row .col-lg-3:nth-child(1) .product-card { animation-delay: 0.1s; }
.row .col-lg-3:nth-child(2) .product-card { animation-delay: 0.15s; }
.row .col-lg-3:nth-child(3) .product-card { animation-delay: 0.2s; }
.row .col-lg-3:nth-child(4) .product-card { animation-delay: 0.25s; }
.row .col-lg-3:nth-child(5) .product-card { animation-delay: 0.3s; }
.row .col-lg-3:nth-child(6) .product-card { animation-delay: 0.35s; }
.row .col-lg-3:nth-child(7) .product-card { animation-delay: 0.4s; }
.row .col-lg-3:nth-child(8) .product-card { animation-delay: 0.45s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* 3:4 aspect ratio (more vertical) */
    overflow: hidden;
    background: #F8F9FA;
}

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

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

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

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

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

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc2626;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #6b7280;
}
.wishlist-btn:hover,
.wishlist-btn.active {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}
.wishlist-btn.active i { color: white; }
.wishlist-btn i { font-size: 1.1rem; }

/* product-card (Bootstrap variant) */
.btn-card-wishlist {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    color: #6b7280;
    font-size: .95rem;
}
.btn-card-wishlist:hover,
.btn-card-wishlist.active { background: #dc2626; color: white; transform: scale(1.1); }

/* eleganza category card */
.eleganza-category-product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    color: #6b7280;
    font-size: .95rem;
}
.eleganza-category-product-wishlist:hover,
.eleganza-category-product-wishlist.active { background: #dc2626; color: white; transform: scale(1.1); }

/* Account sidebar badge */
.acc-nav-badge {
    margin-left: auto;
    background: #c8a96e;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    line-height: 1.4;
}

.product-info {
    padding: 1rem 0rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

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

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

.discounted-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #dc2626;
}

.product-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
}

.btn-add-cart {
    flex: 1;
    padding: 0.7rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-add-cart:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-detail {
    padding: 0.7rem 1rem;
    background: white;
    color: #000000;
    border: 1.5px solid #000000;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-detail:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .category-title {
        font-size: 2rem;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section {
        padding: 1.5rem 0;
    }
    
    .category-title {
        font-size: 1.75rem;
    }

    
    .subcat-image {
        width: 70px;
        height: 70px;
    }
    
    .subcat-name {
        font-size: 0.75rem;
        max-width: 70px;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
}

/* ================================
   PRODUCT DETAIL PAGE STYLES
   ================================ */

.product-detail-section {
    padding: 0;
    padding-top: 20px;
}

/* Product Gallery */
/* Product Gallery Grid */
.product-gallery-grid {
    position: sticky;
    top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default: 1 column for single image */
    gap: 2px;
}

/* 2+ images: show 2 columns */
.gallery-grid:has(.gallery-grid-item:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-grid-item {
    position: relative;
    aspect-ratio: 3/4;
    background: #f8f9fa;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover {
    transform: scale(1.02);
}

.gallery-grid-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Mobile Carousel */
/* Mobile gallery uses .gallery-scroll now */

/* Mobile: Horizontal Scroll Gallery */
.gallery-scroll {
    display: flex;
    gap: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    background: #f8f9fa;
    width: 100%;
    margin-left: 0;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.scroll-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    cursor: pointer;
    scroll-snap-stop: always;
}

.scroll-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

@media (min-width: 768px) {
    .gallery-scroll {
        display: none; /* Hide on desktop, use grid instead */
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: #333;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    transform: scale(1.1);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6c757d;
}

.no-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.zoom-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.zoom-btn:hover {
    background: #1a1a1a;
    color: white;
    transform: scale(1.1);
}

/* Thumbnails removed - now using grid/carousel */

/* Product Info */
.product-info {
    padding: 1rem 0;
}

/* Product Breadcrumb (Minimal) */
.product-breadcrumb {
    margin-bottom: 0.75rem;
}

.product-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
}

.product-breadcrumb .breadcrumb-item {
    color: #6c757d;
}

.product-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-breadcrumb .breadcrumb-item a:hover {
    color: #1a1a1a;
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1rem;
    padding: 0 0.35rem;
}

.product-breadcrumb .breadcrumb-item.active {
    color: #1a1a1a;
}

.product-brand {
    margin-bottom: 0.75rem;
}

.product-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    background: #fafafa;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.product-brand-link:hover {
    background: #fff;
    border-color: #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-brand-logo {
    height: 20px;
    max-width: 60px;
    object-fit: contain;
}

.product-brand-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0a0a0a;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}

.btn-wishlist {
    background: white;
    border: 2px solid #dee2e6;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-wishlist:hover,
.btn-wishlist.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.btn-wishlist i {
    font-size: 1.25rem;
}

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

.product-rating .stars i {
    font-size: 1rem;
}

.rating-text {
    font-weight: 600;
    color: #1a1a1a;
}

.product-badges .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-old {
    font-size: 1.25rem;
    color: #6c757d;
    text-decoration: line-through;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
}

.product-short-desc {
    color: #495057;
    line-height: 1.6;
}

/* Variant Selection */
.variant-selection .form-label {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variant-option {
    padding: 0.20rem 0.75rem;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.variant-option:hover:not(.disabled) {
    border-color: #dc2626;
    background: #fee2e2;
}

.variant-option.active {
    border-color: #dc2626;
    background: #dc2626;
    color: white;
}

.variant-option.disabled,
.variant-option:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    background: #f5f5f5 !important;
    color: #999 !important;
    border-color: #ddd !important;
    pointer-events: none;
}

/* Purchase Section */
.purchase-section {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.quantity-selector .form-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.qty-input {
    display: flex;
    align-items: center;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
    width: 130px;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-value {
    border: none;
    text-align: center;
    width: 50px;
    height: 45px;
    font-weight: 600;
    font-size: 1rem;
}

.qty-value:focus {
    outline: none;
}

.btn-add-cart {
    flex: 1;
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 45px;
}

.btn-add-cart:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.stock-info {
    font-size: 0.95rem;
}

.stock-info i {
    font-size: 1.1rem;
}

/* Product Meta */
.product-meta {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 4px;
}

.meta-item {
    display: flex;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

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

.meta-label {
    font-weight: 600;
    color: #495057;
    min-width: 100px;
}

.meta-value {
    color: #1a1a1a;
}

.category-badge {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-badge:hover {
    color: #d39e4d;
    text-decoration: underline;
}

/* Size Chart */
.size-chart-section {
    padding: 1.5rem 0;
    border-top: 1px solid #dee2e6;
    margin-top: 1rem;
}

.btn-size-chart {
    background: white;
    color: #000000;
    border: 2px solid #000000;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.btn-size-chart:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-size-chart i {
    font-size: 1.1rem;
}

.size-chart-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
}

.size-chart-content table {
    width: 100%;
    margin: 0;
}

.size-chart-content table th {
    background: #000000;
    color: white;
    padding: 0.75rem;
    font-weight: 600;
}

.size-chart-content table th {
    text-align: center;
}

.size-chart-content table td {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid #dee2e6;
    background: white;
}

.size-chart-content table tbody tr:nth-child(even) td {
    background: #f8f9fa;
}

.size-chart-content table tbody tr:hover td {
    background: #fee2e2;
}

/* Product Benefits */
.product-benefits {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    position: sticky;
    top: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-item i {
    font-size: 2rem;
    color: #dc2626;
    flex-shrink: 0;
}

.benefit-item h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* Product Tabs */


.product-tabs .nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.product-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.product-tabs .nav-link:hover {
    color: #1a1a1a;
}

.product-tabs .nav-link.active {
    color: #000000;
    border-bottom-color: #dc2626;
    background: transparent;
}

.tab-content-inner {
    padding: 2rem 0;
}

.specifications-table {
    margin-top: 1.5rem;
}

.specifications-table .spec-label {
    font-weight: 600;
    background: #f8f9fa;
    width: 30%;
}

.specifications-table .spec-value {
    color: #495057;
}

/* Reviews */
.reviews-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.average-rating {
    padding: 1rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.average-rating .stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reviews-list {
    margin-top: 2rem;
}

.review-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-header strong {
    font-size: 1rem;
    color: #1a1a1a;
}

.review-header .stars {
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.review-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.review-body p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Add Review Form */
.add-review-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.add-review-section h5 {
    margin-bottom: 1.5rem;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: #dee2e6;
    transition: color 0.2s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #ffc107;
}

/* Related Products Carousel */
/* ================================
   RELATED PRODUCTS GRID
   ================================ */
.related-products-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.related-products-section .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.related-products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #dc2626;
}

/* Related Products Grid - 6 columns like homepage */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

/* Smaller font sizes for compact 6-column layout */
.related-products-grid .eleganza-category-product-name {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
}

.related-products-grid .eleganza-category-product-category {
    font-size: 0.7rem;
}

.related-products-grid .eleganza-category-product-price-current {
    font-size: 1rem;
}

.related-products-grid .eleganza-category-product-price-old {
    font-size: 0.8rem;
}

.related-products-grid .eleganza-category-product-discount {
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
}

.related-products-grid .eleganza-category-product-info {
    padding: 0.9rem;
}

.related-products-grid .eleganza-category-product-add-to-cart {
    font-size: 0.7rem;
    padding: 0.6rem 1rem;
}

/* Responsive Related Products Grid */
@media (max-width: 1400px) {
    .related-products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .related-products-grid .eleganza-category-product-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .related-products-grid .eleganza-category-product-name {
        font-size: 0.95rem;
    }
    
    .related-products-grid .eleganza-category-product-info {
        padding: 1rem;
    }
}

/* Responsive Product Detail */
@media (max-width: 991px) {
    .product-detail-section {
        padding: 0;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .price-current {
        font-size: 1.75rem;
    }

    .product-benefits {
        position: relative;
        margin-top: 2rem;
    }

    .benefit-item {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .related-products-section {
        padding: 3rem 0;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .related-products-grid .eleganza-category-product-name {
        font-size: 0.8rem;
    }

    .product-title {
        font-size: 1.25rem;
    }

    .purchase-section {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-add-cart {
        width: 100%;
    }

    .product-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

}

/* ================================
   ELEGANZA FOOTER STYLES
   ================================ */

:root {
    --footer-bg: #1a1a2e;
    --footer-bg-light: #16213e;
    --footer-text: rgba(255,255,255,0.55);
    --footer-heading: #ffffff;
    --footer-accent: #c8a96e;
    --footer-hover: #d4b97e;
    --newsletter-bg: #0f3460;
}

/* Honeypot field - hide from users */
.hp {
    display: none !important;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 44px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(200,169,110,0.2);
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200,169,110,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.newsletter-text h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 15px;
}

.newsletter-form-wrapper {
    max-width: 500px;
    width: 100%;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    color: #1a1a2e;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(200,169,110,0.3);
    border-color: #c8a96e;
}

.newsletter-form button {
    padding: 14px 30px;
    background: linear-gradient(135deg, #c8a96e, #d4b97e);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #d4b97e, #e0ca8e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,110,0.35);
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Newsletter Tooltip Styles */
.newsletter-tooltip-success .tooltip-inner {
    background-color: #22c55e;
    color: white;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.newsletter-tooltip-success .tooltip-arrow::before {
    border-top-color: #22c55e !important;
}

.newsletter-tooltip-danger .tooltip-inner {
    background-color: #ef4444;
    color: white;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.newsletter-tooltip-danger .tooltip-arrow::before {
    border-top-color: #ef4444 !important;
}

.newsletter-tooltip-info .tooltip-inner {
    background-color: #3b82f6;
    color: white;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.newsletter-tooltip-info .tooltip-arrow::before {
    border-top-color: #3b82f6 !important;
}

/* Main Footer */
.footer-main {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0 40px;
    color: var(--footer-text);
    border-top: 1px solid rgba(200,169,110,0.12);
}

.footer-section h5 {
    color: var(--footer-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #c8a96e, #d4b97e);
    border-radius: 2px;
}

/* Brand Section */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #c8a96e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.footer-logo-img img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-item i {
    color: var(--footer-accent);
    font-size: 18px;
    width: 20px;
}

.contact-item a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--footer-hover);
}

/* Certification Badges */
.certification-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cert-badge {
    background: rgba(200,169,110,0.07);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(200,169,110,0.15);
}

.cert-badge:hover {
    background: rgba(200,169,110,0.14);
    border-color: rgba(200,169,110,0.3);
    transform: translateY(-3px);
}

.cert-badge img {
    display: block;
    height: 40px;
    width: auto;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--footer-accent);
    font-size: 18px;
}

.footer-links a:hover {
    color: var(--footer-hover);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: #0f1829;
    padding: 22px 0;
    border-top: 1px solid rgba(200,169,110,0.15);
}

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

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-methods span {
    color: var(--footer-text);
    font-size: 13px;
    margin-right: 10px;
}

.payment-card {
    background: white;
    padding: 8px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 32px;
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-2px);
}

.payment-card svg,
.payment-card img {
    height: 20px;
    width: auto;
}

.copyright {
    color: var(--footer-text);
    font-size: 13px;
    text-align: right;
}

.copyright a {
    color: var(--footer-accent);
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    color: var(--footer-hover);
}

/* Social Media */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(200,169,110,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200,169,110,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(200,169,110,0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #c8a96e, #d4b97e);
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(200,169,110,0.35);
    border-color: transparent;
}

.social-link i {
    font-size: 18px;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-text h3 {
        font-size: 20px;
    }

    .newsletter-form-wrapper {
        max-width: 100%;
    }

    .footer-section {
        margin-bottom: 40px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }
}

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

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

    .certification-badges {
        flex-direction: column;
    }

    .footer-section h5 {
        font-size: 16px;
    }
}

/* ================================
   HOME PAGE STYLES
   ================================ */

/* Container */
.eleganza-home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section with Slider */
.eleganza-home-hero {
    padding: 2rem 0;
}

.eleganza-home-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Main Slider */
/* Slider Wrapper Height */
.slider-wrapper {
    height: 400px;
    max-height: 400px;
    min-height: 400px;
    overflow: hidden;
}

/* Bootstrap Carousel Override */
.slider-wrapper .carousel,
.slider-wrapper .carousel-inner {
    height: 100%;
}

.slider-wrapper .carousel-item {
    height: 400px;
    min-height: 400px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.slider-wrapper .carousel-caption {
    max-width: 600px;
}

/* Slider wrapper - ortalanmış, orantılı */
.home-hero {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #f5f5f5;
}

.home-slider-fullscreen {
    width: 100%;
    max-width: 1710px;
    overflow: hidden;
}

/* Oransal yükseklik: 440/1710 = 25.73% — genişlik değişince yükseklik de orantılı değişir */
.eleganza-home-main-slider {
    position: relative;
    width: 100%;
    /* aspect-ratio ile orantıyı koruyoruz */
    aspect-ratio: 1710 / 440;
    max-height: 440px;
    overflow: hidden;
    background: #f5f5f5;
}

.eleganza-home-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    padding: 2rem 3rem;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.eleganza-home-slider-item.active {
    opacity: 1;
}

.eleganza-home-slider-content {
    max-width: 450px;
    width: 100%;
}

.eleganza-home-slider-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.eleganza-home-slider-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.eleganza-home-slider-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.eleganza-home-slider-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #0a0a0a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.eleganza-home-slider-button:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

/* Slider Navigation Dots */
.eleganza-home-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.eleganza-home-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.eleganza-home-slider-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Side Banners */
.eleganza-home-side-banners {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eleganza-home-side-banner {
    position: relative;
    height: 132px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    text-decoration: none;
}

.eleganza-home-side-banner:hover {
    border-color: #0a0a0a;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.eleganza-home-side-banner-content {
    text-align: center;
    z-index: 2;
}

.eleganza-home-side-banner-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #0a0a0a;
}

.eleganza-home-side-banner-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Categories Section */
.eleganza-home-categories {
    padding: 3rem 0;
}

.eleganza-home-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.eleganza-home-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.eleganza-home-category-card {
    background: #fafafa;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 2rem 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #0a0a0a;
}

.eleganza-home-category-card:hover {
    border-color: #0a0a0a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.eleganza-home-category-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.eleganza-home-category-card:hover .eleganza-home-category-icon {
    background: #0a0a0a;
    border-color: #0a0a0a;
}

.eleganza-home-category-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0a0a0a;
    transition: all 0.3s ease;
}

.eleganza-home-category-card:hover .eleganza-home-category-icon svg {
    stroke: white;
}

.eleganza-home-category-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.eleganza-home-category-count {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Products Section */
.eleganza-home-products {
    padding: 3rem 0;
}

.eleganza-home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.eleganza-home-section-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.eleganza-home-section-link:hover {
    color: #dc2626;
}

.eleganza-home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.eleganza-home-product-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #0a0a0a;
}

.eleganza-home-product-card:hover {
    border-color: #0a0a0a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.eleganza-home-product-image {
    width: 100%;
    height: 0;
    padding-bottom: 125%; /* 4:5 aspect ratio (2000/1600 = 1.25) */
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.eleganza-home-product-add-to-cart {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.eleganza-home-product-add-to-cart:hover {
    background: #dc2626;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.eleganza-home-product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: #dc2626;
    color: white;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.eleganza-home-product-badge.sale {
    background: #059669;
}

.eleganza-home-product-info {
    padding: 1.2rem;
}

.eleganza-home-product-category {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.eleganza-home-product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.eleganza-home-product-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.eleganza-home-product-price-current {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0a;
}

.eleganza-home-product-price-old {
    font-size: 0.9rem;
    color: #6b7280;
    text-decoration: line-through;
}

.eleganza-home-product-discount {
    background: #dc2626;
    color: white;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Campaign Banner */
.eleganza-home-campaign {
    padding: 3rem 0;
}

.eleganza-home-campaign-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
    border-radius: 12px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.eleganza-home-campaign-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.eleganza-home-campaign-content {
    position: relative;
    z-index: 2;
}

.eleganza-home-campaign-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.eleganza-home-campaign-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.eleganza-home-campaign-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.eleganza-home-campaign-button {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: #dc2626;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.eleganza-home-campaign-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.eleganza-home-campaign-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.eleganza-home-campaign-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.eleganza-home-campaign-stat {
    text-align: center;
    color: white;
}

.eleganza-home-campaign-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.eleganza-home-campaign-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Subcategories Section */
.eleganza-home-subcategories {
    padding: 0;
}

.eleganza-home-subcategories-wrapper {
    display: grid;
    gap: 0;
}

.eleganza-home-subcategory-section {
    background: #fafafa;
    padding: 3rem 0;
    transition: all 0.3s ease;
}

.eleganza-home-subcategory-section:nth-child(1) {
    background: #fff5f5;
}

.eleganza-home-subcategory-section:nth-child(2) {
    background: #f0f9ff;
}

.eleganza-home-subcategory-section:nth-child(3) {
    background: #fef3c7;
}

.eleganza-home-subcategory-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.eleganza-home-subcategory-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eleganza-home-subcategory-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0a0a0a;
}

.eleganza-home-subcategory-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.eleganza-home-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.eleganza-home-subcategory-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #0a0a0a;
}

.eleganza-home-subcategory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.eleganza-home-subcategory-image {
    width: 100%;
    height: 160px;
    background: #fafafa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eleganza-home-subcategory-image-placeholder {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eleganza-home-subcategory-image-placeholder svg {
    width: 32px;
    height: 32px;
    stroke: #6b7280;
}

.eleganza-home-subcategory-card:hover .eleganza-home-subcategory-image-placeholder {
    background: #0a0a0a;
}

.eleganza-home-subcategory-card:hover .eleganza-home-subcategory-image-placeholder svg {
    stroke: white;
}

.eleganza-home-subcategory-info {
    padding: 1.2rem;
    text-align: center;
}

.eleganza-home-subcategory-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.eleganza-home-subcategory-count {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive - Home Page */
@media (max-width: 1200px) {
    .eleganza-home-categories-grid,
    .eleganza-home-products-grid,
    .eleganza-home-subcategory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .eleganza-home-hero-grid {
        grid-template-columns: 1fr;
    }

    .eleganza-home-side-banners {
        flex-direction: row;
    }

    .eleganza-home-side-banner {
        height: 200px;
    }

    .eleganza-home-campaign-banner {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .eleganza-home-campaign-image {
        display: none;
    }

    .eleganza-home-subcategory-title {
        font-size: 2rem;
    }

    .eleganza-home-subcategory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eleganza-home-categories-grid,
    .eleganza-home-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eleganza-home-slider-title {
        font-size: 1.2rem;
    }

    .eleganza-home-slider-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .eleganza-home-slider-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .eleganza-home-slider-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.3rem;
    }

    .eleganza-home-main-slider {
        aspect-ratio: unset;
        height: 70vh;
        max-height: 70vh;
    }
    
    .slider-wrapper {
        height: 50vh !important;
        max-height: 50vh !important;
        min-height: 50vh !important;
    }
    
    .slider-wrapper .carousel-item {
        height: 50vh !important;
        min-height: 50vh !important;
    }
    
    .slider-wrapper .carousel-caption {
        padding: 1.5rem !important;
        font-size: 0.9rem;
    }
    
    .slider-wrapper .carousel-caption h3 {
        font-size: 1.2rem;
    }

    .eleganza-home-slider-item {
        padding: 1.2rem;
    }

    .eleganza-home-slider-dots {
        bottom: 0.5rem;
        gap: 0.4rem;
    }

    .eleganza-home-slider-dot {
        width: 6px;
        height: 6px;
    }

    .eleganza-home-slider-dot.active {
        width: 18px;
    }

    .eleganza-home-side-banners {
        flex-direction: column;
    }

    .eleganza-home-section-title {
        font-size: 1.5rem;
    }

    .eleganza-home-campaign-title {
        font-size: 1.5rem;
    }

    .eleganza-home-campaign-stats {
        grid-template-columns: 1fr;
    }

    .eleganza-home-subcategory-header {
        margin-bottom: 1.5rem;
    }

    .eleganza-home-subcategory-icon {
        width: 45px;
        height: 45px;
    }

    .eleganza-home-subcategory-icon svg {
        width: 22px;
        height: 22px;
    }

    .eleganza-home-subcategory-section {
        padding: 2.5rem 0;
    }

    .eleganza-home-subcategory-title {
        font-size: 1.3rem;
    }

    .eleganza-home-subcategory-grid {
        grid-template-columns: 1fr;
    }

    .eleganza-home-container {
        padding: 0 1rem;
    }
}

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

    .eleganza-home-slider-title {
        font-size: 1.25rem;
    }

    .eleganza-home-slider-description {
        font-size: 0.85rem;
    }

    .eleganza-home-campaign-title {
        font-size: 1.25rem;
    }
    
    .eleganza-home-section-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   CATEGORY PAGE STYLES
======================================== */

/* Container */
.eleganza-category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Header removed - now in filter bar */

/* Story Style Subcategories */
.eleganza-category-stories {
    overflow: hidden;
    padding-top: 20px;
}

.eleganza-category-stories-scroll {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.eleganza-category-stories-scroll::-webkit-scrollbar {
    display: none;
}

.eleganza-category-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    text-decoration: none;
    color: #0a0a0a;
    flex-shrink: 0;
    transition: all 0.3s ease;
}



.eleganza-category-story-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fafafa;
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eleganza-category-story.active .eleganza-category-story-image,
.eleganza-category-story:hover .eleganza-category-story-image {
    border-color: #dc2626;
}

.eleganza-category-story-icon {
    width: 40px;
    height: 40px;
    stroke: #6b7280;
}

.eleganza-category-story-name {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

/* ─── Kısa Açıklama (filtreden sonra) ─── */
.eleganza-category-short-desc {
    padding: 1rem 0 0.5rem;
    background: #fff;
}

.eleganza-category-short-desc-text {
    text-align: center;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto;
    font-style: italic;
}

/* ─── Detaylı Açıklama (ürünlerden sonra) ─── */
.eleganza-category-long-desc {
    padding: 3rem 0 4rem;
    background: #f8f8f8;
    border-top: 1px solid #e9e9e9;
}

.eleganza-category-long-desc-inner {
    max-width: 860px;
    margin: 0 auto;
}

.eleganza-category-long-desc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.eleganza-category-long-desc-content {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.85;
}

.eleganza-category-long-desc-content br {
    display: block;
    margin-bottom: 0.5rem;
    content: "";
}

@media (max-width: 768px) {
    .eleganza-category-short-desc-text {
        font-size: 0.88rem;
        padding: 0 0.5rem;
    }

    .eleganza-category-long-desc {
        padding: 2rem 0 3rem;
    }

    .eleganza-category-long-desc-title {
        font-size: 1.05rem;
    }

    .eleganza-category-long-desc-content {
        font-size: 0.88rem;
    }
}

/* Filter Bar */
.eleganza-category-filter-bar {
    padding: 0.5rem 0 0.5rem 0;
    background-color: #fafafa;
}

.eleganza-category-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.eleganza-category-filters {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.eleganza-category-filter-label {
    font-weight: 400;
    color: #0a0a0a;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eleganza-category-filter-button {
    padding: 0.6rem 1.2rem;
    background: #fafafa;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.eleganza-category-filter-button:hover {
    background: #0a0a0a;
    color: white;
}

.eleganza-category-filter-button.active {
    background: #0a0a0a;
    color: white;
}

.eleganza-category-sort {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.eleganza-category-sort-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.eleganza-category-sort-select {
    padding: 0.6rem 1rem;
    background: #fafafa;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 16px;
    padding-right: 2.2rem;
}

/* Products Grid */
.eleganza-category-products {
    padding: 2.5rem 0 4rem;
}

.eleganza-category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

/* Product Card - Updated minimal design */
.eleganza-category-product-card {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #0a0a0a;
}

.eleganza-category-product-card:hover {
    border-color: #0a0a0a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.eleganza-category-product-image {
    width: 100%;
    height: 0;
    padding-bottom: 125%; /* 4:5 aspect ratio (2000/1600 = 1.25) */
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.eleganza-category-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.eleganza-category-product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: #dc2626;
    color: white;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.eleganza-category-product-badge.sale {
    background: #059669;
}

.eleganza-category-product-badge.new {
    background: #dc2626;
}

.eleganza-category-product-add-to-cart {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    opacity: 0;
    z-index: 2;
}

.eleganza-category-product-card:hover .eleganza-category-product-add-to-cart {
    opacity: 1;
}

.eleganza-category-product-add-to-cart:hover {
    background: #dc2626;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.eleganza-category-product-info {
    padding: 1.2rem;
}

.eleganza-category-product-category {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.eleganza-category-product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eleganza-category-product-price {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.eleganza-category-product-price-current {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0a;
}

.eleganza-category-product-price-old {
    font-size: 0.9rem;
    color: #6b7280;
    text-decoration: line-through;
}

.eleganza-category-product-discount {
    background: #dc2626;
    color: white;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Load More */
.eleganza-category-load-more {
    text-align: center;
    padding: 2rem 0;
}

.eleganza-category-load-more-button {
    padding: 0.85rem 2.5rem;
    background: #0a0a0a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eleganza-category-load-more-button:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

/* Active Filters */
.eleganza-category-active-filters {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 0 0;
    flex-wrap: wrap;
}

.eleganza-category-active-filter-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: #0a0a0a;
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.eleganza-category-filter-remove {
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.eleganza-category-clear-filters {
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

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

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

    .eleganza-category-filter-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {

    .eleganza-category-story-image {
        width: 70px;
        height: 70px;
    }

    .eleganza-category-story-icon {
        width: 35px;
        height: 35px;
    }
    
    .eleganza-category-container {
        padding: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .eleganza-category-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .eleganza-category-product-add-to-cart {
        opacity: 1;
        font-size: 0.7rem;
        padding: 0.6rem 1rem;
    }
}

/* ========================================
   BRANDS PAGE STYLES
   ======================================== */

/* Brands Index Page */
.eleganza-brands-page {
    padding: 3rem 0;
    background: #fff;
}

.eleganza-brands-header {
    text-align: center;
    margin-bottom: 3rem;
}

.eleganza-brands-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.eleganza-brands-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.eleganza-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.eleganza-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: #fafafa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.eleganza-brand-card:hover {
    background: #fff;
    border-color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.eleganza-brand-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.eleganza-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.eleganza-brand-name-fallback {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a0a0a;
}

.eleganza-brand-info {
    text-align: center;
}

.eleganza-brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.25rem;
}

.eleganza-brand-count {
    font-size: 0.85rem;
    color: #6b7280;
}

.eleganza-brands-empty {
    text-align: center;
    padding: 4rem 0;
    color: #6b7280;
}

/* Brand Detail Page Header */
.eleganza-brand-header {
    padding: 2.5rem 0;
    background: #fafafa;
}

.eleganza-brand-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.eleganza-brand-header-logo {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.eleganza-brand-header-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.eleganza-brand-header-text {
    flex: 1;
}

.eleganza-brand-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.eleganza-brand-header-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 800px;
}

/* Responsive - Brands */
@media (max-width: 768px) {
    .eleganza-brands-title {
        font-size: 1.8rem;
    }
    
    .eleganza-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .eleganza-brand-card {
        padding: 1.5rem 0.75rem;
    }
    
    .eleganza-brand-logo {
        width: 80px;
        height: 60px;
    }
    
    .eleganza-brand-header {
        padding: 1.5rem 0;
    }
    
    .eleganza-brand-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .eleganza-brand-header-logo {
        width: 120px;
        height: 80px;
    }
    
    .eleganza-brand-header-title {
        font-size: 1.5rem;
    }
    
    .eleganza-brand-header-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .eleganza-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   SEARCH RESULTS PAGE STYLES
   ======================================== */

/* Search Header */
.eleganza-search-header {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border-bottom: 1px solid #e5e7eb;
}

.eleganza-search-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.eleganza-search-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #0a0a0a;
}

.eleganza-search-text {
    flex: 1;
}

.eleganza-search-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.eleganza-search-title span {
    color: #6b7280;
    font-weight: 400;
}

.eleganza-search-count {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* No Results */
.eleganza-search-no-results {
    padding: 4rem 0;
}

.eleganza-search-empty {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.eleganza-search-empty-icon {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.eleganza-search-empty-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.eleganza-search-empty-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.eleganza-search-empty-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.eleganza-search-empty-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.eleganza-search-empty-button:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.eleganza-search-empty-button svg {
    flex-shrink: 0;
}

/* Responsive - Search */
@media (max-width: 768px) {
    .eleganza-search-header {
        padding: 2rem 0 1.5rem;
    }
    
    .eleganza-search-header-content {
        gap: 1.5rem;
    }
    
    .eleganza-search-icon {
        width: 60px;
        height: 60px;
    }
    
    .eleganza-search-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .eleganza-search-title {
        font-size: 1.5rem;
    }
    
    .eleganza-search-count {
        font-size: 0.9rem;
    }
    
    .eleganza-search-empty {
        padding: 2rem 1rem;
    }
    
    .eleganza-search-empty-icon {
        width: 80px;
        height: 80px;
    }
    
    .eleganza-search-empty-title {
        font-size: 1.5rem;
    }
    
    .eleganza-search-empty-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .eleganza-search-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .eleganza-search-title {
        font-size: 1.25rem;
    }
    
    .eleganza-search-empty-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
    border-top: 3px solid #dc2626;
}

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

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

.cookie-consent-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 1.5rem;
}

.cookie-consent-text {
    flex: 1;
    color: #ffffff;
}

.cookie-consent-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.cookie-consent-message {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-policy-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.cookie-policy-link:hover {
    color: #ff4444;
    text-decoration: underline;
}

.cookie-consent-actions {
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.btn-cookie-accept i {
    font-size: 1.1rem;
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cookie-consent-title {
        font-size: 0.95rem;
    }
    
    .cookie-consent-message {
        font-size: 0.8rem;
    }
    
    .cookie-policy-link {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .btn-cookie-accept {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cookie-consent-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent-message {
        font-size: 0.75rem;
    }
}

/* ══════════════════════════════════════════════════
   PCARD — New product card design (category grid)
══════════════════════════════════════════════════ */
.pcard {
    background: #fff;
    border: 1px solid rgba(200,169,110,.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(26,26,46,.06);
    transition: box-shadow .3s ease, transform .3s ease, border-color .3s;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1a1a2e;
}
.pcard:hover {
    box-shadow: 0 12px 40px rgba(26,26,46,.13);
    transform: translateY(-4px);
    border-color: rgba(200,169,110,.35);
    color: #1a1a2e;
    text-decoration: none;
}

/* Image */
.pcard-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #f0ebe1;
}
.pcard-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.pcard:hover .pcard-img-wrap img { transform: scale(1.06); }

/* Badges */
.pcard-badges {
    position: absolute;
    top: .75rem; left: .75rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    z-index: 2;
}
.pcard .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .22rem .65rem;
    border-radius: 20px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1;
}
.pcard .badge-sale { background: #e53e3e; color: #fff; }
.pcard .badge-new  { background: #1a1a2e; color: #c8a96e; }

/* Wishlist */
.pcard-wish {
    position: absolute;
    top: .75rem; right: .75rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(200,169,110,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .22s;
    z-index: 2;
    font-size: 1rem;
    color: rgba(26,26,46,.5);
}
.pcard-wish:hover,
.pcard-wish.active {
    background: #fff0f0;
    border-color: #fc8181;
    color: #e53e3e;
}

/* Hover quick-add bar */
.pcard-quick {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #c8a96e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 3;
    border: none;
    width: 100%;
}
.pcard:hover .pcard-quick { transform: translateY(0); }
.pcard-quick:hover { background: #c8a96e; color: #1a1a2e; }

/* Body */
.pcard-body {
    padding: 1rem 1.1rem .6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.pcard-brand {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c8a96e;
}
.pcard-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: .97rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sizes */
.pcard-variants {
    display: flex;
    align-items: center;
    gap: .3rem;
    flex-wrap: wrap;
    margin-top: .1rem;
}
.pcard-variants-label {
    font-size: .65rem;
    color: rgba(26,26,46,.5);
}
.pcard-size {
    font-size: .62rem;
    font-weight: 600;
    padding: .15rem .45rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    color: rgba(26,26,46,.5);
    line-height: 1.4;
    pointer-events: none;
}
.pcard-size.out {
    text-decoration: line-through;
    opacity: .4;
}
.pcard-size:not(.out) { color: #1a1a2e; border-color: rgba(200,169,110,.4); }

/* Footer */
.pcard-footer {
    padding: .7rem 1.1rem .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    border-top: 1px solid rgba(200,169,110,.1);
    margin-top: auto;
}
.pcard-price { display: flex; flex-direction: column; gap: .05rem; }
.pcard-price .price-current {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}
.pcard-price .price-original {
    font-size: .75rem;
    color: rgba(26,26,46,.5);
    text-decoration: line-through;
    line-height: 1;
}
.pcard-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #c8a96e;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .22s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.pcard-btn:hover {
    background: linear-gradient(135deg, #c8a96e, #d4b97e);
    color: #1a1a2e;
    box-shadow: 0 6px 18px rgba(200,169,110,.28);
    transform: translateY(-1px);
}
.pcard-btn-oos {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    font-size: .68rem;
    opacity: 1 !important;
}
.pcard-btn-oos:hover {
    background: #e9ecef !important;
    color: #6c757d !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Shipping strip */
.pcard-ship {
    padding: .45rem 1.1rem;
    background: linear-gradient(90deg, rgba(200,169,110,.07), rgba(200,169,110,.03));
    border-top: 1px solid rgba(200,169,110,.1);
    font-size: .68rem;
    color: #2f855a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .35rem;
    letter-spacing: .04em;
}

/* Grid gap update for new cards */
.eleganza-category-products-grid {
    gap: 1rem;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .pcard-name { font-size: .88rem; }
    .pcard-quick { font-size: .72rem; padding: .6rem; }

    /* Price + button stack vertically */
    .pcard-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem;
    }
    .pcard-btn {
        width: 100%;
        justify-content: center;
        padding: .55rem .7rem;
        font-size: .7rem;
    }
    .pcard-price .price-current { font-size: 1.3rem; }

    /* Hide "Mărime:" label, keep size chips */
    .pcard-variants-label { display: none; }
}
