/* ============================================
   DRONES ARK - CUSTOM THEME CSS
   Version: 1.0.0
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --da-teal: #00BCD4;
  --da-teal-dark: #0097A7;
  --da-teal-light: #E0F7FA;
  --da-dark: #111111;
  --da-darker: #0a0a0a;
  --da-white: #ffffff;
  --da-text: #333333;
  --da-gray: #888888;
  --da-light-gray: #f5f5f5;
  --da-border: #eeeeee;
  --da-star: #FFC107;
  --da-green: #4CAF50;
  --da-orange: #FF5722;
  --da-red: #F44336;
  --da-whatsapp: #25D366;
  --da-font-body: 'Inter', sans-serif;
  --da-font-heading: 'Poppins', sans-serif;
  --da-radius: 8px;
  --da-shadow: 0 8px 24px rgba(0,0,0,0.10);
  --da-transition: all 0.3s ease;
}

/* ---- GLOBAL RESET ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--da-font-body);
  font-size: 14px;
  color: var(--da-text);
  background: var(--da-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--da-font-heading);
  color: #222222;
  line-height: 1.3;
}

a { color: var(--da-teal); text-decoration: none; transition: var(--da-transition); }
a:hover { color: var(--da-teal-dark); }

::selection { background: var(--da-teal); color: white; }

html { scroll-behavior: smooth; }

/* ---- ASTRA OVERRIDES ---- */
.ast-container { max-width: 1280px !important; padding: 0 20px !important; }

/* Top Bar */
#ast-mobile-header .ast-above-header,
.ast-above-header-bar {
  background: var(--da-darker) !important;
  min-height: 36px;
}
.ast-above-header-bar .ast-above-header-section *,
.ast-above-header-bar * {
  font-size: 12px !important;
  color: #cccccc !important;
}

/* Main Header */
#masthead,
.ast-header-wrap {
  background: var(--da-white) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

.ast-primary-header-bar { min-height: 70px; }

/* Logo */
.ast-logo-img { height: 40px !important; width: auto !important; }

/* Header Search */
.ast-search-icon { color: var(--da-teal) !important; }
.ast-search-field input {
  width: 400px;
  height: 42px;
  border-radius: 25px !important;
  border: 1px solid #e0e0e0 !important;
  padding: 0 20px !important;
  font-size: 14px;
  font-family: var(--da-font-body);
}
.ast-search-field input:focus { border-color: var(--da-teal) !important; outline: none; }

/* Navigation */
.ast-nav-menu > li > a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--da-text) !important;
  padding: 8px 14px !important;
  transition: var(--da-transition);
}
.ast-nav-menu > li > a:hover,
.ast-nav-menu > li.current-menu-item > a {
  color: var(--da-teal) !important;
}

/* Dropdown */
.ast-nav-menu .sub-menu {
  background: var(--da-white) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
  border-radius: var(--da-radius) !important;
  min-width: 200px !important;
  border-top: 2px solid var(--da-teal) !important;
}
.ast-nav-menu .sub-menu li a {
  font-size: 13px !important;
  color: var(--da-text) !important;
  padding: 10px 20px !important;
}
.ast-nav-menu .sub-menu li a:hover { color: var(--da-teal) !important; background: var(--da-teal-light) !important; }

/* Cart icon badge */
.ast-cart-count {
  background: var(--da-teal) !important;
  color: white !important;
  font-size: 10px !important;
  min-width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
}

/* ---- SECTION UTILITIES ---- */
.da-section { padding: 60px 0; }
.da-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  font-family: var(--da-font-heading);
}
.da-section-title-center { text-align: center; }
.da-title-underline {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--da-teal);
  margin: 10px auto 40px;
}
.da-title-underline.left { margin-left: 0; }

/* ============================================
   HERO SLIDER
   ============================================ */
.da-hero {
  background: var(--da-darker);
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.da-hero-slide {
  display: none;
  min-height: 520px;
  align-items: center;
}
.da-hero-slide.active { display: flex; }

.da-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.da-hero-content { flex: 0 0 55%; max-width: 55%; }

.da-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--da-teal);
  margin-bottom: 16px;
}

.da-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--da-white);
  margin: 0 0 16px;
  font-family: var(--da-font-heading);
}
.da-hero-title span { color: var(--da-teal); display: block; }

.da-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.da-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.da-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--da-font-body);
  cursor: pointer;
  transition: var(--da-transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.da-btn-primary {
  background: var(--da-teal);
  color: white;
  border-color: var(--da-teal);
}
.da-btn-primary:hover {
  background: var(--da-teal-dark);
  border-color: var(--da-teal-dark);
  color: white;
  transform: translateY(-2px);
}
.da-btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}
.da-btn-outline:hover {
  background: white;
  color: var(--da-text);
  transform: translateY(-2px);
}

.da-hero-image {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
}
.da-hero-image img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,188,212,0.2));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Dots */
.da-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}
.da-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--da-transition);
}
.da-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--da-teal);
}

/* ============================================
   FEATURES BAR
   ============================================ */
.da-features {
  background: var(--da-white);
  padding: 30px 0;
  border-top: 1px solid var(--da-border);
  border-bottom: 1px solid var(--da-border);
}
.da-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.da-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--da-border);
}
.da-feature-item:last-child { border-right: none; }

.da-feature-icon {
  font-size: 40px;
  color: var(--da-teal);
  margin-bottom: 10px;
  line-height: 1;
}
.da-feature-icon svg { width: 40px; height: 40px; fill: none; stroke: var(--da-teal); stroke-width: 1.5; }

.da-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--da-text);
  margin-bottom: 4px;
}
.da-feature-sub {
  font-size: 12px;
  color: var(--da-gray);
}

/* ============================================
   SHOP BY CATEGORY
   ============================================ */
.da-categories { background: #f9f9f9; padding: 60px 0; }
.da-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.da-cat-card {
  background: var(--da-white);
  border: 1px solid var(--da-border);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--da-transition);
  text-decoration: none;
  display: block;
}
.da-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--da-shadow);
}
.da-cat-card:hover .da-cat-link { padding-right: 4px; }

.da-cat-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.da-cat-img img { max-height: 120px; object-fit: contain; }

.da-cat-name {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  font-family: var(--da-font-heading);
  margin-bottom: 8px;
}
.da-cat-link {
  font-size: 13px;
  color: var(--da-teal);
  transition: var(--da-transition);
}

