/* PAWZILLA Website Styles - Modern, Clean, Professional */

/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2B5BA9;
    --primary-dark: #1E4080;
    --accent: #FF6B35;
    --accent-light: #FF8F5E;
    --bg: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A2E;
    --text: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --border: #E0E0E0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* ========== HERO ========== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F0FE 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43,91,169,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43,91,169,0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
    color: white;
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== PRODUCTS ========== */
.products-section {
    background: var(--bg-light);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    height: 220px;
    background: linear-gradient(135deg, #E8F0FE 0%, #D4E4FC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.05));
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info .category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.moqi {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== WEEKLY PICKS ========== */
.weekly-picks {
    background: white;
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pick-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.pick-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.pick-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pick-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    padding-right: 80px;
}

.pick-card .trend {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.pick-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* ========== WHY CHOOSE ========== */
.why-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 280px 140px 140px 320px;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    opacity: 0.7;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.footer-col {
    min-width: 280px;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ========== SHIPPING & PAYMENT INFO ========== */
.shipping-payment {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.shipping-payment h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: white;
}

.payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.payment-badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.shipping-info {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ========== SOCIAL MEDIA ICONS ========== */
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 4px 16px rgba(0,0,0,0.4);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 0 0 4px rgba(255,255,255,1), 0 8px 28px rgba(0,0,0,0.5);
}

.social-facebook {
    background: #1877F2 !important;
}

.social-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF) !important;
}

.social-tiktok {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

.social-tiktok:hover {
    background: #69C9D0 !important;
    color: #fff !important;
    border-color: #69C9D0 !important;
}

.social-whatsapp {
    background: #25D366 !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px 5%;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        gap: 8px;
        z-index: 100;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-links.active a {
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links.active a:last-child {
        border-bottom: none;
    }
    
    .nav-links.active .nav-cta {
        margin-top: 4px;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .picks-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar .container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
    padding-top: 100px;
    padding-bottom: 60px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.product-gallery .main-img {
    font-size: 8rem;
    margin-bottom: 20px;
}

.product-gallery .gallery-thumbs {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    border-color: var(--primary);
}

.product-info-detail h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.product-info-detail .category-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.price-section {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.price-section .price-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-section .moq {
    color: var(--text-light);
    font-size: 0.9rem;
}

.features-list {
    margin-bottom: 24px;
}

.features-list h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.specs-table th,
.specs-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.specs-table th {
    background: var(--bg-light);
    font-weight: 600;
    width: 40%;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.cta-box h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
}

.related-products {
    background: var(--bg-light);
    padding: 60px 0;
}

/* Language Switcher */
.lang-switch, .lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: 12px;
}

.lang-switch a, .lang-switcher a {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.lang-switch a.active, .lang-switcher a.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.lang-switch a:hover:not(.active), .lang-switcher a:hover:not(.active) {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* ========== RTL Support for Arabic ========== */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .hero .container,
[dir="rtl"] .product-detail-grid,
[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-cta {
    margin-left: 0;
    margin-right: 12px;
}

[dir="rtl"] .lang-switch,
[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 12px;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .hero-content p {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .hero-btns {
    justify-content: flex-start;
}

[dir="rtl"] .section-header {
    text-align: right;
}

[dir="rtl"] .section-header p {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .pick-badge {
    right: auto;
    left: 20px;
}

[dir="rtl"] .pick-card h3 {
    padding-right: 0;
    padding-left: 80px;
}

[dir="rtl"] .footer-brand {
    text-align: right;
}

[dir="rtl"] .footer-social {
    justify-content: flex-start;
}

[dir="rtl"] .footer-col a {
    text-align: right;
}

[dir="rtl"] .features-grid {
    direction: rtl;
}

[dir="rtl"] .products-grid {
    direction: rtl;
}

[dir="rtl"] .product-card {
    direction: rtl;
}

[dir="rtl"] .specs-table th,
[dir="rtl"] .specs-table td {
    text-align: right;
}

[dir="rtl"] .gallery-thumbs {
    flex-direction: row-reverse;
}

[dir="rtl"] .cta-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .cert-tags {
    direction: rtl;
}

[dir="rtl"] .badges {
    direction: rtl;
}

[dir="rtl"] .price-meta span {
    margin-right: 0;
    margin-left: 20px;
}

/* Mobile RTL */
@media (max-width: 768px) {
    [dir="rtl"] .hero .container {
        text-align: right;
    }
    
    [dir="rtl"] .pick-card h3 {
        padding-left: 0;
    }
}

/* ========== PRODUCT DETAIL NEW CLASSES ========== */

/* Badges */
.badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-hot {
    background: #E63946;
    color: white;
}

.badge-new {
    background: #2D6A4F;
    color: white;
}

.badge-sale {
    background: #FF6B35;
    color: white;
}

/* Product Description */
.product-desc {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Price Section */
.price-section {
    background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #FFD54F;
}

.price-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.price-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #E65100;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.price-meta {
    font-size: 0.9rem;
    color: #555;
}

.price-meta span {
    margin-right: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #444;
}

.feature-item::before {
    content: '✓';
    color: #2B5BA9;
    font-weight: bold;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-full {
    flex: 1;
    justify-content: center;
}

/* Cert Tags */
.cert-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-tag {
    background: #E8F0FE;
    color: #2B5BA9;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Specs Container */
.specs-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 30px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.stat-red {
    background: linear-gradient(135deg, #FFF0F0, #FFE0E0);
}

.stat-blue {
    background: linear-gradient(135deg, #F0F0FF, #E0E0FF);
}

.stat-green {
    background: linear-gradient(135deg, #F0FFF0, #E0FFE0);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
}

.stat-red .stat-value { color: #E63946; }
.stat-blue .stat-value { color: #2B5BA9; }
.stat-green .stat-value { color: #2D6A4F; }

.stat-label {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
}

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ========== SMALL PHONE (480px) ========== */
@media (max-width: 480px) {
    .hero {
        padding: 120px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-img {
        height: 180px;
        font-size: 3rem;
    }
    
    .product-detail {
        padding-top: 80px;
    }
    
    .product-detail-grid {
        gap: 20px;
    }
    
    .product-gallery {
        padding: 20px;
    }
    
    .product-gallery .main-img {
        font-size: 5rem;
    }
    
    .product-info-detail h1 {
        font-size: 1.4rem;
    }
    
    .price-section .price-range {
        font-size: 1.3rem;
    }
    
    .gallery-thumbs .thumb {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ========== SPECS TABLE HORIZONTAL SCROLL ========== */
.specs-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.specs-table-wrapper .specs-table {
    min-width: 500px;
    margin-bottom: 0;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 999;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.whatsapp-float:active {
    transform: scale(0.9);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Pulse animation for WhatsApp */
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

.whatsapp-float {
    animation: wa-pulse 2s infinite;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Feature items touch-friendly */
.feature-item {
    padding: 6px 0;
    min-height: 40px;
}

/* View Full Details link touch-friendly */
.view-detail-link {
    display: inline-block;
    padding: 8px 0;
    min-height: 40px;
}

/* Nav toggle accessible */
.mobile-menu-btn {
    min-width: 44px;
    min-height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Language switch touch friendly */
.lang-switch a, .lang-switcher a {
    padding: 6px 12px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
}
