/*
Theme Name:  Dayqani Child
Theme URI:   https://dayqani.com
Template:    astra
Description: Dayqani Heavy Equipment – Custom Child Theme (AR/EN, RTL, WooCommerce)
Author:      Dayqani
Version:     1.0.0
Text Domain: dayqani
Tags:        woocommerce, rtl, arabic, heavy-equipment, bilingual
*/

/* ================================================================
   1. CSS VARIABLES — Dayqani Brand Colors
================================================================ */
:root {
    /* ── Dayqani Gold (extracted from official logo) ── */
    --dq-yellow:       #C49A1A;
    --dq-yellow-dark:  #A07D14;
    --dq-yellow-light: #E8BF4D;
    --dq-yellow-bg:    rgba(196,154,26,0.10);

    /* ── Dark Navy (header / footer / stats) ── */
    --dq-navy:         #1C2D6E;
    --dq-navy-light:   #243380;
    --dq-navy-dark:    #131F4E;

    --dq-white:        #FFFFFF;
    --dq-bg:           #F8F9FA;
    --dq-border:       #E5E7EB;
    --dq-text:         #1F2937;
    --dq-muted:        #6B7280;
    --dq-green:        #16A34A;
    --dq-whatsapp:     #25D366;
    --dq-red:          #CC2222;

    --font-main:       'Cairo', 'Tajawal', 'Segoe UI', sans-serif;
    --transition:      all 0.28s ease;
    --shadow-sm:       0 1px 4px rgba(0,0,0,0.07);
    --shadow:          0 2px 12px rgba(0,0,0,0.09);
    --shadow-lg:       0 8px 28px rgba(0,0,0,0.14);
    --radius:          8px;
    --radius-lg:       14px;
    --container:       1280px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--dq-text);
    background: var(--dq-white);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Direction handled by <html dir="rtl/ltr"> from WordPress language_attributes() */
[dir="ltr"] body { direction: ltr; text-align: left; }
[dir="rtl"] body { direction: rtl; text-align: right; }

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dq-navy);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); border: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   3. TOP BAR
================================================================ */
.dq-topbar {
    background: var(--dq-navy-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Country badge (🇸🇦 السعودية) */
.dq-topbar-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    padding-inline-end: 12px;
    border-inline-end: 1px solid rgba(255,255,255,0.15);
}
.dq-topbar-country img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }

.dq-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse; /* RTL: info on right, social on left */
    gap: 16px;
}

.dq-topbar-info { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.dq-topbar-info a { color: rgba(255,255,255,0.8); font-size: 13px; }
.dq-topbar-info a:hover { color: var(--dq-yellow); }
.dq-topbar-info span { display: flex; align-items: center; gap: 6px; }
.dq-topbar-info span svg { width: 14px; height: 14px; fill: var(--dq-yellow); }

.dq-topbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dq-topbar-social a {
    color: rgba(255,255,255,0.7);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}
.dq-topbar-social a:hover {
    color: var(--dq-yellow);
    border-color: var(--dq-yellow);
    background: rgba(196,154,26,0.12);
}
.dq-topbar-social svg { width: 13px; height: 13px; fill: currentColor; }

.dq-lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-inline-start: 12px;
    padding-inline-start: 12px;
    border-inline-start: 1px solid rgba(255,255,255,0.15);
}
.dq-lang-switcher a {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    transition: var(--transition);
}
.dq-lang-switcher a.active,
.dq-lang-switcher a:hover {
    background: var(--dq-yellow);
    color: var(--dq-navy);
}

/* ================================================================
   4. MAIN HEADER
================================================================ */
.dq-header {
    background: var(--dq-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.dq-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.dq-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: var(--container);
    margin: 0 auto;
    gap: 24px;
}

/* Logo */
.dq-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    order: 3;
}

.dq-logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}
.dq-logo-img:hover { opacity: 0.88; }

