/* ============================================

   TechHub India — Design System

   Professional E-commerce for Digital Products

   ============================================ */



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');



/* --- CSS Variables (Design Tokens) --- */

:root {

    --bg-dark: #0f172a;

    --bg-dark-alt: #1e293b;

    --bg-body: #f1f5f9;

    --bg-card: #ffffff;

    --accent-green: #059669;

    --accent-green-hover: #047857;

    --accent-orange: #f97316;

    --accent-yellow: #eab308;

    --accent-blue: #3b82f6;

    --text-primary: #0f172a;

    --text-secondary: #475569;

    --text-muted: #94a3b8;

    --text-white: #f8fafc;

    --border-light: #e2e8f0;

    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);

    --shadow-card-hover: 0 10px 40px rgba(0, 0, 0, 0.08);

    --shadow-modal: 0 25px 60px rgba(0, 0, 0, 0.3);

    --radius-sm: 8px;

    --radius-md: 12px;

    --radius-lg: 16px;

    --radius-xl: 20px;

    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}



/* --- Reset & Base --- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



html {
    scroll-behavior: smooth;
}



body {

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    background-color: var(--bg-body);

    color: var(--text-primary);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

}



a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

ul {
    list-style: none;
}



/* --- Header --- */

.site-header {

    background: var(--bg-dark);

    position: relative;

    z-index: 200;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

}



.header-inner {

    max-width: 1280px;

    margin: 0 auto;

    padding: 0 24px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}



.logo {

    font-size: 1.35rem;

    font-weight: 900;

    color: var(--text-white);

    letter-spacing: -0.5px;

}

.logo span {
    color: var(--accent-green);
}



.nav-links {

    display: flex;

    gap: 32px;

    align-items: center;

}

.nav-links a {

    color: var(--text-muted);

    font-size: 0.875rem;

    font-weight: 600;

    transition: var(--transition);

}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}



.header-actions {

    display: flex;

    align-items: center;

    gap: 16px;

}



.cart-btn {

    position: relative;

    background: rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-full);

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

    color: var(--text-white);

    font-size: 1.1rem;

}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}



.cart-count {

    position: absolute;

    top: -4px;

    right: -4px;

    background: var(--accent-green);

    color: white;

    font-size: 0.65rem;

    font-weight: 800;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.wa-btn {

    background: #25D366;

    color: white;

    font-size: 0.8rem;

    font-weight: 700;

    padding: 8px 16px;

    border-radius: var(--radius-full);

    display: flex;

    align-items: center;

    gap: 6px;

    transition: var(--transition);

}

.wa-btn:hover {
    background: #1da851;
    transform: translateY(-1px);
}



/* Hamburger Menu Button (Mobile Only) */

.hamburger-btn {

    display: none;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 8px;

    width: 38px;

    height: 38px;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(--transition);

    padding: 0;

    flex-direction: column;

    gap: 5px;

}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger-btn .bar {

    display: block;

    width: 18px;

    height: 2px;

    background: var(--text-white);

    border-radius: 2px;

    transition: all 0.3s ease;

}

.hamburger-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



/* Mobile Nav Overlay */

.mobile-nav-overlay {

    display: none;

    position: fixed;

    top: 64px;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(15, 23, 42, 0.97);

    backdrop-filter: blur(12px);

    z-index: 150;

    padding: 24px 24px 40px;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;

    overflow-y: auto;

}

.mobile-nav-overlay.open {

    opacity: 1;

    visibility: visible;

}

.mobile-nav-list {

    display: flex;

    flex-direction: column;

    gap: 6px;

}

.mobile-nav-list a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.05rem;

    font-weight: 600;

    padding: 16px 20px;

    border-radius: 12px;

    transition: all 0.2s ease;

    text-decoration: none;

}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {

    color: #fff;

    background: rgba(255, 255, 255, 0.06);

}

.mobile-nav-list a .nav-icon {

    font-size: 1.15rem;

    width: 24px;

    text-align: center;

}

.mobile-nav-wa {

    display: block;

    margin-top: 24px;

    background: #25D366;

    color: white;

    text-align: center;

    padding: 16px;

    border-radius: 12px;

    font-weight: 700;

    font-size: 1rem;

    transition: var(--transition);

    text-decoration: none;

}

.mobile-nav-wa:hover {
    background: #1da851;
}



/* --- Hero Section --- */

.hero {

    background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 30%, #1a1040 60%, #0f172a 100%);

    padding: 100px 24px 80px;

    text-align: center;

    position: relative;

    overflow: hidden;

}

.hero::before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),

        radial-gradient(circle at 70% 60%, rgba(5, 150, 105, 0.12) 0%, transparent 40%),

        radial-gradient(circle at 50% 80%, rgba(244, 63, 94, 0.08) 0%, transparent 30%);

    animation: heroGlow 10s ease-in-out infinite alternate;

}

.hero::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 120px;

    background: linear-gradient(to top, var(--bg-body), transparent);

    z-index: 2;

}

/* Floating orbs */

.hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(60px);

    opacity: 0.5;

    animation: floatOrb 12s ease-in-out infinite alternate;

}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.25);
    top: -80px;
    left: -60px;
}

.hero-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(5, 150, 105, 0.2);
    bottom: -50px;
    right: -40px;
    animation-delay: -4s;
    animation-duration: 14s;
}

.hero-orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(244, 63, 94, 0.15);
    top: 30%;
    right: 10%;
    animation-delay: -7s;
    animation-duration: 16s;
}

@keyframes floatOrb {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 15px) scale(0.95);
    }

}

@keyframes heroGlow {

    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(3%, 2%) rotate(2deg);
    }

}

@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes shimmer {

    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }

}

.hero-content {

    position: relative;

    z-index: 3;

    max-width: 760px;

    margin: 0 auto;

    animation: fadeInUp 0.8s ease-out;

}

.hero-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 8px 18px;

    border-radius: var(--radius-full);

    font-size: 0.8rem;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.7);

    margin-bottom: 24px;

    backdrop-filter: blur(10px);

}

.hero-eyebrow .pulse-dot {

    width: 8px;
    height: 8px;

    background: #34d399;

    border-radius: 50%;

    animation: pulseDot 2s ease-in-out infinite;

}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }

}

