/* ============================================================
   ASHTIRAK PRO — MAIN STYLESHEET  v2.0.0
   RTL-first · White/Light Theme · WooCommerce Override
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
    --color-primary:       #2563eb;
    --color-primary-dark:  #1d4ed8;
    --color-primary-light: #dbeafe;

    --color-accent:        #f59e0b;
    --color-accent-dark:   #d97706;

    --color-whatsapp:      #25d366;
    --color-whatsapp-dark: #128c7e;

    --color-success:       #10b981;
    --color-sale:          #dc2626;
    --color-red:           #ef4444;

    --color-bg:            #ffffff;
    --color-bg-alt:        #f8fafc;
    --color-bg-dark:       #0f172a;

    --color-text:          #0f172a;
    --color-text-muted:    #64748b;
    --color-text-light:    #94a3b8;

    --color-border:        #e2e8f0;
    --color-border-dark:   #cbd5e1;

    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   18px;
    --radius-xl:   24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.12);

    --font-arabic: 'Cairo', 'Almarai', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;

    --transition:      0.2s ease;
    --transition-slow: 0.35s ease;

    --container-max: 1200px;
    --container-pad: 1.25rem;

    --header-h: 70px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-arabic);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
strong { font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* ============================================================
   3. SKIP LINK & SCREEN READER
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--color-primary);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    transition: top var(--transition);
}
.skip-link:focus { top: .5rem; }

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* ============================================================
   4. CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}
.btn:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; }
.btn svg { flex-shrink: 0; }

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,.35);
}

.btn--whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    border-color: var(--color-whatsapp);
}
.btn--whatsapp:hover {
    background: var(--color-whatsapp-dark);
    border-color: var(--color-whatsapp-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,211,102,.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
}

.btn--full { width: 100%; }
.btn--lg   { padding: .85rem 2rem; font-size: 1.05rem; }
.btn--xl   { padding: 1rem 2.5rem; font-size: 1.125rem; border-radius: var(--radius-lg); }

/* ============================================================
   6. HEADER  — desktop layout
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: var(--header-h);
}

/* Logo */
.site-logo,
.site-logo:hover { text-decoration: none; color: var(--color-text); }

.logo-text {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary);
}
.logo-icon { color: var(--color-primary); flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }

