/*
Theme Name: TabDr
Theme URI: https://tabdr.in
Author: TabDr Team
Author URI: https://tabdr.in
Description: TabDr. — Parachute-fast online pharmacy WordPress theme. Orange-red brand palette with yellow accents. Features prescription refills, live tracking, smart filters, PCI-DSS compliance, SMS alerts, Google Maps integration and full patient journey design.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tabdr
Tags: e-commerce, pharmacy, delivery, health, orange, responsive, woocommerce
*/

/* =============================================
   TABDR. BRAND PALETTE
   Tab = #F5C518 (golden yellow)
   Dr. = #111111 (deep black)
   BG  = #E8350A (vivid orange-red)
   ============================================= */
:root {
  --orange:       #E8350A;
  --orange-deep:  #C42A06;
  --orange-light: #FF5722;
  --orange-pale:  #FFF0EB;
  --orange-mist:  #FFD5C8;
  --yellow:       #F5C518;
  --yellow-deep:  #D4A800;
  --yellow-pale:  #FFFBEA;
  --yellow-mist:  #FFE97A;
  --black:        #111111;
  --black-mid:    #222222;
  --gray-900:     #1A1A1A;
  --gray-800:     #2D2D2D;
  --gray-600:     #555555;
  --gray-400:     #888888;
  --gray-200:     #DDDDDD;
  --gray-100:     #F2F2F2;
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --green:        #16A34A;
  --green-pale:   #DCFCE7;
  --red:          #DC2626;
  --red-pale:     #FEE2E2;
  --shadow-sm:    0 2px 8px rgba(232,53,10,0.10);
  --shadow-md:    0 6px 24px rgba(232,53,10,0.14);
  --shadow-lg:    0 16px 48px rgba(232,53,10,0.18);
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    28px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* =============================================
   UTILITIES
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); border: none;
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800;
  transition: all 0.25s ease; white-space: nowrap; letter-spacing: 0.2px;
}
.btn-orange { background: var(--orange); color: white; box-shadow: 0 6px 20px rgba(232,53,10,0.35); }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,53,10,0.42); color: white; }
.btn-yellow { background: var(--yellow); color: var(--black); box-shadow: 0 6px 20px rgba(245,197,24,0.40); }
.btn-yellow:hover { background: var(--yellow-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange-mist); }
.btn-outline:hover { background: var(--orange-pale); border-color: var(--orange); }
.btn-dark { background: var(--black); color: white; }
.btn-dark:hover { background: var(--gray-800); transform: translateY(-2px); color: white; }
.btn-white { background: white; color: var(--orange); font-weight: 800; }
.btn-white:hover { background: var(--yellow-pale); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; border-radius: 12px; }

.eyebrow { display: block; font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: var(--gray-900); line-height: 1.18; }
.section-title em { font-style: italic; color: var(--orange); }
.section-sub { font-size: 15px; color: var(--gray-600); line-height: 1.75; max-width: 560px; margin-top: 14px; font-weight: 600; }

/* =============================================
   TABDR LOGO
   ============================================= */