/* ============================================
   ALL PRODUCTS SECTION
   ============================================ */
.da-products-section { background: var(--da-white); padding: 60px 0; }

.da-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.da-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}
.da-tab {
  font-size: 14px;
  font-weight: 500;
  color: var(--da-gray);
  padding: 8px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--da-transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--da-font-body);
}
.da-tab.active {
  color: var(--da-teal);
  font-weight: 600;
  border-bottom-color: var(--da-teal);
}
.da-tab:hover { color: var(--da-teal); }

.da-view-all {
  font-size: 13px;
  color: var(--da-teal);
  font-weight: 500;
}

.da-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Product Card */
.da-product-card {
  background: var(--da-white);
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--da-transition);
}
.da-product-card:hover {
  box-shadow: var(--da-shadow);
  border-color: #ddd;
}

.da-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.da-badge-new { background: var(--da-green); }
.da-badge-hot { background: var(--da-orange); }
.da-badge-sale { background: var(--da-red); }

.da-product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.da-product-img img {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
}

.da-product-cat {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.da-product-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  min-height: 42px;
}

.da-product-price { margin-bottom: 8px; }
.da-price-original {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
  margin-right: 6px;
}
.da-price-sale {
  font-size: 16px;
  font-weight: 700;
  color: var(--da-teal);
}

.da-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.da-stars { display: flex; align-items: center; gap: 4px; }
.da-star-icons { color: var(--da-star); font-size: 14px; }
.da-star-count { font-size: 12px; color: #999; }

.da-add-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--da-teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--da-transition);
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}
.da-add-cart-btn:hover {
  background: var(--da-teal-dark);
  transform: scale(1.1);
  color: white;
}
.da-add-cart-btn svg { width: 16px; height: 16px; }

/* Show More Button */
.da-show-more-wrap { text-align: center; margin-top: 36px; }
.da-btn-outline-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 46px;
  border: 2px solid var(--da-teal);
  color: var(--da-teal);
  background: transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--da-transition);
  font-family: var(--da-font-body);
  text-decoration: none;
}
.da-btn-outline-teal:hover {
  background: var(--da-teal);
  color: white;
}

/* ============================================
   WooCommerce Product Cards Overrides
   ============================================ */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product {
  background: var(--da-white) !important;
  border: 1px solid var(--da-border) !important;
  border-radius: var(--da-radius) !important;
  padding: 16px !important;
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  transition: var(--da-transition) !important;
}
.woocommerce ul.products li.product:hover {
  box-shadow: var(--da-shadow) !important;
}

.woocommerce ul.products li.product a img {
  height: 200px !important;
  object-fit: contain !important;
  width: 100% !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #222 !important;
  padding: 8px 0 4px !important;
}

.woocommerce ul.products li.product .price {
  color: var(--da-teal) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
.woocommerce ul.products li.product .price del {
  color: #aaa !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  background: var(--da-teal) !important;
  color: white !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  padding: 8px 16px !important;
  border: none !important;
  width: 100% !important;
  margin-top: 10px !important;
  transition: var(--da-transition) !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--da-teal-dark) !important;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.da-testimonials {
  background: var(--da-dark);
  padding: 60px 0;
}
.da-testimonials .da-section-title { color: var(--da-white); }

.da-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.da-testi-card {
  background: var(--da-white);
  border-radius: 10px;
  padding: 24px;
}

.da-testi-stars {
  color: var(--da-star);
  font-size: 16px;
  margin-bottom: 12px;
}

.da-testi-text {
  font-size: 13px;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.da-testi-text::before { content: '"'; }
.da-testi-text::after { content: '"'; }

.da-testi-divider {
  height: 1px;
  background: var(--da-border);
  margin-bottom: 16px;
}

.da-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.da-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--da-teal);
  background: var(--da-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--da-teal);
  flex-shrink: 0;
}
.da-testi-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}
.da-testi-location {
  font-size: 12px;
  color: #999;
}

/* ============================================
   FOOTER
   ============================================ */
.da-footer {
  background: #1a1a1a;
  padding: 50px 0 0;
}

.da-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.da-footer-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--da-white);
  font-family: var(--da-font-heading);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--da-teal);
  margin-bottom: 20px;
}

/* Social icons */
.da-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.da-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: var(--da-transition);
}
.da-social-icon:hover { background: var(--da-teal); border-color: var(--da-teal); color: white; }
.da-social-icon svg { width: 16px; height: 16px; fill: white; }

/* Contact */
.da-contact-list { list-style: none; padding: 0; margin: 0; }
.da-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.da-contact-list li span.icon {
  color: var(--da-teal);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.da-contact-list li a,
.da-contact-list li span.text {
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
}
.da-contact-list li a:hover { color: var(--da-teal); }

/* Payment */
.da-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.da-payment-icons img,
.da-payment-icon {
  height: 28px;
  border-radius: 4px;
  background: white;
  padding: 2px 6px;
  object-fit: contain;
}

/* Footer Bottom */
.da-footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
}
.da-footer-bottom p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Override Astra footer */
.site-footer { display: none !important; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.da-float-whatsapp,
.da-float-call {
  position: fixed;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  transition: var(--da-transition);
  bottom: 80px;
}

.da-float-whatsapp {
  right: 20px;
  background: var(--da-whatsapp);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  animation: pulseGreen 2s infinite;
}
.da-float-call {
  left: 20px;
  background: var(--da-teal);
  box-shadow: 0 4px 12px rgba(0,188,212,0.4);
  animation: pulseTeal 2s infinite;
}

.da-float-whatsapp:hover { transform: scale(1.1); }
.da-float-call:hover { transform: scale(1.1); }

.da-float-whatsapp svg,
.da-float-call svg { width: 26px; height: 26px; fill: white; }

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes pulseTeal {
  0% { box-shadow: 0 0 0 0 rgba(0,188,212,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(0,188,212,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,188,212,0); }
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.da-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--da-white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.10);
  z-index: 9998;
  padding: 0 10px;
}
.da-mobile-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
.da-mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #999;
  gap: 3px;
  padding: 4px 8px;
  position: relative;
  transition: var(--da-transition);
}
.da-mob-nav-item.active,
.da-mob-nav-item:hover { color: var(--da-teal); }
.da-mob-nav-item svg { width: 22px; height: 22px; }
.da-mob-nav-label { font-size: 10px; font-weight: 500; }
.da-mob-nav-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--da-teal);
  color: white;
  font-size: 8px;
  min-width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   PAGE TITLE / BREADCRUMB
   ============================================ */