/* Primary navigation — desktop: centred between logo and CTA */
.main-navigation { margin-right: auto; margin-left: auto; }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu li { position: relative; }
.nav-menu a {
    display: block;
    padding: .5rem .875rem;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

/* WhatsApp header CTA — desktop only */
.header-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Hamburger — DESKTOP: completely hidden */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.menu-toggle:hover {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}
.hamburger-icon span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #fefce8 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -10%; left: -5%;
    width: 40%; height: 120%;
    background: radial-gradient(circle at center, rgba(37,99,235,.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; right: -5%;
    width: 30%; height: 80%;
    background: radial-gradient(circle at center, rgba(245,158,11,.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: .375rem 1rem;
    border-radius: var(--radius-full);
    font-size: .8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.3); opacity: .7; }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-title--accent {
    color: var(--color-primary);
    position: relative;
}

.hero-desc {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}
.stat-item { text-align: center; }
.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: .8125rem;
    color: var(--color-text-muted);
    margin-top: .25rem;
}
.stat-divider { width: 1px; height: 40px; background: var(--color-border); }

.hero-image { position: relative; }
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at center, rgba(37,99,235,.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-image-wrapper img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}
.hero-image-badge {
    position: absolute;
    z-index: 2;
    background: #fff;
    border-radius: var(--radius-full);
    padding: .5rem 1rem;
    font-size: .8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .375rem;
    box-shadow: var(--shadow-md);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.hero-image-badge svg { color: var(--color-success); }
.hero-image-badge--top    { top: 10%;    left: -5%; }
.hero-image-badge--bottom { bottom: 10%; right: -5%; }

/* ============================================================
   8. TRUST BAR
   ============================================================ */
.trust-bar { background: var(--color-primary); padding: 1rem 0; }
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: .75rem;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: .625rem;
    color: rgba(255,255,255,.9);
    font-size: .9375rem;
    font-weight: 500;
}
.trust-bar-item svg { color: #fff; flex-shrink: 0; }

/* ============================================================
   9. SECTION COMMON
   ============================================================ */
.section { padding: 5rem 0; }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.section-tag {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .25rem .875rem;
    border-radius: var(--radius-full);
    margin-bottom: .875rem;
}
.section-title {
    margin-bottom: .875rem;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 2.5rem; }

.features-section,
.faq-section { background: var(--color-bg-alt); }

/* ============================================================
   10. PRODUCT CARDS
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card__image-link {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.product-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__no-image {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

.product-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 2;
    padding: .25rem .75rem;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1.4;
}
.product-badge--sale { background: var(--color-sale); color: #fff; }
.product-badge--new  { background: var(--color-success); color: #fff; }
.product-badge--lg   { font-size: .875rem; padding: .375rem 1rem; }

.product-card__body {
    padding: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: .625rem;
    flex: 1;
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 2px;
}
.star { color: #d4d4d4; font-size: .875rem; }
.star--filled { color: var(--color-accent); }
.rating-count { font-size: .75rem; color: var(--color-text-muted); margin-right: .25rem; }

.product-card__title {
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}
.product-card__title a { color: var(--color-text); }
.product-card__title a:hover { color: var(--color-primary); }

.product-card__price   { margin-top: auto; }
.product-card__actions { margin-top: auto; }

/* ============================================================
   11. WOOCOMMERCE OVERRIDES
   ============================================================ */

/* Price */
.woocommerce-Price-amount,
.price bdi,
.price .amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
}
.price del .woocommerce-Price-amount,
.price del .amount {
    font-size: .875rem;
    font-weight: 400;
    color: var(--color-text-light);
}
.price ins { text-decoration: none; }
.price del { text-decoration: line-through; color: var(--color-text-light); }
ins .woocommerce-Price-amount { color: var(--color-sale) !important; }
.woocommerce-currency-symbol { font-size: .875em; }

/* Hide quantity everywhere */
.woocommerce div.product form.cart .quantity,
.quantity,
.woocommerce-grouped-product-list-item__quantity { display: none !important; }

/* Add-to-cart button */
.woocommerce .single_add_to_cart_button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: var(--color-primary) !important;
    color: #fff !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: var(--radius-md) !important;
    font-family: var(--font-arabic) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: .8rem 1.75rem !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-align: center;
    line-height: 1.4;
    box-shadow: none !important;
    cursor: pointer;
    transition: all var(--transition) !important;
}
.woocommerce .single_add_to_cart_button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
    background: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,.3) !important;
}
.woocommerce .single_add_to_cart_button.loading::after { display: none !important; }

