/*
Theme Name: Lhiko Technology Pro
Theme URI: https://lhikotech.com.au 
Author: Lhiko Team
Description: Complete WooCommerce theme with fixed category grid
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: lhiko-pro
*/

/* ============================================
   BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.announcement-bar {
    background: #1e293b;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-item i {
    color: #fbbf24;
}

/* ============================================
   HEADER - UPDATED: 10% wider, fixed logo spacing
============================================ */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* UPDATED: Increased max-width by 10% (1200px -> 1320px) and added padding */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px; /* Increased from 1200px */
    margin: 0 auto;
    padding: 12px 20px; /* Added vertical padding to prevent logo touching */
    height: auto; /* Changed from fixed 55px to auto */
    min-height: 70px; /* Added minimum height */
}

.site-logo {
    height: 35px;
    width: auto;
    display: block;
}

.header-search {
    flex: 1;
    max-width: 300px;
    margin: 0 20px;
}

.header-search form {
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 8px 40px 8px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    background: #f8fafc;
}

.header-search button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: #2563eb;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: #334155;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-navigation a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

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

.header-icons a {
    color: #475569;
    font-size: 18px;
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.header-icons a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc2626;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: #2563eb;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    padding: 50px 0 40px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    font-weight: 500;
}

.hero-subtitle span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-subtitle i {
    color: #10b981;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    padding: 12px 25px;
    border-radius: 8px;
    border: 2px solid #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.hero-trust-badges {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.trust-item i {
    color: #2563eb;
    font-size: 18px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
}

.hero-graphic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    padding: 30px;
    background: #f0f7ff;
    border-radius: 12px;
    text-align: center;
}

.hero-graphic i {
    font-size: 50px;
    color: #2563eb;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.stat-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

/* ============================================
   SECTIONS COMMON
============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.view-all-link {
    color: #2563eb;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   HOT DEALS SECTION
============================================ */
.hot-sales-section {
    background: linear-gradient(to bottom, #fef2f2 0%, #ffffff 100%);
    padding: 60px 0;
}

.hot-sales-section .section-title:after {
    background: #dc2626;
}

/* ============================================
   TOP SALE SECTION
============================================ */
.top-sale-section {
    background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
    padding: 60px 0;
    border-top: 1px solid #fef3c7;
    border-bottom: 1px solid #fef3c7;
}

.top-sale-section .section-title:after {
    background: #f59e0b;
}

.top-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.top-sale-section .add-to-cart {
    background: #f59e0b;
}

.top-sale-section .add-to-cart:hover {
    background: #d97706;
}

/* ============================================
   NEW ARRIVALS SECTION
============================================ */
.new-arrivals-section {
    background: #f0f9ff;
    padding: 60px 0;
}

/* ============================================
   PRODUCTS GRID
============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s;
}

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

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hot-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc2626;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2563eb;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

.product-image {
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 45px;
    overflow: hidden;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.sale-price {
    color: #dc2626;
}

.discount-badge {
    background: #dc2626;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.product-actions {
    padding: 0 20px 20px;
}

.add-to-cart {
    display: block;
    background: #2563eb;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* ============================================
   SHOP BY CATEGORY - UPDATED: Compact boxes, styled, no description
============================================ */
.categories-showcase {
    padding: 60px 0;
    background: #f8fafc; /* Light gray background to make boxes pop */
}

/* UPDATED: More columns (6 instead of 3) for smaller boxes */
.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Changed from 3 to 6 */
    gap: 15px; /* Reduced gap */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* UPDATED: Compact card styling */
.category-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%); /* Subtle gradient instead of plain white */
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 10px; /* Reduced padding */
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto; /* Removed fixed min-height */
    height: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Added subtle shadow */
}

.category-card-modern:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); /* Blue tint on hover */
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15); /* Enhanced shadow */
    transform: translateY(-3px);
}

/* UPDATED: Smaller icon box */
.category-icon-modern {
    width: 50px; /* Reduced from 70px */
    height: 50px; /* Reduced from 70px */
    background: #f0f7ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Reduced from 30px */
    color: #2563eb;
    margin-bottom: 12px; /* Reduced from 20px */
    transition: all 0.3s;
    border: 1px solid #dbeafe;
}