.hero h1 {

    font-size: clamp(2.2rem, 5.5vw, 3.6rem);

    font-weight: 900;

    color: var(--text-white);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 20px;

}

.hero h1 .gradient-text {

    background: linear-gradient(135deg, #34d399, #6366f1, #f472b6);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}

.hero p {

    font-size: 1.1rem;

    color: rgba(255, 255, 255, 0.55);

    max-width: 560px;

    margin: 0 auto 36px;

    line-height: 1.75;

}

.hero-cta-group {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;

}

.hero-cta {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: linear-gradient(135deg, var(--accent-green), #34d399);

    color: white;

    font-weight: 700;

    font-size: 1rem;

    padding: 15px 34px;

    border-radius: var(--radius-full);

    transition: var(--transition);

    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);

}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.45);
}

.hero-cta-secondary {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.8);

    font-weight: 600;

    font-size: 0.95rem;

    padding: 14px 28px;

    border-radius: var(--radius-full);

    transition: var(--transition);

    backdrop-filter: blur(10px);

}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-stats {

    display: flex;

    justify-content: center;

    gap: 40px;

    margin-top: 48px;

    animation: fadeInUp 1s ease-out 0.3s both;

}

.hero-stat {

    text-align: center;

}

.hero-stat .num {

    font-size: 1.6rem;

    font-weight: 900;

    color: var(--text-white);

    display: block;

}

.hero-stat .label {

    font-size: 0.75rem;

    color: rgba(255, 255, 255, 0.4);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



/* --- Trust Strip --- */

.trust-strip {

    background: var(--bg-card);

    border-bottom: 1px solid var(--border-light);

    padding: 18px 24px;

    position: relative;

    z-index: 4;

}

.trust-strip-inner {

    max-width: 1280px;

    margin: 0 auto;

    display: flex;

    justify-content: center;

    gap: 40px;

    flex-wrap: wrap;

}

.trust-item {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 0.84rem;

    font-weight: 700;

    color: var(--text-secondary);

}

.trust-item .icon {

    font-size: 1.15rem;

    width: 36px;

    height: 36px;

    background: #ecfdf5;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

}



/* --- Category Tabs --- */

.category-tabs {

    max-width: 1280px;

    margin: 32px auto 0;

    padding: 0 24px;

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

}

.cat-tab {

    padding: 8px 20px;

    border-radius: var(--radius-full);

    font-size: 0.825rem;

    font-weight: 600;

    background: var(--bg-card);

    color: var(--text-secondary);

    border: 1px solid var(--border-light);

    transition: var(--transition);

}

.cat-tab:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.cat-tab.active {

    background: var(--accent-green);

    color: white;

    border-color: var(--accent-green);

}



/* --- Product Grid --- */

.product-section {

    max-width: 1280px;

    margin: 24px auto 60px;

    padding: 0 24px;

}

.product-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 22px;

}



/* --- Product Card --- */

.product-card {

    background: var(--bg-card);

    border-radius: var(--radius-lg);

    border: 1px solid var(--border-light);

    overflow: hidden;

    transition: var(--transition);

    display: flex;

    flex-direction: column;

    position: relative;

}

.product-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

    border-color: transparent;

}

.product-card::after {

    content: '';

    position: absolute;

    inset: 0;

    border-radius: var(--radius-lg);

    opacity: 0;

    transition: opacity 0.4s ease;

    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(5, 150, 105, 0.04));

    pointer-events: none;

}

.product-card:hover::after {
    opacity: 1;
}



.product-card-img {

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: linear-gradient(135deg, #f8fafc, #f1f5f9);

    position: relative;

}

.product-card-img img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 0;

    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}



.discount-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    background: linear-gradient(135deg, #f97316, #ef4444);

    color: white;

    font-size: 0.7rem;

    font-weight: 800;

    padding: 5px 12px;

    border-radius: var(--radius-full);

    letter-spacing: 0.3px;

    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);

}



.product-card-body {

    padding: 16px 20px 20px;

    flex: 1;

    display: flex;

    flex-direction: column;

}

.product-card-category {

    font-size: 0.7rem;

    font-weight: 700;

    color: var(--accent-green);

    text-transform: uppercase;

    letter-spacing: 0.8px;

    margin-bottom: 6px;

}

.product-card-title {

    font-size: 0.95rem;

    font-weight: 700;

    color: var(--text-primary);

    line-height: 1.4;

    margin-bottom: 12px;

    flex: 1;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

.product-card-title a {
    transition: var(--transition);
}

.product-card-title a:hover {
    color: var(--accent-green);
}



.price-row {

    display: flex;

    align-items: baseline;

    gap: 8px;

    margin-bottom: 14px;

}

.price-current {

    font-size: 1.4rem;

    font-weight: 900;

    color: var(--accent-green);

}

.price-original {

    font-size: 0.85rem;

    color: var(--text-muted);

    text-decoration: line-through;

}



.card-actions {

    display: flex;

    gap: 8px;

}

.btn-add-cart {

    flex: 1;

    padding: 10px;

    border-radius: var(--radius-sm);

    font-size: 0.8rem;

    font-weight: 700;

    background: var(--bg-dark);

    color: white;

    transition: var(--transition);

    text-align: center;

}

.btn-add-cart:hover {
    background: #334155;
    transform: translateY(-1px);
}



.btn-buy-now {

    flex: 1;

    padding: 10px;

    border-radius: var(--radius-sm);

    font-size: 0.8rem;

    font-weight: 700;

    background: linear-gradient(135deg, var(--accent-green), #34d399);

    color: white;

    transition: var(--transition);

    text-align: center;

}

.btn-buy-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}



/* --- Social Proof Section --- */

.social-proof {

    max-width: 1280px;

    margin: 0 auto 60px;

    padding: 0 24px;

}

.social-proof h2 {

    font-size: 1.5rem;

    font-weight: 800;

    margin-bottom: 20px;

}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));

    gap: 16px;

}

.testimonial-card {

    background: #fff7ed;

    border-left: 4px solid var(--accent-orange);

    border-radius: 0 var(--radius-md) var(--radius-md) 0;

    padding: 20px;

}

.testimonial-card .quote {

    font-size: 0.9rem;

    color: var(--text-primary);

    line-height: 1.6;

    margin-bottom: 10px;

}

