/*
Theme Name: Tawfera Child
Theme URI: https://tawfera.com
Description: Blocksy child theme for Tawfera — retail + wholesale storefront. Gold identity, IBM Plex Sans Arabic, RTL-first.
Author: Tawfera
Author URI: https://tawfera.com
Template: blocksy
Version: 1.0.0
Text Domain: tawfera-child
*/

:root {
  --tawfera-gold: #f59e0b;
  --tawfera-gold-dark: #d97706;
  --tawfera-gold-light: #fef3c7;
  --tawfera-ink: #030712;
  --tawfera-mute: #6b7280;
  --tawfera-line: #e5e7eb;
}

/* Global fonts */
html, body,
input, textarea, select, button,
.entry-content, .ct-header, .ct-footer {
  font-family: "IBM Plex Sans Arabic", "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.ct-header h1, .ct-header h2, .ct-header h3 {
  font-family: "Playfair Display", "IBM Plex Sans Arabic", serif !important;
  font-weight: 700;
}

/* Buttons + primary accents */
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.ct-button {
  background-color: var(--tawfera-gold) !important;
  color: var(--tawfera-ink) !important;
  border-color: var(--tawfera-gold) !important;
  font-weight: 600;
}

.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.ct-button:hover {
  background-color: var(--tawfera-gold-dark) !important;
  border-color: var(--tawfera-gold-dark) !important;
}

/* Price + sale colors */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--tawfera-gold-dark);
  font-weight: 700;
}

.woocommerce span.onsale {
  background-color: var(--tawfera-gold) !important;
  color: var(--tawfera-ink) !important;
  border-radius: 999px;
  font-weight: 700;
}

/* Header logo max-height (matches gold rectangular logo aspect) */
.ct-header [data-id="logo"] img,
.wp-custom-logo img {
  max-height: 56px !important;
  width: auto !important;
  object-fit: contain;
}

/* Hero video helper */
.tawfera-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 24px;
  background: #0a0a0a;
}
.tawfera-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.tawfera-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 96px 24px;
}
.tawfera-hero-content h1 {
  color: var(--tawfera-gold);
  font-size: clamp(2rem, 4vw, 3.75rem);
  margin: 0 0 16px;
}
.tawfera-hero-content p {
  color: #f9fafb;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.tawfera-hero-cta {
  display: inline-flex;
  gap: 12px;
}
.tawfera-hero-cta a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease;
}
.tawfera-hero-cta a:hover { transform: translateY(-2px); }
.tawfera-hero-cta .primary { background: var(--tawfera-gold); color: var(--tawfera-ink); }
.tawfera-hero-cta .secondary { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.32); }

/* RTL polish */
html[dir="rtl"] .tawfera-hero-content { direction: rtl; }

/* Tabs: retail vs wholesale */
.tawfera-tier-tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--tawfera-gold-light);
  border-radius: 999px;
  gap: 4px;
}
.tawfera-tier-tabs a {
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--tawfera-ink);
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease;
}
.tawfera-tier-tabs a.active,
.tawfera-tier-tabs a:hover {
  background: var(--tawfera-gold);
  color: var(--tawfera-ink);
}