.category-card-modern:hover .category-icon-modern {
    background: #2563eb;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* UPDATED: Smaller title */
.category-card-modern h3 {
    font-size: 13px; /* Reduced from 18px */
    font-weight: 700;
    color: #1e293b;
    margin: 0; /* Removed margins */
    line-height: 1.3;
    padding: 0 5px;
}

/* UPDATED: Hide description completely */
.category-card-modern p {
    display: none !important; /* REMOVED the description text */
}

/* Responsive adjustments for categories */
@media (max-width: 968px) {
    .categories-grid-modern {
        grid-template-columns: repeat(3, 1fr); /* 3 on tablet */
    }
}

@media (max-width: 600px) {
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr); /* 2 on mobile */
        gap: 12px;
    }
    
    .category-card-modern {
        padding: 15px 8px;
    }
    
    .category-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .category-card-modern h3 {
        font-size: 12px;
    }
}

/* ============================================
   FEATURES
============================================ */
.features-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand {
    background: rgba(37, 99, 235, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.footer-logo {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: white;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2563eb;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a::before {
    content: '›';
    color: #2563eb;
    font-weight: bold;
    font-size: 16px;
}

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

.contact-info i {
    color: #2563eb;
    width: 20px;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
}

.newsletter-form button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 32px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 70px; /* Adjusted for new header height */
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .header-search {
        display: none;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Mobile header adjustments */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 15px 20px; /* Increased from 12px to 15px */
    height: auto;
    min-height: 80px; /* Increased from 70px to 80px */
}
}
/* Fix logo visibility across all pages */
.site-logo,
.custom-logo,
.footer-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.site-branding img {
    height: 45px !important;
    width: auto !important;
    display: block !important;
}

/* Ensure header logo doesn't disappear */
header .site-branding a {
    display: block !important;
    height: auto !important;
}

/* Footer logo specific fix */
.footer-brand img {
    filter: brightness(0) invert(1) !important; /* Makes logo white for dark background */
    max-height: 50px !important;
    margin-bottom: 20px !important;
}

/* ============================================
   IT SERVICES SECTION - NEW
============================================ */
.it-services-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border-top: 1px solid #dbeafe;
}

.it-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.it-service-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.it-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

.it-service-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: #2563eb;
    transition: all 0.3s;
}

.it-service-card:hover .it-service-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.05);
}

.it-service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.it-service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .it-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .it-services-grid {
        grid-template-columns: 1fr;
    }
    
    .it-service-card {
        padding: 25px 20px;
    }
}

/* ============================================
   LOGO FIX - Consistent sizing everywhere
============================================ */

/* HEADER LOGO */
.site-branding img,
.site-branding .custom-logo,
.site-logo {
    height: 45px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
}

/* FOOTER LOGO - Bigger and visible */
.footer-brand img,
.footer-logo {
    height: 55px !important;
    min-height: 55px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
    display: block !important;
    margin-bottom: 20px !important;
    filter: brightness(0) invert(1) !important; /* White logo on dark background */
}

/* Ensure logo containers don't shrink */
.site-branding,
.footer-brand {
    flex-shrink: 0 !important;
}

/* Prevent any max-width constraints from affecting logo */
.site-branding a,
.footer-brand a {
    display: block !important;
    height: auto !important;
    line-height: 0 !important;
}
/* ============================================
   SINGLE PRODUCT PAGE - REDESIGNED
============================================ */

.product-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    background: #f8fafc;
    min-height: 100vh;
}

.product-main-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Breadcrumb */
.product-breadcrumb {
    padding: 20px 30px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #64748b;
}

.product-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.product-breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    color: #94a3b8;
}

/* Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px;
}

/* Gallery Section */
.product-gallery-section {
    position: relative;
}

.product-gallery-main {
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #e2e8f0;
}

.product-image-zoom {
    display: block;
    position: relative;
    text-align: center;
}