.da-page-title-bar {
  background: var(--da-light-gray);
  padding: 40px 20px;
  text-align: center;
}
.da-page-title-bar h1 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
}

.woocommerce-breadcrumb,
.da-breadcrumb {
  font-size: 13px;
  color: #888;
}
.woocommerce-breadcrumb a { color: #888; }
.woocommerce-breadcrumb a:hover { color: var(--da-teal); }
.woocommerce-breadcrumb .breadcrumb-sep { color: #ccc; margin: 0 6px; }

/* ============================================
   SHOP PAGE
   ============================================ */
.woocommerce .woocommerce-products-header { display: none; }

.da-shop-layout {
  display: flex;
  gap: 30px;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Sidebar */
.da-shop-sidebar { flex: 0 0 240px; width: 240px; }

.da-filter-box {
  background: var(--da-white);
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.da-filter-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--da-text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--da-border);
  margin-bottom: 16px;
}
.da-filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--da-text);
  margin-bottom: 12px;
}

/* WooCommerce filter widget */
.widget_price_filter .price_slider_wrapper .price_slider {
  height: 4px;
  background: #ddd;
  border-radius: 2px;
}
.widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range {
  background: var(--da-teal);
}
.widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle {
  background: var(--da-teal);
  border-color: var(--da-teal);
  width: 14px;
  height: 14px;
  top: -5px;
  border-radius: 50%;
}
.widget_price_filter .price_slider_amount .price_label {
  font-size: 13px;
  color: #555;
}
.widget_price_filter .price_slider_amount button {
  background: var(--da-teal);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

/* Checkboxes */
.widget_layered_nav ul,
.da-filter-list { list-style: none; padding: 0; margin: 0; }
.widget_layered_nav ul li,
.da-filter-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.widget_layered_nav ul li a,
.da-filter-list li label {
  font-size: 13px;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget_layered_nav ul li .count,
.da-filter-list li .count {
  font-size: 12px;
  color: #999;
}

/* Shop content */
.da-shop-content { flex: 1; min-width: 0; }

.da-shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--da-border);
}
.da-result-count { font-size: 13px; color: #777; }

.woocommerce-ordering select {
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 30px 0 12px;
  font-size: 13px;
  color: var(--da-text);
  appearance: auto;
}

/* Shop grid override */
.woocommerce-page .woocommerce ul.products {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Pagination */
.woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  border: 1px solid var(--da-border);
  color: var(--da-text);
  text-decoration: none;
  transition: var(--da-transition);
}
.woocommerce-pagination ul li a:hover { border-color: var(--da-teal); color: var(--da-teal); }
.woocommerce-pagination ul li span.current {
  background: var(--da-teal);
  border-color: var(--da-teal);
  color: white;
  font-weight: 700;
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */
.woocommerce div.product {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}

/* Gallery */
.woocommerce div.product div.images {
  flex: 0 0 48%;
  max-width: 48%;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  overflow: hidden;
  padding: 16px;
  background: #f9f9f9;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  max-height: 480px;
  object-fit: contain;
  width: 100%;
}

/* Thumbnails */
.woocommerce div.product div.images ol.flex-control-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}
.woocommerce div.product div.images ol.flex-control-thumbs li { margin: 0; }
.woocommerce div.product div.images ol.flex-control-thumbs li img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
  border: 1px solid var(--da-border);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--da-transition);
}
.woocommerce div.product div.images ol.flex-control-thumbs li img.flex-active {
  border: 2px solid var(--da-teal);
}

/* Summary */
.woocommerce div.product div.summary {
  flex: 1;
  padding: 0;
}

.woocommerce div.product .product_title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  font-family: var(--da-font-heading);
}

.woocommerce div.product .woocommerce-review-link {
  font-size: 13px;
  color: #999;
}

/* Stock */
.woocommerce div.product .stock.in-stock {
  display: inline-block;
  background: #e8f5e9;
  color: var(--da-green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.woocommerce div.product .stock.out-of-stock {
  background: #ffebee;
  color: var(--da-red);
}

/* Price */
.woocommerce div.product p.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--da-teal);
  margin: 12px 0 16px;
}
.woocommerce div.product p.price del {
  font-size: 16px;
  font-weight: 400;
  color: #aaa;
}

/* Divider */
.woocommerce div.product .woocommerce-product-details__short-description {
  border-top: 1px solid var(--da-border);
  border-bottom: 1px solid var(--da-border);
  padding: 16px 0;
  margin: 16px 0;
}
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .woocommerce-product-details__short-description li {
  font-size: 13px;
  color: #555;
  line-height: 2.2;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.woocommerce div.product .woocommerce-product-details__short-description li::before {
  content: '✓';
  color: var(--da-teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* Quantity */
.woocommerce div.product form.cart .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}
.woocommerce div.product form.cart .quantity input[type=number] {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.da-qty-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--da-light-gray);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--da-text);
  transition: var(--da-transition);
}
.da-qty-btn:hover { background: var(--da-teal); color: white; }

/* Add to Cart */
.woocommerce div.product form.cart {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}
.woocommerce div.product form.cart .button {
  background: var(--da-teal) !important;
  color: white !important;
  border: none !important;
  height: 48px !important;
  padding: 0 28px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  flex-grow: 1 !important;
  cursor: pointer !important;
  transition: var(--da-transition) !important;
  font-family: var(--da-font-body) !important;
}
.woocommerce div.product form.cart .button:hover {
  background: var(--da-teal-dark) !important;
  transform: translateY(-1px) !important;
}

.da-buy-now {
  background: #111 !important;
  color: white !important;
  border: none !important;
  height: 48px !important;
  padding: 0 28px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  width: 140px !important;
  cursor: pointer;
  transition: var(--da-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--da-font-body);
}
.da-buy-now:hover { background: #333 !important; color: white !important; }

/* Wishlist/Compare links */
.da-product-meta-actions {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.da-meta-action {
  font-size: 13px;
  color: var(--da-teal);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--da-transition);
}
.da-meta-action:hover { color: var(--da-teal-dark); }
.da-meta-action svg { width: 16px; height: 16px; }

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-size: 14px;
  color: var(--da-text);
  font-weight: 500;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--da-teal);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  background: var(--da-teal);
}

