/* =====================================================
   ELEKTROSKUP STYLE - Modern E-commerce Design
   ===================================================== */

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #E5C158;
    --primary: #D4AF37;
    --primary-dark: #B8941F;
    --accent: #C41E56;
    --navy: #1a1a2e;
    --purple: #4a1942;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --border: #e5e5e5;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

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

/* =====================================================
   SEARCH HEADER SECTION
   ===================================================== */
.search-header {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.search-header .container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 750px;
    position: relative;
    flex-wrap: wrap;
}

.category-select {
    background: white;
    border: 2px solid var(--border);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: var(--navy);
    font-weight: 600;
    cursor: pointer;
    min-width: 200px;
    transition: all 0.3s;
}

.category-select:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.category-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a2e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.search-input-wrapper:focus-within {
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    outline: none;
    color: var(--navy);
}

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

.search-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border: none;
    padding: 0.875rem 1.75rem;
    color: white;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all 0.3s;
    font-weight: 600;
}

.search-btn:hover {
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    transform: scale(1.05);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.search-results-list {
    padding: 0.5rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    text-decoration: none;
    color: var(--navy);
    border-radius: 8px;
    transition: all 0.2s;
}

.search-result-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.search-result-item img,
.search-result-item .no-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.search-result-category {
    font-size: 0.8125rem;
    color: #D4AF37;
}

/* Nie znaleziono przedmiotu - wyszukiwarka w kategoriach */
.search-not-found {
    padding: 2rem;
    text-align: center;
}

.search-not-found-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.search-not-found-content a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.search-not-found-content > a:first-child {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f8f9fa;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-not-found-content > a:first-child:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-not-found-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-not-found-content h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.search-not-found-content h6 a {
    display: block;
}

.search-not-found-content h6 a:hover {
    color: #D4AF37;
}

.search-not-found-content small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
}

/* =====================================================
   CATEGORIES BAR (Desktop)
   ===================================================== */
.categories-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #D4AF37;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 0;
}

.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: var(--navy);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    min-width: 120px;
    position: relative;
}

.category-nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B8941F);
    transition: width 0.3s;
}

.category-nav-item:hover,
.category-nav-item:hover {
    background: rgba(212, 175, 55, 0.05);
    color: #D4AF37;
}

.category-nav-item:hover::before {
    width: 80%;
}

.category-nav-item .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-nav-item .icon img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) saturate(100%) invert(59%) sepia(82%) saturate(466%) hue-rotate(8deg) brightness(92%) contrast(86%);
    transition: all 0.3s;
}

.category-nav-item:hover .icon img,
.category-nav-item.active .icon img {
    filter: brightness(0) saturate(100%) invert(59%) sepia(82%) saturate(566%) hue-rotate(8deg) brightness(102%) contrast(96%);
}

.category-nav-item .name {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    color: inherit;
    letter-spacing: 0.5px;
}

/* =====================================================
   BREADCRUMBS
   ===================================================== */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

/* =====================================================
   MAIN CONTENT SECTIONS
   ===================================================== */
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    color: var(--navy);
    margin: 3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e5e5, transparent);
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, #B8941F, transparent);
    border-radius: 2px;
}

/* Homepage Hero */
.hero-section {
    padding: 4rem 0;
    background: white;
}

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

.hero-item {
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.hero-item:first-child {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5a 100%);
    color: white;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.2);
    border: none;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 600;
}

.hero-feature {
    text-align: center;
}

.hero-feature h3 {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-weight: 600;
}

.hero-feature h3 span {
    display: block;
    color: #D4AF37;
    font-style: italic;
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.875rem;
    }
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #B8941F;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */
.how-it-works-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.step-box {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 20px;
    border: 3px solid #D4AF37;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.step-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.step-number-circle {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.step-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.step-box p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    display: none;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.stats-hero-main {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5a 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-hero-main h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.stats-hero-main p {
    font-size: 1.125rem;
    color: #D4AF37;
    font-weight: 600;
}

.stats-card {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, white 100%);
}

.stats-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stats-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-label {
    font-size: 0.9375rem;
    color: var(--navy);
    font-weight: 600;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-rating {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--navy);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    display: block;
    font-size: 0.875rem;
    color: #D4AF37;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.testimonial-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.testimonial-prev {
    left: -70px;
}

.testimonial-next {
    right: -70px;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5a 100%);
}

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

.stat-bar-item {
    text-align: center;
}