/* ==== Original Tawfera Landing CSS ==== */

        :root {
            --primary: #030712;
            --secondary: #0f172a;
            --tertiary: #1e293b;
            --accent: #f59e0b;
            --accent-light: #fbbf24;
            --accent-dark: #d97706;
            --success: #10b981;
            --danger: #ef4444;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
            --glow: 0 0 40px rgba(245, 158, 11, 0.4);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'IBM Plex Sans Arabic', sans-serif; background: var(--primary); color: var(--text-primary); overflow-x: hidden; line-height: 1.7; }
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--secondary); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

        /* Toast Notification */
        .toast-notification { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--gradient-gold); color: var(--primary); padding: 16px 28px; border-radius: 16px; font-weight: 600; font-size: 14px; box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4); z-index: 9999; opacity: 0; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); text-align: center; max-width: 90%; display: flex; align-items: center; gap: 12px; }
        .toast-notification.show { opacity: 1; transform: translateX(-50%) translateY(0); }
        .toast-notification i { font-size: 20px; }
        .toast-notification .toast-text { display: flex; flex-direction: column; gap: 2px; }
        .toast-notification .toast-title { font-size: 15px; font-weight: 700; }
        .toast-notification .toast-subtitle { font-size: 12px; font-weight: 500; opacity: 0.9; }

        .top-banner { background: var(--gradient-gold); color: var(--primary); text-align: center; padding: 10px 20px; font-weight: 600; font-size: 13px; }
        .top-banner i { margin-left: 6px; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

        header { position: fixed; top: 38px; left: 0; right: 0; z-index: 1000; background: rgba(3, 7, 18, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s; }
        header.scrolled { top: 0; background: rgba(3, 7, 18, 0.98); }
        nav { max-width: 1400px; margin: 0 auto; padding: 14px 40px; display: flex; justify-content: space-between; align-items: center; }

        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-icon { width: 48px; height: 48px; background: var(--gradient-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: var(--glow); overflow: hidden; padding: 6px; }
        .logo-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
        .logo-content { display: flex; flex-direction: column; }
        .logo-text { font-size: 22px; font-weight: 700; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
        .logo-slogan { font-size: 9px; font-weight: 500; background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 0.5px; }

        .nav-links { display: flex; gap: 32px; list-style: none; }
        .nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.3s; }
        .nav-links a:hover { color: var(--accent); }

        .mobile-menu-btn { display: none; background: none; border: none; color: var(--text-primary); font-size: 22px; cursor: pointer; }
        .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(3, 7, 18, 0.98); z-index: 2000; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
        .mobile-menu.active { display: flex; }
        .mobile-menu-close { position: absolute; top: 20px; left: 20px; background: none; border: none; color: var(--text-primary); font-size: 28px; cursor: pointer; }
        .mobile-menu a { color: var(--text-primary); text-decoration: none; font-size: 22px; font-weight: 600; display: flex; align-items: center; gap: 12px; transition: all 0.3s; }
        .mobile-menu a:hover { color: var(--accent); }
        .mobile-menu a i { color: var(--accent); font-size: 20px; }

        .hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 90px; }
        .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%); }
        .hero-bg .hero-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; object-fit: cover; opacity: 1; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(3, 7, 18, 0.75) 0%, rgba(3, 7, 18, 0.5) 50%, rgba(3, 7, 18, 0.7) 100%); z-index: 1; }
        .hero-glow { position: absolute; top: 20%; right: 5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%); z-index: 2; filter: blur(80px); }
        .hero-content { position: relative; z-index: 3; max-width: 1400px; margin: 0 auto; padding: 0 40px; width: 100%; display: flex; justify-content: center; }
        .hero-inner { max-width: 650px; text-align: center; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.4); padding: 8px 18px; border-radius: 100px; font-size: 13px; color: var(--accent); margin-bottom: 28px; font-weight: 500; }
        .hero h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 700; line-height: 1.15; margin-bottom: 24px; }
        .hero h1 .line { display: inline; }
        .hero h1 .line-2 { margin-top: 8px; }
        .hero h1 .gold { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero p { font-size: 17px; color: var(--text-secondary); max-width: 480px; margin: 0 auto 36px; line-height: 1.8; }
        .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

        .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; font-family: inherit; }
        .btn-primary { background: var(--gradient-gold); color: var(--primary); box-shadow: var(--glow); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5); }
        .btn-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text-primary); border: 1px solid rgba(255, 255, 255, 0.1); }
        .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--accent); }

        .hero-stats { display: flex; gap: 40px; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.08); justify-content: center; }
        .stat-item { text-align: center; }
        .stat-number { font-size: 32px; font-weight: 700; color: var(--accent); }
        .stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

        section { padding: 80px 40px; }
        .section-inner { max-width: 1400px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 700; margin-bottom: 12px; }
        .section-desc { color: var(--text-secondary); font-size: 15px; }

        .account-features { background: var(--secondary); }
        .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .feature-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 28px 20px; text-align: center; transition: all 0.3s; }
        .feature-card:hover { transform: translateY(-5px); border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.05); }
        .feature-icon { width: 52px; height: 52px; background: var(--gradient-gold); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 16px; }
        .feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
        .feature-card p { color: var(--text-secondary); font-size: 13px; }

        .wholesale { background: linear-gradient(135deg, var(--primary) 0%, rgba(245, 158, 11, 0.1) 100%); border-top: 1px solid rgba(245, 158, 11, 0.2); border-bottom: 1px solid rgba(245, 158, 11, 0.2); }
        .wholesale-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .wholesale-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 20px; }
        .wholesale-text h2 span { color: var(--accent); }
        .wholesale-text p { color: var(--text-secondary); font-size: 16px; margin-bottom: 28px; line-height: 1.8; }
        .wholesale-benefits { list-style: none; }
        .wholesale-benefits li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 15px; }
        .wholesale-benefits li i { color: var(--success); font-size: 18px; }
        .wholesale-card { background: var(--secondary); border: 2px solid var(--accent); border-radius: 24px; padding: 40px; text-align: center; box-shadow: var(--glow); }
        .wholesale-card .badge { background: var(--gradient-gold); color: var(--primary); padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; }
        .wholesale-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
        .wholesale-card .min-qty { font-size: 48px; font-weight: 700; color: var(--accent); margin: 20px 0; }
        .wholesale-card .min-qty span { font-size: 18px; color: var(--text-secondary); }
        .wholesale-card p { color: var(--text-secondary); font-size: 14px; }

        .products-section { background: var(--primary); }
        .category-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
        .category-tab { background: var(--secondary); border: 2px solid rgba(255, 255, 255, 0.15); color: #fff; padding: 12px 24px; border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
        .category-tab i { font-size: 16px; }
        .category-tab:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); }
        .category-tab.active { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }
        .category-tab[data-cat="all"] { background: linear-gradient(135deg, #f59e0b, #d97706); border-color: #f59e0b; }
        .category-tab[data-cat="electronics"] { background: linear-gradient(135deg, #3b82f6, #1d4ed8); border-color: #3b82f6; }
        .category-tab[data-cat="beauty"] { background: linear-gradient(135deg, #ec4899, #be185d); border-color: #ec4899; }
        .category-tab[data-cat="home"] { background: linear-gradient(135deg, #10b981, #047857); border-color: #10b981; }
        .category-tab[data-cat="fashion"] { background: linear-gradient(135deg, #8b5cf6, #6d28d9); border-color: #8b5cf6; }
        .category-tab[data-cat="sports"] { background: linear-gradient(135deg, #ef4444, #b91c1c); border-color: #ef4444; }
        .category-tab[data-cat="kids"] { background: linear-gradient(135deg, #f97316, #c2410c); border-color: #f97316; }
        .category-tab[data-cat="accessories"] { background: linear-gradient(135deg, #14b8a6, #0f766e); border-color: #14b8a6; }
        .category-tab.active { box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5); }
        .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
        .product-card { background: var(--secondary); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
        .product-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
        .product-img { position: relative; height: 180px; background: #fff; overflow: hidden; }
        .product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform 0.4s; }
        .product-card:hover .product-img img { transform: scale(1.05); }
        .product-badge { position: absolute; top: 10px; right: 10px; background: var(--danger); color: white; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 600; }
        .product-stock { position: absolute; bottom: 10px; left: 10px; background: rgba(0, 0, 0, 0.8); color: var(--success); padding: 3px 8px; border-radius: 6px; font-size: 10px; display: flex; align-items: center; gap: 4px; }
        .product-bestseller { position: absolute; top: 10px; left: 10px; background: var(--success); color: white; padding: 3px 8px; border-radius: 6px; font-size: 9px; font-weight: 600; }
        .product-info { padding: 14px; }
        .product-name { font-size: 13px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; height: 36px; overflow: hidden; }
        .product-prices { display: flex; flex-direction: column; gap: 4px; }
        .price-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
        .price-label { color: var(--text-secondary); }
        .price-original { text-decoration: line-through; color: var(--text-secondary); }
        .price-sale { color: var(--danger); font-weight: 700; font-size: 14px; }
        .price-wholesale { background: rgba(16, 185, 129, 0.1); color: var(--success); padding: 3px 6px; border-radius: 4px; font-weight: 600; }
        .load-more-btn { display: block; margin: 40px auto 0; background: var(--secondary); border: 1px solid var(--accent); color: var(--accent); padding: 14px 40px; border-radius: 12px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .load-more-btn:hover { background: var(--accent); color: var(--primary); }

        .categories-section { background: var(--secondary); }
        .categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
        .category-card { position: relative; aspect-ratio: 1; border-radius: 14px; overflow: hidden; cursor: pointer; }
        .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .category-card:hover img { transform: scale(1.1); }
        .category-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%); z-index: 1; }
        .category-card span { position: absolute; bottom: 12px; right: 12px; left: 12px; z-index: 2; font-weight: 600; font-size: 12px; }

        .warehouses { background: var(--primary); }
        .warehouses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .warehouse-country { background: var(--secondary); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 28px; transition: all 0.3s; }
        .warehouse-country:hover { border-color: var(--accent); transform: translateY(-5px); }
        .country-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
        .country-flag { font-size: 36px; }
        .country-info h3 { font-size: 18px; font-weight: 700; }
        .country-info p { font-size: 12px; color: var(--text-secondary); }
        .warehouse-list { list-style: none; }
        .warehouse-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
        .warehouse-item:last-child { border-bottom: none; }
        .warehouse-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent); animation: dotGlow 2s infinite; }
        @keyframes dotGlow { 0%, 100% { box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent); } 50% { box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent), 0 0 60px var(--accent); } }
        .warehouse-name { font-size: 14px; font-weight: 500; }
        .warehouse-count { margin-top: 16px; text-align: center; background: rgba(245, 158, 11, 0.1); padding: 10px; border-radius: 10px; color: var(--accent); font-weight: 600; font-size: 13px; }

        .contact { background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%); }
        .contact-box { max-width: 600px; margin: 0 auto; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 24px; padding: 40px; }
        .contact-box h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; text-align: center; }
        .contact-box > p { color: var(--text-secondary); font-size: 14px; text-align: center; margin-bottom: 32px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; color: var(--text-primary); text-align: right; }
        .phone-input { display: flex; gap: 12px; }
        .country-select { width: 180px; background: var(--tertiary); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 14px 12px; color: var(--text-primary); font-family: inherit; font-size: 13px; cursor: pointer; }
        .country-select:focus { outline: none; border-color: var(--accent); }
        .phone-number { flex: 1; background: var(--tertiary); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 14px 16px; color: var(--text-primary); font-family: inherit; font-size: 14px; text-align: left; direction: ltr; }
        .phone-number:focus { outline: none; border-color: var(--accent); }
        .form-input { width: 100%; background: var(--tertiary); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 14px 16px; color: var(--text-primary); font-family: inherit; font-size: 14px; }
        .form-input:focus { outline: none; border-color: var(--accent); }

        .budget-group { margin-bottom: 24px; }
        .budget-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
        .budget-header label { margin: 0; font-size: 13px; font-weight: 500; color: var(--text-primary); }
        .budget-value { font-size: 16px; font-weight: 700; color: var(--accent); }
        .budget-slider { width: 100%; height: 8px; border-radius: 4px; background: var(--tertiary); outline: none; -webkit-appearance: none; appearance: none; cursor: pointer; }
        .budget-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--gradient-gold); cursor: pointer; box-shadow: var(--glow); transition: transform 0.2s; }
        .budget-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
        .budget-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--gradient-gold); cursor: pointer; border: none; box-shadow: var(--glow); }
        .budget-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 10px; color: var(--text-secondary); }

        .categories-checkboxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .checkbox-item { display: flex; align-items: center; gap: 10px; background: var(--tertiary); padding: 12px 14px; border-radius: 10px; cursor: pointer; transition: all 0.3s; border: 1px solid rgba(255, 255, 255, 0.05); }
        .checkbox-item:hover { border-color: var(--accent); background: rgba(245, 158, 11, 0.1); }
        .checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
        .checkbox-item span { font-size: 13px; color: var(--text-primary); }
        .checkbox-item:has(input:checked) { border-color: var(--accent); background: rgba(245, 158, 11, 0.15); }
        #supplierFields { animation: fadeIn 0.3s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
        #supplierFields .form-group { margin-bottom: 20px; }
        #supplierFields label i { margin-left: 8px; color: var(--accent); }

        .submit-btn { width: 100%; background: var(--gradient-gold); color: var(--primary); border: none; border-radius: 12px; padding: 16px; font-family: inherit; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .submit-btn:hover { transform: translateY(-2px); box-shadow: var(--glow); }
        .submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
        .form-note { text-align: center; margin-top: 16px; font-size: 12px; color: var(--text-secondary); }
        .success-message { display: none; text-align: center; padding: 40px; }
        .success-message.active { display: block; }
        .success-message i { font-size: 60px; color: var(--success); margin-bottom: 20px; }
        .success-message h4 { font-size: 22px; margin-bottom: 10px; }
        .success-message p { color: var(--text-secondary); }

        footer { background: var(--primary); padding: 50px 40px 24px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
        .footer-content { max-width: 1400px; margin: 0 auto; }
        .footer-main { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 24px; }
        .footer-brand p { color: var(--text-secondary); margin-top: 12px; font-size: 13px; max-width: 280px; }
        .social-links { display: flex; gap: 10px; }
        .social-links a { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; transition: transform 0.3s; text-decoration: none; cursor: pointer; }
        .social-links a:hover { transform: translateY(-3px); }
        .social-links .facebook { background: #1877f2; }
        .social-links .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .social-links .whatsapp { background: #25d366; }
        .social-links .tiktok { background: #010101; border: 1px solid rgba(255,255,255,0.1); }
        .social-links .twitter { background: #010101; border: 1px solid rgba(255,255,255,0.1); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); flex-wrap: wrap; gap: 16px; }
        .footer-bottom p { color: var(--text-secondary); font-size: 12px; }
        .nasey-brand { display: flex; align-items: center; gap: 10px; background: #fff; padding: 8px 14px; border-radius: 8px; }
        .nasey-brand span { color: #1e293b; font-size: 11px; font-weight: 500; }
        .nasey-brand img { height: 24px; }

        @media (max-width: 1200px) { .features-grid { grid-template-columns: repeat(2, 1fr); } .categories-grid { grid-template-columns: repeat(4, 1fr); } .warehouses-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 900px) { .wholesale-content { grid-template-columns: 1fr; gap: 40px; } .categories-grid { grid-template-columns: repeat(3, 1fr); } .warehouses-grid { grid-template-columns: 1fr; } }
        @media (max-width: 768px) { section { padding: 60px 20px; } nav { padding: 12px 20px; } .nav-links { display: none; } .mobile-menu-btn { display: block; } .hero { padding-top: 80px; } .hero-content { padding: 0 20px; justify-content: center; } .hero-inner { margin: 0 auto; text-align: center; } .hero-badge { justify-content: center; } .hero h1 { font-size: 32px; } .hero p { margin-left: auto; margin-right: auto; } .hero-btns { justify-content: center; } .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; } .stat-number { font-size: 26px; } .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .feature-card { padding: 20px 14px; } .feature-icon { width: 44px; height: 44px; font-size: 18px; } .feature-card h3 { font-size: 14px; } .feature-card p { font-size: 11px; } .wholesale-card { padding: 28px; } .wholesale-card .min-qty { font-size: 36px; } .products-grid { grid-template-columns: repeat(2, 1fr); } .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .contact-box { padding: 28px 20px; } footer { padding: 40px 20px 20px; } .footer-main { flex-direction: column; text-align: center; } .footer-brand p { max-width: 100%; } .footer-bottom { flex-direction: column; text-align: center; } .logo-slogan { font-size: 8px; } .logo-icon { width: 42px; height: 42px; padding: 4px; } }
        @media (max-width: 480px) { .hero-btns { flex-direction: column; } .btn { width: 100%; justify-content: center; } .phone-input { flex-direction: column; } .country-select { width: 100%; } .category-tabs { gap: 8px; } .category-tab { padding: 10px 16px; font-size: 12px; } .category-tab i { font-size: 14px; } .categories-checkboxes { grid-template-columns: 1fr; } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        .hero-inner { animation: fadeInUp 0.8s ease; }
        .animate { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
        .animate.visible { opacity: 1; transform: translateY(0); }
    
/* ==== Hide Blocksy page title + hero on front page ==== */
body.home .page-title,
body.home .entry-header,
body.home .ct-hero,
body.home .ct-hero-section,
body.home [data-prefix="single_page"] .entry-header,
body.tawfera-front .page-title,
body.tawfera-front .entry-header,
body.tawfera-front .ct-hero,
body.tawfera-front .ct-hero-section { display: none !important; }

/* Make homepage full-width (raw landing HTML expects full width) */
body.home .entry-content,
body.tawfera-front .entry-content { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
body.home article.post,
body.home .single_page_container,
body.tawfera-front .single_page_container { max-width: 100% !important; padding: 0 !important; }
body.home .ct-container,
body.tawfera-front .ct-container { max-width: 100% !important; padding: 0 !important; }


/* On homepage, hide Blocksy header/footer entirely — the ported landing has its own hero+nav */
body.home #header,
body.home header[data-device="desktop"],
body.home header[data-device="mobile"],
body.home .ct-header,
body.home footer#footer,
body.home .ct-footer { display: none !important; }
body.tawfera-front #header,
body.tawfera-front header,
body.tawfera-front .ct-header,
body.tawfera-front footer#footer,
body.tawfera-front .ct-footer { display: none !important; }