/* ============================================
   CART PAGE
   ============================================ */
.woocommerce-cart .woocommerce {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce table.shop_table thead tr th {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  padding: 14px 10px;
  border-bottom: 2px solid var(--da-border);
  text-align: left;
}
.woocommerce table.shop_table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.woocommerce table.shop_table tbody tr td {
  padding: 20px 10px;
  vertical-align: middle;
}

.woocommerce table.shop_table .product-thumbnail img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--da-border);
}

.woocommerce table.shop_table .product-name a {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}
.woocommerce table.shop_table .product-name a:hover { color: var(--da-teal); }

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal { font-size: 14px; color: var(--da-text); }
.woocommerce table.shop_table .product-subtotal bdi { color: var(--da-teal); font-weight: 700; }

/* Remove button */
.woocommerce table.shop_table .product-remove a {
  font-size: 18px;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: var(--da-transition);
}
.woocommerce table.shop_table .product-remove a:hover { color: var(--da-red); }

/* Cart totals */
.woocommerce .cart-collaterals {
  width: 380px;
  float: right;
}
.woocommerce .cart_totals {
  background: #f9f9f9;
  border-radius: var(--da-radius);
  padding: 24px;
}
.woocommerce .cart_totals h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--da-border);
}
.woocommerce .cart_totals table {
  width: 100%;
}
.woocommerce .cart_totals table tr td,
.woocommerce .cart_totals table tr th {
  padding: 12px 0;
  border-bottom: 1px solid var(--da-border);
  font-size: 14px;
}
.woocommerce .cart_totals table .order-total td bdi {
  color: var(--da-teal);
  font-size: 18px;
  font-weight: 700;
}

.woocommerce a.checkout-button,
.woocommerce .checkout-button {
  background: var(--da-teal) !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 50px !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border: none !important;
  margin-top: 16px !important;
  text-decoration: none !important;
  transition: var(--da-transition) !important;
  font-family: var(--da-font-body) !important;
}
.woocommerce a.checkout-button:hover { background: var(--da-teal-dark) !important; }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.woocommerce-checkout .woocommerce {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}

.woocommerce-checkout #customer_details {
  flex: 0 0 58%;
}
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  flex: 0 0 38%;
}

.woocommerce-checkout h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--da-border);
}

/* Form fields */
.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}
.woocommerce-checkout .form-row label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  display: block;
  margin-bottom: 6px;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 14px;
  font-family: var(--da-font-body);
  transition: var(--da-transition);
  color: var(--da-text);
}
.woocommerce-checkout .form-row textarea {
  height: 90px;
  padding: 12px 14px;
  resize: vertical;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: var(--da-teal);
  outline: none;
  box-shadow: 0 0 0 3px var(--da-teal-light);
}

/* Place order */
#place_order {
  background: var(--da-teal) !important;
  color: white !important;
  width: 100% !important;
  height: 52px !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: var(--da-transition) !important;
  font-family: var(--da-font-body) !important;
}
#place_order:hover { background: var(--da-teal-dark) !important; }

/* ============================================
   MY ACCOUNT PAGE
   ============================================ */
.woocommerce-account .woocommerce {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  flex: 0 0 220px;
  background: var(--da-white);
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  overflow: hidden;
  height: fit-content;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--da-text);
  border-left: 3px solid transparent;
  transition: var(--da-transition);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--da-teal-light);
  color: var(--da-teal);
  border-left-color: var(--da-teal);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--da-teal-light);
  color: var(--da-teal);
  font-weight: 600;
  border-left-color: var(--da-teal);
}

.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1;
}
.woocommerce-account .woocommerce-MyAccount-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Account orders table */
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-orders-table thead th {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  padding: 12px 10px;
  border-bottom: 2px solid var(--da-border);
  text-align: left;
}
.woocommerce-orders-table tbody td {
  padding: 14px 10px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

/* Status badges */
.woocommerce-orders-table mark.order-status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.woocommerce-orders-table mark.order-status.status-completed {
  background: #e8f5e9;
  color: var(--da-green);
}
.woocommerce-orders-table mark.order-status.status-processing {
  background: #fff3e0;
  color: var(--da-orange);
}
.woocommerce-orders-table mark.order-status.status-pending {
  background: #f5f5f5;
  color: #777;
}
.woocommerce-orders-table a.button {
  background: transparent !important;
  border: 1px solid var(--da-teal) !important;
  color: var(--da-teal) !important;
  padding: 6px 14px !important;
  border-radius: 4px !important;
  font-size: 13px !important;
}

/* ============================================
   WISHLIST PAGE
   ============================================ */
.da-wishlist-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}
.da-wishlist-table th {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  padding: 14px 10px;
  border-bottom: 2px solid var(--da-border);
  text-align: left;
}
.da-wishlist-table td {
  padding: 20px 10px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  vertical-align: middle;
}
.da-wishlist-table .product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.da-wishlist-table .product-cell img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid var(--da-border);
  border-radius: 6px;
}
.da-wishlist-table .product-price { color: var(--da-teal); font-weight: 700; }
.da-wishlist-table .in-stock { color: var(--da-green); font-size: 13px; }
.da-wishlist-table .out-of-stock { color: var(--da-red); font-size: 13px; }
.da-wishlist-table .add-to-cart-btn {
  background: var(--da-teal);
  color: white;
  border: none;
  height: 38px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--da-transition);
  font-family: var(--da-font-body);
}
.da-wishlist-table .add-to-cart-btn:hover { background: var(--da-teal-dark); }
.da-continue-shopping {
  float: right;
  margin: 16px 20px;
}