.testimonial-card .author {

    font-size: 0.8rem;

    font-weight: 700;

    color: var(--accent-orange);

}



/* --- Footer --- */

.site-footer {

    background: var(--bg-dark);

    color: var(--text-muted);

    padding: 48px 24px 24px;

}

.footer-inner {

    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 40px;

    margin-bottom: 40px;

}

.footer-col h4 {

    color: var(--text-white);

    font-size: 0.9rem;

    font-weight: 700;

    margin-bottom: 16px;

}

.footer-col a {

    display: block;

    font-size: 0.825rem;

    color: var(--text-muted);

    margin-bottom: 10px;

    transition: var(--transition);

}

.footer-col a:hover {
    color: var(--text-white);
}



.footer-bottom {

    max-width: 1280px;

    margin: 0 auto;

    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

}

.footer-bottom p {
    font-size: 0.75rem;
}

.footer-trust {

    display: flex;

    gap: 20px;

}

.footer-trust span {
    font-size: 0.75rem;
}



/* --- Order Modal --- */

.modal-overlay {

    position: fixed;

    inset: 0;

    background: rgba(15, 23, 42, 0.85);

    backdrop-filter: blur(8px);

    z-index: 200;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 16px;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}



.modal-box {

    background: var(--bg-card);

    border-radius: var(--radius-xl);

    width: 100%;

    max-width: 440px;

    box-shadow: var(--shadow-modal);

    transform: translateY(20px) scale(0.97);

    transition: var(--transition);

    overflow: hidden;

}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}



.modal-header {

    background: var(--bg-body);

    padding: 18px 24px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid var(--border-light);

}

.modal-header h3 {
    font-size: 1rem;
    font-weight: 800;
}

.modal-close {

    background: none;

    font-size: 1.5rem;

    color: var(--text-muted);

    transition: var(--transition);

}

.modal-close:hover {
    color: var(--text-primary);
}



.modal-body {
    padding: 24px;
}



.modal-product-info {

    background: #ecfdf5;

    border: 1px solid #a7f3d0;

    border-radius: var(--radius-md);

    padding: 14px 18px;

    margin-bottom: 20px;

}

.modal-product-info .name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.modal-product-info .price {
    font-weight: 800;
    color: var(--accent-green);
    font-size: 0.85rem;
    margin-top: 2px;
}



.form-group {
    margin-bottom: 14px;
}

.form-group label {

    display: block;

    font-size: 0.8rem;

    font-weight: 600;

    color: var(--text-secondary);

    margin-bottom: 6px;

}

.form-group input {

    width: 100%;

    padding: 10px 14px;

    border: 1.5px solid var(--border-light);

    border-radius: var(--radius-sm);

    font-size: 0.875rem;

    font-family: inherit;

    transition: var(--transition);

    outline: none;

}

.form-group input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}



.btn-submit-order {

    width: 100%;

    padding: 13px;

    background: var(--accent-green);

    color: white;

    font-size: 0.9rem;

    font-weight: 800;

    border-radius: var(--radius-sm);

    transition: var(--transition);

    margin-top: 8px;

}

.btn-submit-order:hover {
    background: var(--accent-green-hover);
}



.form-secure {

    text-align: center;

    font-size: 0.7rem;

    color: var(--text-muted);

    margin-top: 12px;

}



/* --- Toast Notification --- */

.toast {

    position: fixed;

    bottom: 80px;

    left: 50%;

    transform: translateX(-50%) translateY(100px);

    background: var(--bg-dark);

    color: white;

    padding: 12px 24px;

    border-radius: var(--radius-full);

    font-size: 0.85rem;

    font-weight: 600;

    z-index: 300;

    opacity: 0;

    transition: all 0.4s ease;

    white-space: nowrap;

}

.toast.show {

    opacity: 1;

    transform: translateX(-50%) translateY(0);

}



/* --- Sticky Mobile CTA --- */

.sticky-mobile-cta {

    display: none;

    position: fixed;

    bottom: 0;

    left: 0;

    right: 0;

    background: var(--bg-card);

    border-top: 1px solid var(--border-light);

    padding: 12px 16px;

    z-index: 90;

    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);

}



/* --- Load More Button --- */

.load-more-wrap {

    text-align: center;

    margin: 32px 0 16px;

}

.btn-load-more {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    background: var(--bg-card);

    color: var(--text-primary);

    font-size: 0.875rem;

    font-weight: 700;

    padding: 12px 32px;

    border-radius: var(--radius-full);

    border: 1.5px solid var(--border-light);

    transition: var(--transition);

}

.btn-load-more:hover {

    border-color: var(--accent-green);

    color: var(--accent-green);

    box-shadow: var(--shadow-card-hover);

}