.woocommerce div.product form.cart {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce div.product form.cart .button { margin-top: 0 !important; }

/* Forms */
.woocommerce .form-row input.input-text,
.woocommerce .form-row textarea,
.woocommerce .form-row select {
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-sm) !important;
    padding: .625rem .875rem !important;
    font-family: var(--font-arabic) !important;
    color: var(--color-text) !important;
    background: #fff !important;
    transition: border-color var(--transition) !important;
}
.woocommerce .form-row input.input-text:focus {
    border-color: var(--color-primary) !important;
    outline: none !important;
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border: none !important;
    border-radius: var(--radius-md) !important;
    padding: 1rem 1.25rem !important;
    font-family: var(--font-arabic) !important;
    margin-bottom: 1.5rem !important;
}
.woocommerce-message { background: #d1fae5 !important; color: #065f46 !important; }
.woocommerce-info    { background: #dbeafe !important; color: #1e40af !important; }
.woocommerce-error   { background: #fee2e2 !important; color: #991b1b !important; }
.woocommerce-message::before,
.woocommerce-info::before { display: none !important; }

/* Sorting */
.woocommerce-ordering select {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: .5rem .875rem;
    font-family: var(--font-arabic);
    font-size: .875rem;
    background: #fff;
    color: var(--color-text);
    cursor: pointer;
}
.woocommerce-ordering select:focus {
    border-color: var(--color-primary);
    outline: none;
}

/* Star rating */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before { color: var(--color-accent) !important; }

/* Hide WC native tabs/breadcrumb/title */
.woocommerce-tabs .tabs { display: none; }
.woocommerce div.product div.summary .product_title { display: none; }
.woocommerce-breadcrumb { display: none !important; }

/* Product loop grid */
.woocommerce ul.products,
.products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    transition: all var(--transition);
    display: flex !important;
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: auto !important;
}
.woocommerce ul.products li.product:hover {
    border-color: var(--color-primary) !important;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link { display: block !important; }
.woocommerce ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1.125rem 1.125rem .5rem !important;
    font-size: .9375rem !important;
    font-weight: 600 !important;
    color: var(--color-text) !important;
}
.woocommerce ul.products li.product .price {
    padding: 0 1.125rem .5rem !important;
    display: block;
}
.woocommerce ul.products li.product .button {
    margin: .5rem 1.125rem 1.125rem !important;
    display: block !important;
    width: calc(100% - 2.25rem) !important;
}

/* ============================================================
   12. FEATURES SECTION
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.feature-card__icon {
    width: 64px; height: 64px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.feature-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .75rem; }
.feature-card__desc  { font-size: .9375rem; color: var(--color-text-muted); margin: 0; }

/* ============================================================
   13. CHANNELS SECTION
   ============================================================ */
.channels-tabs { max-width: 900px; margin: 0 auto; }

.channels-tab-buttons {
    display: flex;
    gap: .5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: .375rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.tab-btn {
    flex: 1;
    min-width: max-content;
    padding: .625rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: transparent;
    transition: all var(--transition);
    cursor: pointer;
}
.tab-btn--active,
.tab-btn:hover { background: var(--color-primary); color: #fff; }

.channels-tab-content { display: none; }
.channels-tab-content.tab-content--active { display: block; }

.channels-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.channel-info-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.channel-info-card__title { font-size: 1.0625rem; margin-bottom: .875rem; color: var(--color-primary); }
.channel-info-card p { font-size: .9375rem; color: var(--color-text-muted); margin-bottom: 1rem; }

.channel-list { display: flex; flex-direction: column; gap: .5rem; }
.channel-list li {
    font-size: .875rem;
    color: var(--color-text-muted);
    padding-right: 1rem;
    position: relative;
}
.channel-list li::before { content: '•'; position: absolute; right: 0; color: var(--color-primary); }

.features-check-list { display: flex; flex-direction: column; gap: .625rem; }
.features-check-list li { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; }
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: .7rem;
    flex-shrink: 0;
    font-weight: 700;
}

/* ============================================================
   14. DEVICES SECTION
   ============================================================ */
.devices-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.devices-content { order: 2; }
.devices-content p { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: 1.0625rem; }

.devices-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
}
.device-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: .5rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}
.device-item svg { color: var(--color-primary); }

.devices-image { order: 1; display: flex; justify-content: center; }
.mockup-tv { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.mockup-tv__screen {
    width: 320px;
    aspect-ratio: 16/10;
    background: var(--color-text);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 8px solid var(--color-text);
    box-shadow: var(--shadow-xl);
}
.mockup-screen-content {
    background: linear-gradient(135deg, #1a237e, #283593);
    width: 100%; height: 100%;
    padding: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mockup-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .375rem;
    width: 100%;
}
.mockup-channel-item {
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    aspect-ratio: 16/9;
    animation: channel-pulse 2s ease-in-out infinite alternate;
}
@keyframes channel-pulse {
    from { background: rgba(255,255,255,.05); }
    to   { background: rgba(255,255,255,.18); }
}
.mockup-tv__stand { width: 3px; height: 24px; background: var(--color-text-muted); }

/* ============================================================
   15. COUNTRIES SECTION
   ============================================================ */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem .75rem;
    text-align: center;
    transition: all var(--transition);
}
.country-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.country-flag { font-size: 1.75rem; line-height: 1; }
.country-name { font-size: .875rem; font-weight: 600; }
.country-keyword { font-size: .7rem; color: var(--color-text-light); display: none; }

/* ============================================================
   16. FAQ SECTION
   ============================================================ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--color-primary); }

.faq-question {
    width: 100%;
    text-align: right;
    padding: 1.125rem 1.375rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover,
.faq-question--open { color: var(--color-primary); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-question--open .faq-icon { transform: rotate(180deg); }

.faq-answer { display: none; }
.faq-answer--open { display: block; }
.faq-answer__inner {
    padding: 1rem 1.375rem 1.25rem;
    font-size: .9375rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    border-top: 1px solid var(--color-border);
}

/* ============================================================
   17. CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.cta-title { color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.cta-desc  { color: rgba(255,255,255,.85); font-size: 1.0625rem; margin-bottom: 2.5rem; }
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.cta-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,.7);
    font-size: .875rem;
}

/* ============================================================
   18. BREADCRUMB BAR
   ============================================================ */
.breadcrumb-bar {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: .625rem 0;
    box-shadow: inset 0 3px 6px -4px rgba(0,0,0,.07);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .25rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #64748b;
    font-size: .8125rem;
    font-weight: 500;
    text-decoration: none;
    padding: .3rem .6rem;
    border-radius: 6px;
    transition: background .15s, color .15s;
}
.breadcrumb a:hover { background: #dbeafe; color: #2563eb; }
.breadcrumb a svg { flex-shrink: 0; opacity: .7; }
.breadcrumb-sep {
    display: inline-flex;
    align-items: center;
    color: #cbd5e1;
    flex-shrink: 0;
    margin: 0 .05rem;
}
.breadcrumb-sep svg { display: block; }
.breadcrumb-current {
    font-size: .8125rem;
    font-weight: 600;
    color: #2563eb;
    padding: .3rem .6rem;
    background: #dbeafe;
    border-radius: 6px;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   19. SHOP PAGE
   ============================================================ */
.shop-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid var(--color-border);
}
.shop-hero__title { margin-bottom: .75rem; }
.shop-hero__desc { color: var(--color-text-muted); margin-bottom: 1.25rem; font-size: .9375rem; }
.shop-hero-inner { display: flex; flex-direction: column; gap: .5rem; }

.shop-hero .breadcrumb a { color: #475569; }
.shop-hero .breadcrumb a:hover { background: rgba(37,99,235,.08); color: #2563eb; }
.shop-hero .breadcrumb-sep { color: #94a3b8; }
.shop-hero .breadcrumb-current { color: #1d4ed8; background: rgba(37,99,235,.1); }

.shop-layout { padding: 3rem 0; }

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}
.woocommerce-result-count {
    font-size: .9375rem;
    color: var(--color-text-muted);
    margin: 0;
}
.shop-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.no-products { text-align: center; padding: 4rem 2rem; color: var(--color-text-muted); }
.no-products svg { margin: 0 auto 1.5rem; color: var(--color-text-light); }
.no-products h2 { font-size: 1.5rem; margin-bottom: .75rem; color: var(--color-text); }
.no-products p  { margin-bottom: 1.5rem; }

/* SEO content block */
.shop-seo-content {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0;
}
.seo-content-inner h2 { font-size: 1.375rem; margin-bottom: 1.5rem; }
.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.seo-content-grid h3 { font-size: 1.0625rem; margin-bottom: .875rem; color: var(--color-primary); }
.seo-content-grid p  { font-size: .9375rem; color: var(--color-text-muted); }
.seo-content-grid ul { display: flex; flex-direction: column; gap: .5rem; }
.seo-content-grid li {
    font-size: .9375rem;
    color: var(--color-text-muted);
    padding-right: 1.25rem;
    position: relative;
}
.seo-content-grid li::before { content: '•'; position: absolute; right: 0; color: var(--color-primary); }

/* ============================================================
   20. SINGLE PRODUCT PAGE
   ============================================================ */
/* main starts at header bottom — breadcrumb-bar is the first child, no top padding */
.single-product-main { padding: 0 0 4rem; }

.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.gallery-main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
}
.gallery-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    display: block;
}
.gallery-no-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}
.gallery-thumbs {
    display: flex;
    gap: .625rem;
    margin-top: .875rem;
    flex-wrap: wrap;
}
.gallery-thumb {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: border-color var(--transition);
    padding: 0;
}
.gallery-thumb:hover,
.gallery-thumb--active { border-color: var(--color-primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-trust-mini {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.trust-mini-item {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .8125rem;
    color: var(--color-text-muted);
}
.trust-mini-item svg { color: var(--color-primary); flex-shrink: 0; }

.single-product-summary { display: flex; flex-direction: column; gap: 1.25rem; }
.product-title { font-size: clamp(1.375rem, 3vw, 2rem); margin-bottom: .25rem; }

.product-rating { display: flex; align-items: center; gap: .25rem; }
.rating-text { font-size: .875rem; color: var(--color-text-muted); margin-right: .5rem; }

.product-price-wrapper .price { font-size: 1.5rem; font-weight: 800; }
.product-price-wrapper ins .woocommerce-Price-amount { color: var(--color-sale) !important; }

.product-features-list { display: flex; flex-direction: column; gap: .5rem; }
.product-features-list li { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; }
.feature-icon { color: var(--color-success); font-weight: 700; }

.trust-badges {
    display: flex;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--color-text-muted);
}
.trust-badge svg { color: var(--color-primary); }

/* Product tabs */
.single-product-tabs { margin-bottom: 3rem; }

.product-tabs-nav {
    display: flex;
    gap: .375rem;
    border-bottom: 2px solid var(--color-border);
}
.product-tab-btn {
    padding: .75rem 1.375rem;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--transition);
}
.product-tab-btn:hover { color: var(--color-primary); }
.product-tab-btn--active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.product-tabs-content {
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 2rem;
}
.product-tab-panel { display: none; }
.product-tab-panel--active { display: block; }
.product-tab-panel h2 { font-size: 1.125rem; margin-bottom: 1rem; }
.product-tab-panel p,
.product-tab-panel li { color: var(--color-text-muted); font-size: .9375rem; }

.related-products { padding-top: 2rem; }
.related-products .section-title { margin-bottom: 2rem; }

/* ============================================================
   21. PAGINATION
   ============================================================ */
.pagination,
.woocommerce-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    flex-wrap: wrap;
}
.page-numbers,
.woocommerce-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    font-size: .9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    background: #fff;
    transition: all var(--transition);
}
.page-numbers:hover,
.woocommerce-pagination .page-numbers:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-light);
}
.page-numbers.current,
.woocommerce-pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* ============================================================
   22. FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,.75);
}
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-logo .logo-icon { color: var(--color-primary); }