.dq-logo-text { line-height: 1.15; }
.dq-logo-text .ar {
    font-size: 20px;
    font-weight: 800;
    color: var(--dq-navy);
    display: block;
}
.dq-logo-text .en {
    font-size: 10px;
    font-weight: 700;
    color: var(--dq-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

/* Navigation */
.dq-nav { order: 2; }

.dq-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.dq-nav ul li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dq-text);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}
.dq-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 10px;
    left: 10px;
    height: 2px;
    background: var(--dq-yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.dq-nav ul li a:hover { color: var(--dq-yellow-dark); }
.dq-nav ul li.current-menu-item > a {
    color: var(--dq-yellow-dark);
    font-weight: 700;
}
.dq-nav ul li a:hover::after,
.dq-nav ul li.current-menu-item > a::after { transform: scaleX(1); }

/* Mega dropdown (optional) */
.dq-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    background: var(--dq-white);
    border: 1px solid var(--dq-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 999;
    padding: 8px 0;
}
.dq-nav ul li:hover ul { display: block; }
.dq-nav ul li ul li a { padding: 10px 18px; border-radius: 0; font-size: 13px; }
.dq-nav ul li ul li a::after { display: none; }
.dq-nav ul li ul li a:hover { background: var(--dq-yellow-bg); color: var(--dq-yellow-dark); }

/* Header Actions */
.dq-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 1;
}

.dq-header-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dq-bg);
    color: var(--dq-navy);
    transition: var(--transition);
    border: 1px solid transparent;
}
.dq-header-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.dq-header-btn:hover { background: var(--dq-yellow); color: var(--dq-navy); border-color: var(--dq-yellow); }

.dq-header-btn .dq-count {
    position: absolute;
    top: -2px;
    left: -2px;
    background: var(--dq-yellow);
    color: var(--dq-navy);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dq-white);
}

.dq-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dq-navy);
    color: var(--dq-white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.dq-header-phone:hover { background: var(--dq-yellow); color: var(--dq-navy); }
.dq-header-phone svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Hamburger */
.dq-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    order: 0;
}
.dq-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dq-navy);
    border-radius: 2px;
    transition: var(--transition);
}
.dq-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dq-hamburger.open span:nth-child(2) { opacity: 0; }
.dq-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay Menu */
.dq-mobile-menu {
    display: none;
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    background: var(--dq-navy);
    z-index: 2000;
    flex-direction: column;
    padding: 80px 30px 40px;
    overflow-y: auto;
}
.dq-mobile-menu.open { display: flex; }

.dq-mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.dq-mobile-menu ul li a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--dq-white);
}
.dq-mobile-menu ul li a:hover { color: var(--dq-yellow); padding-right: 10px; }

.dq-mobile-close {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--dq-white);
    background: rgba(255,255,255,0.1);
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ================================================================
   5. HERO SECTION
================================================================ */
.dq-hero {
    position: relative;
    min-height: 580px;
    background: var(--dq-navy);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dq-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center left;
    opacity: 0.45;
}

.dq-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, var(--dq-navy) 45%, rgba(28,45,110,0.4) 100%);
}

.dq-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 580px;
    gap: 40px;
}

.dq-hero-content { padding: 60px 0; }

.dq-hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--dq-white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.dq-hero-content h1 span { color: var(--dq-yellow); display: block; }

.dq-hero-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 440px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.dq-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.dq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-main);
}

.dq-btn-primary {
    background: var(--dq-yellow);
    color: var(--dq-navy);
}
.dq-btn-primary:hover {
    background: var(--dq-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,154,26,0.4);
}

.dq-btn-outline {
    background: transparent;
    color: var(--dq-white);
    border: 2px solid rgba(255,255,255,0.4);
}
.dq-btn-outline:hover {
    border-color: var(--dq-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.dq-btn-navy {
    background: var(--dq-navy);
    color: var(--dq-white);
}
.dq-btn-navy:hover {
    background: var(--dq-navy-light);
    transform: translateY(-2px);
}

.dq-btn-sm { padding: 9px 20px; font-size: 13px; }

.dq-hero-image { display: flex; align-items: center; justify-content: center; }
.dq-hero-image img { max-height: 400px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }

/* ================================================================
   6. FEATURES BAR
================================================================ */
.dq-features-bar {
    background: #252D4A;
    padding: 22px 0;
}

.dq-features-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dq-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.dq-feature-item:hover { background: rgba(255,255,255,0.05); }

.dq-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(196,154,26,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dq-feature-icon svg { width: 22px; height: 22px; fill: var(--dq-yellow); }

.dq-feature-text .title { font-size: 14px; font-weight: 700; color: var(--dq-white); }
.dq-feature-text .desc  { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ================================================================
   7. SECTION COMMONS
================================================================ */
.dq-section { padding: 70px 0; }
.dq-section-alt { background: var(--dq-bg); }

.dq-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.dq-section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dq-yellow);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.dq-section-header .label::before,
.dq-section-header .label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--dq-yellow);
    border-radius: 2px;
}

.dq-section-header h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--dq-navy);
}