@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .wa-btn {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .hero {
        padding: 60px 16px 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 32px;
    }

    .hero-stat .num {
        font-size: 1.2rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-strip-inner {
        gap: 12px;
        justify-content: space-around;
    }

    .trust-item {
        font-size: 0.7rem;
    }

    .trust-item .icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .category-tabs {
        gap: 6px;
        padding: 0 16px;
        margin-top: 20px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .cat-tab {
        white-space: nowrap;
        padding: 7px 16px;
        font-size: 0.78rem;
    }

    .product-section {
        padding: 0 16px;
        margin: 16px auto 40px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-card {
        flex-direction: row;
        border-radius: var(--radius-md);
    }

    .product-card-img {
        width: 130px;
        min-width: 130px;
        height: auto;
        min-height: 130px;
        aspect-ratio: auto;
        border-radius: var(--radius-md) 0 0 var(--radius-md);
    }

    .product-card:hover {
        transform: none;
    }

    .product-card-body {
        padding: 12px 14px;
    }

    .product-card-title {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
        margin-bottom: 6px;
    }

    .product-card-category {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .price-row {
        margin-bottom: 8px;
        gap: 6px;
    }

    .price-current {
        font-size: 1.05rem;
    }

    .price-original {
        font-size: 0.75rem;
    }

    .card-actions {
        gap: 6px;
    }

    .btn-add-cart,
    .btn-buy-now {
        padding: 8px;
        font-size: 0.72rem;
    }

    .discount-badge {
        top: 8px;
        left: 8px;
        font-size: 0.6rem;
        padding: 3px 7px;
    }

    .sticky-mobile-cta {
        display: block;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .social-proof {
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .social-proof h2 {
        font-size: 1.2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .toast {
        bottom: 70px;
        font-size: 0.78rem;
        padding: 10px 20px;
    }

    .modal-box {
        max-width: 100%;
        border-radius: var(--radius-lg);
    }

}



@media (max-width: 380px) {

    .header-inner {
        padding: 0 12px;
    }

    .logo {
        font-size: 1.15rem;
    }

    .wa-btn {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .hero h1 {
        font-size: 1.45rem;
    }

    .product-card-img {
        width: 100px;
        min-width: 100px;
    }

    .trust-strip-inner {
        gap: 8px;
    }

    .trust-item {
        font-size: 0.65rem;
        gap: 6px;
    }

    .trust-item .icon {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
        border-radius: 7px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

}



/* --- Auth & Profile UI --- */

.auth-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-icon-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.auth-icon-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.auth-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    display: none;
    cursor: pointer;
}

.auth-dropdown {
    position: absolute;
    top: 48px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 110;
}

.auth-wrapper:hover .auth-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.auth-dropdown-header {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 8px;
}

.auth-dropdown-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
    display: block;
}

.auth-dropdown-email {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.auth-dropdown a,
.auth-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: 8px;
    background: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.auth-dropdown a:hover,
.auth-dropdown button:hover {
    background: #f1f5f9;
    color: var(--accent-green);
}

.btn-google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #fff;
    color: #334155;
    border: 1px solid #cbd5e1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-google-login:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.btn-google-login img {
    width: 20px;
    height: 20px;
}



/* Modal Checkout Screens */

.checkout-screen {
    display: none;
}

.checkout-screen.active {
    display: block;
    animation: fadeIn 0.3s ease;
}



.decision-box {
    text-align: center;
    padding: 20px 0;
}

.decision-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.decision-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.decision-divider::before,
.decision-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-light);
}

.decision-divider:not(:empty)::before {
    margin-right: .5em;
}

.decision-divider:not(:empty)::after {
    margin-left: .5em;
}



.btn-guest-checkout {
    display: block;
    width: 100%;
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-guest-checkout:hover {
    border-color: var(--text-primary);
    background: #f1f5f9;
}



/* ============================================

   Product Detail Page Styles

   ============================================ */



/* Product Hero Banner */

.pdp-hero {

    background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 30%, #1a1040 60%, #0f172a 100%);

    padding: 40px 24px 50px;

    position: relative;

    overflow: hidden;

}

.pdp-hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at 20% 50%, rgba(5, 150, 105, 0.15) 0%, transparent 50%),

        radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);

}

.pdp-hero-inner {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 48px;

    align-items: center;

    position: relative;

    z-index: 2;

}



/* Product Image */

.pdp-image-wrap {

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-xl);

    overflow: hidden;

    aspect-ratio: 1/1;

    position: relative;

}

.pdp-image-wrap img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.pdp-discount-badge {

    position: absolute;

    top: 16px;

    left: 16px;

    background: linear-gradient(135deg, #f97316, #ef4444);

    color: white;

    font-size: 0.85rem;

    font-weight: 800;

    padding: 8px 18px;

    border-radius: var(--radius-full);

    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);

}



/* Product Info */

.pdp-info {

    color: var(--text-white);

}

.pdp-breadcrumb {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 0.8rem;

    color: rgba(255, 255, 255, 0.4);

    margin-bottom: 16px;

}

.pdp-breadcrumb a {

    color: rgba(255, 255, 255, 0.5);

    transition: var(--transition);

}

.pdp-breadcrumb a:hover {
    color: #34d399;
}

.pdp-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.25);
}



.pdp-category {

    display: inline-block;

    font-size: 0.7rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    color: #34d399;

    background: rgba(52, 211, 153, 0.1);

    padding: 5px 14px;

    border-radius: var(--radius-full);

    margin-bottom: 12px;

}



.pdp-title {

    font-size: clamp(1.6rem, 3.5vw, 2.4rem);

    font-weight: 900;

    line-height: 1.15;

    letter-spacing: -1px;

    margin-bottom: 16px;

}



.pdp-author-row {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

}

.pdp-author-avatar {

    width: 36px;

    height: 36px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1rem;

}

.pdp-author-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.pdp-author-date {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
}



/* Variant Selection */

.variant-section {

    margin-bottom: 20px;

    margin-top: 15px;

    padding: 12px;

    background: rgba(255, 255, 255, 0.03);

    border-radius: 8px;

    border: 1px solid rgba(255, 255, 255, 0.05);

}

.variant-label {

    display: block;

    font-size: 0.85rem;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.7);

    margin-bottom: 8px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}

.variant-pills {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}

.variant-pill {

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: #fff;

    padding: 8px 16px;

    border-radius: 20px;

    font-size: 0.85rem;

    font-weight: 500;

    cursor: pointer;

    transition: all 0.2s ease;

    outline: none;

    font-family: inherit;

}

.variant-pill:hover:not(.out-of-stock) {

    border-color: rgba(255, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.1);

    color: #fff;

}

.variant-pill.active {

    background: var(--accent-yellow);

    border-color: var(--accent-yellow);

    color: #000;

    font-weight: 700;

}

.variant-pill.active:hover {

    background: var(--accent-yellow);

    border-color: var(--accent-yellow);

    color: #000;

    filter: brightness(1.1);

}

.variant-pill.out-of-stock {

    opacity: 0.4;

    cursor: not-allowed;

    text-decoration: line-through;

    background: rgba(0, 0, 0, 0.2);

}



.pdp-price-block {

    display: flex;

    align-items: baseline;

    gap: 14px;

    margin-bottom: 10px;

}

.pdp-price-now {

    font-size: 2.8rem;

    font-weight: 900;

    color: #34d399;

}

.pdp-price-was {

    font-size: 1.1rem;

    color: rgba(255, 255, 255, 0.35);

    text-decoration: line-through;

}

.pdp-price-save {

    font-size: 0.8rem;

    font-weight: 700;

    color: #fbbf24;

    background: rgba(251, 191, 36, 0.12);

    padding: 4px 12px;

    border-radius: var(--radius-full);

}



.pdp-trust-row {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;

    margin-bottom: 24px;

}