.stat-bar-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.stat-bar-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 968px) {
    .section-title-large {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .steps-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-box {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    .step-icon-large {
        font-size: 3rem;
    }
    
    .step-box h3 {
        font-size: 1rem;
    }
    
    .step-box p {
        font-size: 0.8125rem;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-hero-main {
        padding: 2rem 1.5rem;
    }
    
    .stats-hero-main h2 {
        font-size: 1.25rem;
    }
    
    .stats-hero-main p {
        font-size: 1rem;
    }
    
    .stats-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-icon {
        font-size: 2.5rem;
    }
    
    .stats-number {
        font-size: 1.75rem;
    }
    
    .stats-label {
        font-size: 0.875rem;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-slider {
        padding: 0 1rem;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .testimonial-prev {
        left: -10px;
    }
    
    .testimonial-next {
        right: -10px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .stats-bar {
        padding: 2rem 0;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-bar-number {
        font-size: 1.75rem;
    }
    
    .stat-bar-label {
        font-size: 0.875rem;
    }
}

/* =====================================================
   ITEMS GRID (Categories, Brands, Devices)
   ===================================================== */
.items-section {
    padding: 2rem 0 4rem;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 0;
}

.item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
    min-height: 200px;
}

.item-card:nth-child(6n) {
    border-right: none;
}

.item-card:hover {
    background: #FFFBF0;
    transform: scale(1.02);
    z-index: 1;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.item-card .image {
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.item-card .image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-card .name {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--navy);
}

/* Device cards with larger images */
.item-card.device-card .image {
    height: 140px;
}

/* =====================================================
   MOBILE STYLES
   ===================================================== */
@media (max-width: 968px) {
    /* Search Header Mobile */
    .search-header {
        padding: 1.5rem 1rem;
    }
    
    .search-header .container {
        flex-direction: column;
    }
    
    .search-wrapper {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }
    
    .category-select {
        width: 100%;
        border-radius: 30px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .search-input-wrapper {
        width: 100%;
        border-radius: 30px;
    }
    
    .search-input {
        padding: 1rem 1.5rem;
    }
    
    /* Hide desktop elements on mobile */
    .categories-bar {
        display: none;
    }
    
    .hero-section {
        display: none;
    }
    
    /* Mobile Categories Grid */
    .mobile-categories {
        display: block;
        padding: 0;
    }
    
    .mobile-section-title {
        font-size: 1.375rem;
        font-weight: 700;
        text-align: center;
        color: #D4AF37;
        padding: 1.5rem 1rem;
        margin: 0;
    }
    
    .mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: 1px solid var(--border);
    }
    
    .mobile-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        text-decoration: none;
        color: var(--text-dark);
        background: var(--white);
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        min-height: 200px;
        transition: background 0.2s;
    }
    
    .mobile-card:nth-child(2n) {
        border-right: none;
    }
    
    .mobile-card:active {
        background: #FFFBF0;
        border-color: #D4AF37;
    }
    
    .mobile-card .icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-card .icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(59%) sepia(82%) saturate(466%) hue-rotate(8deg) brightness(92%) contrast(86%);
    }
    
    .mobile-card .name {
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--navy);
    }
    
    /* Alternate colors for mobile cards */
    .mobile-card:nth-child(4n+2) .name,
    .mobile-card:nth-child(4n+3) .name {
        color: #D4AF37;
    }
    
    /* Items grid mobile */
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .item-card {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }
    
    .item-card:nth-child(6n) {
        border-right: 1px solid var(--border);
    }
    
    .item-card:nth-child(2n) {
        border-right: none;
    }
    
    .item-card .image {
        width: 100px;
        height: 80px;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-item {
        padding: 2rem;
    }
    
    .hero-item:first-child {
        padding: 2.5rem 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-feature h3 {
        font-size: 1rem;
    }
    
    /* Breadcrumbs mobile */
    .breadcrumbs {
        display: none;
    }
}

/* Desktop only */
@media (min-width: 969px) {
    .mobile-categories {
        display: none;
    }
    
    .search-header .container {
        justify-content: center;
    }
    
    .mobile-section-title {
        display: none;
    }
}

/* Mobile section title */
.mobile-section-title {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    color: var(--accent);
    padding: 1.5rem 1rem;
    margin: 0;
    background: var(--white);
}

/* Large screens */
@media (min-width: 1200px) {
    .category-nav-item {
        padding: 1rem 2rem;
        min-width: 120px;
    }
    
    .items-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* =====================================================
   NAVBAR OVERRIDE (Keep existing navbar)
   ===================================================== */
/* The navbar styles are kept from premium-white.css */

/* =====================================================
   FOOTER OVERRIDE (Keep existing footer)
   ===================================================== */
/* The footer styles are kept from premium-white.css */

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-main {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-main {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B8941F);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: #D4AF37;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    color: #B8941F;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   TRUST SECTION (New Stats)
   ===================================================== */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #B8941F;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.trust-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

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

.trust-stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.trust-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.trust-stat-card:hover::before {
    opacity: 1;
}

.trust-stat-card.highlighted {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5a 100%);
    border-color: #D4AF37;
}

.trust-stat-card.highlighted .trust-stat-number {
    color: #D4AF37;
}

.trust-stat-card.highlighted .trust-stat-label {
    color: white;
}

.trust-stat-card.highlighted .trust-stat-desc {
    color: rgba(255, 255, 255, 0.7);
}

.trust-stat-card.highlighted .trust-stat-icon {
    color: #D4AF37;
}

.trust-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: #D4AF37;
    transition: all 0.3s;
}

.trust-stat-card:hover .trust-stat-icon {
    transform: scale(1.15) rotate(5deg);
}

.trust-stat-icon svg {
    width: 100%;
    height: 100%;
}

.trust-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.trust-stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.trust-stat-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   RESPONSIVE - WHY CHOOSE & TRUST SECTIONS
   ===================================================== */
@media (max-width: 968px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .section-title-main {
        font-size: 1.875rem;
    }
    
    .section-subtitle-main {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
    }
    
    .benefit-card h3 {
        font-size: 1.125rem;
    }
    
    .benefit-card p {
        font-size: 0.875rem;
    }
    
    .trust-section {
        padding: 3rem 0;
    }
    
    .trust-header {
        margin-bottom: 3rem;
    }
    
    .trust-title {
        font-size: 1.875rem;
    }
    
    .trust-description {
        font-size: 1rem;
    }
    
    .trust-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-stat-number {
        font-size: 2rem;
    }
    
    .trust-stat-label {
        font-size: 0.9375rem;
    }
    
    .trust-stat-desc {
        font-size: 0.8125rem;
    }
}

@media (min-width: 969px) and (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