.tabdr-logo {
  display: flex; align-items: center; gap: 0;
  font-family: 'Nunito', sans-serif; font-size: 26px; font-weight: 900; line-height: 1;
  background: var(--orange); padding: 8px 14px; border-radius: 12px;
}
.logo-tab { color: var(--yellow); }
.logo-dr  { color: var(--black); }
.logo-chute { font-size: 22px; margin-left: 4px; animation: floatDown 3s ease-in-out infinite; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar { background: var(--black); padding: 8px 0; font-size: 12px; color: rgba(255,255,255,0.70); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar a { color: rgba(255,255,255,0.70); transition: color 0.2s; }
.topbar a:hover { color: var(--yellow); }
.ssl-pill { background: rgba(22,163,74,0.25); color: #4ADE80; padding: 2px 10px; border-radius: 20px; font-size: 10px; font-weight: 800; display: flex; align-items: center; gap: 4px; }
.pci-pill { background: rgba(245,197,24,0.18); color: var(--yellow); padding: 2px 10px; border-radius: 20px; font-size: 10px; font-weight: 800; display: flex; align-items: center; gap: 4px; }

/* =============================================
   SITE HEADER
   ============================================= */
.site-header { position: sticky; top: 0; z-index: 200; background: white; border-bottom: 2px solid var(--gray-100); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 40px; gap: 18px; }

.nav-search { flex: 1; max-width: 480px; display: flex; align-items: center; background: var(--gray-100); border: 2px solid var(--gray-200); border-radius: 50px; padding: 9px 16px; gap: 10px; transition: all 0.25s; }
.nav-search:focus-within { border-color: var(--orange); background: white; box-shadow: 0 0 0 3px rgba(232,53,10,0.10); }
.nav-search input { flex: 1; background: none; border: none; outline: none; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 600; color: var(--gray-900); }
.nav-search input::placeholder { color: var(--gray-400); font-weight: 500; }
.search-filters { display: flex; gap: 5px; }
.filter-pill { background: var(--orange-pale); color: var(--orange); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 20px; border: none; cursor: pointer; transition: all 0.2s; }
.filter-pill.active, .filter-pill:hover { background: var(--orange); color: white; }
.search-btn-icon { background: var(--orange); color: white; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: background 0.2s; }
.search-btn-icon:hover { background: var(--orange-deep); }

.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-icon-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; background: none; border: none; padding: 8px 11px; border-radius: var(--radius); color: var(--gray-600); font-size: 10px; font-weight: 800; transition: all 0.2s; cursor: pointer; position: relative; min-width: 44px; min-height: 44px; }
.nav-icon-btn:hover { background: var(--orange-pale); color: var(--orange); }
.nav-icon-btn .icon { font-size: 20px; }
.nav-badge { position: absolute; top: 4px; right: 6px; background: var(--orange); color: white; width: 16px; height: 16px; border-radius: 50%; font-size: 9px; font-weight: 800; display: flex; align-items: center; justify-content: center; }

.click-to-call { display: flex; align-items: center; gap: 8px; background: var(--orange); color: white; padding: 11px 20px; border-radius: 50px; border: none; font-size: 13px; font-weight: 800; transition: all 0.25s; min-height: 44px; }
.click-to-call:hover { background: var(--orange-deep); transform: scale(1.03); }

.main-nav { border-top: 1px solid var(--gray-100); background: white; }
.main-nav .container { display: flex; align-items: center; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.main-nav .container::-webkit-scrollbar { display: none; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 11px 15px; font-size: 13px; font-weight: 700; color: var(--gray-600); border-bottom: 3px solid transparent; transition: all 0.2s; white-space: nowrap; }
.nav-link:hover { color: var(--orange); border-bottom-color: var(--orange-mist); }
.nav-link.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-link.rx-link { color: var(--red) !important; font-weight: 800 !important; }
.nav-link.rx-link:hover { border-bottom-color: var(--red) !important; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; display: inline-block; }

/* =============================================
   HERO
   ============================================= */
.hero { background: var(--orange); padding: 70px 0 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(245,197,24,0.12) 0%, transparent 40%); pointer-events: none; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: flex-end; position: relative; z-index: 1; }
.hero-content { padding-bottom: 70px; animation: fadeUp 0.8s ease both; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badge { display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.92); font-size: 11px; font-weight: 800; padding: 6px 14px; border-radius: 50px; }

.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 62px); font-weight: 700; line-height: 1.08; color: white; margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--yellow); display: block; }
.hero-sub { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.82); max-width: 460px; margin-bottom: 36px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 700; }

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; animation: fadeUp 0.8s 0.15s ease both; }
.hero-parachute-wrap { position: relative; width: 100%; display: flex; justify-content: center; align-items: flex-end; }
.parachute-scene { width: 340px; position: relative; }