.dq-section-header p {
    font-size: 15px;
    color: var(--dq-muted);
    margin-top: 10px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.dq-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border: 2px solid var(--dq-navy);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dq-navy);
    margin-top: 30px;
    transition: var(--transition);
}
.dq-view-all:hover {
    background: var(--dq-navy);
    color: var(--dq-white);
}

/* ================================================================
   8. CATEGORIES GRID
================================================================ */
.dq-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.dq-cat-card {
    background: var(--dq-white);
    border: 1px solid var(--dq-border);
    border-radius: var(--radius-lg);
    padding: 20px 14px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.dq-cat-card:hover {
    border-color: var(--dq-yellow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.dq-cat-card:hover .dq-cat-img { transform: scale(1.06); }

.dq-cat-img-wrap {
    width: 80px; height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--dq-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.dq-cat-img { width: 60px; height: 60px; object-fit: contain; transition: transform 0.3s ease; }

.dq-cat-card .name { font-size: 13px; font-weight: 700; color: var(--dq-navy); margin-bottom: 4px; }
.dq-cat-card .count { font-size: 11px; color: var(--dq-muted); }

/* ================================================================
   9. PRODUCT CARDS — Featured & Archive
================================================================ */
.dq-products-slider { position: relative; }

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

/* Swiper overrides */
.swiper { overflow: hidden; }
.swiper-slide { height: auto; }

.dq-product-card {
    background: var(--dq-white);
    border: 1px solid var(--dq-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.dq-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

/* Product Image */
.dq-product-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--dq-bg);
}
.dq-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.4s ease;
}
.dq-product-card:hover .dq-product-img-wrap img { transform: scale(1.05); }

/* Badges */
.dq-badge-wrap {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.dq-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}
.dq-badge-new     { background: var(--dq-yellow); color: var(--dq-navy); }
.dq-badge-sale    { background: var(--dq-red); color: var(--dq-white); }
.dq-badge-freeship {
    background: var(--dq-green);
    color: var(--dq-white);
    display: flex;
    align-items: center;
    gap: 4px;
}
.dq-badge-freeship svg { width: 11px; height: 11px; fill: currentColor; }

/* Product Body */
.dq-product-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dq-product-body .dq-product-cat {
    font-size: 11px;
    color: var(--dq-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.dq-product-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dq-navy);
    margin-bottom: 10px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.dq-product-body h3 a { color: inherit; }
.dq-product-body h3 a:hover { color: var(--dq-yellow-dark); }

/* Price Block */
.dq-price-block { margin-bottom: 14px; }

.dq-price-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--dq-navy);
    line-height: 1;
}
.dq-price-main .currency { font-size: 13px; font-weight: 600; margin-inline-start: 4px; color: var(--dq-muted); }

.dq-price-old {
    font-size: 13px;
    color: var(--dq-muted);
    text-decoration: line-through;
    margin-inline-start: 8px;
}

.dq-vat-note {
    font-size: 11px;
    color: var(--dq-muted);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dq-vat-note svg { width: 12px; height: 12px; fill: var(--dq-green); }
.dq-vat-note span { color: var(--dq-green); font-weight: 600; }

/* Product Buttons */
.dq-product-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.dq-btn-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--dq-navy);
    color: var(--dq-white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-main);
    border: 2px solid transparent;
}
.dq-btn-details:hover {
    background: transparent;
    border-color: var(--dq-navy);
    color: var(--dq-navy);
}
.dq-btn-details svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.dq-btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--dq-whatsapp);
    color: var(--dq-white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-main);
    border: 2px solid transparent;
}
.dq-btn-whatsapp:hover {
    background: #1EBC58;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
    color: var(--dq-white);
}
.dq-btn-whatsapp svg { width: 16px; height: 16px; fill: currentColor; }