/* ============================================
   WooCommerce NOTICES
   ============================================ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--da-radius) !important;
  font-size: 14px !important;
}
.woocommerce-message {
  border-left-color: var(--da-green) !important;
  background: #e8f5e9 !important;
}
.woocommerce-info {
  border-left-color: var(--da-teal) !important;
  background: var(--da-teal-light) !important;
}
.woocommerce-error {
  border-left-color: var(--da-red) !important;
  background: #ffebee !important;
}

/* ============================================
   INPUT FIELDS GLOBAL
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea {
  font-family: var(--da-font-body) !important;
  border-radius: 6px !important;
  border: 1px solid #ddd !important;
  transition: var(--da-transition) !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: var(--da-teal) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--da-teal-light) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .da-hero-title { font-size: 40px; }
  .da-hero { min-height: 420px; }
  .da-hero-slide { min-height: 420px; }

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

  .da-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .da-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

  .ast-search-field input { width: 280px !important; }

  .woocommerce div.product { flex-direction: column; }
  .woocommerce div.product div.images { max-width: 100%; flex: none; }
  .woocommerce div.product div.summary { width: 100%; }

  .woocommerce-checkout .woocommerce { flex-direction: column; }
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review { flex: none; width: 100%; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  .da-section { padding: 30px 0; }
  .da-section-title { font-size: 20px; }

  /* Hero */
  .da-hero { min-height: auto; }
  .da-hero-slide { min-height: auto; }
  .da-hero-inner { flex-direction: column; padding: 40px 20px; }
  .da-hero-content { flex: none; max-width: 100%; width: 100%; }
  .da-hero-title { font-size: 28px; }
  .da-hero-subtitle { font-size: 14px; }
  .da-hero-image { display: none; }
  .da-hero-btns { flex-direction: column; }
  .da-btn { width: 100%; }

  /* Features */
  .da-features-grid { grid-template-columns: repeat(2, 1fr); }
  .da-feature-item:nth-child(2) { border-right: none; }
  .da-feature-item { border-right: 1px solid var(--da-border); border-bottom: 1px solid var(--da-border); }
  .da-feature-item:nth-child(3),
  .da-feature-item:nth-child(4) { border-bottom: none; }
  .da-feature-icon svg { width: 32px; height: 32px; }
  .da-feature-title { font-size: 12px; }

  /* Categories */
  .da-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .da-cat-img { height: 80px; }
  .da-cat-name { font-size: 13px; }

  /* Products */
  .da-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .da-product-img { height: 130px; }
  .da-products-header { flex-direction: column; align-items: flex-start; }
  .da-tabs { flex-wrap: wrap; }

  /* Testimonials */
  .da-testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .da-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .da-social-icon { width: 40px; height: 40px; }

  /* Mobile nav show */
  .da-mobile-nav { display: block; }
  body { padding-bottom: 60px; }

  /* Float buttons */
  .da-float-whatsapp,
  .da-float-call { bottom: 70px; }

  /* Header mobile */
  .ast-above-header-bar { display: none !important; }

  /* Shop layout */
  .da-shop-layout { flex-direction: column; }
  .da-shop-sidebar { width: 100%; }

  /* Cart */
  .woocommerce .cart-collaterals { width: 100%; float: none; }
  .woocommerce table.shop_table thead { display: none; }
  .woocommerce table.shop_table tbody tr td { display: block; padding: 8px 10px; }

  /* Account */
  .woocommerce-account .woocommerce { flex-direction: column; }
  .woocommerce-account .woocommerce-MyAccount-navigation { flex: none; width: 100%; }
}

/* Very small: 480px */
@media (max-width: 480px) {
  .da-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .da-product-card { padding: 10px; }
  .da-product-name { font-size: 13px; }
  .da-price-sale { font-size: 14px; }
  .da-add-cart-btn { width: 30px; height: 30px; }
  .da-add-cart-btn svg { width: 14px; height: 14px; }
}

/* ============================================
   INNER PAGE WRAPPERS (added v1.1)
   ============================================ */
.da-inner-page-wrap {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}
.da-single-product-wrap { max-width: 100%; }

/* Checkout 2-column grid */
.da-checkout-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.da-checkout-left { flex: 0 0 58%; max-width: 58%; }
.da-checkout-right {
  flex: 1;
  background: #f9f9f9;
  border-radius: var(--da-radius);
  padding: 24px;
  position: sticky;
  top: 20px;
}
.da-checkout-right h3 { border-bottom: 2px solid var(--da-border); }

/* Checkout order review table */
.woocommerce-checkout-review-order-table { width: 100%; }
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--da-border);
}
.woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 20px;
  font-weight: 700;
  color: var(--da-teal);
}

/* Payment methods box */
.woocommerce-checkout #payment {
  background: transparent !important;
  border-radius: var(--da-radius);
}
.woocommerce-checkout #payment ul.payment_methods {
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  padding: 16px !important;
  background: #fff;
  margin-bottom: 16px !important;
}
.woocommerce-checkout #payment ul.payment_methods li {
  padding: 10px 0 !important;
  border-bottom: 1px solid #f5f5f5;
  list-style: none;
}
.woocommerce-checkout #payment ul.payment_methods li:last-child { border-bottom: none; }
.woocommerce-checkout #payment ul.payment_methods label {
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
}
.woocommerce-checkout #payment div.payment_box {
  background: var(--da-teal-light) !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  color: #555 !important;
}
.woocommerce-checkout #payment div.payment_box::before { display: none !important; }

/* Cart coupon row */
.woocommerce .cart .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0 !important;
}
.woocommerce .cart .coupon { display: flex; gap: 8px; }
.woocommerce .cart .coupon input#coupon_code {
  height: 44px;
  width: 180px;
  padding: 0 14px;
}
.woocommerce .cart .actions .da-btn-outline-teal { width: auto; padding: 0 20px; height: 44px; }

/* Cart / Checkout logged in bar */
.da-checkout-logged-in {
  background: var(--da-teal-light);
  border-left: 4px solid var(--da-teal);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Empty state */
.da-empty-state { text-align: center; padding: 60px 20px; }
.da-empty-state h3 { font-size: 20px; margin-bottom: 8px; }

/* Sidebar drawer (mobile) */
.da-sidebar-close { display: none; }
.da-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9990;
}
.da-sidebar-overlay.active { display: block; }

@media (max-width: 768px) {
  .da-checkout-grid { flex-direction: column; }
  .da-checkout-left,
  .da-checkout-right { flex: none; max-width: 100%; width: 100%; position: static; }

  .da-shop-sidebar {
    position: fixed;
    top: 0; left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9995;
    overflow-y: auto;
    padding: 20px;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  }
  .da-shop-sidebar.open { left: 0; }
  .da-sidebar-close {
    display: block;
    position: absolute;
    top: 12px; right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    color: #888;
    cursor: pointer;
  }
  .da-filter-toggle { width: 100%; margin-bottom: 16px; }
  .woocommerce .cart .actions { flex-direction: column; align-items: stretch; }
  .woocommerce .cart .coupon { flex-direction: column; }
  .woocommerce .cart .coupon input#coupon_code { width: 100%; }
}