.chute-top { width: 200px; height: 110px; margin: 0 auto; background: conic-gradient(var(--yellow) 0deg 60deg, var(--red, #DC2626) 60deg 120deg, var(--yellow) 120deg 180deg, var(--red, #DC2626) 180deg 240deg, var(--yellow) 240deg 300deg, var(--red, #DC2626) 300deg 360deg); border-radius: 100% 100% 0 0; box-shadow: 0 8px 30px rgba(0,0,0,0.25); animation: sway 4s ease-in-out infinite; }
.chute-strings { width: 160px; height: 60px; margin: -2px auto 0; position: relative; }
.chute-strings::before, .chute-strings::after { content: ''; position: absolute; top: 0; width: 1.5px; height: 100%; background: rgba(0,0,0,0.35); transform-origin: top center; }
.chute-strings::before { left: 30px; transform: rotate(15deg); }
.chute-strings::after { right: 30px; transform: rotate(-15deg); }
.string-mid { position: absolute; left: 50%; top: 0; width: 1.5px; height: 100%; background: rgba(0,0,0,0.35); transform: translateX(-50%); }
.delivery-bag { width: 120px; margin: 0 auto; background: var(--yellow); border-radius: 16px 16px 10px 10px; padding: 16px 14px 10px; box-shadow: 0 12px 36px rgba(0,0,0,0.22); position: relative; animation: sway 4s ease-in-out infinite; }
.bag-flap { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 80px; height: 22px; background: var(--yellow-deep); border-radius: 20px 20px 0 0; }
.bag-medicines { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; padding-top: 4px; }
.med-item { font-size: 18px; }

.hero-float-card { position: absolute; background: white; border-radius: 14px; padding: 14px 16px; box-shadow: 0 10px 32px rgba(0,0,0,0.18); display: flex; align-items: center; gap: 10px; }
.hero-float-card-1 { top: 10px; left: -10px; animation: floatCard 5s ease-in-out infinite; }
.hero-float-card-2 { top: 60px; right: -20px; animation: floatCard 6s 1s ease-in-out infinite; }
.hero-float-card-3 { bottom: 180px; right: -10px; animation: floatCard 5.5s 0.5s ease-in-out infinite; }
.fc-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.fc-or { background: var(--orange-pale); }
.fc-ye { background: var(--yellow-pale); }
.fc-gr { background: var(--green-pale); }
.fc-text strong { display: block; font-size: 12px; font-weight: 800; color: var(--gray-900); }
.fc-text span { font-size: 10px; color: var(--gray-400); font-weight: 600; }
.hero-wave { display: block; width: 100%; margin-bottom: -2px; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--yellow); padding: 22px 0; border-bottom: 3px solid var(--yellow-deep); }
.stats-bar .container { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--black); display: block; line-height: 1; margin-bottom: 3px; }
.stat-label { font-size: 11px; color: var(--black-mid); font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; }

/* =============================================
   PRODUCTS
   ============================================= */
.products-section { padding: 80px 0; background: var(--white); }
.filters-bar { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 34px; align-items: center; }
.filter-btn { display: flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 50px; font-size: 12px; font-weight: 800; border: 2px solid var(--gray-200); background: white; color: var(--gray-600); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); color: white; border-color: var(--orange); }
.filter-sort { margin-left: auto; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--gray-100); box-shadow: var(--shadow-sm); transition: all 0.3s ease; cursor: pointer; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-mist); }
.product-img-wrap { height: 165px; display: flex; align-items: center; justify-content: center; font-size: 62px; position: relative; overflow: hidden; }
.product-img-wrap.c1 { background: linear-gradient(135deg, #FFF0EB, #FFD5C8); }
.product-img-wrap.c2 { background: linear-gradient(135deg, #FFFBEA, #FFE97A); }
.product-img-wrap.c3 { background: linear-gradient(135deg, #DCFCE7, #A7F3D0); }
.product-img-wrap.c4 { background: linear-gradient(135deg, #FEE2E2, #FECACA); }
.product-tag { position: absolute; top: 10px; left: 10px; background: var(--orange); color: white; font-size: 9px; font-weight: 800; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.8px; text-transform: uppercase; }
.product-tag.rx { background: var(--red); }
.product-tag.sale { background: var(--yellow); color: var(--black); }
.product-tag.new { background: var(--green); }
.product-wish { position: absolute; top: 10px; right: 10px; background: white; border: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform 0.2s; }
.product-wish:hover { transform: scale(1.2); }
.product-body { padding: 15px; }
.product-cat { font-size: 10px; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; line-height: 1.3; }
.product-desc { font-size: 11px; color: var(--gray-400); line-height: 1.55; margin-bottom: 10px; font-weight: 600; }
.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.stars-row { color: var(--yellow-deep); font-size: 11px; }
.rating-num { font-size: 11px; color: var(--gray-400); font-weight: 600; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gray-900); }
.product-price s { font-family: 'Nunito', sans-serif; font-size: 12px; color: var(--gray-400); margin-left: 4px; }
.add-to-cart { background: var(--orange-pale); color: var(--orange); border: 2px solid var(--orange-mist); width: 38px; height: 38px; border-radius: 9px; font-size: 20px; display: flex; align-items: center; justify-content: center; font-weight: 300; transition: all 0.2s; }
.add-to-cart:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* =============================================
   RX REFILL
   ============================================= */
.rx-section { background: var(--black); padding: 80px 0; position: relative; overflow: hidden; }
.rx-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%); border-radius: 50%; }
.rx-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.rx-content .eyebrow { color: var(--yellow); }
.rx-content .section-title { color: white; }
.rx-content .section-sub { color: rgba(255,255,255,0.65); }
.rx-features { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.rx-feature { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); transition: background 0.2s; }
.rx-feature:hover { background: rgba(245,197,24,0.08); border-color: rgba(245,197,24,0.2); }
.rx-feature-icon { width: 44px; height: 44px; background: rgba(245,197,24,0.15); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.rx-feature h4 { font-size: 14px; font-weight: 800; color: white; margin-bottom: 3px; }
.rx-feature p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.55; font-weight: 500; }

.refill-panel { background: white; border-radius: var(--radius-xl); padding: 36px; box-shadow: 0 24px 64px rgba(0,0,0,0.40); }
.refill-panel h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gray-900); margin-bottom: 5px; }
.refill-panel .sub { font-size: 13px; color: var(--gray-400); margin-bottom: 26px; font-weight: 600; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 800; color: var(--gray-600); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-input { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 600; color: var(--gray-900); background: var(--gray-100); outline: none; transition: all 0.2s; }
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,53,10,0.10); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.upload-zone { border: 2.5px dashed var(--orange-mist); border-radius: var(--radius-lg); padding: 26px; text-align: center; cursor: pointer; transition: all 0.25s; background: var(--orange-pale); margin-bottom: 16px; }
.upload-zone:hover { border-color: var(--orange); background: var(--yellow-pale); }
.upload-icon { font-size: 34px; margin-bottom: 8px; }
.upload-text { font-size: 14px; font-weight: 800; color: var(--orange); }
.upload-sub { font-size: 11px; color: var(--gray-400); margin-top: 3px; font-weight: 600; }
.sync-options { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.sync-opt { display: flex; align-items: center; gap: 6px; padding: 7px 13px; background: var(--gray-100); border: 2px solid var(--gray-200); border-radius: 8px; font-size: 11px; font-weight: 800; color: var(--gray-600); cursor: pointer; transition: all 0.2s; }
.sync-opt:hover, .sync-opt.active { background: var(--orange-pale); border-color: var(--orange); color: var(--orange); }

/* =============================================
   LIVE TRACKING
   ============================================= */
.tracking-section { padding: 80px 0; background: var(--off-white); }
.tracking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.map-placeholder { background: white; border-radius: var(--radius-xl); border: 2px solid var(--gray-100); box-shadow: var(--shadow-md); overflow: hidden; height: 380px; position: relative; }
.map-inner { width: 100%; height: calc(100% - 50px); background: linear-gradient(180deg, #FFF0EB 0%, #FFD5C8 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.map-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(232,53,10,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(232,53,10,0.07) 1px, transparent 1px); background-size: 38px 38px; }
.map-marker { position: absolute; font-size: 28px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2)); }
.marker-delivery { top: 28%; left: 38%; animation: bounce 1.5s ease-in-out infinite; }
.marker-home { bottom: 22%; right: 28%; animation: bounce 1.5s 0.4s ease-in-out infinite; }
.marker-store { top: 18%; right: 18%; font-size: 22px; }
.map-route-line { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 130px; height: 2.5px; background: var(--orange); opacity: 0.5; border-radius: 2px; }
.map-eta { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); background: white; border-radius: var(--radius); padding: 10px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; white-space: nowrap; border-left: 4px solid var(--orange); }
.eta-time { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--orange); }
.eta-label { font-size: 12px; color: var(--gray-400); font-weight: 600; }
.eta-live { display: flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 800; color: var(--green); }
.map-footer { background: white; padding: 11px 16px; border-top: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.map-footer span { font-size: 12px; color: var(--gray-600); font-weight: 700; }

.tracking-steps { display: flex; flex-direction: column; gap: 0; }
.track-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; position: relative; }
.track-step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 50px; width: 2px; height: calc(100% - 32px); background: var(--gray-200); }
.track-step.active::after { background: var(--orange); }
.track-step.done::after { background: var(--green); }
.track-dot { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 17px; border: 2px solid var(--gray-200); background: white; box-shadow: var(--shadow-sm); }
.track-step.done .track-dot { background: var(--green); border-color: var(--green); }
.track-step.active .track-dot { background: var(--orange); border-color: var(--orange); animation: ring 2s infinite; }
.track-info h4 { font-size: 14px; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; }
.track-info p { font-size: 12px; color: var(--gray-400); font-weight: 600; }
.track-time { font-size: 11px; font-weight: 800; color: var(--orange); margin-top: 2px; }
.sms-alert-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; background: var(--green-pale); border: 1.5px solid rgba(22,163,74,0.18); color: var(--green); padding: 10px 16px; border-radius: var(--radius); font-size: 12px; font-weight: 800; }