/* ================================================================
   10. SLIDER NAV
================================================================ */
.dq-slider-wrap { position: relative; padding: 0 50px; }

.dq-slider-prev,
.dq-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: var(--dq-white);
    border: 2px solid var(--dq-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.dq-slider-prev:hover,
.dq-slider-next:hover {
    background: var(--dq-yellow);
    border-color: var(--dq-yellow);
    color: var(--dq-navy);
}
.dq-slider-prev { right: 0; }
.dq-slider-next { left: 0; }

.dq-slider-prev svg,
.dq-slider-next svg {
    width: 20px; height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.swiper-pagination { margin-top: 20px; }
.swiper-pagination-bullet { width: 8px; height: 8px; background: var(--dq-border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--dq-yellow); width: 24px; border-radius: 4px; }

/* ================================================================
   11. FREE SHIPPING WIDGET / BANNER
================================================================ */
.dq-freeship-bar {
    background: linear-gradient(135deg, var(--dq-green), #14A347);
    color: var(--dq-white);
    padding: 12px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.dq-freeship-bar svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.dq-freeship-bar .amount { font-weight: 800; font-size: 16px; }

/* Progress Bar */
.dq-freeship-widget { padding: 16px; background: var(--dq-bg); border-radius: var(--radius); margin: 12px 0; }
.dq-freeship-widget .dq-fw-title { font-size: 13px; font-weight: 700; color: var(--dq-navy); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.dq-freeship-widget .dq-fw-title svg { width: 18px; height: 18px; fill: var(--dq-green); }
.dq-freeship-widget .dq-fw-text { font-size: 12px; color: var(--dq-muted); margin-bottom: 8px; }
.dq-freeship-widget .dq-fw-text strong { color: var(--dq-navy); }

.dq-progress-bar-wrap { background: var(--dq-border); border-radius: 6px; height: 8px; overflow: hidden; }
.dq-progress-bar {
    height: 100%;
    background: linear-gradient(to left, var(--dq-green), #4ade80);
    border-radius: 6px;
    transition: width 0.6s ease;
    min-width: 8px;
}

/* Floating free shipping notice */
.dq-freeship-notice {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--dq-green);
    color: var(--dq-white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(22,163,74,0.4);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: slideInRight 0.4s ease;
}
.dq-freeship-notice svg { width: 18px; height: 18px; fill: currentColor; }

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ================================================================
   12. FLOATING WHATSAPP BUTTON
================================================================ */
.dq-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.dq-whatsapp-float .dq-wa-btn {
    width: 58px;
    height: 58px;
    background: var(--dq-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: waPulse 2.5s infinite;
}
.dq-whatsapp-float .dq-wa-btn:hover { transform: scale(1.1); }
.dq-whatsapp-float .dq-wa-btn svg { width: 30px; height: 30px; fill: white; }

@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.dq-wa-tooltip {
    background: var(--dq-navy);
    color: var(--dq-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    display: none;
}
.dq-whatsapp-float:hover .dq-wa-tooltip { display: block; }

/* ================================================================
   13. ABOUT / TRUST SECTION
================================================================ */
.dq-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dq-about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.dq-about-image img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }

.dq-years-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--dq-yellow);
    color: var(--dq-navy);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    text-align: center;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}
.dq-years-badge .num  { font-size: 36px; line-height: 1; display: block; }
.dq-years-badge .text { font-size: 12px; display: block; }

.dq-about-content .label  { color: var(--dq-yellow); font-size: 13px; font-weight: 700; margin-bottom: 12px; display: block; }
.dq-about-content h2  { font-size: 30px; font-weight: 800; margin-bottom: 16px; }
.dq-about-content p   { color: var(--dq-muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }

.dq-about-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }

.dq-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--dq-bg);
    border-radius: var(--radius);
    border-right: 3px solid var(--dq-yellow);
}
.dq-about-feature svg { width: 24px; height: 24px; fill: var(--dq-yellow); flex-shrink: 0; margin-top: 2px; }
.dq-about-feature .af-title { font-size: 14px; font-weight: 700; color: var(--dq-navy); }
.dq-about-feature .af-desc  { font-size: 12px; color: var(--dq-muted); margin-top: 3px; }

/* ================================================================
   14. BRANDS SECTION
================================================================ */
.dq-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.dq-brand-card {
    background: var(--dq-white);
    border: 1px solid var(--dq-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 80px;
}
.dq-brand-card:hover {
    border-color: var(--dq-yellow);
    box-shadow: var(--shadow);
    transform: scale(1.04);
}
.dq-brand-card img { max-height: 40px; object-fit: contain; filter: grayscale(1); transition: var(--transition); }
.dq-brand-card:hover img { filter: grayscale(0); }

/* ================================================================
   15. STATS BAR
================================================================ */
.dq-stats-bar {
    background: var(--dq-navy);
    padding: 50px 0;
}

.dq-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.dq-stat-item { padding: 20px; }

.dq-stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(196,154,26,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.dq-stat-icon svg { width: 26px; height: 26px; fill: var(--dq-yellow); }

.dq-stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--dq-white);
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.dq-stat-num .plus { color: var(--dq-yellow); }
.dq-stat-label { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ================================================================
   16. NEWS & OFFERS
================================================================ */
.dq-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.dq-news-card {
    background: var(--dq-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--dq-border);
    transition: var(--transition);
}
.dq-news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.dq-news-img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.dq-news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dq-news-card:hover .dq-news-img-wrap img { transform: scale(1.06); }

.dq-news-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--dq-yellow);
    color: var(--dq-navy);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 10px;
}

.dq-news-body { padding: 18px; }
.dq-news-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.dq-news-body h3 a:hover { color: var(--dq-yellow-dark); }
.dq-news-body p { font-size: 13px; color: var(--dq-muted); line-height: 1.7; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.dq-news-read-more { font-size: 13px; font-weight: 600; color: var(--dq-navy); display: inline-flex; align-items: center; gap: 4px; }
.dq-news-read-more:hover { color: var(--dq-yellow-dark); gap: 8px; }

/* ================================================================
   17. BREADCRUMBS
================================================================ */
.dq-breadcrumb {
    padding: 12px 0;
    background: var(--dq-bg);
    border-bottom: 1px solid var(--dq-border);
}
.dq-breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dq-muted); }
.dq-breadcrumb a:hover { color: var(--dq-yellow-dark); }
.dq-breadcrumb .sep { color: var(--dq-border); }
.dq-breadcrumb .current { color: var(--dq-text); font-weight: 600; }

/* ================================================================
   18. FOOTER
================================================================ */
.dq-footer {
    background: var(--dq-navy);
    color: rgba(255,255,255,0.75);
    padding-top: 60px;
}

.dq-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dq-footer-brand .dq-logo { margin-bottom: 16px; }
.dq-footer-brand .dq-logo-text .ar { color: var(--dq-white); }
.dq-footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.dq-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.dq-footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.dq-footer-social a:hover { background: var(--dq-yellow); border-color: var(--dq-yellow); color: var(--dq-navy); }
.dq-footer-social svg { width: 15px; height: 15px; fill: currentColor; }

.dq-footer-col h4 { font-size: 15px; font-weight: 700; color: var(--dq-white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.dq-footer-col h4::after { content:''; position:absolute; bottom:0; right:0; width:30px; height:2px; background: var(--dq-yellow); border-radius:2px; }
.dq-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.dq-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.dq-footer-col ul li a:hover { color: var(--dq-yellow); padding-right: 6px; }
.dq-footer-col ul li a svg { width: 14px; height: 14px; fill: var(--dq-yellow); flex-shrink: 0; }

.dq-footer-contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.dq-footer-contact p svg { width: 16px; height: 16px; fill: var(--dq-yellow); flex-shrink: 0; margin-top: 2px; }

.dq-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}
.dq-footer-bottom a { color: rgba(255,255,255,0.5); }
.dq-footer-bottom a:hover { color: var(--dq-yellow); }
.dq-footer-bottom-links { display: flex; gap: 16px; }

/* ================================================================
   19. UTILITY CLASSES
================================================================ */
.dq-text-yellow { color: var(--dq-yellow); }
.dq-text-muted  { color: var(--dq-muted); }
.dq-text-center { text-align: center; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }

/* ================================================================
   20. RESPONSIVE — TABLETS (max 1024px)
================================================================ */
@media (max-width: 1024px) {
    .dq-categories-grid { grid-template-columns: repeat(3, 1fr); }
    .dq-products-grid   { grid-template-columns: repeat(3, 1fr); }
    .dq-brands-grid     { grid-template-columns: repeat(4, 1fr); }
    .dq-footer-grid     { grid-template-columns: 1fr 1fr; gap: 30px; }
    .dq-about           { gap: 30px; }
    .dq-features-bar .container { grid-template-columns: repeat(2, 1fr); }
    .dq-stats-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   21. RESPONSIVE — MOBILE (max 768px)
================================================================ */
@media (max-width: 768px) {
    .dq-topbar   { display: none; }
    .dq-nav      { display: none; }
    .dq-hamburger { display: flex; }
    .dq-header-phone { display: none; }

    .dq-hero .container { grid-template-columns: 1fr; min-height: 420px; }
    .dq-hero-image      { display: none; }
    .dq-hero-content    { padding: 40px 0; text-align: center; }
    .dq-hero-buttons    { justify-content: center; }

    .dq-features-bar .container { grid-template-columns: 1fr 1fr; }

    .dq-categories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .dq-products-grid   { grid-template-columns: repeat(2, 1fr); }
    .dq-brands-grid     { grid-template-columns: repeat(3, 1fr); }
    .dq-news-grid       { grid-template-columns: 1fr; }
    .dq-stats-grid      { grid-template-columns: repeat(2, 1fr); }
    .dq-footer-grid     { grid-template-columns: 1fr; }

    .dq-about           { grid-template-columns: 1fr; }
    .dq-about-image     { display: none; }

    .dq-section { padding: 40px 0; }
    .dq-slider-wrap { padding: 0 36px; }

    .dq-product-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    .dq-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .dq-products-grid   { grid-template-columns: 1fr; }
    .dq-features-bar .container { grid-template-columns: 1fr; }
    .dq-header-inner    { padding: 12px 16px; }
}

/* ================================================================
   22. DAYQANI BRAND — ADDITIONAL DESIGN DETAILS
================================================================ */

/* Header border-bottom gold accent line */
.dq-header::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(to left, var(--dq-yellow), var(--dq-yellow-light), var(--dq-yellow));
}

/* Gold separator for section headers */
.dq-section-header .label::before,
.dq-section-header .label::after {
    background: var(--dq-yellow);
    opacity: 0.6;
}

/* Category card hover — gold border */
.dq-cat-card:hover { border-color: var(--dq-yellow); }
.dq-cat-img-wrap   { background: rgba(196,154,26,0.05); }

/* Product card — gold left border on hover */
.dq-product-card:hover { border-left: 3px solid var(--dq-yellow); }

/* About feature — gold right border */
.dq-about-feature { border-right: 3px solid var(--dq-yellow); }

/* Stats bar — use deeper navy matching logo */
.dq-stats-bar    { background: var(--dq-navy-dark); }
.dq-features-bar { background: var(--dq-navy); }

/* Footer — deeper navy */
.dq-footer { background: var(--dq-navy-dark); }
.dq-topbar  { background: #0F1530; }

/* Footer col h4 underline — gold */
.dq-footer-col h4::after { background: var(--dq-yellow); }

/* Buttons — use gold gradient for primary */
.dq-btn-primary {
    background: linear-gradient(135deg, var(--dq-yellow), var(--dq-yellow-light));
    color: var(--dq-navy-dark);
}
.dq-btn-primary:hover {
    background: linear-gradient(135deg, var(--dq-yellow-dark), var(--dq-yellow));
    box-shadow: 0 6px 20px rgba(196,154,26,0.45);
}

/* Detail + WA buttons inside product card */
.dq-btn-details { background: var(--dq-navy); }
.dq-btn-details:hover { border-color: var(--dq-navy); color: var(--dq-navy); }

/* View all link */
.dq-view-all { border-color: var(--dq-yellow); color: var(--dq-yellow-dark); }
.dq-view-all:hover { background: var(--dq-yellow); color: var(--dq-navy-dark); border-color: var(--dq-yellow); }

/* Badge new — gold */
.dq-badge-new { background: var(--dq-yellow); color: var(--dq-navy-dark); font-weight: 800; }

/* Slider pagination dots */
.swiper-pagination-bullet-active { background: var(--dq-yellow); }

/* Header phone button */
.dq-header-phone        { background: var(--dq-navy); }
.dq-header-phone:hover  { background: var(--dq-yellow); color: var(--dq-navy-dark); }

/* Scroll-to-top button (added by some themes) */
.scroll-to-top, #scroll-to-top {
    background: var(--dq-yellow) !important;
    color: var(--dq-navy-dark) !important;
}

/* WooCommerce quantity +/- buttons gold on focus */
.woocommerce .quantity .qty:focus {
    border-color: var(--dq-yellow);
    box-shadow: 0 0 0 3px rgba(196,154,26,0.2);
}

/* Search bar */
.dq-search-bar {
    background: var(--dq-bg);
    padding: 12px 0;
    border-top: 1px solid var(--dq-border);
    border-bottom: 3px solid var(--dq-yellow);
}
.dq-search-bar input[type="search"] {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--dq-border);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}
.dq-search-bar input[type="search"]:focus {
    border-color: var(--dq-yellow);
    box-shadow: 0 0 0 3px rgba(196,154,26,0.15);
}

/* ================================================================
   23. NEW HEADER LAYOUT — logo + nav + actions
================================================================ */
.dq-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
}

/* ── Logo ── */
.dq-logo-wrap { flex-shrink: 0; }
.dq-logo-link { display: flex; align-items: center; text-decoration: none; }

.dq-logo-img {
    height: 58px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s ease;
}
.dq-logo-img:hover { opacity: 0.85; }

.dq-logo-fallback { line-height: 1.15; }
.dq-logo-fallback .dq-logo-ar { display: block; font-size: 22px; font-weight: 800; color: var(--dq-navy); }
.dq-logo-fallback .dq-logo-en { display: block; font-size: 10px; font-weight: 700; color: var(--dq-yellow); letter-spacing: 3px; }

/* ── Nav ── */
.dq-nav { flex: 1; }
.dq-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0; padding: 0; list-style: none;
}
.dq-nav-list > li > a {
    display: block;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dq-text);
    border-radius: var(--radius);
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.dq-nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    inset-inline: 12px;
    height: 2px;
    background: var(--dq-yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.dq-nav-list > li > a:hover,
.dq-nav-list > li.current-menu-item > a,
.dq-nav-list > li.current-menu-parent > a { color: var(--dq-yellow-dark); font-weight: 700; }
.dq-nav-list > li > a:hover::after,
.dq-nav-list > li.current-menu-item > a::after,
.dq-nav-list > li.current-menu-parent > a::after { transform: scaleX(1); }

/* ── Topbar end (social + lang) ── */
.dq-topbar-end {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Mobile Menu (full redesign) ── */
.dq-mobile-menu {
    position: fixed;
    top: 0; bottom: 0;
    width: min(320px, 85vw);
    background: var(--dq-navy);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

/* RTL: slide from right */
[dir="rtl"] .dq-mobile-menu { right: 0; transform: translateX(100%); }
[dir="rtl"] .dq-mobile-menu.open { transform: translateX(0); }

/* LTR: slide from left */
[dir="ltr"] .dq-mobile-menu { left: 0; transform: translateX(-100%); }
[dir="ltr"] .dq-mobile-menu.open { transform: translateX(0); }

.dq-mobile-menu[aria-hidden="false"],
.dq-mobile-menu.open { transform: translateX(0) !important; }

.dq-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.dq-mobile-close {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}
.dq-mobile-close:hover { background: rgba(255,255,255,0.2); }
.dq-mobile-close svg { width: 18px; height: 18px; }

.dq-mobile-nav-list { padding: 12px 0; flex: 1; }
.dq-mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.dq-mobile-nav-list li a {
    display: flex;
    align-items: center;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    transition: all 0.2s;
    gap: 10px;
}
.dq-mobile-nav-list li a:hover,
.dq-mobile-nav-list li.current-menu-item > a {
    color: var(--dq-yellow);
    background: rgba(196,154,26,0.08);
    padding-inline-start: 28px;
}

.dq-mobile-phone, .dq-mobile-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    margin: 4px 16px;
    border-radius: var(--radius);
}
.dq-mobile-phone { color: white; background: rgba(255,255,255,0.08); }
.dq-mobile-phone:hover { background: rgba(255,255,255,0.14); color: white; }
.dq-mobile-wa   { color: white; background: var(--dq-whatsapp); margin-top: 8px; }
.dq-mobile-wa:hover { background: #1EBC58; color: white; }
.dq-mobile-phone svg,
.dq-mobile-wa svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* Backdrop */
.dq-mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1999;
    backdrop-filter: blur(2px);
}
.dq-mobile-backdrop.open { display: block; }

/* ================================================================
   24. RTL ↔ LTR DIRECTION FLIPS
================================================================ */

/* --- HEADER --- */
/* RTL default: logo right, actions left */
[dir="rtl"] .dq-logo-wrap    { order: 3; }
[dir="rtl"] .dq-nav          { order: 2; }
[dir="rtl"] .dq-header-actions { order: 1; }

/* LTR flip: logo left, actions right */
[dir="ltr"] .dq-logo-wrap    { order: 1; }
[dir="ltr"] .dq-nav          { order: 2; }
[dir="ltr"] .dq-header-actions { order: 3; }

/* Cart count badge */
[dir="rtl"] .dq-count { right: auto; left: -2px; }
[dir="ltr"] .dq-count { left: auto; right: -2px; }

/* --- TOPBAR --- */
[dir="rtl"] .dq-topbar .container { flex-direction: row; }
[dir="ltr"] .dq-topbar .container { flex-direction: row-reverse; }

/* --- FOOTER COLUMN HEADING underline --- */
[dir="rtl"] .dq-footer-col h4::after { right: 0; left: auto; }
[dir="ltr"] .dq-footer-col h4::after { left: 0; right: auto; }

/* --- ABOUT FEATURE border --- */
[dir="rtl"] .dq-about-feature { border-right: 3px solid var(--dq-yellow); border-left: none; }
[dir="ltr"] .dq-about-feature { border-left: 3px solid var(--dq-yellow); border-right: none; }

/* --- SLIDER arrows --- */
[dir="rtl"] .dq-slider-prev { right: 0; left: auto; }
[dir="rtl"] .dq-slider-next { left: 0; right: auto; }
[dir="ltr"] .dq-slider-prev { left: 0; right: auto; }
[dir="ltr"] .dq-slider-next { right: 0; left: auto; }

/* --- FREE SHIPPING NOTICE --- */
[dir="rtl"] .dq-freeship-notice { right: 20px; left: auto; }
[dir="ltr"] .dq-freeship-notice { left: 20px; right: auto; }

/* --- WHATSAPP FLOAT --- */
[dir="rtl"] .dq-whatsapp-float { right: 24px; left: auto; }
[dir="ltr"] .dq-whatsapp-float { left: 24px; right: auto; }

/* --- BADGE WRAP --- */
[dir="rtl"] .dq-badge-wrap { right: 10px; left: auto; }
[dir="ltr"] .dq-badge-wrap { left: 10px; right: auto; }

/* --- YEARS BADGE --- */
[dir="rtl"] .dq-years-badge { right: auto; left: 24px; }
[dir="ltr"] .dq-years-badge { left: auto; right: 24px; }

/* --- NEWS READ MORE arrow --- */
[dir="ltr"] .dq-news-read-more svg { transform: scaleX(-1); }

/* --- LTR Font: English doesn't need Arabic fonts --- */
[dir="ltr"] body { font-family: 'Segoe UI', 'Roboto', Arial, sans-serif; }

/* ================================================================
   25. RESPONSIVE — HEADER (mobile)
================================================================ */
@media (max-width: 768px) {
    .dq-topbar          { display: none; }
    .dq-nav             { display: none; }
    .dq-header-phone    { display: none; }
    .dq-hamburger       { display: flex; }
    .dq-header-inner    { padding: 10px 16px; }
    .dq-logo-img        { height: 46px; }
}