.main-product-image {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-image-zoom:hover .main-product-image {
    transform: scale(1.03);
}

.zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-image-zoom:hover .zoom-icon {
    opacity: 1;
}

.no-image-placeholder {
    padding: 80px;
    text-align: center;
    color: #94a3b8;
}

.no-image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

/* Gallery Thumbs */
.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* Product Info Section */
.product-info-section {
    padding-top: 10px;
}

.product-title-main {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-meta-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-brand,
.product-sku {
    font-size: 14px;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
}

.product-brand i,
.product-sku i {
    color: #2563eb;
    margin-right: 5px;
}

/* Price Section */
.product-price-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #dbeafe;
}

.price-sale-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.regular-price {
    font-size: 20px;
    color: #94a3b8;
    text-decoration: line-through;
}

.regular-price.single-price {
    font-size: 32px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
}

.sale-price {
    font-size: 36px;
    font-weight: 800;
    color: #dc2626;
}

.save-badge {
    background: #dc2626;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Short Description */
.product-short-desc {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Stock Status */
.stock-status {
    margin-bottom: 25px;
}

.stock-status .in-stock {
    color: #059669;
    font-size: 16px;
    font-weight: 600;
}

.stock-status .in-stock i {
    margin-right: 8px;
}

.stock-status .out-of-stock {
    color: #dc2626;
    font-size: 16px;
    font-weight: 600;
}

/* Add to Cart */
.add-to-cart-section {
    margin-bottom: 25px;
}

.quantity-cart-row {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.quantity-selector {
    display: flex;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.qty-minus,
.qty-plus {
    width: 45px;
    background: #f1f5f9;
    border: none;
    font-size: 20px;
    color: #475569;
    cursor: pointer;
    transition: background 0.3s;
}

.qty-minus:hover,
.qty-plus:hover {
    background: #e2e8f0;
}

.quantity-selector input {
    width: 60px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single_add_to_cart_button {
    flex: 1;
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.single_add_to_cart_button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Trust Badges */
.trust-badges-row {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
}

.trust-item i {
    color: #2563eb;
    font-size: 18px;
}

/* Taxonomies */
.product-taxonomies {
    font-size: 14px;
}

.tax-row {
    margin-bottom: 10px;
}

.tax-label {
    color: #64748b;
    font-weight: 600;
    margin-right: 10px;
}

.tax-value {
    color: #2563eb;
}

.tax-value a {
    color: #2563eb;
    text-decoration: none;
}

.tax-value a:hover {
    text-decoration: underline;
}

/* Tabs Section */
.product-tabs-section {
    padding: 40px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.tabs-header {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn.active {
    color: #2563eb;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-panel.active {
    display: block;
}

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

.tabs-content h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 20px;
}

.description-content {
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

.description-content p {
    margin-bottom: 15px;
}

/* Condition Box */
.product-condition-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.product-condition-box h4 {
    color: #92400e;
    font-size: 18px;
    margin-bottom: 12px;
}

.product-condition-box h4 i {
    margin-right: 8px;
}

.product-condition-box p {
    color: #78350f;
    line-height: 1.7;
    margin-bottom: 15px;
}

.condition-checklist {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.condition-checklist span {
    color: #059669;
    font-weight: 600;
}

.condition-checklist i {
    margin-right: 5px;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 18px 20px;
    color: #64748b;
    font-weight: 600;
    width: 30%;
    background: #f1f5f9;
}

.spec-value {
    padding: 18px 20px;
    color: #1e293b;
}

/* Shipping Info */
.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-card i {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 15px;
}

.info-card h4 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Related Products */
.related-products-section {
    padding: 50px 40px;
    border-top: 1px solid #e2e8f0;
}

.section-title-related {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

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

.related-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.related-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 20px;
}

.related-product-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

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

.related-product-title {
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 10px;
    height: 44px;
    overflow: hidden;
    line-height: 1.4;
}

.related-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
}

.add-to-cart-related {
    display: block;
    background: #f1f5f9;
    color: #2563eb;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.add-to-cart-related:hover {
    background: #2563eb;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .shipping-info-grid {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-layout {
        padding: 25px;
    }
    
    .product-title-main {
        font-size: 24px;
    }
    
    .sale-price {
        font-size: 28px;
    }
    
    .quantity-cart-row {
        flex-direction: column;
    }
    
    .single_add_to_cart_button {
        width: 100%;
    }
    
    .trust-badges-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .spec-label {
        width: 40%;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   CHECKOUT PAGE - 2 STEP DESIGN (FIXED)
============================================ */

.checkout-page-wrapper {
    background: #f1f5f9;
    min-height: 100vh;
    padding: 30px 0 60px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    color: #94a3b8;
    font-weight: 600;
    border: 2px solid #e2e8f0;
}

.step.active {
    border-color: #2563eb;
    color: #2563eb;
    background: #f0f7ff;
}

.step.completed {
    background: #059669;
    border-color: #059669;
    color: white;
}

.step-number {
    width: 28px;
    height: 28px;
    background: currentColor;
    opacity: 0.2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.step.active .step-number,
.step.completed .step-number {
    opacity: 1;
    background: #2563eb;
    color: white;
}

.step.completed .step-number {
    background: white;
    color: #059669;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 10px;
}

.step-connector.active {
    background: #059669;
}

/* Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: start;
}

.checkout-main {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Trust Bar */
.checkout-trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.checkout-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.checkout-trust-bar .trust-item i {
    color: #059669;
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.form-section h3 i {
    width: 36px;
    height: 36px;
    background: #f0f7ff;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* FIXED: Form Fields - Proper left alignment */
.form-row {
    margin-bottom: 20px;
    width: 100%;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* FIXED: Two column layout - side by side properly */
.form-row.two-col {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-row.two-col .field {
    flex: 1;
    width: 50%;
}

/* FIXED: Three column layout */
.form-row.three-col {
    display: flex;
    gap: 15px;
    width: 100%;
}

.form-row.three-col .field {
    flex: 1;
    width: 33.333%;
}

.field {
    margin-bottom: 0;
    width: 100%;
}

.address-2 {
    margin-top: 12px;
}

.field-hint {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 6px;
    display: block;
}

.required {
    color: #dc2626;
}

/* Checkboxes */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    text-align: left;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #2563eb;
    margin-top: 2px;
    flex-shrink: 0;
}

/* FIXED: Delivery Instructions - Bigger and nicer */
.form-section textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

/* Shipping Options */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.shipping-option:hover,
.shipping-option.selected {
    border-color: #2563eb;
    background: #f0f7ff;
}

.shipping-option input {
    display: none;
}

.shipping-option.free-shipping {
    background: #f0fdf4;
    border-color: #86efac;
}

.option-content {
    flex: 1;
}

.option-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.option-title {
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-title i {
    color: #059669;
}

.option-price {
    font-weight: 700;
    color: #2563eb;
    font-size: 18px;
}

.option-time {
    font-size: 13px;
    color: #64748b;
}

.shipping-option .fa-check-circle {
    color: #e2e8f0;
    font-size: 24px;
    margin-left: 15px;
}

.shipping-option.selected .fa-check-circle {
    color: #2563eb;
}

.free-shipping-progress {
    background: #fef3c7;
    color: #92400e;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.free-shipping-progress i {
    margin-right: 8px;
}

/* Progress bar */
.progress-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 3px;
    transition: width 0.3s;
}

/* FIXED: Continue Button - Bigger and better design */
.continue-btn {
    width: 100%;
    padding: 22px 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.continue-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.continue-btn:active {
    transform: translateY(-1px);
}

.continue-btn i {
    font-size: 22px;
}

/* Review Section (Step 2) */
.review-section {
    background: #f0f7ff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #2563eb;
}

.review-section h3 {
    font-size: 16px;
    color: #2563eb;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-review {
    color: #475569;
    line-height: 1.8;
    position: relative;
}

.address-review strong {
    color: #1e293b;
    font-size: 16px;
}

.edit-link {
    position: absolute;
    top: 0;
    right: 0;
    color: #2563eb;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.edit-link:hover {
    text-decoration: underline;
}

/* Express Checkout */
.express-checkout {
    text-align: center;
    margin-bottom: 30px;
}

.express-title {
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.express-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.express-buttons button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.express-buttons button:hover {
    transform: translateY(-2px);
}

.paypal-btn {
    background: #ffc439;
    color: #003087;
}

.google-btn {
    background: #000;
    color: white;
}

.divider {
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: white;
    padding: 0 20px;
    position: relative;
    color: #94a3b8;
    font-size: 13px;
}

/* Payment Methods */
.payment-section h3 {
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.payment-option:hover,
.payment-option.selected {
    border-color: #2563eb;
    background: #f0f7ff;
}

.payment-option input {
    display: none;
}

.payment-content {
    flex: 1;
}

.payment-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-title {
    font-weight: 600;
    color: #1e293b;
}

.card-icons {
    display: flex;
    gap: 8px;
    font-size: 32px;
    color: #94a3b8;
}

.payment-option .fa-check-circle {
    color: #e2e8f0;
    font-size: 24px;
    margin-left: 15px;
}

.payment-option.selected .fa-check-circle {
    color: #2563eb;
}

/* FIXED: Card Inputs - Proper alignment */
.card-inputs {
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    margin-top: 15px;
}

/* FIXED: Expiry and CVV side by side */
.card-inputs .form-row.two-col {
    display: flex;
    gap: 20px;
}

.card-inputs .form-row.two-col .field {
    flex: 1;
    width: 50%;
}

.card-number-input {
    position: relative;
}

.card-number-input input {
    padding-right: 50px;
}

.card-number-input i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
}

/* Bank Info */
.bank-info {
    margin-top: 15px;
}

.info-box {
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 20px;
    border-radius: 12px;
}

.info-box h4 {
    color: #166534;
    margin-bottom: 15px;
}

.info-box p {
    color: #166534;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-box strong {
    font-size: 16px;
}

.info-box .note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #86efac;
    font-style: italic;
}

/* Terms Section */
.terms-section {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
}

.terms {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.terms a {
    color: #2563eb;
    text-decoration: underline;
}

.order-summary-mobile {
    display: none;
    margin-bottom: 20px;
}

.place-order-btn {
    width: 100%;
    padding: 20px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.place-order-btn:hover:not(:disabled) {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

.place-order-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-total {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 20px;
}

.secure-note {
    text-align: center;
    color: #059669;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 500;
}

.secure-note i {
    margin-right: 6px;
}

/* Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 30px;
}

.order-summary-box {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.order-summary-box h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

/* Summary Items */
.summary-items {
    margin-bottom: 25px;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.item-image {
    position: relative;
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 8px;
}

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

.item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 5px;
}

.item-sale {
    background: #dc2626;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.item-price {
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
}

/* Coupon */
.summary-coupon {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.summary-coupon input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

.summary-coupon button {
    padding: 12px 20px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.summary-coupon button:hover {
    background: #0f172a;
}

/* Totals */
.summary-totals {
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
}

.summary-row.discount {
    color: #059669;
}

.summary-row.total {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.total-amount {
    color: #2563eb;
    font-size: 24px;
}

.shipping-method-name {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 400;
}

.tax-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.tax-note p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.acl-note {
    color: #059669 !important;
    font-weight: 500;
}

.acl-note i {
    margin-right: 5px;
}

/* Support Box */
.support-box {
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.support-box h4 {
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.support-box h4 i {
    color: #2563eb;
}

.support-box p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-box i {
    color: #94a3b8;
    width: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-sidebar {
        position: static;
    }
    
    .order-summary-mobile {
        display: block;
    }
    
    .btn-total {
        display: none;
    }
    
    /* Stack columns on mobile */
    .form-row.two-col,
    .form-row.three-col {
        flex-direction: column;
    }
    
    .form-row.two-col .field,
    .form-row.three-col .field {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .checkout-main {
        padding: 20px;
    }
    
    .checkout-header h1 {
        font-size: 26px;
    }
    
    .step {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .step-label {
        display: none;
    }
    
    .checkout-trust-bar {
        flex-direction: column;
        gap: 12px;
    }
    
    .express-buttons {
        flex-direction: column;
    }
    
    /* Mobile: stack all fields */
    .form-row.two-col,
    .form-row.three-col,
    .card-inputs .form-row.two-col {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row.two-col .field,
    .form-row.three-col .field,
    .card-inputs .form-row.two-col .field {
        width: 100%;
    }
    
    .continue-btn {
        font-size: 18px;
        padding: 18px;
    }
}
/* ============================================
   ABOUT & LEGAL PAGE
============================================ */

.about-legal-page {
    background: #f8fafc;
    min-height: 100vh;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-hero .hero-subtitle {
    font-size: 20px;
    color: #94a3b8;
    margin: 0;
}

/* Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.content-card:last-child {
    margin-bottom: 0;
}

.content-card.highlight {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.icon-circle.blue { background: #2563eb; }
.icon-circle.green { background: #059669; }
.icon-circle.orange { background: #f59e0b; }
.icon-circle.purple { background: #7c3aed; }
.icon-circle.teal { background: #0d9488; }

.card-header h2 {
    font-size: 22px;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
}

.card-body {
    padding: 30px;
}

/* About Section */
.lead-text {
    font-size: 18px;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.card-body p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    color: #2563eb;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.badge i {
    font-size: 16px;
}

/* Business Info Grid */
.business-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: white;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.info-item .label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item .value {
    display: block;
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
}

.info-item .value a {
    color: #2563eb;
    text-decoration: none;
}

.info-item .value a:hover {
    text-decoration: underline;
}

/* GST Section */
.gst-notice {
    display: flex;
    gap: 15px;
    background: #fef3c7;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #f59e0b;
}

.gst-notice i {
    color: #f59e0b;
    font-size: 24px;
    flex-shrink: 0;
}

.gst-notice p {
    margin: 0;
    color: #92400e;
    line-height: 1.6;
}

.update-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

/* Terms List */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.terms-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

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

.terms-list i {
    color: #059669;
    font-size: 14px;
}

.acl-banner {
    display: flex;
    gap: 15px;
    background: #ecfdf5;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #86efac;
}

.acl-banner i {
    color: #059669;
    font-size: 24px;
    flex-shrink: 0;
}

.acl-banner p {
    margin: 0;
    color: #065f46;
    line-height: 1.6;
}

/* Privacy Section */
.card-body h4 {
    font-size: 16px;
    color: #1e293b;
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.card-body h4:first-child {
    margin-top: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.privacy-list li {
    position: relative;
    padding-left: 20px;
    color: #475569;
    font-size: 14px;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.privacy-promise {
    display: flex;
    gap: 15px;
    background: #eff6ff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.privacy-promise i {
    color: #2563eb;
    font-size: 24px;
    flex-shrink: 0;
}

.privacy-promise p {
    margin: 0;
    color: #1e40af;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.contact-cta h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-cta p {
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #2563eb;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

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

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-item i {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.trust-item h4 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 8px;
}

.trust-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .business-info-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .privacy-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-badges {
        flex-direction: column;
    }
    
    .badge {
        justify-content: center;
    }
}
/* ============================================
   SHIPPING, RETURNS & WARRANTY PAGE
============================================ */

.srw-page {
    background: #f8fafc;
    min-height: 100vh;
}

/* Hero Section */
.srw-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
}

.srw-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.srw-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.srw-hero h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.srw-hero .hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
}

/* Quick Navigation */
.quick-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.2);
}

.nav-pill:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.nav-pill i {
    font-size: 18px;
}

/* Container */
.srw-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* Sections */
.srw-section {
    margin-bottom: 50px;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 40px;
    border-radius: 16px 16px 0 0;
    color: white;
}

.section-header.shipping-theme {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.section-header.returns-theme {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.section-header.warranty-theme {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.header-text h2 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.header-text p {
    opacity: 0.9;
    font-size: 16px;
    margin: 0;
}

/* Section Content */
.section-content {
    background: white;
    padding: 40px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    border-top: none;
}

/* Timeline Cards */
.timeline-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.timeline-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    min-width: 250px;
    position: relative;
    transition: transform 0.3s;
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
}

.time-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.timeline-card i {
    font-size: 48px;
    color: #2563eb;
    margin: 15px 0 20px;
    display: block;
}

.timeline-card h4 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 10px;
}

.timeline-card p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.timeline-arrow {
    color: #cbd5e1;
    font-size: 32px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.info-box {
    background: #f8fafc;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.info-box:hover {
    border-color: #2563eb;
    background: #f0f7ff;
}

.info-box.highlight {
    background: #f0fdf4;
    border-color: #86efac;
}

.info-box.highlight i {
    color: #059669;
}

.info-box i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 12px;
    display: block;
}

.info-box h4 {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box p {
    font-size: 18px;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
}

/* Notice Box */
.notice-box {
    display: flex;
    gap: 20px;
    background: #eff6ff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.notice-box > i {
    color: #2563eb;
    font-size: 28px;
    flex-shrink: 0;
}

.notice-box h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 18px;
}

.notice-box ul {
    margin: 0;
    padding-left: 20px;
    color: #475569;
    line-height: 1.8;
}

.notice-box li {
    margin-bottom: 8px;
}

/* ACL Banner Large */
.acl-banner-large {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px solid #86efac;
}

.banner-icon {
    width: 70px;
    height: 70px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.banner-content h3 {
    color: #065f46;
    font-size: 24px;
    margin-bottom: 15px;
}

.banner-content p {
    color: #166534;
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

/* Returns Grid */
.returns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.return-type {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.return-type.accepted {
    border-color: #86efac;
}

.return-type.conditional {
    border-color: #fcd34d;
}

.type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #f8fafc;
}

.return-type.accepted .type-header {
    background: #f0fdf4;
}

.return-type.conditional .type-header {
    background: #fffbeb;
}

.type-header i {
    font-size: 28px;
}

.return-type.accepted .type-header i {
    color: #059669;
}

.return-type.conditional .type-header i {
    color: #f59e0b;
}

.type-header h4 {
    font-size: 20px;
    margin: 0;
    color: #1e293b;
}

.return-type ul {
    padding: 25px;
    margin: 0;
    list-style: none;
}

.return-type li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.return-type li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    font-size: 20px;
}

.return-type li:last-child {
    border-bottom: none;
}

.type-footer {
    padding: 20px 25px;
    background: #f8fafc;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge.green {
    background: #dcfce7;
    color: #166534;
}

.badge.yellow {
    background: #fef3c7;
    color: #92400e;
}

/* Process Section */
.process-section {
    margin-bottom: 40px;
}

.process-section h3 {
    text-align: center;
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 30px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    text-align: center;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step i {
    font-size: 32px;
    color: #2563eb;
    margin: 20px 0 15px;
    display: block;
}

.step h4 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 10px;
}

.step p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Condition Notice */
.condition-notice {
    display: flex;
    gap: 20px;
    background: #fffbeb;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.condition-notice i {
    color: #f59e0b;
    font-size: 24px;
    flex-shrink: 0;
}

.condition-notice p {
    color: #78350f;
    margin: 0;
    line-height: 1.7;
}

/* Warranty Cards */
.warranty-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.warranty-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s;
}

.warranty-card:hover {
    transform: translateY(-5px);
}

.warranty-card.none {
    background: #f8fafc;
}

.warranty-card.limited {
    background: #fffbeb;
    border-color: #fcd34d;
}

.warranty-card.acl {
    background: #eff6ff;
    border-color: #93c5fd;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.warranty-card.none .card-icon {
    background: #e2e8f0;
    color: #64748b;
}

.warranty-card.limited .card-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.warranty-card.acl .card-icon {
    background: #dbeafe;
    color: #2563eb;
}

.warranty-card h4 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
}

.warranty-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.warranty-card .note {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-style: italic;
}

/* ACL Notice Box */
.acl-notice-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 2px solid #86efac;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: #059669;
    color: white;
}

.notice-header i {
    font-size: 28px;
}

.notice-header h3 {
    font-size: 22px;
    margin: 0;
}

.notice-body {
    padding: 30px;
}

.notice-body > p {
    color: #166534;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.rights-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.right {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.right i {
    width: 45px;
    height: 45px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.right span {
    color: #1e293b;
    line-height: 1.5;
}

/* Warranty CTA */
.warranty-cta {
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
}

.warranty-cta h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 10px;
}

.warranty-cta p {
    color: #64748b;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #f0f7ff;
}

/* Summary Bar */
.summary-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.summary-item i {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.summary-item strong {
    display: block;
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 4px;
}

.summary-item span {
    color: #64748b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .timeline-cards {
        flex-direction: column;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .returns-grid,
    .warranty-cards,
    .rights-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .srw-hero h1 {
        font-size: 32px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .section-content {
        padding: 25px;
    }
    
    .info-grid,
    .process-steps,
    .summary-bar {
        grid-template-columns: 1fr;
    }
    
    .acl-banner-large,
    .notice-box,
    .condition-notice {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .quick-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-pill {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* ============================================
   SHOP PAGE - REDESIGNED
============================================ */

.shop-page-wrapper {
    background: #f8fafc;
    min-height: 100vh;
}

/* Shop Header */
.shop-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 50px 20px 40px;
    text-align: center;
    position: relative;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.shop-header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 25px;
}

.woocommerce-breadcrumb {
    color: #94a3b8;
    font-size: 14px;
}

.woocommerce-breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: #2563eb;
}

.woocommerce-breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    color: #64748b;
}

.shop-title {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.shop-subtitle,
.category-description {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Category Pills */
.category-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pill {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.1);
}

.pill:hover,
.pill.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* Shop Container */
.shop-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    color: #475569;
    font-size: 15px;
}

.results-count span {
    font-weight: 600;
    color: #1e293b;
}

.view-options {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover,
.view-btn.active {
    border-color: #2563eb;
    color: #2563eb;
    background: #f0f7ff;
}

.ordering select {
    padding: 10px 35px 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    appearance: none;
    background: white 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='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
}

/* Product Loop */
.woocommerce-product-loop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-product-loop.list-view {
    grid-template-columns: 1fr;
}

.product-item {
    list-style: none;
}

/* Product Card */
.product-card-shop {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-shop:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.sale {
    background: #dc2626;
    color: white;
}

.badge.new {
    background: #2563eb;
    color: white;
}

.badge.out-of-stock {
    background: #64748b;
    color: white;
}

/* Product Image */
.product-image-link {
    display: block;
    position: relative;
    background: #f8fafc;
    padding: 30px;
    height: 280px;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

/* Hover Actions */
.product-actions-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card-shop:hover .product-actions-hover {
    opacity: 1;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #1e293b;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.action-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Product Info */
.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-label {
    font-size: 12px;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.product-title a {
    color: #1e293b;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a:hover {
    color: #2563eb;
}

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

.star-rating {
    color: #f59e0b;
    font-size: 13px;
}

.rating-count {
    font-size: 13px;
    color: #64748b;
}

.product-short-desc {
    display: none;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Product Bottom */
.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.regular-price {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.current-price .woocommerce-Price-amount {
    color: #dc2626;
}

.add-to-cart-btn {
    width: 40px;
    height: 40px;
    background: #f0f7ff;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #2563eb;
    color: white;
}

.out-of-stock-text {
    font-size: 13px;
    color: #dc2626;
    font-weight: 600;
}

.product-meta-list {
    display: none;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    color: #64748b;
}

.product-meta-list .stock.in-stock {
    color: #059669;
}

/* List View Styles */
.woocommerce-product-loop.list-view .product-item {
    max-width: 100%;
}

.woocommerce-product-loop.list-view .product-card-shop {
    flex-direction: row;
    align-items: stretch;
}

.woocommerce-product-loop.list-view .product-image-link {
    width: 300px;
    height: auto;
    min-height: 250px;
}

.woocommerce-product-loop.list-view .product-info {
    flex: 1;
    padding: 30px;
}

.woocommerce-product-loop.list-view .product-title {
    font-size: 20px;
}

.woocommerce-product-loop.list-view .product-short-desc {
    display: block;
}

.woocommerce-product-loop.list-view .product-meta-list {
    display: flex;
}

.woocommerce-product-loop.list-view .product-bottom {
    margin-top: 20px;
}

/* Pagination */
.shop-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.woocommerce-pagination {
    display: flex;
    gap: 8px;
}

.woocommerce-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.woocommerce-pagination a:hover,
.woocommerce-pagination span.current {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* No Products */
.no-products-found {
    text-align: center;
    padding: 80px 20px;
}

.no-products-found i {
    font-size: 80px;
    color: #cbd5e0;
    margin-bottom: 25px;
    display: block;
}

.no-products-found h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 15px;
}

.no-products-found p {
    color: #64748b;
    margin-bottom: 25px;
}

/* Trust Bar */
.shop-trust-bar {
    background: white;
    padding: 40px 20px;
    border-top: 1px solid #e2e8f0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.trust-item i {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    color: #1e293b;
    font-size: 15px;
    margin-bottom: 4px;
}

.trust-item span {
    color: #64748b;
    font-size: 13px;
}

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

@media (max-width: 968px) {
    .woocommerce-product-loop {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-title {
        font-size: 32px;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-toolbar {
        flex-direction: column;
        text-align: center;
    }
    
    .woocommerce-product-loop {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-product-loop.list-view .product-card-shop {
        flex-direction: column;
    }
    
    .woocommerce-product-loop.list-view .product-image-link {
        width: 100%;
        height: 250px;
    }
    
    .category-pills {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .pill {
        white-space: nowrap;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
    }
}