/**
 * Tenbit Addon - Premium Unified Stylesheet
 * Author: Team Tenbit Solutions
 * Version: 1.1.2
 * 
 * Includes ultra-polished styling for:
 * 1. Hero Banner Pro Slider
 * 2. Section Heading
 * 3. Trust & Features Bar
 * 4. WooCommerce Categories Grid
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================================================
   GLOBAL DESIGN TOKENS & CSS VARIABLES
========================================================================= */
:root {
  --tb-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tb-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --tb-primary: #1a6fc4;
  --tb-primary-dark: #145ba3;
  --tb-primary-light: #4a90d9;
  
  --tb-accent: #ff6b35;
  --tb-accent-light: #ff7a3d;
  --tb-accent-hover: #e85a1f;
  
  --tb-dark-navy: #0d1b2e;
  --tb-deep-blue: #08172c;
  --tb-text-dark: #0d1b2e;
  --tb-text-body: #2d4a6e;
  --tb-text-muted: #64748b;
  
  /* Hero Overlays */
  --tb-hero-overlay-1: rgba(8, 24, 46, 0.94);
  --tb-hero-overlay-2: rgba(8, 24, 46, 0.82);
  --tb-hero-overlay-3: rgba(8, 24, 46, 0.28);
  --tb-hero-overlay-4: rgba(8, 24, 46, 0.06);

  /* Gradients */
  --tb-gradient-primary: linear-gradient(135deg, #1a6fc4 0%, #ff6b35 100%);
  --tb-gradient-title: linear-gradient(90deg, #1a6fc4 0%, #3b82f6 28%, #7c3aed 62%, #ff6b35 100%);
  --tb-gradient-btn: linear-gradient(135deg, #ff6b35 0%, #e85a1f 100%);
  --tb-gradient-badge-orange: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --tb-gradient-badge-blue: linear-gradient(135deg, #1a6fc4 0%, #3a8fd8 100%);
  
  /* Radii & Shadows */
  --tb-radius-sm: 8px;
  --tb-radius-md: 14px;
  --tb-radius-lg: 20px;
  --tb-radius-pill: 9999px;

  --tb-shadow-card: 0 6px 20px rgba(10, 25, 45, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
  --tb-shadow-card-hover: 0 18px 44px rgba(10, 25, 45, 0.24);
  --tb-shadow-btn: 0 6px 25px rgba(255, 107, 53, 0.45);
  --tb-shadow-btn-hover: 0 10px 32px rgba(255, 107, 53, 0.55);
}

/* =========================================================================
   ADDON #1: HERO BANNER PRO SLIDER
========================================================================= */
.hero-slider-section.tb-hero-slider {
  position: relative;
  width: 100%;
  min-height: 580px;
  height: clamp(520px, 56vw, 680px);
  overflow: hidden;
  background-color: var(--tb-dark-navy);
  display: flex;
  align-items: center;
  user-select: none;
  box-sizing: border-box;
}

.hero-slider-section.tb-fullscreen {
  min-height: 100vh !important;
  height: 100vh !important;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  z-index: 1;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s ease, transform 0.85s ease;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* Transition Variations */
.tb-effect-fade .hero-slide {
  transition: opacity 0.8s ease, visibility 0.8s ease;
  transform: none;
}
.tb-effect-fade .hero-slide.active {
  transform: none;
}

.tb-effect-zoom .hero-slide {
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.9s ease;
  transform: scale(1.12);
}
.tb-effect-zoom .hero-slide.active {
  transform: scale(1);
}

.tb-effect-kenburns .hero-slide.active {
  animation: tbKenBurnsAnimation 18s infinite alternate ease-in-out;
}

@keyframes tbKenBurnsAnimation {
  0% { transform: scale(1); }
  100% { transform: scale(1.14); }
}

/* Cinematic Directional Overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--tb-hero-overlay-1) 0%,
    var(--tb-hero-overlay-2) 42%,
    var(--tb-hero-overlay-3) 78%,
    var(--tb-hero-overlay-4) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Slide Container & Content Flex Box */
.hero-slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 10px 0;
  animation: tbFadeInSlide 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-sizing: border-box;
}

@keyframes tbFadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge Pill in Hero */
.hero-badge-wrap {
  display: block;
  margin-bottom: 20px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 107, 53, 0.18);
  border: 1px solid rgba(255, 107, 53, 0.55);
  color: #ffffff;
  padding: 7px 20px;
  border-radius: var(--tb-radius-pill);
  font-family: var(--tb-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 18px rgba(255, 107, 53, 0.22);
  transition: all 0.3s ease;
}

.hero-badge-pill i,
.hero-badge-pill svg {
  color: var(--tb-accent);
  fill: var(--tb-accent);
  font-size: 0.95rem;
}

/* Title & Headings */
.hero-slider-title {
  font-family: var(--tb-font-heading);
  font-size: clamp(2.3rem, 4.6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.14;
  color: #ffffff;
  margin: 0 0 18px 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.6px;
  word-wrap: break-word;
}

.hero-slider-title .highlight {
  color: var(--tb-accent-light);
  font-weight: 900;
  display: inline;
}

/* Description / Subtitle */
.hero-slider-desc {
  font-family: var(--tb-font-body);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.7;
  margin: 0 0 32px 0;
  max-width: 620px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  font-weight: 400;
}

/* Action Buttons Container */
.hero-slider-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Primary Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--tb-font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--tb-radius-pill);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-sizing: border-box;
  white-space: nowrap;
}

.hero-btn.btn-lg {
  padding: 15px 34px;
}

.hero-btn.btn-md {
  padding: 12px 26px;
  font-size: 0.92rem;
}

.hero-btn.btn-sm {
  padding: 9px 20px;
  font-size: 0.84rem;
}

.hero-btn-primary {
  background: var(--tb-gradient-btn);
  color: #ffffff !important;
  border: 2px solid transparent;
  box-shadow: var(--tb-shadow-btn);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #e85a1f 0%, #d44912 100%);
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--tb-shadow-btn-hover);
}

/* Secondary Button */
.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Trust Stars Badge under buttons */
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust-badge .trust-stars {
  color: #ffb703;
  display: flex;
  gap: 3px;
  font-size: 0.9rem;
}

.hero-trust-badge .trust-text {
  font-family: var(--tb-font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Slider Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
}

.hero-slider-arrow:hover {
  background: var(--tb-accent);
  border-color: var(--tb-accent);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 26px rgba(255, 107, 53, 0.55);
}

.hero-slider-arrow.prev { left: 28px; }
.hero-slider-arrow.next { right: 28px; }

/* Slider Dots Pagination */
.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.40);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-slider-dot.active {
  background: var(--tb-accent);
  width: 34px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

.hero-slider-dots.tb-dots-circles .hero-slider-dot.active {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}


/* =========================================================================
   ADDON #2: SECTION HEADING (Match media_1788476726275.png)
========================================================================= */
.section-header.tb-section-header {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  box-sizing: border-box;
  text-align: center;
}

.tb-section-header .tb-section-tag-wrap {
  display: block;
  text-align: center;
  margin: 0 auto 16px auto;
  width: 100%;
}

.section-tag.tb-section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #e1edfa;
  border: 1px solid rgba(26, 111, 196, 0.26);
  color: var(--tb-primary);
  padding: 6px 20px;
  border-radius: var(--tb-radius-pill);
  font-family: var(--tb-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  line-height: 1.4;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 111, 196, 0.08);
}

.tb-section-tag:hover {
  background-color: #d3e7fa;
  transform: translateY(-1px);
}

.section-title.tb-section-title {
  font-family: var(--tb-font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--tb-text-dark);
  margin: 0 0 14px 0;
  letter-spacing: -0.5px;
  word-wrap: break-word;
}

.tb-section-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.tb-section-title a:hover {
  opacity: 0.9;
}

.tb-section-title .gradient-text,
.gradient-text {
  background: linear-gradient(
    var(--tb-heading-grad-angle, 90deg),
    var(--tb-heading-grad-1, #1a6fc4) 0%,
    var(--tb-heading-grad-mid, #7c3aed) 58%,
    var(--tb-heading-grad-2, #ff6b35) 100%
  );
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline;
  font-weight: 800;
}

.section-desc.tb-section-desc {
  font-family: var(--tb-font-body);
  font-size: 1.05rem;
  color: var(--tb-text-body);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}


/* =========================================================================
   ADDON #3: TRUST BAR (Match media_1788476937095.png)
========================================================================= */
.trust-bar.tb-trust-bar {
  background: #ffffff;
  border-top: 1px solid rgba(26, 111, 196, 0.12);
  border-bottom: 1px solid rgba(26, 111, 196, 0.12);
  padding: 22px 0;
  box-shadow: 0 2px 14px rgba(26, 111, 196, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.trust-inner.tb-trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.trust-item.tb-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1e3a5f;
  font-family: var(--tb-font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
  line-height: 1.3;
  white-space: nowrap;
}

.trust-item.tb-trust-item:hover {
  transform: translateY(-2px);
  color: var(--tb-primary);
}

.tb-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tb-icons-gradient .tb-trust-icon i {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--tb-trust-icon-g1, var(--tb-primary)) 0%, var(--tb-trust-icon-g2, var(--tb-accent)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.tb-icons-gradient .tb-trust-icon svg {
  width: 22px;
  height: 22px;
  fill: url(#tbTrustGrad);
}

.tb-icons-solid .tb-trust-icon i {
  font-size: 1.3rem;
  color: var(--tb-primary);
}

.tb-trust-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tb-trust-text {
  font-weight: 600;
  color: #1e3a5f;
  transition: color 0.2s ease;
}

.tb-trust-item:hover .tb-trust-text {
  color: var(--tb-primary);
}

.tb-trust-subtext {
  font-family: var(--tb-font-body);
  font-size: 0.78rem;
  color: var(--tb-text-muted);
}


/* =========================================================================
   ADDON #4: WOOCOMMERCE CATEGORIES GRID (Match media_1788477165236.png)
========================================================================= */
.cat-grid.tb-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.cat-card.tb-cat-card {
  position: relative;
  display: block;
  height: 235px;
  border-radius: var(--tb-radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--tb-shadow-card);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background-color: var(--tb-dark-navy);
  box-sizing: border-box;
}

.cat-card.tb-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tb-shadow-card-hover);
}

.cat-card.tb-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cat-card.tb-cat-card:hover img {
  transform: scale(1.08);
}

/* Category Badge (Top-Left) */
.cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--tb-gradient-badge-orange);
  color: #ffffff;
  font-family: var(--tb-font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--tb-radius-pill);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

.cat-badge.cat-badge-orange {
  background: var(--tb-gradient-badge-orange);
}

.cat-badge.cat-badge-blue {
  background: var(--tb-gradient-badge-blue);
}

/* Card Info Overlay — Anchored to bottom with smooth scrim */
.cat-info.tb-cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 22px;
  background: linear-gradient(
    to top,
    rgba(8, 23, 44, 0.96) 0%,
    rgba(8, 23, 44, 0.76) 48%,
    rgba(8, 23, 44, 0.20) 78%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  transition: padding-bottom 0.3s ease;
}

.cat-card.tb-cat-card:hover .cat-info.tb-cat-info {
  padding-bottom: 24px;
}

.cat-info.tb-cat-info h3 {
  font-family: var(--tb-font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 4px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.cat-price {
  font-family: var(--tb-font-body);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.4;
  display: block;
}

.cat-price strong {
  color: #ff7a3d !important;
  font-weight: 700;
}

/* CTA Arrow (Subtle hover reveal) */
.cat-cta.tb-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-family: var(--tb-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-top: 4px;
}

.cat-card.tb-cat-card:hover .cat-cta.tb-cat-cta {
  opacity: 1;
  transform: translateY(0);
}

.cat-card.tb-cat-card:hover .cat-cta.tb-cat-cta i {
  transform: translateX(4px);
  transition: transform 0.2s ease;
}


/* =========================================================================
   RESPONSIVE MEDIA QUERIES
========================================================================= */
@media (max-width: 1200px) {
  .hero-slider-section.tb-hero-slider {
    min-height: 520px;
  }
}

@media (max-width: 1024px) {
  .cat-grid.tb-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-slider-arrow.prev { left: 16px; }
  .hero-slider-arrow.next { right: 16px; }
}

@media (max-width: 768px) {
  .hero-slider-section.tb-hero-slider {
    min-height: 480px;
    height: auto;
    padding: 60px 0;
  }
  .hero-slide-overlay {
    background: rgba(8, 24, 46, 0.90);
  }
  .hero-slider-arrow {
    display: none;
  }
  .hero-slide-container {
    padding: 0 20px;
  }
  .hero-slide-content {
    max-width: 100%;
  }
  .cat-grid.tb-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cat-card.tb-cat-card {
    height: 200px;
    border-radius: 16px;
  }
  .cat-cta.tb-cat-cta {
    opacity: 1;
    transform: none;
  }
  .trust-inner.tb-trust-inner {
    justify-content: center;
    gap: 16px 24px;
  }
}

@media (max-width: 480px) {
  .hero-slider-section.tb-hero-slider {
    min-height: 440px;
  }
  .hero-slider-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn {
    width: 100%;
  }
  .cat-grid.tb-cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .cat-card.tb-cat-card {
    height: 175px;
    border-radius: 14px;
  }
  .cat-info.tb-cat-info {
    padding: 14px;
  }
  .cat-info.tb-cat-info h3 {
    font-size: 1rem;
  }
  .cat-price {
    font-size: 0.78rem;
  }
}

/* =========================================================================
   ADDON #5: WHY CHOOSE US / FEATURE SHOWCASE (Match media_1788550871778.png)
========================================================================= */
.why-us.tb-why-us {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
  box-sizing: border-box;
}

.why-us-inner.tb-why-us-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tb-why-us.tb-reverse .tb-why-us-inner {
  direction: rtl;
}
.tb-why-us.tb-reverse .tb-why-us-inner > * {
  direction: ltr;
}

.why-us-text.tb-why-us-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tb-why-us-tag-wrap {
  margin-bottom: 14px;
}

.section-tag.tb-section-tag.tb-why-us-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e1edfa;
  border: 1px solid rgba(26, 111, 196, 0.26);
  color: var(--tb-primary, #1a6fc4);
  padding: 6px 18px;
  border-radius: var(--tb-radius-pill, 9999px);
  font-family: var(--tb-font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.section-title.tb-section-title.tb-why-us-title {
  font-family: var(--tb-font-heading);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--tb-text-dark, #0d1b2e);
  margin: 0 0 18px 0;
  letter-spacing: -0.6px;
}

.section-desc.tb-section-desc.tb-why-us-desc {
  font-family: var(--tb-font-body);
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 10px 0;
  max-width: 580px;
}

/* Features List */
.features-list.tb-features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0;
  width: 100%;
}

.feature-item.tb-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.25s ease;
}

.feature-item.tb-feature-item:hover {
  transform: translateX(4px);
}

.feature-icon.tb-feature-icon-box {
  min-width: 48px;
  width: 48px;
  height: 48px;
  background-color: rgba(26, 111, 196, 0.08);
  border: 1px solid rgba(26, 111, 196, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tb-primary, #1a6fc4);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item.tb-feature-item:hover .feature-icon.tb-feature-icon-box {
  background-color: var(--tb-primary, #1a6fc4);
  color: #ffffff;
  border-color: var(--tb-primary, #1a6fc4);
  box-shadow: 0 4px 14px rgba(26, 111, 196, 0.3);
}

.feature-icon.tb-feature-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.tb-feature-body {
  flex: 1;
}

.tb-feature-title {
  color: var(--tb-text-dark, #0d1b2e);
  font-family: var(--tb-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.tb-feature-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tb-feature-title a:hover {
  color: var(--tb-primary, #1a6fc4);
}

.tb-feature-desc {
  font-family: var(--tb-font-body);
  font-size: 0.92rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

/* CTA Button */
.tb-why-us-btn-wrap {
  margin-top: 10px;
}

.btn.btn-primary.tb-why-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tb-gradient-btn, linear-gradient(135deg, #ff6b35 0%, #e85a1f 100%));
  color: #ffffff !important;
  padding: 14px 34px;
  border-radius: 30px;
  font-family: var(--tb-font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(255, 107, 53, 0.38);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.tb-why-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.48);
  color: #ffffff !important;
}

.tb-why-us-btn .tb-btn-icon {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
}

.tb-why-us-btn .tb-btn-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Visual Card Column */
.why-us-visual.tb-why-us-visual {
  position: relative;
  width: 100%;
}

.visual-card.main-card.tb-visual-card {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 25, 45, 0.15);
  background: linear-gradient(135deg, #1c4b82 0%, #2f65a6 30%, #764b85 68%, #ff6b35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-visual-image-wrap {
  width: 100%;
  height: 100%;
}

.tb-visual-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-placeholder.tb-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}

.tb-visual-water-icon {
  font-size: 4.5rem;
  color: #ff7a3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-visual-water-icon i {
  font-size: 4.5rem;
  color: #ff7a3d;
}

.tb-visual-water-icon svg {
  width: 72px;
  height: 72px;
  fill: #ff7a3d;
}

.tb-visual-caption {
  font-family: var(--tb-font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Floating Stat Badges */
.floating-badge.tb-floating-badge {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid rgba(26, 111, 196, 0.12);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(10, 25, 45, 0.14);
  z-index: 5;
  user-select: none;
}

.tb-floating-badge.tb-badge-1 {
  top: -20px;
  right: -20px;
}

.tb-floating-badge.tb-badge-2 {
  bottom: -20px;
  left: -30px;
}

.tb-floating-badge.tb-float-anim-1 {
  animation: tbFloatBadge 3.2s ease-in-out infinite;
}

.tb-floating-badge.tb-float-anim-2 {
  animation: tbFloatBadge 3.2s ease-in-out infinite 1.6s;
}

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

.tb-badge-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.tb-badge-icon-wrap.tb-icon-orange {
  color: #ff6b35;
}

.tb-badge-icon-wrap.tb-icon-star {
  color: #ff6b35;
}

.tb-badge-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.tb-badge-text-wrap {
  display: flex;
  flex-direction: column;
}

.tb-badge-text-wrap strong {
  display: block;
  color: var(--tb-text-dark, #0d1b2e);
  font-family: var(--tb-font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.tb-badge-text-wrap span {
  display: block;
  font-family: var(--tb-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.2;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .why-us-inner.tb-why-us-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .tb-why-us.tb-reverse .tb-why-us-inner {
    direction: ltr;
  }
  .visual-card.main-card.tb-visual-card {
    height: 380px;
  }
  .tb-floating-badge.tb-badge-1 {
    right: 10px;
    top: -15px;
  }
  .tb-floating-badge.tb-badge-2 {
    left: 10px;
    bottom: -15px;
  }
}

@media (max-width: 576px) {
  .why-us.tb-why-us {
    padding: 40px 0;
  }
  .visual-card.main-card.tb-visual-card {
    height: 300px;
    border-radius: 20px;
  }
  .tb-visual-water-icon i {
    font-size: 3.5rem;
  }
  .tb-floating-badge.tb-floating-badge {
    padding: 10px 14px;
    gap: 10px;
  }
  .tb-badge-text-wrap strong {
    font-size: 1.05rem;
  }
  .tb-badge-text-wrap span {
    font-size: 0.74rem;
  }
}

/* =============================================================================
   ADDON #6: WOOCOMMERCE PRODUCTS GRID / PRODUCT STYLE ITEM
   Matches pixel-perfect design with index.html and user reference image
   ============================================================================= */
.tb-products-grid,
.products-grid.tb-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.tb-product-card,
.product-card.tb-product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
}

.tb-product-card:hover,
.product-card.tb-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 107, 53, 0.35);
}

/* Product Image Box */
.tb-product-img,
.product-img.tb-product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e8f0fe;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tb-product-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.tb-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tb-product-card:hover .tb-product-img img {
  transform: scale(1.07);
}

/* Pill Badges */
.tb-product-tag,
.product-tag.tb-product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.tb-tag-hot {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  box-shadow: 0 3px 12px rgba(255, 107, 53, 0.45);
}

.tb-tag-new {
  background: linear-gradient(135deg, #1a6fc4 0%, #00b4d8 100%);
  box-shadow: 0 3px 12px rgba(0, 180, 216, 0.45);
}

.tb-tag-sale {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 3px 12px rgba(239, 68, 68, 0.45);
}

/* Hover Quick Add to Cart Overlay */
.tb-product-actions-overlay,
.product-actions-overlay.tb-product-actions-overlay,
.product-actions-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.60) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5 !important;
}

.tb-product-card:hover .tb-product-actions-overlay,
.tb-product-card:hover .product-actions-overlay,
.product-card:hover .product-actions-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.tb-add-cart-btn,
.add-cart-btn,
.add-cart-btn.tb-add-cart-btn,
a.tb-add-cart-btn,
a.add-cart-btn,
button.add-cart-btn,
.tb-product-actions-overlay a,
.tb-product-actions-overlay button {
  background: #ff6b35 !important;
  color: #ffffff !important;
  padding: 11px 24px !important;
  border-radius: 50px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.45) !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.tb-add-cart-btn *,
.add-cart-btn *,
a.tb-add-cart-btn *,
a.add-cart-btn * {
  color: #ffffff !important;
  text-decoration: none !important;
}

.tb-add-cart-btn:hover,
.tb-add-cart-btn:focus,
.add-cart-btn:hover,
.add-cart-btn:focus,
a.tb-add-cart-btn:hover,
a.add-cart-btn:hover,
button.add-cart-btn:hover,
.tb-product-actions-overlay a:hover,
.tb-product-actions-overlay button:hover {
  transform: translateY(-2px) scale(1.03) !important;
  background: #e85d26 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.60) !important;
}

.tb-add-cart-btn:hover *,
.add-cart-btn:hover *,
a.tb-add-cart-btn:hover *,
a.add-cart-btn:hover * {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Product Card Content Body */
.tb-product-body,
.product-body.tb-product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-sizing: border-box;
}

/* Ratings & Review */
.tb-product-rating,
.product-rating.tb-product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  line-height: 1;
}

.tb-product-rating i {
  color: #fbbf24;
  font-size: 0.82rem;
}

.tb-product-rating span {
  color: #64748b;
  margin-left: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* Title */
.tb-product-title,
.product-title.tb-product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.tb-product-title a,
.product-title.tb-product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tb-product-title a:hover {
  color: #ff6b35;
}

/* Short Description */
.tb-product-desc,
.product-desc.tb-product-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 18px 0;
  font-family: 'Inter', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Footer with Price & Button */
.tb-product-footer,
.product-footer.tb-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.tb-product-price,
.product-price.tb-product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.tb-price-old,
.price-old.tb-price-old {
  font-size: 0.88rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.tb-price-current,
.price-current.tb-price-current {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
}

.tb-price-unit,
.price-unit.tb-price-unit {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

/* View Details CTA Button */
.tb-btn-details,
.btn.tb-btn-details {
  background: #ff6b35;
  color: #ffffff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.38);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.tb-btn-details:hover,
.btn.tb-btn-details:hover {
  background: #e85d26;
  color: #ffffff !important;
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.48);
}

/* Responsive Products Grid */
@media (max-width: 1024px) {
  .tb-products-grid,
  .products-grid.tb-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .tb-product-img,
  .product-img.tb-product-img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .tb-products-grid,
  .products-grid.tb-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tb-product-img,
  .product-img.tb-product-img {
    height: 210px;
  }
  .tb-product-body,
  .product-body.tb-product-body {
    padding: 16px;
  }
  .tb-price-current,
  .price-current.tb-price-current {
    font-size: 1.2rem;
  }
}

/* =============================================================================
   ADDON #7: HOW IT WORKS / PROCESS STEPS
   Clean modern 3-step cards with arrow connectors matching reference image
   ============================================================================= */
.how-it-works.tb-process-steps,
.tb-process-steps {
  width: 100%;
  box-sizing: border-box;
  padding: 60px 0;
  position: relative;
}

.tb-steps-header {
  text-align: center;
  margin-bottom: 45px;
}

.tb-steps-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1a6fc4;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.tb-steps-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

.tb-steps-wrapper,
.steps-grid.tb-steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
}

.tb-step-card,
.step-card.tb-step-card {
  background: #ffffff;
  border: 1px solid #e0f2fe;
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  flex: 1;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.04);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  box-sizing: border-box;
  position: relative;
}

.tb-step-card:hover,
.step-card.tb-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.12);
  border-color: #7dd3fc;
}

.tb-step-num,
.step-number.tb-step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #64748b;
  margin-bottom: 22px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.tb-step-icon-box,
.step-icon.tb-step-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #0284c7;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.tb-step-card:hover .tb-step-icon-box {
  transform: scale(1.08);
}

.tb-step-arrow,
.step-arrow.tb-step-arrow {
  color: #93c5fd;
  font-size: 1.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.tb-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.tb-step-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.tb-step-title a:hover {
  color: #0284c7;
}

.tb-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 860px) {
  .tb-steps-wrapper,
  .steps-grid.tb-steps-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .tb-step-card,
  .step-card.tb-step-card {
    max-width: 100%;
    width: 100%;
    padding: 32px 24px;
  }
  .tb-step-arrow,
  .step-arrow.tb-step-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }
}

/* ==========================================================================
   ADDON #8: TESTIMONIALS & REVIEWS SECTION (.tb-testimonials-section)
   ========================================================================== */
.tb-testimonials-section,
.testimonials.tb-testimonials-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.tb-testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.tb-testimonials-tag-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.tb-testimonials-tag,
.section-tag.tb-testimonials-tag {
  display: inline-block;
  background: rgba(0, 180, 216, 0.12);
  color: #0077b6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.tb-testimonials-section-title,
.section-title.tb-testimonials-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.02em;
}

.tb-testimonials-grid,
.testimonials-grid.tb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.tb-testimonial-card,
.testimonial-card.tb-testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
}

.tb-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.tb-testimonial-card.tb-featured-review,
.testimonial-card.featured-review.tb-testimonial-card {
  border-color: #0077b6;
  background: rgba(26, 111, 196, 0.04);
}

.tb-testimonial-card.tb-featured-review::before,
.testimonial-card.featured-review.tb-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5.5rem;
  color: rgba(26, 111, 196, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.tb-review-stars,
.review-stars.tb-review-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.tb-testimonial-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px 0;
  font-style: italic;
  flex-grow: 1;
}

.tb-reviewer,
.reviewer.tb-reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tb-reviewer-avatar,
.reviewer-avatar.tb-reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.88rem;
  flex-shrink: 0;
  object-fit: cover;
}

.tb-reviewer strong {
  display: block;
  color: #0f172a;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.tb-reviewer span {
  font-size: 0.8rem;
  color: #64748b;
  font-family: 'Inter', sans-serif;
}

/* Google Rating Trust Badge */
.tb-google-rating,
.google-rating.tb-google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px 32px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tb-google-rating:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tb-google-rating i.fab.fa-google {
  font-size: 2.2rem;
  color: #4285f4;
}

.tb-g-stars,
.g-stars.tb-g-stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.tb-google-rating strong {
  color: #0f172a;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.tb-google-rating span {
  color: #64748b;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 960px) {
  .tb-testimonials-grid,
  .testimonials-grid.tb-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tb-testimonials-grid,
  .testimonials-grid.tb-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .tb-testimonial-card,
  .testimonial-card.tb-testimonial-card {
    padding: 24px 20px;
  }
  .tb-google-rating,
  .google-rating.tb-google-rating {
    padding: 14px 20px;
    width: 100%;
  }
}

/* ==========================================================================
   ADDON #9: STATS COUNTER & METRIC BAR (.tb-stats-section)
   ========================================================================== */
.tb-stats-section,
.stats-counter-section.tb-stats-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
}

.tb-stats-section.tb-stats-bg-gradient {
  background: linear-gradient(135deg, #0d3d70 0%, #1a6fc4 45%, #3a8fd8 70%, #ff6b35 100%);
}

.tb-stats-section.tb-stats-bg-transparent {
  background: transparent;
}

.tb-stats-counter-bar,
.stats-counter-bar.tb-stats-counter-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tb-stat-box,
.stat-box.tb-stat-box {
  text-align: center;
  flex: 1;
  padding: 0 15px;
  box-sizing: border-box;
}

.tb-stat-value,
.stat-box .stat-value.tb-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.tb-stat-number {
  color: inherit;
}

.tb-stat-suffix,
.stat-box .stat-value span:last-child.tb-stat-suffix {
  color: #ff6b35;
  font-weight: 800;
}

.tb-stat-label,
.stat-box .stat-label.tb-stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.tb-stat-divider,
.stats-counter-bar .stat-divider.tb-stat-divider {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .tb-stats-counter-bar,
  .stats-counter-bar.tb-stats-counter-bar {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
  .tb-stat-divider,
  .stats-counter-bar .stat-divider.tb-stat-divider {
    width: 60%;
    height: 1px;
  }
}

/* ==========================================================================
   10. FAQ ACCORDION ADDON (.tb-faq-*)
   ========================================================================== */

.tb-faq-section,
.faq-section.tb-faq-section {
  background: #f8fafc;
  padding: 80px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.tb-faq-container,
.faq-section .container.tb-faq-container {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.tb-faq-header,
.faq-section .section-header.tb-faq-header {
  text-align: center;
  margin-bottom: 38px;
}

.tb-faq-tag-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.tb-faq-tag,
.section-tag.tb-faq-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 216, 0.12);
  color: #0077b6;
  border: 1px solid rgba(0, 180, 216, 0.28);
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 999px;
}

.tb-faq-section-title,
.section-title.tb-faq-section-title {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.tb-faq-section-title .gradient-text {
  background: linear-gradient(135deg, #0077b6 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.tb-faq-section-desc,
.section-desc.tb-faq-section-desc {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* FAQ Accordion List & Cards */
.tb-faq-list,
.faq-list.tb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  width: 100%;
}

.tb-faq-item,
.faq-item.tb-faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 180, 216, 0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.tb-faq-item:hover {
  border-color: rgba(0, 119, 182, 0.4);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.08);
}

.tb-faq-item.active {
  border-color: #0077b6;
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.1);
}

/* Question Trigger */
.tb-faq-question,
.faq-question.tb-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.tb-faq-question span {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  padding-right: 18px;
  transition: color 0.2s ease;
}

.tb-faq-question:hover span,
.tb-faq-question.active span,
.tb-faq-item.active .tb-faq-question span {
  color: #0077b6;
}

.tb-faq-question i,
.faq-question.tb-faq-question i {
  color: #0077b6;
  font-size: 0.95rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.08);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease;
}

.tb-faq-question:hover i,
.tb-faq-question.active i,
.tb-faq-item.active .tb-faq-question i {
  transform: rotate(180deg);
  background: #0077b6;
  color: #ffffff;
}

/* Answer Body */
.tb-faq-answer,
.faq-answer.tb-faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.tb-faq-answer.open,
.tb-faq-item.active .tb-faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
}

.tb-faq-answer p,
.faq-answer.tb-faq-answer p {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .tb-faq-section,
  .faq-section.tb-faq-section {
    padding: 60px 0;
  }
  .tb-faq-section-title,
  .section-title.tb-faq-section-title {
    font-size: 1.85rem;
  }
  .tb-faq-question,
  .faq-question.tb-faq-question {
    padding: 16px 18px;
  }
  .tb-faq-question span {
    font-size: 0.98rem;
  }
  .tb-faq-answer.open,
  .tb-faq-item.active .tb-faq-answer {
    padding: 0 18px 18px;
  }
}

/* ==========================================================================
   11. MENU CART ICON & SIDEBAR CART DRAWER (.tb-cart-*)
   ========================================================================== */

/* Cart Trigger Icon */
.tb-cart-trigger-wrap {
  display: flex;
  align-items: center;
}

.cart-icon,
.tb-cart-icon {
  position: relative;
  width: 42px;
  height: 42px;
  background: rgba(26, 111, 196, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #0077b6;
  box-sizing: border-box;
  transition: all 0.25s ease;
  user-select: none;
}

.cart-icon:hover,
.tb-cart-icon:hover {
  background: rgba(26, 111, 196, 0.16);
  color: #023e8a;
  border-color: #0077b6;
  transform: translateY(-1px);
}

.cart-badge,
.tb-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff6b35;
  color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
  line-height: 1;
}

/* Sidebar Cart Drawer */
.cart-sidebar,
.tb-cart-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -450px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  background: #ffffff;
  border-left: 1px solid rgba(0, 180, 216, 0.18);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(13, 61, 112, 0.18);
  box-sizing: border-box;
}

/* WordPress Admin Bar Compatibility */
.admin-bar .cart-sidebar,
.admin-bar .tb-cart-sidebar {
  top: 32px !important;
  height: calc(100% - 32px) !important;
  height: calc(100dvh - 32px) !important;
  max-height: calc(100dvh - 32px) !important;
}
@media (max-width: 782px) {
  .admin-bar .cart-sidebar,
  .admin-bar .tb-cart-sidebar {
    top: 46px !important;
    height: calc(100% - 46px) !important;
    height: calc(100dvh - 46px) !important;
    max-height: calc(100dvh - 46px) !important;
  }
}

.cart-sidebar.open,
.tb-cart-sidebar.open {
  right: 0 !important;
}

/* Left drawer modifier */
.cart-sidebar.left-drawer,
.tb-cart-sidebar.left-drawer {
  right: auto;
  left: -450px;
  border-left: none;
  border-right: 1px solid rgba(0, 180, 216, 0.18);
  box-shadow: 20px 0 60px rgba(13, 61, 112, 0.18);
}

.cart-sidebar.left-drawer.open,
.tb-cart-sidebar.left-drawer.open {
  left: 0 !important;
}

/* Drawer Header */
.cart-header,
.tb-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  box-sizing: border-box;
  background: #ffffff;
  flex-shrink: 0;
}

.cart-header h3,
.tb-cart-header h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header h3 i,
.tb-cart-header h3 i {
  color: #0077b6;
  font-size: 1.1rem;
}

.cart-header button,
.tb-cart-close {
  width: 36px;
  height: 36px;
  background: rgba(26, 111, 196, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.cart-header button:hover,
.tb-cart-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.25);
  transform: rotate(90deg);
}

/* Cart Items Container */
.cart-items,
.tb-cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}

/* Empty Cart State */
.cart-empty,
.tb-cart-empty {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: auto 0;
}

.cart-empty i,
.tb-cart-empty i {
  font-size: 3.2rem;
  color: #94a3b8;
  opacity: 0.7;
}

.cart-empty p,
.tb-cart-empty p {
  color: #64748b;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  margin: 0;
}

/* Individual Cart Item Card */
.cart-item,
.tb-cart-item {
  background: #f8fafc;
  border: 1px solid rgba(0, 180, 216, 0.16);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.cart-item:hover,
.tb-cart-item:hover {
  border-color: rgba(0, 119, 182, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tb-cart-item-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e8f0;
}

.tb-cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-name,
.tb-cart-item-name {
  flex: 1;
  min-width: 0;
}

.cart-item-name h4,
.tb-cart-item-name h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-name span,
.tb-cart-item-name span {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: #64748b;
}

.cart-item-name strong,
.tb-cart-item-name strong {
  color: #ff6b35;
  font-weight: 700;
}

.cart-item-name .woocommerce-Price-amount,
.tb-cart-item-name .woocommerce-Price-amount {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.cart-item-name strong .woocommerce-Price-amount,
.tb-cart-item-name strong .woocommerce-Price-amount {
  color: inherit;
}

.tb-total-row .woocommerce-Price-amount,
.total-row .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.cart-item-remove,
.tb-cart-item-remove {
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: 6px;
  background: transparent;
  border: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove:hover,
.tb-cart-item-remove:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

/* Footer / Subtotal & Buttons */
.cart-total,
.tb-cart-total {
  padding: 20px 24px;
  padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-top: auto;
  position: relative;
  z-index: 5;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}

.total-row,
.tb-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.total-row span,
.tb-total-row span {
  font-family: 'Inter', sans-serif;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

.total-row strong,
.tb-total-amount {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.35rem;
  color: #ff6b35;
  font-weight: 800;
}

.tb-cart-action-buttons,
.tb-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
}

.tb-btn-view-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf2fa;
  color: #0f172a;
  border: 1px solid rgba(0, 180, 216, 0.22);
  border-radius: 50px;
  padding: 12px 16px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: none;
  box-sizing: border-box;
  min-height: 44px;
  line-height: 1.2;
}

.tb-btn-view-cart:hover {
  background: #e2e8f0;
  color: #0077b6;
  border-color: #0077b6;
}

.tb-btn-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.32);
  box-sizing: border-box;
  min-height: 44px;
  line-height: 1.2;
}

.tb-btn-checkout:hover {
  background: linear-gradient(135deg, #f05a24 0%, #ff7a2f 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

/* Backdrop Overlay */
.cart-overlay,
.tb-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 61, 112, 0.40);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-overlay.show,
.tb-cart-overlay.show {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .cart-sidebar,
  .tb-cart-sidebar {
    width: 100% !important;
    max-width: 100vw !important;
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100% !important;
    max-height: 100dvh !important;
    right: -100% !important;
    border-left: none !important;
    border-right: none !important;
  }
  .cart-sidebar.left-drawer,
  .tb-cart-sidebar.left-drawer {
    left: -100% !important;
  }
  .cart-sidebar.open,
  .tb-cart-sidebar.open {
    right: 0 !important;
  }
  .cart-sidebar.left-drawer.open,
  .tb-cart-sidebar.left-drawer.open {
    left: 0 !important;
  }
  .cart-header,
  .tb-cart-header {
    padding: 16px 18px !important;
    flex-shrink: 0 !important;
  }
  .cart-items,
  .tb-cart-items {
    padding: 14px 16px !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
  }
  .cart-total,
  .tb-cart-total {
    padding: 14px 18px !important;
    padding-bottom: max(16px, env(safe-area-inset-bottom, 16px)) !important;
    flex-shrink: 0 !important;
    margin-top: auto !important;
  }
  .total-row,
  .tb-total-row {
    margin-bottom: 12px !important;
  }
  .tb-cart-action-buttons,
  .tb-cart-actions {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 10px !important;
  }
  .tb-btn-view-cart,
  .tb-btn-checkout {
    padding: 12px 10px !important;
    font-size: 0.88rem !important;
    min-height: 44px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  .tb-cart-action-buttons,
  .tb-cart-actions {
    gap: 6px !important;
  }
  .tb-btn-view-cart,
  .tb-btn-checkout {
    font-size: 0.82rem !important;
    padding: 10px 6px !important;
  }
}

/* ==========================================================================
   ADDON #12: TENBIT SOCIAL ICONS & MEDIA LINKS WIDGET
   ========================================================================== */

.tb-social-icons-wrap {
  display: flex;
  width: 100%;
  align-items: center;
}

.tb-social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tb-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
}

.tb-social-link i {
  color: inherit;
  font-size: inherit;
  line-height: 1;
  transition: color 0.25s ease;
}

.tb-social-link svg {
  fill: currentColor;
  width: 15px;
  height: 15px;
  transition: fill 0.25s ease;
}

.tb-social-link:hover {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
  text-decoration: none;
}

.tb-social-link:focus-visible {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

/* ==========================================================================
   ADDON #13: PRODUCTS LISTING PAGE TEMPLATE & WIDGET
   ========================================================================== */

.tb-products-listing-wrapper {
  width: 100%;
  box-sizing: border-box;
}

.tb-filter-btn:hover {
  background: #0077b6 !important;
  color: #ffffff !important;
  border-color: #0077b6 !important;
  transform: translateY(-2px);
}

.tb-search-input:focus {
  border-color: #0077b6 !important;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15) !important;
}

.tb-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12) !important;
}

.tb-product-card:hover .tb-product-img img {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .tb-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
  .tb-products-grid {
    grid-template-columns: 1fr !important;
  }
  .tb-products-toolbar {
    flex-direction: column;
    align-items: stretch !important;
  }
  .tb-search-wrap {
    max-width: 100% !important;
  }
  .tb-cta-banner {
    padding: 30px 20px !important;
    text-align: center;
    justify-content: center !important;
  }
}

/* ==========================================================================
   TENBIT PRODUCTS PAGINATION STYLING
   ========================================================================== */

.tb-pagination-wrap {
  width: 100%;
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  clear: both;
}

.tb-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tb-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  background-color: #f1f5f9;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  line-height: 1;
}

.tb-pagination .page-numbers:hover {
  background-color: #ff6b35;
  color: #ffffff;
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.tb-pagination .page-numbers.current {
  background-color: #ff6b35;
  color: #ffffff;
  border-color: #ff6b35;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}

.tb-pagination .page-numbers.dots {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: default;
  min-width: 24px;
  box-shadow: none;
}

.tb-pagination .page-numbers.dots:hover {
  background: transparent;
  color: #94a3b8;
  transform: none;
  box-shadow: none;
}

/* Load More Button */
.tb-load-more-wrap {
  margin-top: 40px;
  text-align: center;
}

.tb-btn-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #e85d26);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.tb-btn-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
  background: linear-gradient(135deg, #e85d26, #d94e18);
  color: #ffffff;
}

@media (max-width: 576px) {
  .tb-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE TEMPLATE STYLING
   ========================================================================== */

.detail-breadcrumb-bar {
  background: #0b1329;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  font-size: 0.88rem;
  width: 100%;
}
.detail-breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.detail-breadcrumb-bar a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.25s ease;
}
.detail-breadcrumb-bar a:hover {
  color: #00b4d8;
}
.detail-breadcrumb-bar span.divider {
  color: #64748b;
}
.detail-breadcrumb-bar span.active-crumb {
  color: #ffffff;
  font-weight: 600;
}

/* Main Product Section */
.product-detail-section {
  padding: 50px 0 80px;
  background: #ffffff;
  width: 100%;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 100px;
}
.main-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5fa;
  height: 480px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}
.main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.main-image-wrap:hover img {
  transform: scale(1.04);
}
.main-image-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #ff6b35, #e85d26);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255,107,53,0.35);
  font-family: 'Poppins', sans-serif;
}
.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.thumb-item {
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.75;
  transition: all 0.25s ease;
  background: #f1f5fa;
}
.thumb-item.active,
.thumb-item:hover {
  border-color: #0077b6;
  opacity: 1;
  transform: translateY(-2px);
}
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.gallery-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #475569;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.gallery-perk i {
  font-size: 1.1rem;
  color: #0077b6;
  flex-shrink: 0;
}

/* Product Info Column */
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-category-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #0077b6;
  font-family: 'Inter', sans-serif;
}
.product-detail-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.rating-stars {
  color: #fbbf24;
  display: flex;
  gap: 3px;
}
.rating-score {
  font-weight: 700;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
}
.rating-count {
  color: #64748b;
  font-family: 'Inter', sans-serif;
}

/* Price Card */
.detail-price-box {
  background: #0b1329;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00b4d8;
  font-family: 'Poppins', sans-serif;
}
.price-big-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #00b4d8;
  line-height: 1;
}
.price-period {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.price-savings-chip {
  background: rgba(255,107,53,0.15);
  color: #ff8c42;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,53,0.30);
  font-family: 'Inter', sans-serif;
}

.detail-desc-text {
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Quick Specs Grid */
.specs-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.spec-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #475569;
  font-family: 'Inter', sans-serif;
}
.spec-chip i {
  color: #0077b6;
  font-size: 1rem;
  min-width: 18px;
  text-align: center;
}
.spec-chip strong {
  color: #0f172a;
  font-weight: 600;
  margin-right: 4px;
}

/* Booking Config Box */
.booking-config-box {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.config-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.config-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
.config-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.config-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}
.config-field input,
.config-field select {
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease;
}
.config-field input:focus,
.config-field select:focus {
  border-color: #0077b6;
  background: #fff;
}

.detail-actions-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
}
.qty-btn {
  background: none;
  border: none;
  width: 38px;
  height: 44px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: #0f172a;
  transition: background 0.2s ease;
}
.qty-btn:hover {
  background: #e2e8f0;
}
.qty-input {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #0f172a;
}
.detail-btn-cart,
a.detail-btn-cart,
button.detail-btn-cart {
  flex: 1;
  min-width: 140px;
  height: 48px;
  padding: 0 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px !important;
  border: 2px solid #0077b6 !important;
  background: transparent !important;
  color: #0077b6 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: 'Poppins', sans-serif !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}
.detail-btn-cart i,
.detail-btn-cart span,
a.detail-btn-cart i,
a.detail-btn-cart span {
  color: #0077b6 !important;
  transition: color 0.25s ease !important;
  text-decoration: none !important;
}
.detail-btn-cart:hover,
.detail-btn-cart:focus,
a.detail-btn-cart:hover,
a.detail-btn-cart:focus,
button.detail-btn-cart:hover,
button.detail-btn-cart:focus {
  background: #0077b6 !important;
  color: #ffffff !important;
  border-color: #0077b6 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.35) !important;
  text-decoration: none !important;
}
.detail-btn-cart:hover *,
.detail-btn-cart:hover i,
.detail-btn-cart:hover span,
a.detail-btn-cart:hover *,
button.detail-btn-cart:hover * {
  color: #ffffff !important;
  text-decoration: none !important;
}

.detail-btn-book,
a.detail-btn-book,
button.detail-btn-book {
  flex: 1.2;
  min-width: 150px;
  height: 48px;
  padding: 0 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px !important;
  border: none !important;
  background: linear-gradient(135deg, #ff6b35, #e85d26) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: 'Poppins', sans-serif !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35) !important;
  outline: none !important;
  box-sizing: border-box !important;
}
.detail-btn-book *,
a.detail-btn-book * {
  color: #ffffff !important;
  text-decoration: none !important;
}
.detail-btn-book:hover,
.detail-btn-book:focus,
a.detail-btn-book:hover,
a.detail-btn-book:focus,
button.detail-btn-book:hover,
button.detail-btn-book:focus {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 26px rgba(255,107,53,0.50) !important;
  background: linear-gradient(135deg, #e85d26, #d94e18) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.detail-btn-book:hover *,
a.detail-btn-book:hover *,
button.detail-btn-book:hover * {
  color: #ffffff !important;
  text-decoration: none !important;
}

.help-subtext {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  margin: 0;
}
.help-subtext a {
  color: #0077b6;
  font-weight: 700;
  text-decoration: none;
}
.help-subtext a:hover {
  text-decoration: underline;
}

/* Tabs Section */
.product-tabs-section {
  padding: 40px 0 70px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
}
.tabs-nav {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 14px 22px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tab-btn:hover {
  color: #0077b6;
}
.tab-btn.active {
  color: #0077b6;
  border-bottom-color: #0077b6;
}
.tab-content {
  display: none;
  background: #ffffff;
  padding: 32px 36px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  animation: tbFadeIn 0.3s ease;
}
.tab-content.active {
  display: block;
}
.tab-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.tab-content p {
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.features-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 20px 0;
  padding: 0;
}
.features-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}
.features-checklist li i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

@keyframes tbFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 968px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery {
    position: static;
  }
  .main-image-wrap {
    height: 380px;
  }
  .features-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .main-image-wrap {
    height: 280px;
  }
  .thumb-item {
    height: 70px;
  }
  .config-row {
    grid-template-columns: 1fr;
  }
  .detail-actions-row {
    flex-direction: column;
  }
  .qty-selector {
    width: 100%;
    justify-content: center;
  }
  .specs-chips-grid {
    grid-template-columns: 1fr;
  }
  .tab-content {
    padding: 24px 20px;
  }
  .gallery-perks {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CART & CHECKOUT PAGE TEMPLATES
   ========================================================================== */

/* Hero & Breadcrumb */
.cart-hero,
.checkout-hero {
  background: #0d1b2e;
  border-bottom: 1px solid #1e293b;
  padding: 44px 0;
  text-align: center;
  position: relative;
}

.cart-hero h1,
.checkout-hero h1 {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 10px;
}

.cart-hero .breadcrumb,
.checkout-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
}

.cart-hero .breadcrumb a,
.checkout-hero .breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-hero .breadcrumb a:hover,
.checkout-hero .breadcrumb a:hover {
  color: #38bdf8;
}

.cart-hero .breadcrumb .current,
.checkout-hero .breadcrumb .current {
  color: #f8fafc;
  font-weight: 600;
}

/* Sections & Layout */
.cart-section,
.checkout-section {
  padding: 50px 0 80px;
  background: #ffffff;
}

.cart-grid-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: flex-start;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: flex-start;
}

/* Cart Table Wrap & Table */
.cart-table-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin: 0;
}

.cart-table th {
  background: #f8fafc;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-table td {
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
  color: #475569;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
}

.cart-table tr:last-child td {
  border-bottom: none;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: #f1f5fa;
  flex-shrink: 0;
}

.cart-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  color: #0f172a;
  margin-bottom: 4px;
  display: block;
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.cart-item-title:hover {
  color: #0284c7;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}

.cart-item-meta i {
  color: #0284c7;
}

.cart-remove-btn {
  color: #94a3b8;
  font-size: 1.2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 4px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-btn:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.cart-price-cell {
  font-weight: 700;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}

.cart-subtotal-cell {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #ff6b35;
  font-size: 1.05rem;
}

/* Qty Input in Table */
.cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  overflow: hidden;
  background: #ffffff;
}

.cart-qty-ctrl button {
  width: 34px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: #0f172a;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s ease;
}

.cart-qty-ctrl button:hover {
  background: #e0f2fe;
  color: #0284c7;
}

.cart-qty-ctrl input {
  width: 44px;
  height: 36px;
  border: none;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  outline: none;
  color: #0f172a;
  background: transparent;
  -moz-appearance: textfield;
}

.cart-qty-ctrl input::-webkit-outer-spin-button,
.cart-qty-ctrl input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Actions Bottom Bar */
.cart-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.cart-coupon-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-coupon-input {
  padding: 10px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  width: 220px;
  transition: border-color 0.2s ease;
}

.cart-coupon-input:focus {
  border-color: #0284c7;
}

/* Cart & Checkout Summary Sidebar Card */
.cart-summary-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  position: sticky;
  top: 100px;
}

.summary-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e0f2fe;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.92rem;
  color: #475569;
  font-family: 'Inter', sans-serif;
}

.summary-line strong {
  color: #0f172a;
  font-weight: 700;
}

.summary-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.total-big-price {
  color: #ff6b35;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Protection Addon Box */
.protection-addon-box {
  background: #f8fafc;
  border: 1px dashed #38bdf8;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 14px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.protection-addon-box:hover {
  background: #f0f9ff;
  border-color: #0284c7;
}

.protection-addon-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0284c7;
  cursor: pointer;
  flex-shrink: 0;
}

.protection-addon-box label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Inter', sans-serif;
}

.protection-addon-box label strong {
  font-size: 0.88rem;
  color: #0f172a;
}

.protection-addon-box label span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

/* Proceed to Checkout & Action Buttons */
.checkout-proceed-btn,
a.checkout-proceed-btn,
button.checkout-proceed-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 16px 24px !important;
  background: #ff6b35 !important;
  background-color: #ff6b35 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35) !important;
  white-space: nowrap !important;
}

.checkout-proceed-btn:hover,
.checkout-proceed-btn:focus,
a.checkout-proceed-btn:hover,
button.checkout-proceed-btn:hover {
  background: #e85924 !important;
  background-color: #e85924 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45) !important;
}

/* Trust Pills Under Card */
.cart-trust-pills {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #475569;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.trust-pill-item i {
  color: #10b981;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ==========================================================================
   CHECKOUT FORMS & PAYMENT STYLES
   ========================================================================== */

.checkout-form-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}

.checkout-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0f2fe;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-section-title i {
  color: #0284c7;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group-item:last-child {
  margin-bottom: 0;
}

.form-group-item label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}

.form-group-item input,
.form-group-item select,
.form-group-item textarea {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #0f172a;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group-item input:focus,
.form-group-item select:focus,
.form-group-item textarea:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Payment Methods List */
.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-method-row {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 18px;
  background: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.payment-method-row.active {
  border-color: #0284c7;
  background: #f0f9ff;
}

.payment-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #0f172a;
  width: 100%;
}

.payment-radio-label input[type="radio"] {
  accent-color: #0284c7;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.payment-fields-inner {
  display: none;
}

.payment-method-row.active .payment-fields-inner {
  display: block;
}

/* Checkout Items Mini List */
.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-item-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-family: 'Inter', sans-serif;
}

.checkout-item-mini img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: #f1f5fa;
  flex-shrink: 0;
}

.checkout-item-mini strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #0f172a;
}

/* ==========================================================================
   WOOCOMMERCE CART, CHECKOUT & ORDER RECEIVED STYLES
   ========================================================================== */

/* 1. Global WooCommerce Notices & Alerts */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  padding: 16px 22px !important;
  border-radius: 14px !important;
  margin: 0 0 24px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  box-sizing: border-box !important;
  list-style: none !important;
  line-height: 1.5 !important;
}

.woocommerce-message,
.woocommerce-notice--success {
  background: #f0fdf4 !important;
  border: 1.5px solid #86efac !important;
  color: #15803d !important;
}

.woocommerce-info {
  background: #eff6ff !important;
  border: 1.5px solid #93c5fd !important;
  color: #1d4ed8 !important;
}

.woocommerce-error {
  background: #fef2f2 !important;
  border: 1.5px solid #fca5a5 !important;
  color: #b91c1c !important;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-notice .button {
  background: #0f172a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover {
  background: #0284c7 !important;
}

/* 2. WooCommerce Cart Page (2-Column Responsive Layout) */
.woocommerce-cart .woocommerce,
.woocommerce-cart-wrapper .woocommerce {
  font-family: 'Inter', sans-serif;
  color: #334155;
}

@media (min-width: 992px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-cart-wrapper .woocommerce {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    grid-template-areas:
      "notices notices"
      "cart totals" !important;
    gap: 0 40px !important;
    align-items: start !important;
  }

  .woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
  .woocommerce-cart-wrapper .woocommerce > .woocommerce-notices-wrapper {
    grid-area: notices !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
  .woocommerce-cart-wrapper .woocommerce > form.woocommerce-cart-form {
    grid-area: cart !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .woocommerce-cart .woocommerce > .cart-collaterals,
  .woocommerce-cart-wrapper .woocommerce > .cart-collaterals {
    grid-area: totals !important;
    width: 100% !important;
    margin-top: 0 !important;
    position: sticky !important;
    top: 90px !important;
  }

  .woocommerce-cart .cart-collaterals .cart_totals,
  .woocommerce-cart-wrapper .cart-collaterals .cart_totals {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

@media (max-width: 991px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-cart-wrapper .woocommerce {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
  .woocommerce-cart-wrapper .woocommerce > form.woocommerce-cart-form,
  .woocommerce-cart .woocommerce > .cart-collaterals,
  .woocommerce-cart-wrapper .woocommerce > .cart-collaterals {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.woocommerce-cart table.shop_table.cart,
.woocommerce-cart-wrapper table.shop_table.cart {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 30px !important;
}

.woocommerce-cart table.cart thead th,
.woocommerce-cart-wrapper table.cart thead th {
  background: #f8fafc !important;
  padding: 16px 20px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.woocommerce-cart table.cart tbody td,
.woocommerce-cart-wrapper table.cart tbody td {
  padding: 18px 20px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  vertical-align: middle !important;
}

.woocommerce-cart table.cart td.product-remove a.remove,
.woocommerce-cart-wrapper table.cart td.product-remove a.remove {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #fee2e2 !important;
  color: #ef4444 !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border: none !important;
}

.woocommerce-cart table.cart td.product-remove a.remove:hover,
.woocommerce-cart-wrapper table.cart td.product-remove a.remove:hover {
  background: #ef4444 !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
}

.woocommerce-cart table.cart td.product-thumbnail img,
.woocommerce-cart-wrapper table.cart td.product-thumbnail img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 12px !important;
  object-fit: cover !important;
  border: 1px solid #e2e8f0 !important;
  display: block !important;
}

.woocommerce-cart table.cart td.product-name a,
.woocommerce-cart-wrapper table.cart td.product-name a {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.woocommerce-cart table.cart td.product-name a:hover,
.woocommerce-cart-wrapper table.cart td.product-name a:hover {
  color: #0284c7 !important;
}

.woocommerce-cart table.cart td.product-price,
.woocommerce-cart-wrapper table.cart td.product-price {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: #334155 !important;
}

.woocommerce-cart table.cart td.product-subtotal,
.woocommerce-cart-wrapper table.cart td.product-subtotal {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  color: #ff6b35 !important;
}

.woocommerce-cart table.cart td.product-quantity .quantity input.qty,
.woocommerce-cart-wrapper table.cart td.product-quantity .quantity input.qty {
  width: 70px !important;
  height: 44px !important;
  text-align: center !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  outline: none !important;
}

.woocommerce-cart table.cart td.actions,
.woocommerce-cart-wrapper table.cart td.actions {
  background: #f8fafc !important;
  padding: 20px 24px !important;
}

.woocommerce-cart table.cart td.actions .coupon,
.woocommerce-cart-wrapper table.cart td.actions .coupon {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.woocommerce-cart table.cart td.actions .coupon input#coupon_code,
.woocommerce-cart-wrapper table.cart td.actions .coupon input#coupon_code {
  height: 46px !important;
  padding: 0 18px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 50px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.92rem !important;
  outline: none !important;
  background: #ffffff !important;
  min-width: 180px !important;
  box-sizing: border-box !important;
}

.woocommerce-cart table.cart td.actions .coupon button[name="apply_coupon"],
.woocommerce-cart-wrapper table.cart td.actions .coupon button[name="apply_coupon"] {
  height: 46px !important;
  padding: 0 24px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart table.cart td.actions .coupon button[name="apply_coupon"]:hover,
.woocommerce-cart-wrapper table.cart td.actions .coupon button[name="apply_coupon"]:hover {
  background: #1e293b !important;
  transform: translateY(-1px) !important;
}

.woocommerce-cart table.cart td.actions button[name="update_cart"],
.woocommerce-cart-wrapper table.cart td.actions button[name="update_cart"] {
  height: 46px !important;
  padding: 0 24px !important;
  background: #ffffff !important;
  color: #334155 !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 50px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart table.cart td.actions button[name="update_cart"]:hover,
.woocommerce-cart-wrapper table.cart td.actions button[name="update_cart"]:hover {
  border-color: #0284c7 !important;
  color: #0284c7 !important;
  background: #f0f9ff !important;
}

/* Cart Collaterals & Totals Card */
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-cart-wrapper .cart-collaterals .cart_totals {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04) !important;
  box-sizing: border-box !important;
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-cart-wrapper .cart-collaterals .cart_totals h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 20px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table_responsive,
.woocommerce-cart-wrapper .cart-collaterals .cart_totals table.shop_table_responsive {
  width: 100% !important;
  border: none !important;
  margin-bottom: 24px !important;
}

.woocommerce-cart .cart-collaterals .cart_totals tr.order-total th,
.woocommerce-cart .cart-collaterals .cart_totals tr.order-total td,
.woocommerce-cart-wrapper .cart-collaterals .cart_totals tr.order-total th,
.woocommerce-cart-wrapper .cart-collaterals .cart_totals tr.order-total td {
  padding: 16px 0 !important;
  border-top: 2px solid #e2e8f0 !important;
  font-size: 1.15rem !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

.woocommerce-cart .cart-collaterals .cart_totals tr.order-total td strong .woocommerce-Price-amount,
.woocommerce-cart-wrapper .cart-collaterals .cart_totals tr.order-total td strong .woocommerce-Price-amount {
  color: #ff6b35 !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart-wrapper .wc-proceed-to-checkout a.checkout-button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 16px 28px !important;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35) !important;
  box-sizing: border-box !important;
  transition: all 0.25s ease !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart-wrapper .wc-proceed-to-checkout a.checkout-button:hover {
  background: linear-gradient(135deg, #f05a24 0%, #ff7a2f 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45) !important;
}

/* Empty Cart View */
.woocommerce-cart .cart-empty.woocommerce-info,
.woocommerce-cart-wrapper .cart-empty.woocommerce-info {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 40px !important;
  text-align: center !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  display: block !important;
  font-size: 1.15rem !important;
  color: #475569 !important;
}

.woocommerce-cart p.return-to-shop a.button,
.woocommerce-cart-wrapper p.return-to-shop a.button {
  display: inline-block !important;
  margin-top: 16px !important;
  padding: 14px 32px !important;
  background: #ff6b35 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* 3. WooCommerce Checkout Page (2-Column Responsive Layout) */
.woocommerce-checkout .woocommerce,
.woocommerce-checkout-wrapper .woocommerce {
  font-family: 'Inter', sans-serif;
  color: #334155;
}

@media (min-width: 992px) {
  .woocommerce-checkout form.checkout,
  .woocommerce-checkout-wrapper form.checkout {
    display: grid !important;
    grid-template-columns: 1.18fr 0.82fr !important;
    grid-template-areas:
      "notices notices"
      "customer heading"
      "customer review" !important;
    gap: 0 40px !important;
    align-items: start !important;
  }

  .woocommerce-checkout form.checkout > .woocommerce-NoticeGroup,
  .woocommerce-checkout-wrapper form.checkout > .woocommerce-NoticeGroup {
    grid-area: notices !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .woocommerce-checkout form.checkout > .col2-set#customer_details,
  .woocommerce-checkout-wrapper form.checkout > .col2-set#customer_details,
  .woocommerce-checkout form.checkout > #customer_details,
  .woocommerce-checkout-wrapper form.checkout > #customer_details {
    grid-area: customer !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .woocommerce-checkout form.checkout > #order_review_heading,
  .woocommerce-checkout-wrapper form.checkout > #order_review_heading {
    grid-area: heading !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 16px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #e2e8f0 !important;
  }

  .woocommerce-checkout form.checkout > #order_review,
  .woocommerce-checkout-wrapper form.checkout > #order_review {
    grid-area: review !important;
    width: 100% !important;
    position: sticky !important;
    top: 90px !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .woocommerce-checkout form.checkout,
  .woocommerce-checkout-wrapper form.checkout {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout-wrapper #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout-wrapper #order_review_heading,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout-wrapper #order_review {
    width: 100% !important;
  }
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2,
.woocommerce-checkout-wrapper #customer_details .col-1,
.woocommerce-checkout-wrapper #customer_details .col-2 {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  box-sizing: border-box !important;
  width: 100% !important;
  float: none !important;
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout-wrapper #customer_details h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

/* 2-Column Fields Inside Customer Details (First Name & Last Name, Phone & Email, etc.) */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper,
.woocommerce-checkout-wrapper .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout-wrapper .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout-wrapper .woocommerce-additional-fields__field-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout .form-row,
.woocommerce-checkout-wrapper .form-row {
  margin: 0 0 18px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout-wrapper .form-row-first,
.woocommerce-checkout-wrapper .form-row-last {
  flex: 0 0 calc(50% - 8px) !important;
  width: calc(50% - 8px) !important;
  max-width: calc(50% - 8px) !important;
  clear: none !important;
  float: none !important;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout-wrapper .form-row-wide {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  clear: both !important;
  float: none !important;
}

@media (max-width: 580px) {
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last,
  .woocommerce-checkout-wrapper .form-row-first,
  .woocommerce-checkout-wrapper .form-row-last {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.woocommerce-checkout .form-row label,
.woocommerce-checkout-wrapper .form-row label {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.woocommerce-checkout .form-row abbr.required,
.woocommerce-checkout-wrapper .form-row abbr.required {
  color: #ef4444 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  margin-left: 3px !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout-wrapper .form-row input.input-text,
.woocommerce-checkout-wrapper .form-row select,
.woocommerce-checkout-wrapper .form-row textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
  line-height: 1.5 !important;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout-wrapper .form-row input.input-text:focus,
.woocommerce-checkout-wrapper .form-row select:focus,
.woocommerce-checkout-wrapper .form-row textarea:focus {
  border-color: #0284c7 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12) !important;
}

/* Checkout Review Order Card */
.woocommerce-checkout #order_review,
.woocommerce-checkout-wrapper #order_review {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05) !important;
  box-sizing: border-box !important;
  width: 100% !important;
  position: sticky !important;
  top: 90px !important;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout-wrapper #order_review_heading {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 16px !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table,
.woocommerce-checkout-wrapper table.woocommerce-checkout-review-order-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin-bottom: 24px !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-wrapper table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-wrapper table.woocommerce-checkout-review-order-table td {
  padding: 12px 14px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  font-size: 0.92rem !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-wrapper table.woocommerce-checkout-review-order-table th {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #334155 !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-total,
.woocommerce-checkout-wrapper table.woocommerce-checkout-review-order-table td.product-total {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #0077b6 !important;
  text-align: right !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total td,
.woocommerce-checkout-wrapper table.woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout-wrapper table.woocommerce-checkout-review-order-table tr.order-total td {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  border-top: 2px solid #e2e8f0 !important;
  padding: 16px 14px !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total td strong .woocommerce-Price-amount,
.woocommerce-checkout-wrapper table.woocommerce-checkout-review-order-table tr.order-total td strong .woocommerce-Price-amount {
  color: #ff6b35 !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
}

/* Payment Gateways */
.woocommerce-checkout #payment,
.woocommerce-checkout-wrapper #payment {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-bottom: 24px !important;
}

.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-checkout-wrapper #payment ul.payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.woocommerce-checkout #payment ul.payment_methods li,
.woocommerce-checkout-wrapper #payment ul.payment_methods li {
  padding: 12px 16px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  transition: all 0.2s ease !important;
}

.woocommerce-checkout #payment ul.payment_methods li label,
.woocommerce-checkout-wrapper #payment ul.payment_methods li label {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: #0f172a !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.woocommerce-checkout #payment .payment_box,
.woocommerce-checkout-wrapper #payment .payment_box {
  margin-top: 10px !important;
  padding: 12px 14px !important;
  background: #f8fafc !important;
  border-radius: 8px !important;
  border-left: 3px solid #0077b6 !important;
  font-size: 0.88rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
}

.woocommerce-checkout #place_order,
.woocommerce-checkout-wrapper #place_order {
  width: 100% !important;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 16px 28px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35) !important;
  transition: all 0.25s ease !important;
  display: block !important;
  text-align: center !important;
  margin-top: 16px !important;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-checkout-wrapper #place_order:hover {
  background: linear-gradient(135deg, #f05a24 0%, #ff7a2f 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45) !important;
}

/* 4. WooCommerce Order Received / Thank You Page */
.woocommerce-order,
.woocommerce-checkout-wrapper .woocommerce-order {
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: 20px 0 60px !important;
  font-family: 'Inter', sans-serif !important;
}

.woocommerce-thankyou-order-received {
  background: #f0fdf4 !important;
  border: 1.5px solid #86efac !important;
  border-radius: 18px !important;
  padding: 22px 28px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #15803d !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 28px !important;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08) !important;
}

.woocommerce-thankyou-order-received::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

ul.woocommerce-order-overview.order_details {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
  gap: 16px !important;
  padding: 24px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  list-style: none !important;
  margin: 0 0 36px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

ul.woocommerce-order-overview.order_details li {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  font-size: 0.78rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #64748b !important;
  font-weight: 700 !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

ul.woocommerce-order-overview.order_details li strong {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  text-transform: none !important;
  word-break: break-word !important;
}

ul.woocommerce-order-overview.order_details li.woocommerce-order-overview__total strong {
  color: #ff6b35 !important;
  font-size: 1.3rem !important;
}

section.woocommerce-order-details {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 32px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 36px !important;
}

section.woocommerce-order-details h2.woocommerce-order-details__title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 20px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

table.woocommerce-table--order-details {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

table.woocommerce-table--order-details th,
table.woocommerce-table--order-details td {
  padding: 14px 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  font-size: 0.95rem !important;
}

table.woocommerce-table--order-details thead th {
  background: #f8fafc !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #334155 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

table.woocommerce-table--order-details td.product-name a {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-decoration: none !important;
}

table.woocommerce-table--order-details td.product-name a:hover {
  color: #0284c7 !important;
}

table.woocommerce-table--order-details td.product-total {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #0077b6 !important;
  text-align: right !important;
}

table.woocommerce-table--order-details tfoot th {
  font-weight: 600 !important;
  color: #475569 !important;
}

table.woocommerce-table--order-details tfoot td {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  text-align: right !important;
}

table.woocommerce-table--order-details tfoot tr:last-child th,
table.woocommerce-table--order-details tfoot tr:last-child td {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  border-top: 2px solid #e2e8f0 !important;
}

table.woocommerce-table--order-details tfoot tr:last-child td .woocommerce-Price-amount {
  color: #ff6b35 !important;
  font-size: 1.35rem !important;
}

section.woocommerce-customer-details {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 32px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 36px !important;
}

section.woocommerce-customer-details h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 20px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

section.woocommerce-customer-details .col2-set.addresses {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
}

@media (max-width: 768px) {
  section.woocommerce-customer-details .col2-set.addresses {
    grid-template-columns: 1fr !important;
  }
}

section.woocommerce-customer-details .col2-set.addresses .col-1,
section.woocommerce-customer-details .col2-set.addresses .col-2 {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 22px !important;
  width: 100% !important;
  float: none !important;
}

section.woocommerce-customer-details h3.woocommerce-column__title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 12px !important;
}

section.woocommerce-customer-details address {
  font-style: normal !important;
  color: #475569 !important;
  line-height: 1.7 !important;
  font-size: 0.92rem !important;
}

section.woocommerce-customer-details .woocommerce-customer-details--phone,
section.woocommerce-customer-details .woocommerce-customer-details--email {
  margin-top: 8px !important;
  color: #0284c7 !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .cart-grid-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cart-summary-card {
    position: static;
  }
  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2) {
    display: none;
  }
}

@media (max-width: 600px) {
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cart-product-cell {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cart-item-thumb {
    width: 56px;
    height: 56px;
  }
  .cart-bottom-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cart-coupon-box {
    width: 100%;
  }
  .cart-coupon-input {
    width: 100%;
  }
}


/* ==========================================================================
   ADDON #14: CONTACT & BOOKING SECTION (.tb-contact-section)
   ========================================================================== */
.tb-contact-section,
.contact-form-section.tb-contact-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 80px 0 90px;
  background: #ffffff;
}

.tb-contact-grid,
.contact-form-grid.tb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Left Column */
.tb-contact-info,
.contact-info.tb-contact-info {
  display: flex;
  flex-direction: column;
}

.tb-contact-tag,
.section-tag.tb-contact-tag {
  display: inline-block;
  background: rgba(0, 180, 216, 0.12);
  color: #0077b6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 14px;
  align-self: flex-start;
}

.tb-contact-section-title,
.section-title.tb-contact-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.tb-contact-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 28px;
  font-family: 'Inter', sans-serif;
}

/* Contact Info Items */
.tb-contact-item,
.contact-item.tb-contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.tb-contact-icon,
.contact-icon.tb-contact-icon {
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a6fc4 0%, #0077b6 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.tb-contact-item:hover .tb-contact-icon {
  transform: scale(1.06);
}

.tb-contact-item strong {
  display: block;
  color: #0f172a;
  margin-bottom: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.tb-contact-item a,
.tb-contact-item span {
  color: #475569;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.tb-contact-item a:hover {
  color: #0284c7;
}

/* Right Column: Form Card */
.tb-booking-form-wrap,
.booking-form-wrap.tb-booking-form-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.tb-booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tb-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tb-form-group.full-width {
  grid-column: 1 / -1;
}

.tb-form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb-form-group label i {
  color: #0284c7;
  font-size: 0.88rem;
}

.tb-form-group input,
.tb-form-group select,
.tb-form-group textarea {
  padding: 11px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.tb-form-group input:focus,
.tb-form-group select:focus,
.tb-form-group textarea:focus {
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.tb-contact-submit-btn,
button.tb-contact-submit-btn,
.tb-booking-form-wrap .elementor-button[type="submit"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 16px 24px !important;
  background: #ff6b35 !important;
  background-color: #ff6b35 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35) !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.tb-contact-submit-btn:hover,
.tb-contact-submit-btn:focus,
button.tb-contact-submit-btn:hover,
.tb-booking-form-wrap .elementor-button[type="submit"]:hover {
  background: #e85924 !important;
  background-color: #e85924 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45) !important;
}

/* Overrides for Elementor Pro Form inside card */
.tb-booking-form-wrap .elementor-form .elementor-field-group {
  margin-bottom: 16px;
}

.tb-booking-form-wrap .elementor-form .elementor-field-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.tb-booking-form-wrap .elementor-form .elementor-field-textual {
  padding: 11px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tb-booking-form-wrap .elementor-form .elementor-field-textual:focus {
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

/* Responsive Media Queries */
@media (max-width: 960px) {
  .tb-contact-grid,
  .contact-form-grid.tb-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .tb-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tb-booking-form-wrap,
  .booking-form-wrap.tb-booking-form-wrap {
    padding: 26px 18px;
    border-radius: 20px;
  }
}