.pdp-trust-badge {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 0.78rem;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.55);

}

.pdp-trust-badge .icon {

    font-size: 1rem;

}



.pdp-cta-group {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

.pdp-btn-buy {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: linear-gradient(135deg, var(--accent-green), #34d399);

    color: white;

    font-weight: 800;

    font-size: 1.05rem;

    padding: 16px 40px;

    border-radius: var(--radius-full);

    transition: var(--transition);

    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.35);

    border: none;

    cursor: pointer;

}

.pdp-btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.5);
}



.pdp-btn-cart {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: rgba(255, 255, 255, 0.85);

    font-weight: 700;

    font-size: 0.95rem;

    padding: 16px 32px;

    border-radius: var(--radius-full);

    transition: var(--transition);

    cursor: pointer;

}

.pdp-btn-cart:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}



/* Quick Answer Box */

.pdp-quick-answer {

    max-width: 1100px;

    margin: -28px auto 0;

    padding: 0 24px;

    position: relative;

    z-index: 3;

}

.pdp-quick-answer-box {

    background: var(--bg-card);

    border: 1px solid #a7f3d0;

    border-left: 5px solid #10b981;

    border-radius: var(--radius-md);

    padding: 20px 24px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

}

.pdp-quick-answer-box .label {

    font-weight: 800;

    color: #065f46;

    font-size: 0.9rem;

    margin-bottom: 6px;

}

.pdp-quick-answer-box p {

    color: #064e3b;

    font-size: 0.92rem;

    line-height: 1.6;

}



/* Content Tabs */

.pdp-content {

    max-width: 1100px;

    margin: 40px auto 0;

    padding: 0 24px;

}



.pdp-tabs {

    display: flex;

    gap: 4px;

    border-bottom: 2px solid var(--border-light);

    margin-bottom: 32px;

    overflow-x: auto;

}

.pdp-tab {

    padding: 12px 24px;

    font-size: 0.85rem;

    font-weight: 700;

    color: var(--text-muted);

    background: none;

    border: none;

    cursor: pointer;

    border-bottom: 3px solid transparent;

    transition: var(--transition);

    white-space: nowrap;

}

.pdp-tab:hover {
    color: var(--accent-green);
    background: none;
    border-bottom-color: rgba(5, 150, 105, 0.4);
}

.pdp-tab.active {

    color: var(--accent-green);

    border-bottom-color: var(--accent-green);

}



.pdp-tab-panel {

    display: none;

    animation: fadeIn 0.3s ease;

}

.pdp-tab-panel.active {
    display: block;
}



/* Description Content */

.pdp-description {

    max-width: 780px;

}

.pdp-description p {

    font-size: 0.95rem;

    line-height: 1.8;

    color: var(--text-secondary);

    margin-bottom: 18px;

}

.pdp-description h2 {

    font-size: 1.5rem;

    font-weight: 800;

    color: var(--text-primary);

    margin: 36px 0 14px;

}

.pdp-description h3 {

    font-size: 1.2rem;

    font-weight: 700;

    color: var(--text-primary);

    margin: 28px 0 12px;

}

.pdp-description ul {

    padding-left: 22px;

    margin-bottom: 20px;

}

.pdp-description ul li {

    list-style: disc;

    font-size: 0.92rem;

    line-height: 1.8;

    color: var(--text-secondary);

    margin-bottom: 6px;

}

.pdp-description ul li strong {

    color: var(--text-primary);

}



/* Comparison Table */

.pdp-table-wrap {

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    margin-bottom: 28px;

}

.pdp-table {

    width: 100%;

    border-collapse: collapse;

    margin-bottom: 0;

    border-radius: var(--radius-md);

    overflow: hidden;

    border: 1px solid var(--border-light);

    min-width: 480px;

}

.pdp-table thead tr {

    background: var(--bg-dark);

    color: var(--text-white);

}

.pdp-table th {

    padding: 14px 18px;

    font-size: 0.82rem;

    font-weight: 700;

    text-align: left;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}

.pdp-table td {

    padding: 14px 18px;

    font-size: 0.88rem;

    border-bottom: 1px solid var(--border-light);

    color: var(--text-secondary);

}

.pdp-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.pdp-table tbody tr:hover {
    background: #ecfdf5;
}

.pdp-table .highlight {

    font-weight: 700;

    color: var(--accent-green);

}



/* Expert Tip Block */

.pdp-expert-tip {

    background: #fff7ed;

    border-left: 4px solid var(--accent-orange);

    border-radius: 0 var(--radius-md) var(--radius-md) 0;

    padding: 18px 22px;

    margin: 24px 0;

}

.pdp-expert-tip .tip-label {

    font-weight: 800;

    color: #9a3412;

    font-size: 0.9rem;

    margin-bottom: 6px;

}

.pdp-expert-tip p {

    font-size: 0.9rem;

    line-height: 1.7;

    color: #78350f;

    margin: 0;

}



/* FAQ Accordion */

.pdp-faq-item {

    border: 1px solid var(--border-light);

    border-radius: var(--radius-md);

    margin-bottom: 10px;

    overflow: hidden;

    transition: var(--transition);

}

.pdp-faq-item:hover {
    border-color: var(--accent-green);
}

.pdp-faq-q {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 20px;

    font-size: 0.92rem;

    font-weight: 700;

    color: var(--text-primary);

    cursor: pointer;

    background: none;

    border: none;

    width: 100%;

    text-align: left;

    transition: var(--transition);

}

.pdp-faq-q:hover {
    color: var(--accent-green);
}

.pdp-faq-q .arrow {

    font-size: 1.2rem;

    transition: transform 0.3s ease;

    color: var(--text-muted);

}

.pdp-faq-item.open .pdp-faq-q .arrow {
    transform: rotate(180deg);
    color: var(--accent-green);
}

.pdp-faq-a {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease, padding 0.35s ease;

    padding: 0 20px;

}

.pdp-faq-item.open .pdp-faq-a {

    max-height: 300px;

    padding: 0 20px 18px;

}

.pdp-faq-a p {

    font-size: 0.88rem;

    line-height: 1.7;

    color: var(--text-secondary);

}



/* Sticky Product CTA (Mobile) */