/* ============================================
   v1.2 — CENTERED NAV + CENTERED MOBILE FOOTER
   ============================================ */

/* ---- DESKTOP: CENTER THE MENU ---- */
.da-nav-bar {
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.da-nav-bar .container,
.da-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
.da-nav-bar ul,
.da-nav-bar .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* Astra nav centering */
.main-header-bar .main-header-bar-navigation,
.ast-primary-header-bar .ast-builder-menu,
.site-primary-footer-wrap { justify-content: center !important; }

.ast-nav-menu,
.main-navigation ul.nav-menu,
#ast-desktop-header .ast-nav-menu {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  flex-wrap: wrap !important;
}

.ast-builder-menu-1 .main-header-menu,
.ast-builder-menu-1 { justify-content: center !important; }

/* Astra header row: force center for menu row */
.ast-builder-grid-row-container.ast-builder-grid-row-3-equal .site-header-primary-section-center,
.site-header-section-center { justify-content: center !important; }

/* Remove the "all pages" fallback look */
.ast-nav-menu > li > a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #333 !important;
  padding: 12px 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ---- MOBILE FOOTER: CENTER EVERYTHING ---- */
@media (max-width: 768px) {
  .da-footer { padding: 40px 0 0; }

  .da-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
    text-align: center;
  }

  .da-footer-title {
    text-align: center;
    border-bottom: none;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 18px;
  }
  .da-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--da-teal);
  }

  /* Social centered */
  .da-social-icons {
    justify-content: center;
    gap: 14px;
  }
  .da-social-icon { width: 44px; height: 44px; }
  .da-social-icon svg { width: 18px; height: 18px; }

  /* Contact centered */
  .da-contact-list li {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .da-contact-list li a,
  .da-contact-list li span.text { font-size: 14px; }

  /* Payment centered */
  .da-payment-icons {
    justify-content: center;
    gap: 10px;
  }
  .da-payment-icons img,
  .da-payment-icon { height: 32px; }

  /* Delivery centered */
  .da-footer-delivery {
    display: flex;
    justify-content: center;
  }
  .da-footer-delivery img { margin: 0 auto; }

  .da-footer-bottom { text-align: center; padding: 20px 20px 24px; }
}

/* ---- ELEMENTOR COMPATIBILITY ---- */
/* Let Elementor sections go full width inside our container */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1280px;
}
.da-elementor-page .da-inner-page-wrap { max-width: 100%; padding: 0; }

/* Elementor widget area on WooCommerce templates */
.elementor-widget-container .da-products-grid,
.elementor-widget-container .da-categories-grid { padding: 0; }

/* Make our shortcode sections respect Elementor container */
.elementor .da-hero-inner,
.elementor .da-features-grid,
.elementor .da-categories-grid,
.elementor .da-products-grid,
.elementor .da-testimonials-grid,
.elementor .da-footer-grid { max-width: 100%; }

/* ---- CONTACT PAGE ---- */
.da-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.da-contact-info-card {
  background: #f9f9f9;
  border-radius: var(--da-radius);
  padding: 28px;
}
.da-contact-info-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--da-teal);
}
.da-contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--da-border);
}
.da-contact-row:last-child { border-bottom: none; }
.da-contact-row .ci {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--da-teal-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--da-teal); font-size: 18px;
  flex-shrink: 0;
}
.da-contact-row .cl { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: .5px; }
.da-contact-row .cv { font-size: 15px; font-weight: 600; color: #222; }

.da-contact-form-card {
  background: #fff;
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  padding: 28px;
}
.da-form-row { margin-bottom: 16px; }
.da-form-row label {
  display: block; font-size: 13px; font-weight: 600;
  color: #555; margin-bottom: 6px;
}
.da-form-row input,
.da-form-row textarea,
.da-form-row select {
  width: 100%; height: 44px;
  border: 1px solid #ddd; border-radius: 6px;
  padding: 0 14px; font-size: 14px; font-family: var(--da-font-body);
}
.da-form-row textarea { height: 120px; padding: 12px 14px; resize: vertical; }
.da-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 768px) {
  .da-contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .da-form-grid-2 { grid-template-columns: 1fr; gap: 0; }
}

/* ---- ABOUT PAGE ---- */
.da-about-hero {
  background: var(--da-darker);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.da-about-hero h1 { color: #fff; font-size: 40px; margin-bottom: 12px; }
.da-about-hero p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 680px; margin: 0 auto; }

.da-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin: 40px 0;
}
.da-stat-card {
  background: #f9f9f9; border-radius: var(--da-radius);
  padding: 28px 16px; text-align: center;
}
.da-stat-num { font-size: 32px; font-weight: 800; color: var(--da-teal); font-family: var(--da-font-heading); }
.da-stat-label { font-size: 13px; color: #777; margin-top: 4px; }

@media (max-width: 768px) {
  .da-about-hero h1 { font-size: 26px; }
  .da-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .da-stat-num { font-size: 24px; }
}

/* ============================================
   v1.4 — PRODUCT PAGE EXTRAS
   ============================================ */

/* ---- BLOCK WRAPPERS ---- */
.da-block-inner,
.da-fbt-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.da-block-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  font-family: var(--da-font-heading);
  margin-bottom: 6px;
}
.da-block-title::after {
  content: '';
  display: block;
  width: 46px;
  height: 3px;
  background: var(--da-teal);
  margin-top: 10px;
  margin-bottom: 24px;
}

/* ---- TRUST BADGES (under add to cart) ---- */
.da-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--da-border);
}
.da-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.da-trust-ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--da-teal-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--da-teal);
  font-size: 15px; font-weight: 700;
  flex-shrink: 0;
}
.da-trust-item strong {
  display: block;
  font-size: 13px;
  color: #222;
  line-height: 1.3;
}
.da-trust-item span {
  font-size: 11px;
  color: #888;
}

/* ---- PRODUCT TABS ---- */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 0 24px !important;
  border-bottom: 2px solid var(--da-border) !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 14px 22px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #777 !important;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--da-transition);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover { color: var(--da-teal) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--da-teal) !important;
  border-bottom-color: var(--da-teal);
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