.footer-desc {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .75rem; }
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.1);
    transition: all var(--transition);
}
.social-link:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.social-link--whatsapp:hover { background: var(--color-whatsapp); border-color: var(--color-whatsapp); }

.footer-heading { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }

.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .9rem;
    color: rgba(255,255,255,.55);
}
.footer-contact svg { color: var(--color-whatsapp); flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: #fff; }

.footer-trust { display: flex; flex-direction: column; gap: .5rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.55); }
.trust-item svg { color: var(--color-success); flex-shrink: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.copyright { font-size: .875rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-nav { display: flex; gap: 1.5rem; }
.footer-bottom-nav a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom-nav a:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   23. WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 900;
    width: 58px; height: 58px;
    background: var(--color-whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: all var(--transition);
    animation: float-in 0.5s ease 1s both;
}
@keyframes float-in {
    from { transform: scale(0) rotate(-180deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg);    opacity: 1; }
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.4);
    animation: whatsapp-ring 2.5s ease-in-out infinite;
}
@keyframes whatsapp-ring {
    0%, 100% { transform: scale(1);   opacity: .5; }
    50%       { transform: scale(1.2); opacity: 0;  }
}

/* ============================================================
   24. BLOG / POSTS
   ============================================================ */
.page-content { padding: 3rem 0; }
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.post-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--color-primary); }
.post-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body  { padding: 1.25rem; }
.post-card__title { font-size: 1.0625rem; margin-bottom: .75rem; }
.post-card__title a { color: var(--color-text); }
.post-card__title a:hover { color: var(--color-primary); }
.post-card__excerpt { font-size: .9375rem; color: var(--color-text-muted); margin-bottom: 1rem; }