/* =============================================
   INFO SECTION
   ============================================= */
.info-section { padding: 80px 0; background: white; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { background: var(--off-white); border-radius: var(--radius-xl); padding: 30px; border: 2px solid var(--gray-100); transition: all 0.3s; }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--orange-mist); }
.info-card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.ic-or { background: var(--orange-pale); }
.ic-ye { background: var(--yellow-pale); }
.ic-gr { background: var(--green-pale); }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gray-900); margin-bottom: 14px; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; }
.hours-day { color: var(--gray-600); }
.hours-time { font-weight: 800; color: var(--gray-800); }
.hours-row.today .hours-day { color: var(--orange); font-weight: 800; }
.hours-row.today .hours-time { color: var(--green); }
.open-now { display: flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; font-weight: 800; color: var(--green); }
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-icon { width: 36px; height: 36px; background: var(--orange-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.contact-label { font-size: 10px; color: var(--gray-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-val { font-size: 13px; font-weight: 800; color: var(--gray-800); }
.contact-item a:hover .contact-val { color: var(--orange); }
.direct-form { display: flex; flex-direction: column; gap: 10px; }
.direct-form input, .direct-form textarea { padding: 11px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600; color: var(--gray-900); background: white; outline: none; transition: border-color 0.2s; width: 100%; }
.direct-form input:focus, .direct-form textarea:focus { border-color: var(--orange); }
.direct-form textarea { resize: vertical; min-height: 80px; }

/* =============================================
   PAYMENT & SECURITY
   ============================================= */
.payment-section { padding: 70px 0; background: var(--gray-100); }
.payment-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.payment-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.pay-badge { background: white; border-radius: var(--radius-lg); padding: 16px; border: 2px solid var(--gray-200); text-align: center; box-shadow: var(--shadow-sm); transition: all 0.2s; }
.pay-badge:hover { transform: translateY(-3px); border-color: var(--orange-mist); box-shadow: var(--shadow-md); }
.pay-badge-icon { font-size: 26px; margin-bottom: 6px; }
.pay-badge-name { font-size: 12px; font-weight: 800; color: var(--gray-800); }
.pay-badge-sub { font-size: 10px; color: var(--gray-400); margin-top: 2px; font-weight: 600; }
.security-panel { background: white; border-radius: var(--radius-xl); padding: 34px; border: 2px solid var(--gray-200); box-shadow: var(--shadow-md); }
.security-panel h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 7px; color: var(--gray-900); }
.security-panel > p { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 22px; font-weight: 600; }
.security-items { display: flex; flex-direction: column; gap: 12px; }
.security-item { display: flex; align-items: center; gap: 14px; padding: 13px 15px; background: var(--gray-100); border-radius: var(--radius); border: 2px solid var(--gray-200); }
.sec-icon { width: 38px; height: 38px; background: var(--orange-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.sec-name { font-size: 13px; font-weight: 800; color: var(--gray-800); }
.sec-desc { font-size: 11px; color: var(--gray-400); font-weight: 600; }
.sec-check { margin-left: auto; color: var(--green); font-size: 18px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 80px 0; background: white; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.testi-card { background: var(--off-white); border-radius: var(--radius-xl); padding: 28px; border: 2px solid var(--gray-100); transition: all 0.3s; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--orange-mist); }
.testi-stars { color: var(--yellow-deep); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-quote { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: var(--gray-800); line-height: 1.72; margin-bottom: 18px; }
.testi-reviewer { display: flex; align-items: center; gap: 11px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ta1 { background: var(--orange-pale); }
.ta2 { background: var(--yellow-pale); }
.ta3 { background: var(--green-pale); }
.testi-name { font-size: 13px; font-weight: 800; color: var(--gray-900); }
.testi-role { font-size: 11px; color: var(--gray-400); font-weight: 600; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section { padding: 0 40px 80px; }
.cta-inner { background: var(--orange); border-radius: var(--radius-xl); padding: 58px 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: rgba(245,197,24,0.15); border-radius: 50%; }
.cta-text { position: relative; z-index: 1; }
.cta-text h2 { font-family: 'Playfair Display', serif; font-size: 38px; color: white; line-height: 1.2; margin-bottom: 10px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.82); max-width: 420px; line-height: 1.65; font-weight: 600; }
.cta-actions { display: flex; gap: 12px; flex-direction: column; align-items: flex-end; position: relative; z-index: 1; }
.cta-input-row { display: flex; gap: 10px; }
.cta-input { padding: 13px 18px; border: none; border-radius: 50px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; width: 220px; background: rgba(255,255,255,0.95); color: var(--gray-900); outline: none; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--black); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 46px; margin-bottom: 46px; }
.footer-tabdr { font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 900; display: inline-flex; align-items: center; background: var(--orange); padding: 8px 14px; border-radius: 10px; margin-bottom: 14px; }
.footer-tab { color: var(--yellow); }
.footer-dr { color: white; }
.footer-chute { font-size: 22px; margin-left: 4px; }
.footer-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.42); margin-bottom: 22px; max-width: 270px; font-weight: 600; }
.footer-social { display: flex; gap: 9px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; transition: background 0.2s; }
.social-btn:hover { background: var(--orange); }
.footer-col h5 { color: white; font-size: 12px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.2px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.40); transition: color 0.2s; font-weight: 600; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); font-weight: 600; }
.footer-certs { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 6px; padding: 4px 11px; font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.38); letter-spacing: 0.5px; }

/* =============================================
   TOAST
   ============================================= */
.toast { position: fixed; bottom: 22px; right: 22px; background: white; border-left: 4px solid var(--orange); border-radius: var(--radius-lg); padding: 15px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); z-index: 9999; transform: translateX(130%); opacity: 0; transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); max-width: 310px; }
.toast.show { transform: translateX(0); opacity: 1; }
.toast-icon { font-size: 24px; }
.toast-body strong { display: block; font-size: 13px; font-weight: 800; color: var(--gray-900); }
.toast-body span { font-size: 11px; color: var(--gray-400); font-weight: 600; }

.float-call { position: fixed; bottom: 22px; left: 22px; background: var(--orange); color: white; border: none; border-radius: 50%; width: 54px; height: 54px; font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(232,53,10,0.40); z-index: 999; cursor: pointer; transition: background 0.2s; animation: ring 3s infinite; }
.float-call:hover { background: var(--orange-deep); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sway { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-10px); } }
@keyframes floatDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes ring { 0%,100% { box-shadow: 0 0 0 0 rgba(232,53,10,0.40); } 50% { box-shadow: 0 0 0 14px rgba(232,53,10,0); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid, .rx-grid, .tracking-grid, .payment-inner, .info-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; }
  .stats-bar .container { gap: 30px; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .header-inner { padding: 12px 18px; }
  .nav-search { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .payment-badges { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 0 18px 60px; }
  .cta-inner { padding: 34px 22px; }
  .cta-input-row { flex-direction: column; }
  .cta-input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { padding: 18px 18px; }
}