/* Tab body typography */
.da-tab-content h3,
.woocommerce-Tabs-panel h2,
.woocommerce-Tabs-panel h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 24px 0 12px;
}
.da-tab-content h3:first-child,
.woocommerce-Tabs-panel h2:first-child { margin-top: 0; }
.woocommerce-Tabs-panel p,
.da-tab-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
.woocommerce-Tabs-panel ul { padding-left: 20px; }
.woocommerce-Tabs-panel ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

/* Check / cross lists */
.da-check-list,
.da-cross-list { list-style: none; padding: 0 !important; margin: 0 0 16px; }
.da-check-list li,
.da-cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  padding: 6px 0;
}
.da-check-list li::before {
  content: '✓';
  color: var(--da-green);
  font-weight: 700;
  flex-shrink: 0;
}
.da-cross-list li::before {
  content: '✕';
  color: var(--da-red);
  font-weight: 700;
  flex-shrink: 0;
}

.da-note {
  background: var(--da-teal-light);
  border-left: 4px solid var(--da-teal);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 13px !important;
  color: #444 !important;
  margin: 16px 0 !important;
}

/* Info cards inside shipping tab */
.da-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.da-info-card {
  background: #f9f9f9;
  border-radius: var(--da-radius);
  padding: 18px 14px;
  text-align: center;
}
.da-info-icon { font-size: 26px; margin-bottom: 8px; }
.da-info-title { font-size: 13px; font-weight: 700; color: #222; margin-bottom: 4px; }
.da-info-text { font-size: 12px; color: #777; line-height: 1.5; }

/* Specifications table */
.woocommerce table.shop_attributes {
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
  padding: 13px 18px !important;
  font-size: 14px !important;
  border-bottom: 1px solid var(--da-border) !important;
  text-align: left;
}
.woocommerce table.shop_attributes th {
  background: #f9f9f9 !important;
  font-weight: 600 !important;
  color: #444 !important;
  width: 35%;
}
.woocommerce table.shop_attributes td { color: #555 !important; font-style: normal !important; }
.woocommerce table.shop_attributes tr:last-child th,
.woocommerce table.shop_attributes tr:last-child td { border-bottom: none !important; }
.woocommerce table.shop_attributes td p { margin: 0 !important; }

/* ---- FREQUENTLY BOUGHT TOGETHER ---- */
.da-fbt {
  background: #f9f9f9;
  padding: 40px 0;
  margin: 40px 0;
}
.da-fbt-row {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.da-fbt-items {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}
.da-fbt-plus {
  font-size: 22px;
  color: var(--da-teal);
  font-weight: 700;
  flex-shrink: 0;
}
.da-fbt-item {
  background: #fff;
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  padding: 14px;
  width: 170px;
  text-align: center;
  cursor: pointer;
  transition: var(--da-transition);
  position: relative;
  display: block;
}
.da-fbt-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.da-fbt-check {
  position: absolute;
  top: 10px; left: 10px;
  width: 17px; height: 17px;
  accent-color: var(--da-teal);
  cursor: pointer;
}
.da-fbt-item.unchecked { opacity: .45; }
.da-fbt-thumb {
  display: block;
  height: 90px;
  margin-bottom: 8px;
}
.da-fbt-thumb img {
  height: 90px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.da-fbt-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.35;
  margin-bottom: 5px;
  min-height: 32px;
}
.da-fbt-price {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--da-teal);
}

.da-fbt-total {
  background: #fff;
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius);
  padding: 22px;
  min-width: 240px;
  text-align: center;
}
.da-fbt-total-label { font-size: 13px; color: #888; margin-bottom: 4px; }
.da-fbt-total-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--da-teal);
  margin-bottom: 14px;
  font-family: var(--da-font-heading);
}
.da-fbt-add { width: 100%; }
.da-fbt-add.loading { opacity: .6; pointer-events: none; }

/* ---- RELATED / UPSELL / RECENTLY VIEWED ---- */
.woocommerce .related,
.woocommerce .upsells,
.da-recently-viewed {
  max-width: 1280px;
  margin: 50px auto !important;
  padding: 0 20px;
  clear: both;
  width: 100%;
}
.woocommerce .related > h2,
.woocommerce .upsells > h2 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #222 !important;
  font-family: var(--da-font-heading) !important;
  margin-bottom: 6px !important;
}
.woocommerce .related > h2::after,
.woocommerce .upsells > h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 3px;
  background: var(--da-teal);
  margin-top: 10px;
  margin-bottom: 24px;
}
.woocommerce .related ul.products,
.woocommerce .upsells ul.products {
  grid-template-columns: repeat(4, 1fr) !important;
}
.da-recently-viewed .da-products-grid { padding: 0 !important; }

/* Single product page needs block-level children to stack */
.woocommerce div.product { flex-wrap: wrap; }
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells,
.woocommerce div.product .da-fbt,
.woocommerce div.product .da-recently-viewed { width: 100%; flex: 0 0 100%; }

/* ---- TOAST ---- */
.da-toast {
  position: fixed;
  top: 20px; right: 20px;
  background: #fff;
  border-left: 4px solid var(--da-green);
  border-radius: var(--da-radius);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
  padding: 14px 20px;
  font-size: 14px;
  color: #333;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  max-width: 340px;
}
.da-toast.show { transform: translateX(0); }
.da-toast.error { border-left-color: var(--da-red); }
.da-toast a { color: var(--da-teal); font-weight: 600; white-space: nowrap; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .woocommerce .related ul.products,
  .woocommerce .upsells ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .da-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .da-block-title { font-size: 19px; }

  .da-trust-badges { grid-template-columns: 1fr; gap: 14px; }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs::-webkit-scrollbar { display: none; }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 12px 16px !important;
    font-size: 13px !important;
    white-space: nowrap;
  }

  .da-info-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .da-fbt { padding: 28px 0; margin: 28px 0; }
  .da-fbt-row { flex-direction: column; align-items: stretch; gap: 18px; }
  .da-fbt-items { justify-content: center; }
  .da-fbt-item { width: calc(50% - 20px); min-width: 130px; }
  .da-fbt-thumb, .da-fbt-thumb img { height: 70px !important; }
  .da-fbt-total { min-width: 100%; }

  .woocommerce .related ul.products,
  .woocommerce .upsells ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  .woocommerce table.shop_attributes th { width: 42%; }
  .woocommerce table.shop_attributes th,
  .woocommerce table.shop_attributes td { padding: 11px 13px !important; font-size: 13px !important; }

  .da-toast { left: 16px; right: 16px; max-width: none; top: 70px; }
}