.pdp-sticky-cta {

    display: none;

    position: fixed;

    bottom: 0;

    left: 0;

    right: 0;

    background: var(--bg-card);

    border-top: 1px solid var(--border-light);

    padding: 12px 16px;

    z-index: 90;

    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);

}

.pdp-sticky-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 600px;

    margin: 0 auto;

}

.pdp-sticky-price {

    font-size: 1.3rem;

    font-weight: 900;

    color: var(--accent-green);

}

.pdp-sticky-price span {

    font-size: 0.75rem;

    color: var(--text-muted);

    text-decoration: line-through;

    margin-left: 6px;

    font-weight: 500;

}

.pdp-sticky-btn {

    background: linear-gradient(135deg, var(--accent-green), #34d399);

    color: white;

    font-weight: 800;

    font-size: 0.88rem;

    padding: 12px 28px;

    border-radius: var(--radius-full);

    border: none;

    cursor: pointer;

    transition: var(--transition);

}



/* Product Page Responsive */

@media (max-width: 768px) {

    .pdp-hero {
        padding: 24px 16px 40px;
    }

    .pdp-hero-inner {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .pdp-image-wrap {

        max-width: 280px;

        margin: 0 auto;

    }

    .pdp-title {
        font-size: 1.4rem;
        letter-spacing: -0.5px;
    }

    .pdp-price-now {
        font-size: 2rem;
    }

    .pdp-price-was {
        font-size: 0.95rem;
    }

    .pdp-price-save {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .pdp-cta-group {
        flex-direction: column;
    }

    .pdp-btn-buy,
    .pdp-btn-cart {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .pdp-quick-answer {
        margin-top: -20px;
        padding: 0 16px;
    }

    .pdp-quick-answer-box {
        padding: 16px 18px;
    }

    .pdp-quick-answer-box .label {
        font-size: 0.82rem;
    }

    .pdp-quick-answer-box p {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .pdp-content {
        padding: 0 16px;
        margin-top: 24px;
    }

    .pdp-tabs {
        gap: 0;
    }

    .pdp-tab {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    body {
        overflow-x: hidden;
    }

    .pdp-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        min-width: 0;
    }

    .pdp-table thead,
    .pdp-table tbody {
        display: table;
        width: max-content;
        min-width: 100%;
    }

    .pdp-table th,
    .pdp-table td {
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .pdp-sticky-cta {
        display: block;
    }

    .pdp-info {
        text-align: center;
    }

    .pdp-breadcrumb {
        justify-content: center;
    }

    .pdp-author-row {
        justify-content: center;
    }

    .pdp-trust-row {
        justify-content: center;
        gap: 10px;
    }

    .pdp-trust-badge {
        font-size: 0.72rem;
        gap: 4px;
    }

    .pdp-trust-badge .icon {
        font-size: 0.85rem;
    }

    .pdp-price-block {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .pdp-cta-group {
        align-items: center;
    }

    .pdp-category {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .pdp-description h2 {
        font-size: 1.25rem;
        margin: 24px 0 10px;
    }

    .pdp-description h3 {
        font-size: 1.05rem;
        margin: 20px 0 10px;
    }

    .pdp-description p {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .pdp-expert-tip {
        padding: 14px 16px;
    }

    .pdp-expert-tip .tip-label {
        font-size: 0.82rem;
    }

    .pdp-expert-tip p {
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .pdp-faq-q {
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .pdp-faq-a p {
        font-size: 0.82rem;
    }

    .pdp-faq-item.open .pdp-faq-a {
        padding: 0 16px 14px;
    }

    .pdp-discount-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .pdp-author-name {
        font-size: 0.75rem;
    }

    .pdp-author-date {
        font-size: 0.68rem;
    }

    .site-footer {
        padding: 36px 16px 20px;
    }

    .footer-inner {
        gap: 24px;
    }

}



@media (max-width: 380px) {

    .pdp-image-wrap {
        max-width: 220px;
    }

    .pdp-title {
        font-size: 1.2rem;
    }

    .pdp-price-now {
        font-size: 1.7rem;
    }

    .pdp-tab {
        padding: 8px 10px;
        font-size: 0.68rem;
    }

    .pdp-btn-buy {
        font-size: 0.88rem;
        padding: 12px 16px;
    }

    .pdp-btn-cart {
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    .pdp-trust-badge {
        font-size: 0.65rem;
    }

}



/* ============================================

   Blog / Guide Article Styles

   Modern, Premium Layout for Spoke Pages

   ============================================ */



.blog-article-container {

    max-width: 780px;

    margin: 0 auto;

    padding: 40px 20px 60px;

}



/* Category Badge */

.blog-category-badge {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    background: linear-gradient(135deg, #059669, #10b981);

    color: #fff;

    font-size: 0.72rem;

    font-weight: 700;

    padding: 5px 14px;

    border-radius: 20px;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    margin-bottom: 16px;

}



/* Blog Title */

.blog-title {

    font-size: 2.2rem;

    font-weight: 900;

    line-height: 1.25;

    color: var(--text-primary);

    margin-bottom: 20px;

    letter-spacing: -0.5px;

}



/* Author Meta Row */

.blog-meta-row {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 32px;

    padding-bottom: 24px;

    border-bottom: 1px solid var(--border-light);

    flex-wrap: wrap;

}

.blog-author-avatar {

    width: 46px;

    height: 46px;

    background: linear-gradient(135deg, #e0f2fe, #bae6fd);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

    flex-shrink: 0;

}

/* Support both class patterns used in blog pages */

.blog-meta-text,

.author-info {

    display: flex;

    align-items: center;

    gap: 12px;

}

.author-info div {

    display: flex;

    flex-direction: column;

    gap: 1px;

}

.author-info strong {

    font-weight: 700;

    font-size: 0.95rem;

    color: var(--text-primary);

}

.author-info span {

    font-size: 0.78rem;

    color: var(--text-muted);

    font-weight: 500;

}

.blog-author-name {

    font-weight: 700;

    font-size: 0.95rem;

    color: var(--text-primary);

}

.blog-meta-details,

.meta-details {

    font-size: 0.8rem;

    color: var(--text-muted);

    display: flex;

    align-items: center;

    gap: 8px;

    margin-left: auto;

}

.meta-details span {

    font-size: 0.8rem;

    color: var(--text-muted);

}

.blog-meta-details span::before {

    content: "·";

    margin-right: 8px;

}

.blog-meta-details span:first-child::before {

    display: none;

}



/* Featured Image */

.blog-featured-image {

    width: 100%;

    max-width: 100%;

    height: auto;

    border-radius: 16px;

    margin-bottom: 32px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

}



/* Blog Body Content */

.blog-body {

    max-width: 100%;

}

.blog-body p {

    font-size: 1.02rem;

    line-height: 1.85;

    color: var(--text-secondary);

    margin-bottom: 20px;

}

.blog-body h2 {

    font-size: 1.6rem;

    font-weight: 800;

    color: var(--text-primary);

    margin: 40px 0 16px;

    padding-bottom: 10px;

    border-bottom: 2px solid #e2e8f0;

}

.blog-body h3 {

    font-size: 1.2rem;

    font-weight: 700;

    color: var(--text-primary);

    margin: 30px 0 12px;

}

.blog-body ul {

    padding-left: 22px;

    margin-bottom: 22px;

}

.blog-body ul li {

    list-style: disc;

    font-size: 0.98rem;

    line-height: 1.85;

    color: var(--text-secondary);

    margin-bottom: 8px;

}

.blog-body code {

    background: #f1f5f9;

    color: #0f172a;

    padding: 2px 7px;

    border-radius: 4px;

    font-size: 0.88rem;

    font-family: 'Courier New', monospace;

}

.blog-body pre {

    background: #1e293b;

    color: #f8fafc;

    padding: 20px;

    border-radius: 12px;

    font-size: 0.88rem;

    overflow-x: auto;

    margin-bottom: 24px;

    border: 1px solid #334155;

}

.blog-body pre code {

    background: none;

    color: inherit;

    padding: 0;

}

.blog-body a {

    color: #2563eb;

    font-weight: 600;

    text-decoration: underline;

    text-underline-offset: 3px;

}

.blog-body a:hover {

    color: #1d4ed8;

}



/* AI Warning Callout */

.blog-callout-ai {

    background: linear-gradient(135deg, #eff6ff, #dbeafe);

    border-left: 4px solid #3b82f6;

    padding: 20px 24px;

    margin: 28px 0;

    border-radius: 0 12px 12px 0;

}

.blog-callout-ai .callout-title {

    font-weight: 800;

    color: #1e3a8a;

    font-size: 0.95rem;

    margin-bottom: 8px;

}

.blog-callout-ai .callout-text {

    color: #1e40af;

    font-size: 0.9rem;

    line-height: 1.7;

    margin: 0;

}



/* CTA Sales Box */

.blog-cta-box {

    background: linear-gradient(135deg, #ecfdf5, #d1fae5);

    border: 1px solid #a7f3d0;

    padding: 28px;

    border-radius: 16px;

    margin: 44px 0;

}

.blog-cta-box h2 {

    font-size: 1.5rem;

    font-weight: 800;

    color: #065f46;

    margin: 0 0 14px 0;

    padding: 0;

    border: none;

}

.blog-cta-box p {

    color: #064e3b;

    line-height: 1.75;

    margin-bottom: 16px;

    font-size: 0.95rem;

}

.blog-cta-box .cta-button {

    display: inline-block;

    background: linear-gradient(135deg, #059669, #047857);

    color: #fff;

    padding: 14px 28px;

    font-size: 1rem;

    font-weight: 800;

    border-radius: 10px;

    border: none;

    cursor: pointer;

    transition: all 0.3s;

    text-decoration: none;

}

.blog-cta-box .cta-button:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);

    color: #fff;

}



/* Breadcrumb for Blog */

.blog-breadcrumb {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 0.82rem;

    color: var(--text-muted);

    margin-bottom: 20px;

    flex-wrap: wrap;

}

.blog-breadcrumb a {

    color: var(--text-secondary);

    font-weight: 600;

    text-decoration: none;

}

.blog-breadcrumb a:hover {

    color: var(--accent-green);

}

.blog-breadcrumb .separator {

    color: var(--text-muted);

    font-size: 0.7rem;

}



@media (max-width: 640px) {

    .blog-article-container {

        padding: 24px 16px 48px;

    }

    .blog-title {

        font-size: 1.6rem;

    }

    .blog-body h2 {

        font-size: 1.3rem;

    }

    .blog-meta-row {

        gap: 10px;

    }

    .blog-cta-box {

        padding: 20px;

    }

}



/* ============================================

   Homepage Guide Cards (with Thumbnails)

   ============================================ */



.guides-section {

    max-width: 1280px;

    margin: 20px auto 50px;

    padding: 0 24px;

}

.guides-section h2 {

    font-size: 1.6rem;

    font-weight: 900;

    color: var(--text-primary);

    margin-bottom: 24px;

}

.guides-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 20px;

}

.guide-card {

    background: var(--bg-card);

    border: 1px solid var(--border-light);

    border-radius: 14px;

    overflow: hidden;

    transition: all 0.3s ease;

    text-decoration: none;

    display: flex;

    flex-direction: column;

}

.guide-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);

}

.guide-card-thumb {

    width: 100%;

    overflow: hidden;

    background: #f1f5f9;

}

.guide-card-thumb img {

    width: 100%;

    height: auto;

    display: block;

    object-fit: contain;

    transition: transform 0.4s ease;

}

.guide-card:hover .guide-card-thumb img {

    transform: scale(1.05);

}

.guide-card-body {

    padding: 18px 20px 20px;

    display: flex;

    flex-direction: column;

    gap: 8px;

    flex: 1;

}

.guide-card-tag {

    display: inline-block;

    font-size: 0.68rem;

    font-weight: 700;

    padding: 4px 10px;

    border-radius: 20px;

    text-transform: uppercase;

    letter-spacing: 0.3px;

    width: fit-content;

}

.guide-card-tag.red {
    background: #fef2f2;
    color: #dc2626;
}

.guide-card-tag.orange {
    background: #fff7ed;
    color: #ea580c;
}

.guide-card-tag.green {
    background: #f0fdf4;
    color: #16a34a;
}

.guide-card-tag.blue {
    background: #eff6ff;
    color: #2563eb;
}



.guide-card-title {

    font-size: 1rem;

    font-weight: 700;

    color: var(--text-primary);

    line-height: 1.4;

}

.guide-card-desc {

    font-size: 0.82rem;

    color: var(--text-muted);

    line-height: 1.5;

}

.guide-card-read {

    font-size: 0.78rem;

    color: var(--accent-green);

    font-weight: 600;

    margin-top: auto;

}



.guides-view-all {

    text-align: center;

    margin-top: 28px;

    display: none;

}

.guides-view-all a {

    display: inline-block;

    background: var(--bg-dark);

    color: var(--text-white);

    padding: 12px 28px;

    border-radius: 10px;

    font-size: 0.88rem;

    font-weight: 700;

    transition: all 0.3s;

    text-decoration: none;

}

.guides-view-all a:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

.guides-view-all.show {
    display: block;
}

@media (max-width: 640px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    animation: waFloatIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 1.5s;
}

@keyframes waFloatIn {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Pulse ring animation */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* Tooltip label */
.whatsapp-float-label {
    background: #fff;
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        top: 50%;
        bottom: auto;
        left: 18px;
        transform: translateY(-50%);
    }

    .whatsapp-float-btn {
        width: 54px;
        height: 54px;
    }

    .whatsapp-float-btn svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float-label {
        display: none;
    }
}

/* ============================================

   Related Products Section (Money Pages Only)

   ============================================ */

.related-products-section {

    max-width: 900px;

    margin: 50px auto 30px;

    padding: 0 20px;

}

.related-products-heading {

    font-size: 1.5rem;

    font-weight: 800;

    color: var(--text-primary);

    margin-bottom: 20px;

    text-align: center;

}

.related-products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

}

.related-product-card {

    background: var(--bg-card);

    border-radius: var(--radius-md);

    border: 1px solid var(--border-light);

    overflow: hidden;

    text-decoration: none;

    color: inherit;

    transition: transform 0.25s ease, box-shadow 0.25s ease;

    display: flex;

    flex-direction: column;

}

.related-product-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-card-hover);

}

.related-product-img {

    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #f8fafc;

}

.related-product-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}

.related-product-card:hover .related-product-img img {

    transform: scale(1.05);

}

.related-product-badge {

    position: absolute;

    top: 8px;

    right: 8px;

    background: linear-gradient(135deg, #ef4444, #dc2626);

    color: #fff;

    font-size: 0.65rem;

    font-weight: 700;

    padding: 3px 7px;

    border-radius: 4px;

    letter-spacing: 0.3px;

}

.related-product-info {

    padding: 12px 10px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    flex-grow: 1;

}

.related-product-title {

    font-size: 0.82rem;

    font-weight: 700;

    color: var(--text-primary);

    line-height: 1.3;

    margin: 0;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

.related-product-price {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-top: auto;

}

.rp-current {

    font-size: 1rem;

    font-weight: 800;

    color: var(--accent-green);

}

.rp-original {

    font-size: 0.78rem;

    color: var(--text-muted);

    text-decoration: line-through;

}



/* Mobile: 2 columns, show 4 products (2 rows x 2 cols) */

@media (max-width: 768px) {

    .related-products-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

    }

    .related-products-heading {

        font-size: 1.25rem;

    }

    .related-product-info {

        padding: 10px 8px;

    }

    .related-product-title {

        font-size: 0.78rem;

    }

    .rp-current {

        font-size: 0.9rem;

    }

}



/* ============================================

   Variant Selector

   ============================================ */

.pdp-variants {

    display: flex;

    gap: 10px;

    margin-bottom: 20px;

    flex-wrap: wrap;

}

.variant-btn {

    padding: 8px 16px;

    background: #f1f5f9;

    border: 2px solid #e2e8f0;

    border-radius: 30px;

    font-weight: 600;

    color: var(--text-secondary);

    cursor: pointer;

    transition: all 0.2s ease;

    font-size: 0.9rem;

}

.variant-btn:hover {

    border-color: #cbd5e1;

    background: #e2e8f0;

}

.variant-btn.active {

    background: rgba(5, 150, 105, 0.1);

    border-color: var(--accent-green);

    color: var(--accent-green);

}

.variant-btn.active:hover {

    background: rgba(5, 150, 105, 0.18);

    border-color: var(--accent-green);

    color: var(--accent-green);

}


/* ============================================
   Rating & Reviews System
   ============================================ */

/* Rating Display (below product title) */
.pdp-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 16px 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .pdp-rating {
        justify-content: center;
    }
}

.pdp-rating-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.pdp-rating-score {
    font-weight: 700;
    color: #e2e8f0;
}

.pdp-rating-count {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Reviews Section */
.pdp-reviews-section {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.pdp-reviews-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0f172a;
}

.no-reviews {
    color: #64748b;
    font-style: italic;
    padding: 20px 0;
}

/* Individual Review Card */
.review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.review-author {
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-verified {
    color: #059669;
    font-size: 0.75rem;
    background: rgba(5, 150, 105, 0.12);
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.review-date {
    font-size: 0.82rem;
    color: #64748b;
}

.review-stars {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.review-text {
    color: #475569;
    line-height: 1.6;
    font-size: 0.93rem;
}

/* Review Form */
.review-form-box {
    margin-top: 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
}

.review-form-box h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #0f172a;
}

.review-form-note {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 20px;
}

.review-form-box input,
.review-form-box textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: 2px solid #334155;
    border-radius: 10px;
    background: #1e293b;
    color: #f1f5f9;
    font-family: inherit;
    font-size: 0.9rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.review-form-box input:focus,
.review-form-box textarea:focus {
    outline: none;
    border-color: #059669;
    background: #1e293b;
}

.review-form-box textarea {
    min-height: 100px;
    resize: vertical;
}

.review-form-box input::placeholder,
.review-form-box textarea::placeholder {
    color: #94a3b8;
}

/* Star Picker */
#starPicker {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.star-pick {
    font-size: 1.8rem;
    color: #334155;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
}

.star-pick.active {
    color: #fbbf24;
}

.star-pick:hover {
    transform: scale(1.2);
}

/* Submit Button */
.review-submit-btn {
    width: 100%;
    padding: 14px;
    background: #059669;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-submit-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

.review-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Review Message */
.review-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}

.review-msg.success {
    background: rgba(5, 150, 105, 0.15);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.review-msg.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-form-box {
        padding: 20px 16px;
    }
}