.entry-content { max-width: 740px; margin: 0 auto; }
.entry-content p,
.entry-content li { font-size: 1.0625rem; line-height: 1.8; color: var(--color-text); }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content ul, .entry-content ol { padding-right: 1.5rem; margin-bottom: 1.5rem; }
.entry-content li { list-style: disc; margin-bottom: .375rem; }
.entry-content a { color: var(--color-primary); text-decoration: underline; }
.entry-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }
.entry-content blockquote {
    border-right: 4px solid var(--color-primary);
    padding-right: 1.5rem;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    font-style: italic;
}

/* 404 */
.error-404-content {
    text-align: center;
    padding: 6rem 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.error-404-content h1 { font-size: 6rem; color: var(--color-primary); line-height: 1; }
.error-404-content h2 { margin-bottom: 1rem; }
.error-404-content p  { color: var(--color-text-muted); margin-bottom: 2rem; }

/* ============================================================
   25. ADMIN BAR OFFSET
   ============================================================ */
@media screen and (max-width: 782px) {
    body.admin-bar .site-header { top: 46px; }
}
@media screen and (min-width: 783px) {
    body.admin-bar .site-header { top: 32px; }
}

/* ============================================================
   26. RESPONSIVE — TABLET  (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root { --container-pad: 1.5rem; }

    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-image { display: none; }
    .hero-title { font-size: 2.25rem; }

    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .woocommerce ul.products,
    .products.columns-4 { grid-template-columns: repeat(3, 1fr) !important; }

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

    .channels-info-grid { grid-template-columns: 1fr; }

    .devices-inner { grid-template-columns: 1fr; gap: 3rem; }
    .devices-image  { display: none; }
    .devices-content { order: 1; }

    .countries-grid { grid-template-columns: repeat(4, 1fr); }

    .single-product-layout { grid-template-columns: 1fr; gap: 2.5rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-col--about { grid-column: 1 / -1; }

    .seo-content-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   27. RESPONSIVE — MOBILE  (max-width: 768px)

   HAMBURGER RULES:
     • position:fixed — always relative to viewport, ignores RTL/flex/containment
     • left:16px      — physical left edge of screen, RTL-immune
     • top:15px       — (70px header − 40px button) / 2
     • z-index:9999   — above everything

   WHATSAPP HEADER CTA:
     • display:none !important — completely gone on mobile
   ============================================================ */
@media (max-width: 768px) {
    :root { --container-pad: 1rem; }

    /* ── HAMBURGER: physical top-left corner of viewport ── */
    .menu-toggle {
        display: flex;
        position: fixed;
        left: 16px;
        top: 15px;
        z-index: 9999;
        /* keep button styled: background + border already set above */
    }
    body.admin-bar .menu-toggle { top: 61px; } /* 46px admin-bar + 15px */

    /* ── WHATSAPP HEADER CTA: completely hidden on mobile ── */
    .header-cta { display: none !important; }

    /* ── NAV: slide-down panel ── */
    .main-navigation {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--color-border);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 9998;
        margin: 0;
    }
    .main-navigation.is-open { display: block; }
    .nav-menu { flex-direction: column; gap: .25rem; }
    .nav-menu a { padding: .75rem 1rem; font-size: 1rem; }

    /* Hero */
    .hero { padding: 3rem 0 2.5rem; }
    .hero-title { font-size: 1.875rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 1rem; }

    /* Trust bar */
    .trust-bar-inner {
        justify-content: flex-start;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: .25rem;
    }
    .trust-bar-inner::-webkit-scrollbar { display: none; }

    /* Products */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .woocommerce ul.products,
    .products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Features */
    .features-grid { grid-template-columns: 1fr; }

    /* Channels */
    .channels-tab-buttons { flex-direction: column; }
    .tab-btn { text-align: center; }

    /* Countries */
    .countries-grid { grid-template-columns: repeat(3, 1fr); }

    /* CTA */
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
    .cta-trust { gap: .875rem; font-size: .8125rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-col--about { grid-column: auto; }
    .footer-top { padding: 3rem 0 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    /* WhatsApp float */
    .whatsapp-float { left: 1rem; bottom: 1rem; width: 50px; height: 50px; }

    /* Product card */
    .product-card__title { font-size: .875rem; }

    /* Shop toolbar */
    .shop-toolbar { flex-direction: column; align-items: flex-start; }

    /* Breadcrumb small adjustments */
    .breadcrumb-current { max-width: 130px; font-size: .75rem; }
    .breadcrumb a { font-size: .75rem; padding: .25rem .4rem; }
    .breadcrumb-sep svg { width: 10px; height: 10px; }
}

/* ============================================================
   28. RESPONSIVE — SMALL MOBILE  (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-title { font-size: 1.625rem; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: .875rem; }
    .woocommerce ul.products,
    .products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: .875rem !important;
    }

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

    .hero-stats { flex-direction: column; gap: .75rem; }
    .stat-divider { display: none; }

    .trust-badges { gap: .75rem; }

    .posts-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   29. PRINT
   ============================================================ */
@media print {
    .site-header, .site-footer, .whatsapp-float { display: none !important; }
    body { background: #fff; color: #000; }
}