/* ============================================================
   v2.0 — MOBILE FULL CENTERING
   ============================================================ */
@media (max-width: 768px) {

  /* ---- HERO ---- */
  .da-hero-inner { text-align: center; }
  .da-hero-content { text-align: center !important; }
  .da-hero-tag { display: block; text-align: center; }
  .da-hero-title { text-align: center; }
  .da-hero-subtitle { text-align: center; }
  .da-hero-btns { align-items: center; justify-content: center; }

  /* ---- SECTION TITLES ---- */
  .da-section-title,
  .da-block-title { text-align: center !important; }
  .da-block-title::after,
  .da-title-underline { margin-left: auto !important; margin-right: auto !important; }

  /* ---- PRODUCTS HEADER ---- */
  .da-products-header {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 14px;
  }
  .da-tabs { justify-content: center; }
  .da-view-all { text-align: center; }

  /* ---- PRODUCT CARDS ---- */
  .da-product-card { text-align: center; }
  .da-product-cat,
  .da-product-name,
  .da-product-price { text-align: center; }
  .da-product-footer { justify-content: center; gap: 10px; }
  .da-product-name { min-height: 38px; }

  .woocommerce ul.products li.product {
    text-align: center !important;
  }
  .woocommerce ul.products li.product .price,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    text-align: center !important;
  }
  .woocommerce ul.products li.product .star-rating { margin: 0 auto 8px !important; }

  /* ---- CATEGORY CARDS ---- */
  .da-cat-card { text-align: center; }

  /* ---- FEATURES ---- */
  .da-feature-item { text-align: center; align-items: center; }

  /* ---- TESTIMONIALS ---- */
  .da-testi-card { text-align: center; }
  .da-testi-stars { text-align: center; }
  .da-testi-text { text-align: center; }
  .da-testi-author { justify-content: center; }

  /* ---- SHOW MORE ---- */
  .da-show-more-wrap { text-align: center; }
  .da-btn-outline-teal { margin: 0 auto; }

  /* ---- SINGLE PRODUCT ---- */
  .woocommerce div.product div.summary { text-align: center; }
  .woocommerce div.product .product_title { text-align: center; }
  .woocommerce div.product .woocommerce-product-rating { text-align: center; }
  .woocommerce div.product .woocommerce-product-rating .star-rating { margin: 0 auto 6px; float: none; display: block; }
  .woocommerce div.product p.price { text-align: center; }
  .woocommerce div.product .stock { display: inline-block; margin: 0 auto 12px; }

  .woocommerce div.product .woocommerce-product-details__short-description ul { text-align: left; display: inline-block; }
  .woocommerce div.product .woocommerce-product-details__short-description { text-align: center; }

  .woocommerce div.product form.cart {
    flex-direction: column;
    align-items: center;
  }
  .woocommerce div.product form.cart .quantity { margin: 0 auto 12px; }
  .woocommerce div.product form.cart .button,
  .da-buy-now { width: 100% !important; }

  .da-product-meta-actions { justify-content: center; }
  .da-trust-badges { justify-content: center; }
  .da-trust-item { justify-content: center; }

  /* Product image gallery centered */
  .woocommerce div.product div.images ol.flex-control-thumbs { justify-content: center; }

  /* ---- TABS ---- */
  .woocommerce div.product .woocommerce-tabs ul.tabs { justify-content: flex-start; }
  .da-tab-content { text-align: center; }
  .da-tab-content h3 { text-align: center; }
  .da-check-list, .da-cross-list { display: inline-block; text-align: left; }

  /* ---- BREADCRUMB / PAGE TITLE ---- */
  .da-page-title-bar { text-align: center; }
  .woocommerce-breadcrumb { text-align: center; }

  /* ---- SHOP TOPBAR ---- */
  .da-shop-topbar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  /* ---- CART / CHECKOUT / ACCOUNT ---- */
  .woocommerce table.shop_table tbody tr td { text-align: center !important; }
  .woocommerce .cart_totals,
  .da-checkout-right { text-align: center; }
  .woocommerce .cart_totals table tr td,
  .woocommerce .cart_totals table tr th { text-align: center; }
  .woocommerce-checkout .form-row label { text-align: center; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li a { text-align: center; border-left: none; border-bottom: 1px solid var(--da-border); }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { border-left: none; border-bottom-color: var(--da-teal); }
  .woocommerce-MyAccount-content { text-align: center; }

  /* ---- CONTACT / ABOUT ---- */
  .da-contact-row { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 8px; }
  .da-contact-info-card h3,
  .da-contact-form-card h3 { text-align: center; }
  .da-form-row label { text-align: center; }
  .da-stat-card { text-align: center; }
  .da-about-content { text-align: center; }
  .da-about-content ul { display: inline-block; text-align: left; }

  /* ---- FBT ---- */
  .da-fbt-items { justify-content: center; }
  .da-fbt-total { text-align: center; }

  /* ---- FOOTER (already centered, reinforce) ---- */
  .da-footer-grid { text-align: center !important; }
  .da-footer-title { text-align: center !important; }
  .da-social-icons { justify-content: center !important; }
  .da-contact-list li { justify-content: center !important; }
  .da-payment-icons { justify-content: center !important; }
  .da-footer-delivery { justify-content: center !important; }
  .da-footer-bottom { text-align: center !important; }
}

/* ============================================================
   v2.0 — SIMPLE PRODUCT LAYOUT
   ============================================================ */
body.da-layout-simple .da-trust-badges,
body.da-layout-simple .da-fbt,
body.da-layout-simple .da-recently-viewed,
body.da-layout-simple .upsells { display: none !important; }

/* Simple layout: single tab looks cleaner without the tab bar */
body.da-layout-simple .woocommerce-tabs ul.tabs li:only-child { display: none; }
body.da-layout-simple .woocommerce-tabs ul.tabs:has(li:only-child) { border-bottom: none; margin-bottom: 0; }

/* ============================================================
   v2.0 — HEADER HARDENING
   ============================================================ */
/* Make sure our header nav never wraps oddly */
.ast-nav-menu > li > a { white-space: nowrap; }

/* Astra mobile menu items */
@media (max-width: 768px) {
  .ast-mobile-popup-drawer .ast-nav-menu > li > a,
  #ast-mobile-site-navigation .ast-nav-menu > li > a { text-align: center !important; }
}
