/*
 * WoodMart Vegetables - Master Stylesheet (Exact Match to Reference)
 */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --wd-primary: #7C3AED;
  --wd-primary-hover: #6D28D9;
  --wd-primary-light: #F5F3FF;
  --wd-page-bg: #FAF8FC;
  --wd-dark: #242424;
  --wd-gray-100: #f8f9fa;
  --wd-gray-200: #f1f3f5;
  --wd-gray-300: #e9ecef;
  --wd-gray-500: #777777;
  --wd-gray-600: #555555;
  --wd-badge-sale: #eb5757;
  --wd-badge-hot: #f2994a;
  --wd-star-color: #f5a623;
  --wd-radius-sm: 6px;
  --wd-radius-md: 10px;
  --wd-radius-lg: 16px;
  --wd-radius-full: 9999px;
  --wd-shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --wd-shadow-md: 0 8px 25px rgba(0,0,0,0.06);
  --font-heading: 'Manrope', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Lato', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  background-color: var(--wd-page-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--wd-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--wd-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.wd-container {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.py-8 {
  padding-top: 35px;
  padding-bottom: 45px;
}

.text-green { color: var(--wd-primary) !important; }
.text-orange { color: #ff7a00 !important; }

/* ==========================================================================
   Left Fixed Sticky Navigation Bar (Scrollable with smooth UI)
   ========================================================================== */
.wd-left-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
  width: 56px;
  background-color: #ffffff;
  border-right: 1px solid #E2E8F0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 2px 0 10px rgba(0,0,0,0.02);
}

.wd-sticky-nav-top-btn {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  width: 56px;
  height: 56px;
  min-height: 56px;
  flex-shrink: 0;
  background-color: var(--wd-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 2;
}

.wd-sticky-nav-top-btn:hover {
  background-color: var(--wd-primary-hover);
}

.wd-sticky-icon-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8px 0 30px 0;
  margin: 0;
  list-style: none;
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.3) transparent;
}

.wd-sticky-icon-list::-webkit-scrollbar {
  width: 3px;
}

.wd-sticky-icon-list::-webkit-scrollbar-track {
  background: transparent;
}

.wd-sticky-icon-list::-webkit-scrollbar-thumb {
  background-color: rgba(124, 58, 237, 0.3);
  border-radius: 3px;
}

.wd-sticky-icon-list::-webkit-scrollbar-thumb:hover {
  background-color: var(--wd-primary);
}

.wd-sticky-item {
  width: 56px;
  height: 48px;
  min-height: 48px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-sticky-icon-link {
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.2s ease;
}

.wd-sticky-svg {
  transition: transform 0.2s ease;
}

.wd-cat-nav-icon {
  font-size: 18px;
  color: #555555;
  transition: all 0.2s ease;
}

.wd-sticky-item:hover .wd-sticky-svg {
  transform: scale(1.12);
}

.wd-sticky-item:hover .wd-cat-nav-icon {
  color: var(--wd-primary);
  transform: scale(1.12);
}

.wd-sticky-item:hover .wd-sticky-icon-link {
  background-color: #f3f8ee;
}

.wd-tooltip {
  position: fixed;
  left: 62px;
  background-color: #242424;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

.wd-sticky-item:hover .wd-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hide tooltip if item has flyout to prevent overlay overlap */
.wd-sticky-item:has(.wd-sticky-flyout):hover .wd-tooltip {
  display: none !important;
}

/* Sticky Flyout (Fixed position with smart viewport handling & hover bridge) */
.wd-sticky-flyout {
  position: fixed;
  left: 56px;
  width: 260px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background-color: #ffffff;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.14);
  border: 1px solid #E2E8F0;
  border-radius: 0 var(--wd-radius-md) var(--wd-radius-md) 0;
  padding: 16px 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 99999;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.25) transparent;
}

/* Hover Bridge: prevents menu from closing when mouse moves between icon and submenu */
.wd-sticky-flyout::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -25px;
  width: 30px;
  bottom: -15px;
  background: transparent;
  pointer-events: auto;
}

.wd-sticky-flyout::-webkit-scrollbar {
  width: 3px;
}

.wd-sticky-flyout::-webkit-scrollbar-thumb {
  background-color: rgba(124, 58, 237, 0.25);
  border-radius: 3px;
}

.wd-sticky-item:hover .wd-sticky-flyout,
.wd-sticky-item.active .wd-sticky-flyout,
.wd-sticky-flyout:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
  display: block !important;
}

.wd-flyout-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--wd-dark);
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0eee9;
}

.wd-flyout-links li {
  margin-bottom: 6px;
}

.wd-flyout-links a {
  font-size: 13px;
  color: #555555;
  display: block;
  padding: 4px 0;
}

.wd-flyout-links a:hover {
  color: var(--wd-primary);
  padding-left: 4px;
}

@media (min-width: 992px) {
  .wd-content-wrapper {
    padding-left: 56px;
  }
}

/* ==========================================================================
   1. Top Bar (Exact Match to Screenshot)
   ========================================================================== */
.wd-topbar {
  background-color: var(--wd-page-bg);
  border-bottom: 1px solid #E2E8F0;
  padding: 8px 0;
  font-size: 12px;
  color: #555555;
}

.wd-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wd-topbar-left, .wd-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wd-topbar-link {
  color: #555555;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.wd-topbar-link:hover {
  color: var(--wd-primary);
}

.wd-topbar-divider {
  width: 1px;
  height: 12px;
  background-color: #dcd8d0;
}

.wd-top-icon {
  display: inline-block;
  vertical-align: middle;
}

/* ==========================================================================
   2. Main Header (Exact Match to Screenshot)
   ========================================================================== */
.wd-header {
  background-color: var(--wd-page-bg);
  padding: 18px 0;
  border-bottom: 1px solid #E2E8F0;
}

.wd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Logo */
.wd-site-logo {
  flex-shrink: 0;
}

.wd-header-logo-img {
  height: 44px;
  width: auto;
  min-width: 120px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* All Categories Pill Button */
.wd-header-categories-btn-wrap {
  position: relative;
  flex-shrink: 0;
}

.wd-pill-cat-btn {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  background-color: var(--wd-primary);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--wd-radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.wd-pill-cat-btn:hover {
  background-color: var(--wd-primary-hover);
  box-shadow: 0 4px 14px rgba(140, 188, 103, 0.35);
}

.wd-all-cat-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 275px;
  background-color: #ffffff;
  box-shadow: 0 10px 35px rgba(0,0,0,0.14);
  border: 1px solid #E2E8F0;
  border-radius: var(--wd-radius-md);
  padding: 8px 0;
  z-index: 9999;
  display: none;
}

.wd-header-categories-btn-wrap:hover .wd-all-cat-dropdown,
.wd-all-cat-dropdown.open {
  display: block;
}

.wd-dropdown-cat-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #444444;
}

.wd-dropdown-cat-list a:hover {
  background-color: #f7faf3;
  color: var(--wd-primary);
  padding-left: 24px;
}

.wd-cat-badge {
  margin-left: auto;
  background-color: var(--wd-badge-sale);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Search Bar Pill */
.wd-header-search-bar {
  flex: 1;
  max-width: 480px;
}

.wd-search-pill-form {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #dedad2;
  border-radius: var(--wd-radius-full);
  padding: 9px 20px;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.wd-search-pill-form:focus-within {
  border-color: var(--wd-primary);
  box-shadow: 0 0 0 3px rgba(140, 188, 103, 0.15);
}

.wd-search-icon {
  color: #888888;
  font-size: 14px;
}

.wd-search-pill-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  color: #333333;
  background: transparent;
}

/* Quick Header Links */
.wd-header-quick-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.wd-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #2b2b2b;
  white-space: nowrap;
}

.wd-quick-link:hover {
  color: var(--wd-primary);
}

.wd-quick-icon {
  display: inline-block;
  vertical-align: middle;
}

/* Cart Button (Soft Light Green Pill Circle, matching screenshot) */
.wd-header-cart-wrap {
  flex-shrink: 0;
}

.wd-header-circle-cart-btn {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #e2efda;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wd-header-circle-cart-btn:hover {
  background-color: var(--wd-primary);
  box-shadow: 0 4px 12px rgba(140, 188, 103, 0.35);
}

.wd-header-circle-cart-btn:hover svg {
  stroke: #ffffff;
}

.wd-cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--wd-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wd-page-bg);
}

/* ==========================================================================
   Stories / Main Categories Section
   ========================================================================== */
.wd-stories-section {
  padding: 20px 0 16px;
  position: relative;
}

.wd-stories-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 14px 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c8e6c9 transparent;
}

.wd-stories-grid::-webkit-scrollbar {
  height: 5px;
}

.wd-stories-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}

.wd-stories-grid::-webkit-scrollbar-thumb {
  background: #c3e0bd;
  border-radius: 4px;
}

.wd-stories-grid::-webkit-scrollbar-thumb:hover {
  background: var(--wd-primary);
}

.wd-story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex-shrink: 0;
  width: 90px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.wd-story-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F5F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7faf3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.wd-story-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.wd-story-item:hover .wd-story-circle {
  border-color: var(--wd-primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 18px rgba(111, 166, 61, 0.25);
}

.wd-story-item:hover .wd-story-circle img {
  transform: scale(1.08);
}

.wd-story-item:hover .wd-story-title {
  color: var(--wd-primary);
}

.wd-story-title {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: break-word;
  transition: color 0.2s ease;
}

/* ==========================================================================
   Hero 3-Columns Section
   ========================================================================== */
.wd-hero-three-cols-section {
  padding: 10px 0 35px;
}

.wd-hero-three-cols-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.wd-hero-main-banner {
  background: #eef6e6;
  border-radius: var(--wd-radius-lg);
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.wd-hero-main-content {
  position: relative;
  z-index: 3;
  max-width: 360px;
}

.wd-hero-banner-title {
  font-size: 34px;
  font-weight: 800;
  color: #2b3d20;
  line-height: 1.15;
  margin-bottom: 18px;
}

.wd-hero-discount-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.wd-hero-discount-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #2b3d20;
}

.wd-delivery-badge {
  background-color: #f7c942;
  color: #242424;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--wd-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wd-hero-btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wd-btn-pill-white {
  display: inline-block;
  background-color: #ffffff;
  color: var(--wd-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 26px;
  border-radius: var(--wd-radius-full);
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

.wd-btn-pill-white:hover {
  background-color: var(--wd-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.wd-hero-small-note {
  font-size: 11px;
  color: #6d7f62;
  line-height: 1.4;
  max-width: 280px;
}

.wd-hero-veg-img-wrap {
  position: absolute;
  right: -30px;
  bottom: -20px;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.wd-hero-veg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.wd-hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  position: relative;
  z-index: 3;
}

.wd-hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c9dcb9;
}

.wd-hero-dots .dot.active {
  background-color: #2b3d20;
}

/* Col 2 & 3: Promo Cards */
.wd-hero-promo-card {
  border-radius: var(--wd-radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 380px;
}

.wd-hero-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wd-shadow-md);
}

.wd-promo-blue {
  background-color: #d6eaf8;
}

.wd-promo-tan {
  background-color: #f7e7cf;
}

.wd-promo-card-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #557799;
  display: block;
  margin-bottom: 6px;
}

.wd-promo-tan .wd-promo-card-sub {
  color: #a06b24;
}

.wd-promo-card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--wd-dark);
  margin-bottom: 8px;
}

.wd-promo-card-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--wd-dark);
  text-decoration: underline;
}

.wd-promo-card-link:hover {
  color: var(--wd-primary);
}

.wd-promo-card-img-wrap {
  margin-top: 20px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-promo-card-img-wrap img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.wd-hero-promo-card:hover .wd-promo-card-img-wrap img {
  transform: scale(1.08);
}

/* ==========================================================================
   Deals, Products & Footers
   ========================================================================== */
.wd-deals-section {
  padding: 20px 0 45px;
}

.wd-deals-card {
  background-color: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: var(--wd-radius-lg);
  padding: 35px 30px;
  box-shadow: var(--wd-shadow-sm);
}

.wd-deals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.wd-badge-deal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #fff0eb;
  color: var(--wd-badge-hot);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--wd-radius-full);
  margin-bottom: 8px;
}

.wd-deals-title {
  font-size: 28px;
  font-weight: 800;
}

.wd-deals-sub {
  font-size: 13px;
  color: #777777;
}

/* Countdown */
.wd-countdown-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wd-page-bg);
  padding: 12px 20px;
  border-radius: var(--wd-radius-md);
  border: 1px solid #e2ded5;
}

.wd-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.wd-countdown-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--wd-primary);
  line-height: 1;
}

.wd-countdown-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888888;
  margin-top: 4px;
}

.wd-cd-colon {
  font-size: 20px;
  font-weight: 800;
  color: var(--wd-primary);
}

/* Product Cards */
.wd-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wd-product-card {
  background-color: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: var(--wd-radius-lg);
  padding: 18px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.wd-product-card:hover {
  border-color: var(--wd-primary);
  box-shadow: var(--wd-shadow-md);
  transform: translateY(-4px);
}

.wd-product-thumb-wrap {
  position: relative;
  background-color: #fbfbfb;
  border-radius: var(--wd-radius-md);
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-product-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.wd-product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wd-product-card:hover .wd-product-thumb-wrap img {
  transform: scale(1.08);
}

.wd-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
}

.wd-badge-sale {
  background-color: var(--wd-badge-sale);
}

.wd-product-hover-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  z-index: 3;
}

.wd-product-card:hover .wd-product-hover-actions {
  opacity: 1;
  transform: translateX(0);
}

.wd-quick-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--wd-dark);
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--wd-shadow-sm);
  transition: all 0.2s ease;
}

.wd-quick-action-btn:hover {
  background-color: var(--wd-primary);
  color: #ffffff;
  border-color: var(--wd-primary);
}

.wd-product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wd-product-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 4px;
}

.wd-product-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.wd-star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--wd-star-color);
  margin-bottom: 10px;
}

.wd-rating-count {
  font-size: 11px;
  color: #888888;
  margin-left: 4px;
}

.wd-product-price {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--wd-primary);
  margin-bottom: 10px;
}

.wd-product-price del {
  color: #999999;
  font-size: 13px;
  font-weight: 400;
  margin-right: 6px;
}

.wd-product-price ins {
  text-decoration: none;
  color: var(--wd-primary);
}

.wd-stock-meter {
  margin-bottom: 12px;
}

.wd-stock-text {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #777777;
  margin-bottom: 4px;
}

.wd-stock-bar {
  height: 6px;
  background-color: #eeeeee;
  border-radius: 4px;
  overflow: hidden;
}

.wd-stock-fill {
  height: 100%;
  background-color: var(--wd-primary);
  border-radius: 4px;
}

.wd-card-cart-action .wd-btn-cart {
  width: 100%;
  padding: 10px;
  border-radius: var(--wd-radius-full);
  background-color: #f1f7ea;
  color: var(--wd-primary);
  border: 1px solid #dcebce;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wd-card-cart-action .wd-btn-cart:hover {
  background-color: var(--wd-primary);
  color: #ffffff;
  border-color: var(--wd-primary);
}

/* Features Bar */
.wd-features-bar-section {
  padding: 30px 0;
  border-top: 1px solid #E2E8F0;
}

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

.wd-feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: var(--wd-radius-md);
}

.wd-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #eaf4dd;
  color: var(--wd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.wd-feature-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.wd-feature-info p {
  font-size: 12px;
  color: #777777;
}

/* Footer */
.wd-footer {
  background-color: #1a1a1a;
  color: #bbbbbb;
  padding-top: 50px;
}

.wd-footer-widgets {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.wd-footer .footer-logo .wd-brand-title {
  color: #ffffff;
}

.wd-footer-text {
  font-size: 13px;
  color: #999999;
  margin: 16px 0;
}

.wd-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 8px;
  color: #aaaaaa;
}

.wd-footer-contact i {
  color: var(--wd-primary);
}

.wd-footer-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.wd-footer-links li {
  margin-bottom: 8px;
}

.wd-footer-links a {
  font-size: 13px;
  color: #aaaaaa;
}

.wd-footer-links a:hover {
  color: var(--wd-primary);
}

.wd-app-download-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.wd-app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
  padding: 6px 12px;
  border-radius: var(--wd-radius-md);
  color: #ffffff;
}

.wd-social-icons {
  display: flex;
  gap: 8px;
}

.wd-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #2a2a2a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.wd-social-icons a:hover {
  background-color: var(--wd-primary);
}

.wd-footer-bottom {
  border-top: 1px solid #282828;
  padding: 20px 0;
  font-size: 12px;
  color: #777777;
}

.wd-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Off-canvas Cart Drawer */
.wd-cart-drawer, .wd-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.wd-cart-drawer.open, .wd-mobile-drawer.open {
  visibility: visible;
}

.wd-drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wd-cart-drawer.open .wd-drawer-backdrop,
.wd-mobile-drawer.open .wd-drawer-backdrop {
  opacity: 1;
}

.wd-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 85vw;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.wd-mobile-panel {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

.wd-cart-drawer.open .wd-drawer-panel,
.wd-mobile-drawer.open .wd-mobile-panel {
  transform: translateX(0);
}

.wd-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #eeeeee;
}

.wd-drawer-title {
  font-size: 16px;
  font-weight: 800;
}

.wd-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #777777;
  cursor: pointer;
}

.wd-free-shipping-box {
  padding: 14px 24px;
  background-color: #f7faf3;
  border-bottom: 1px solid #e7f2db;
  font-size: 12px;
}

.wd-shipping-progress {
  height: 6px;
  background-color: #e2ebd7;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}

.wd-shipping-bar {
  height: 100%;
  background-color: var(--wd-primary);
}

.wd-side-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .wd-left-sticky-nav {
    display: none;
  }
  .wd-header-quick-links {
    display: none;
  }
  .wd-hero-three-cols-grid {
    grid-template-columns: 1fr;
  }
  .wd-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-footer-widgets {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wd-topbar {
    display: none;
  }
  .wd-header-categories-btn-wrap {
    display: none;
  }
  .wd-products-grid {
    grid-template-columns: 1fr;
  }
  .wd-features-grid {
    grid-template-columns: 1fr;
  }
  .wd-footer-widgets {
    grid-template-columns: 1fr;
  }
  .wd-hero-banner-title {
    font-size: 24px;
  }
  .wd-hero-main-banner {
    padding: 30px 20px;
  }
}


/* ==========================================================================
   Exact Organic Green Footer (Matching Reference Screenshot)
   ========================================================================== */
.wd-green-footer {
  background: linear-gradient(135deg, #0a1128 0%, #0f1c3f 50%, #161233 100%) !important;
  background-color: var(--wd-primary);
  color: #ffffff;
  padding: 55px 0 25px;
  position: relative;
}

.wd-footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 35px;
  margin-bottom: 25px;
}

.wd-footer-white-logo {
  height: 44px;
  width: auto;
  min-width: 120px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.wd-footer-about-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 290px;
}

.wd-footer-col-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.wd-footer-col-links li {
  margin-bottom: 8px;
}

.wd-footer-col-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  display: inline-block;
  transition: all 0.2s ease;
}

.wd-footer-col-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.wd-footer-app-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.wd-app-badge-link img {
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.wd-app-badge-link:hover img {
  opacity: 0.9;
}

.wd-social-title {
  margin-top: 15px;
}

.wd-footer-social-row {
  display: flex;
  gap: 8px;
}

.wd-social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.wd-social-circle:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.wd-social-fb {
  background-color: #3b5998;
}

.wd-social-x {
  background-color: #000000;
}

/* Newsletter Signup Card */
.wd-footer-newsletter-card {
  background-color: rgba(0, 0, 0, 0.05);
  background-image: url('../images/vg-newslatter.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 206px;
  border-radius: 10px;
  padding: 30px 35px;
  margin: 35px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.wd-newsletter-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.wd-newsletter-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin-top: 4px;
}

.wd-newsletter-form {
  display: flex;
  gap: 10px;
  width: 420px;
  max-width: 100%;
}

.wd-newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 5px;
  border: none;
  font-size: 13px;
  outline: none;
  background-color: #ffffff;
  color: #333333;
}

.wd-newsletter-submit-btn {
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  background-color: #0f0f0f;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.wd-newsletter-submit-btn:hover {
  background-color: #242424;
}

/* Bottom Bar */
.wd-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  flex-wrap: wrap;
  gap: 15px;
}

.wd-footer-bottom-row a {
  color: #ffffff;
}

.wd-footer-bottom-row a:hover {
  text-decoration: underline;
}

.wd-footer-legal-links {
  display: flex;
  gap: 20px;
}

/* Scroll To Top Button */
.wd-scroll-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #242424;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wd-scroll-to-top:hover {
  transform: translateY(-3px);
  color: var(--wd-primary);
}

@media (max-width: 991px) {
  .wd-footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wd-footer-newsletter-card {
    background-size: 140px;
  }
}

@media (max-width: 600px) {
  .wd-footer-top-grid {
    grid-template-columns: 1fr;
  }
  .wd-footer-newsletter-card {
    background-image: none;
    padding: 20px;
  }
  .wd-newsletter-form {
    flex-direction: column;
  }
}


/* ==========================================================================
   Exact WoodMart Mobile / Side Navigation Drawer Styling
   ========================================================================== */
.wd-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.wd-mobile-drawer.open {
  visibility: visible;
}

.wd-mobile-drawer .wd-drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wd-mobile-drawer.open .wd-drawer-backdrop {
  opacity: 1;
}

.wd-mobile-drawer .wd-mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  z-index: 2;
  overflow-y: auto;
}

.wd-mobile-drawer.open .wd-mobile-panel {
  transform: translateX(0);
}

/* Header */
.wd-mob-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0eee9;
  background-color: #FAF8FC;
}

.wd-mob-drawer-close {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #777777;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.wd-mob-drawer-close:hover {
  color: var(--wd-dark);
  background-color: #E2E8F0;
}

.wd-mob-drawer-close i {
  font-size: 14px;
}

/* Tabs */
.wd-mob-nav-tabs {
  display: flex;
  border-bottom: 1px solid #f0eee9;
  background-color: #ffffff;
}

.wd-mob-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #777777;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.wd-mob-tab-btn span {
  position: relative;
  padding-bottom: 4px;
}

.wd-mob-tab-btn.active {
  color: var(--wd-primary);
}

.wd-mob-tab-btn.active span::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--wd-primary);
}

/* Menu List */
.wd-mob-tab-pane {
  flex: 1;
  padding: 10px 0;
  background-color: #ffffff;
}

.wd-mob-menu-list li {
  border-bottom: 1px solid #f6f5f2;
}

.wd-mob-menu-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  transition: all 0.2s ease;
}

.wd-mob-menu-list a:hover {
  background-color: #fcfbf9;
  color: var(--wd-primary);
  padding-left: 24px;
}

.wd-mob-menu-list a span {
  flex: 1;
}

.wd-mob-menu-list a .wd-arr {
  font-size: 11px;
  color: #bbbbbb;
}

.wd-mob-menu-list a:hover .wd-arr {
  color: var(--wd-primary);
}

.wd-mob-special a {
  color: var(--wd-primary);
  font-weight: 700;
}


/* ==========================================================================
   14 Categories Mega Dropdown & Subcategories Flyout Panels
   ========================================================================== */
.wd-cat-mega-dropdown {
  width: 290px !important;
  max-height: 520px;
  overflow-y: visible;
  padding: 8px 0;
}

.wd-cat-menu-item {
  position: relative;
}

.wd-cat-menu-item .wd-cat-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  transition: all 0.2s ease;
}

.wd-cat-menu-item:hover > .wd-cat-link {
  background-color: #f7faf3;
  color: var(--wd-primary);
  padding-left: 24px;
}

.wd-cat-menu-item .wd-submenu-arr {
  margin-left: auto;
  font-size: 10px;
  color: #aaaaaa;
}

.wd-cat-menu-item:hover > .wd-cat-link .wd-submenu-arr {
  color: var(--wd-primary);
}

/* Subcategory Flyout Panel */
.wd-subcat-flyout-panel {
  position: absolute;
  top: -8px;
  left: 100%;
  width: 320px;
  background-color: #ffffff;
  box-shadow: 12px 14px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid #E2E8F0;
  border-radius: 0 var(--wd-radius-md) var(--wd-radius-md) var(--wd-radius-md);
  padding: 20px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(6px);
  transition: all 0.15s ease;
  z-index: 10005;
}

.wd-subcat-flyout-panel::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -25px;
  width: 30px;
  bottom: -15px;
  background: transparent;
  pointer-events: auto;
}

.wd-cat-menu-item:hover > .wd-subcat-flyout-panel,
.wd-cat-menu-item.active > .wd-subcat-flyout-panel,
.wd-cat-menu-item.sub-open > .wd-subcat-flyout-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
  display: block !important;
}

.wd-subcat-flyout-head {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--wd-dark);
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f0eee9;
}

.wd-subcat-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 420px;
  overflow-y: auto;
}

.wd-subcat-link {
  font-size: 13px;
  color: #555555;
  padding: 4px 0;
  display: block;
  transition: all 0.2s ease;
}

.wd-subcat-link:hover {
  color: var(--wd-primary);
  padding-left: 6px;
}

/* Left Sticky Sidebar Nav Icon */
.wd-cat-nav-icon {
  font-size: 17px;
  color: #555555;
}

.wd-sticky-item:hover .wd-cat-nav-icon {
  color: var(--wd-primary);
}

/* Mobile Category Accordion */
.wd-mob-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wd-mob-cat-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333333;
}

.wd-mob-cat-toggle {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 12px;
  cursor: pointer;
}

.wd-mob-cat-toggle:hover {
  color: var(--wd-primary);
}

.wd-mob-subcat-list {
  background-color: #faf9f6;
  padding: 6px 0 10px 42px;
  border-top: 1px solid #f0eee9;
}

.wd-mob-subcat-list li a {
  display: block;
  padding: 6px 12px;
  font-size: 12.5px;
  color: #666666;
  font-weight: 500;
}

.wd-mob-subcat-list li a:hover {
  color: var(--wd-primary);
}


/* ==========================================================================
   Exact Organic Green Footer (Matching Reference Screenshot)
   ========================================================================== */
.wd-green-footer {
  background: linear-gradient(135deg, #0a1128 0%, #0f1c3f 50%, #161233 100%) !important;
  background-color: var(--wd-primary);
  color: #ffffff;
  padding: 55px 0 25px;
  position: relative;
}

.wd-footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 35px;
  margin-bottom: 25px;
}

.wd-footer-white-logo {
  height: 44px;
  width: auto;
  min-width: 120px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.wd-footer-about-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 290px;
}

.wd-footer-col-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.wd-footer-col-links li {
  margin-bottom: 8px;
}

.wd-footer-col-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  display: inline-block;
  transition: all 0.2s ease;
}

.wd-footer-col-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.wd-footer-app-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.wd-app-badge-link img {
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.wd-app-badge-link:hover img {
  opacity: 0.9;
}

.wd-social-title {
  margin-top: 15px;
}

.wd-footer-social-row {
  display: flex;
  gap: 8px;
}

.wd-social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.wd-social-circle:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.wd-social-fb {
  background-color: #3b5998;
}

.wd-social-x {
  background-color: #000000;
}

/* Newsletter Signup Card */
.wd-footer-newsletter-card {
  background-color: rgba(0, 0, 0, 0.05);
  background-image: url('../images/vg-newslatter.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 206px;
  border-radius: 10px;
  padding: 30px 35px;
  margin: 35px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.wd-newsletter-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.wd-newsletter-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin-top: 4px;
}

.wd-newsletter-form {
  display: flex;
  gap: 10px;
  width: 420px;
  max-width: 100%;
}

.wd-newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 5px;
  border: none;
  font-size: 13px;
  outline: none;
  background-color: #ffffff;
  color: #333333;
}

.wd-newsletter-submit-btn {
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  background-color: #0f0f0f;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.wd-newsletter-submit-btn:hover {
  background-color: #242424;
}

/* Bottom Bar */
.wd-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  flex-wrap: wrap;
  gap: 15px;
}

.wd-footer-bottom-row a {
  color: #ffffff;
}

.wd-footer-bottom-row a:hover {
  text-decoration: underline;
}

.wd-footer-legal-links {
  display: flex;
  gap: 20px;
}

/* Scroll To Top Button */
.wd-scroll-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #242424;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wd-scroll-to-top:hover {
  transform: translateY(-3px);
  color: var(--wd-primary);
}

@media (max-width: 991px) {
  .wd-footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wd-footer-newsletter-card {
    background-size: 140px;
  }
}

@media (max-width: 600px) {
  .wd-footer-top-grid {
    grid-template-columns: 1fr;
  }
  .wd-footer-newsletter-card {
    background-image: none;
    padding: 20px;
  }
  .wd-newsletter-form {
    flex-direction: column;
  }
}


/* ==========================================================================
   Master WooCommerce Product Archive & Category Grid Styling
   ========================================================================== */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products.wd-products-archive-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 35px 0 !important;
  width: 100% !important;
  clear: both !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
li.wd-product-card-wrap {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  background: transparent !important;
  border: none !important;
}

.wd-product-card-wrap .wd-product-card {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.wd-product-card-wrap .wd-product-card:hover {
  border-color: #7C3AED;
  box-shadow: 0 14px 30px rgba(140, 188, 103, 0.16);
  transform: translateY(-5px);
}

.wd-product-thumb-wrap {
  position: relative;
  background-color: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-product-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.wd-product-thumb-wrap img,
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  margin: 0 !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.wd-product-card:hover .wd-product-thumb-wrap img {
  transform: scale(1.08);
}

.wd-product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wd-product-cat {
  font-size: 11px;
  font-weight: 700;
  color: #7C3AED;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: block;
}

.wd-product-title {
  font-family: var(--font-heading, 'Manrope', 'Outfit', sans-serif);
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.35;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}

.wd-product-title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wd-product-title a:hover {
  color: #7C3AED;
}

.wd-product-price-row {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.wd-product-price {
  font-size: 16px;
  font-weight: 800;
  color: #7C3AED;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wd-product-price del {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  text-decoration: line-through;
}

.wd-product-price ins {
  color: #7C3AED;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
}

.wd-card-cart-action {
  margin-top: auto;
}

.wd-card-cart-action .wd-btn-cart,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  background: var(--wd-primary, #7C3AED) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 11px 16px !important;
  border-radius: 10px !important;
  border: none !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  margin: 0 !important;
  text-align: center !important;
  box-shadow: 0 4px 12px rgba(140, 188, 103, 0.25) !important;
}

.wd-card-cart-action .wd-btn-cart:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  background: #6D28D9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(140, 188, 103, 0.35) !important;
  color: #ffffff !important;
}

.woocommerce span.onsale {
  display: none !important; /* Replaced by rich .wd-product-badge */
}

@media (max-width: 1100px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products.wd-products-archive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products.wd-products-archive-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Generic Page Styling */
.wd-page-content-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 48px;
  margin: 30px auto 50px;
  max-width: 1000px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.wd-page-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.wd-page-content-box .entry-content {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
}
.wd-page-content-box .entry-content h2,
.wd-page-content-box .entry-content h3,
.wd-page-content-box .entry-content h4 {
  color: #1a1a1a;
  margin-top: 28px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
}
.wd-page-content-box .entry-content p {
  margin-bottom: 18px;
}
.wd-page-content-box .entry-content ul,
.wd-page-content-box .entry-content ol {
  margin: 14px 0 20px 24px;
}
.wd-page-content-box .entry-content li {
  margin-bottom: 8px;
}
.wd-page-content-box .entry-content a {
  color: var(--wd-primary);
  text-decoration: underline;
}
.wd-page-content-box .entry-content a:hover {
  color: #6D28D9;
}

/* ==========================================================================
   Featured Products Tabs & Section Header Styling
   ========================================================================== */
.wd-featured-products-section {
  padding: 45px 0 55px;
}

.wd-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.wd-section-subtitle {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wd-primary, #7C3AED);
  margin-bottom: 4px;
}

.wd-section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #222222;
  margin: 0;
  line-height: 1.2;
}

.wd-product-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f4ee;
  padding: 4px 6px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.wd-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  padding: 7px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  outline: none;
  display: inline-block;
  box-shadow: none;
}

.wd-tab-btn:hover {
  color: var(--wd-primary, #7C3AED);
  background: rgba(124, 58, 237, 0.08);
}

.wd-tab-btn.active {
  background: var(--wd-primary, #7C3AED) !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.3) !important;
}

.wd-product-card.wd-tab-hidden {
  display: none !important;
}

.wd-product-card.wd-tab-visible {
  animation: wdFadeIn 0.35s ease forwards;
}

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

@media (max-width: 768px) {
  .wd-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .wd-product-tabs {
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
  }
}

/* =========================================================================0
   Modern Hero 3-Columns Section Enhancements
   ========================================================================= */
.wd-hero-three-cols-section {
  padding: 15px 0 35px;
}

.wd-hero-three-cols-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}

/* Card 1: Main Green Hero Banner */
.wd-hero-main-banner {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 55%, #DDD6FE 100%) !important;
  border-radius: 20px !important;
  padding: 38px 36px 30px !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.18);
  transition: all 0.3s ease;
}

.wd-hero-main-banner:hover {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.14);
}

.wd-hero-main-content {
  position: relative;
  z-index: 3;
  max-width: 370px;
}

.wd-hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.15);
  color: #33691e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.wd-hero-banner-title {
  font-family: var(--font-heading);
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  line-height: 1.18 !important;
  margin: 0 0 16px !important;
}

.wd-hero-banner-title .wd-title-accent {
  color: #2563EB;
}

.wd-hero-offer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.wd-hero-discount-pill {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wd-hero-discount-pill strong {
  color: #e53935;
  font-weight: 800;
}

.wd-delivery-badge {
  background: #f7c942 !important;
  color: #2b2204 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 2px 8px rgba(247, 201, 66, 0.3) !important;
}

.wd-hero-btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wd-hero-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2b3d20;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(43, 61, 32, 0.25);
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.wd-hero-main-cta:hover {
  background: var(--wd-primary, #7C3AED);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}

.wd-hero-main-cta i {
  transition: transform 0.2s ease;
}

.wd-hero-main-cta:hover i {
  transform: translateX(4px);
}

.wd-hero-small-note {
  font-size: 11.5px;
  color: #556b49;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wd-hero-veg-img-wrap {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 54%;
  height: 92%;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.wd-hero-veg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 0 0 0;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  transition: transform 0.5s ease;
}

.wd-hero-main-banner:hover .wd-hero-veg-img {
  transform: scale(1.04);
}

.wd-hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}

.wd-hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(43, 61, 32, 0.2);
  transition: all 0.2s ease;
}

.wd-hero-dots .dot.active {
  width: 22px;
  border-radius: 10px;
  background-color: #2b3d20;
}

/* Col 2 & 3: Modern Promo Cards */
.wd-hero-promo-card {
  border-radius: 20px !important;
  padding: 28px 24px 20px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.wd-hero-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.wd-promo-blue {
  background: linear-gradient(135deg, #eaf4fc 0%, #d2e7f9 100%) !important;
  border: 1px solid rgba(41, 128, 185, 0.15);
}

.wd-promo-tan {
  background: linear-gradient(135deg, #fef4e8 0%, #fce3c5 100%) !important;
  border: 1px solid rgba(211, 134, 46, 0.15);
}

.wd-card-pill-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 14px;
  margin-bottom: 10px;
}

.wd-card-pill-tag.tag-blue {
  background: rgba(33, 150, 243, 0.15);
  color: #1976d2;
}

.wd-card-pill-tag.tag-amber {
  background: rgba(255, 152, 0, 0.18);
  color: #e65100;
}

.wd-promo-card-title {
  font-family: var(--font-heading);
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #1a202c !important;
  line-height: 1.25 !important;
  margin: 0 0 14px !important;
}

.wd-promo-card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #1976d2;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  width: fit-content;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.wd-promo-card-link-btn:hover {
  background: #1976d2;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(25, 118, 210, 0.25);
}

.wd-promo-card-link-btn.btn-amber {
  color: #e65100;
}

.wd-promo-card-link-btn.btn-amber:hover {
  background: #e65100;
  color: #ffffff !important;
  box-shadow: 0 5px 14px rgba(230, 81, 0, 0.25);
}

.wd-promo-card-link-btn i {
  transition: transform 0.2s ease;
}

.wd-promo-card-link-btn:hover i {
  transform: translateX(3px);
}

.wd-promo-card-img-wrap {
  width: 100%;
  height: 180px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wd-promo-card-img-wrap img {
  max-width: 90%;
  max-height: 170px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}

.wd-hero-promo-card:hover .wd-promo-card-img-wrap img {
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .wd-hero-three-cols-grid {
    grid-template-columns: 1fr;
  }
  .wd-hero-main-banner {
    min-height: 340px;
  }
}
/* ==========================================================================
   ✨ WooCommerce My Account Page Styling (Side-by-Side 1-Line Login & Register)
   ========================================================================== */

.woocommerce-account .wd-page-content-box {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  max-width: 1080px !important;
  margin: 10px auto 40px !important;
  width: 100% !important;
}

.woocommerce-account .wd-page-header {
  text-align: center !important;
  margin-bottom: 26px !important;
}

.woocommerce-account .wd-page-title {
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-bottom: 8px !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* Notices & Alert Banners */
.woocommerce-account .woocommerce-notices-wrapper {
  max-width: 1080px !important;
  margin: 0 auto 20px auto !important;
  width: 100% !important;
}

.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
  border-radius: 14px !important;
  padding: 14px 20px 14px 48px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  position: relative !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-account .woocommerce-message {
  background: #F0FDF4 !important;
  border: 1.5px solid #BBF7D0 !important;
  color: #166534 !important;
}

.woocommerce-account .woocommerce-error {
  background: #FEF2F2 !important;
  border: 1.5px solid #FECACA !important;
  color: #991B1B !important;
}

.woocommerce-account .woocommerce-info {
  background: #F5F3FF !important;
  border: 1.5px solid #DDD6FE !important;
  color: #5B21B6 !important;
}

/* 1. Logged-in State: 2-Column Grid (Sidebar + Content) */
.woocommerce-account.logged-in .woocommerce {
  display: grid !important;
  grid-template-columns: 270px 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

/* 2. Logged-out State: Side-by-Side Dual Auth Cards (Exact 1-Line) */
.woocommerce-account:not(.logged-in) .woocommerce {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* Force #customer_login to be a true 2-Column Side-by-Side Flex */
.woocommerce #customer_login,
.woocommerce-account #customer_login,
#customer_login.u-columns.col2-set,
#customer_login {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  gap: 28px !important;
  width: 100% !important;
  margin: 0 auto !important;
  float: none !important;
  clear: both !important;
}

.woocommerce #customer_login::before,
.woocommerce #customer_login::after,
#customer_login.col2-set::before,
#customer_login.col2-set::after {
  display: none !important;
}

/* Each column (Login Column & Register Column) */
#customer_login .u-column1.col-1,
#customer_login .u-column2.col-2,
#customer_login .col-1,
#customer_login .col-2,
.woocommerce-account #customer_login .col-1,
.woocommerce-account #customer_login .col-2 {
  flex: 1 1 0% !important;
  width: 50% !important;
  max-width: calc(50% - 14px) !important;
  float: none !important;
  margin: 0 !important;
  padding: 36px 36px !important;
  background: #ffffff !important;
  border: 1.5px solid #EDE9FE !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.04) !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Remove nested duplicate card styling from inner form */
#customer_login form.login,
#customer_login form.register,
#customer_login form.woocommerce-form {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Single Form Centering (when only login is enabled or on Lost Password) */
.woocommerce-account:not(.logged-in) .woocommerce > form.login:not(#customer_login form),
form.woocommerce-ResetPassword,
form.lost_reset_password {
  max-width: 480px !important;
  margin: 10px auto 30px auto !important;
  background: #ffffff !important;
  border: 1.5px solid #EDE9FE !important;
  border-radius: 22px !important;
  padding: 34px 34px !important;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.04) !important;
  box-sizing: border-box !important;
}

#customer_login h2 {
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 0 20px 0 !important;
  padding-bottom: 14px !important;
  border-bottom: 1.5px solid #F1F5F9 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#customer_login .u-column1 h2::before {
  content: "\f023";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: #7C3AED;
}

#customer_login .u-column2 h2::before {
  content: "\f234";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: #2563EB;
}

/* Form Inputs */
.woocommerce-form-row {
  margin-bottom: 16px !important;
  padding: 0 !important;
  width: 100% !important;
}

.woocommerce-form-row label {
  display: block !important;
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  margin-bottom: 8px !important;
}

.woocommerce-form-row label .required {
  color: #ef4444 !important;
  font-weight: 800 !important;
}

.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="tel"],
.woocommerce-account select,
.woocommerce-account textarea,
.woocommerce-Input {
  width: 100% !important;
  height: 48px !important;
  padding: 10px 16px !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 12px !important;
  font-size: 14.5px !important;
  color: #0F172A !important;
  background-color: #F8FAFC !important;
  transition: all 0.2s ease !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.woocommerce-account input:focus,
.woocommerce-account select:focus,
.woocommerce-account textarea:focus {
  border-color: #7C3AED !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12) !important;
}

/* Password Input & Eye Icon */
.woocommerce-account span.password-input {
  position: relative !important;
  display: block !important;
  width: 100% !important;
}

.woocommerce-account span.password-input .show-password-input {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
  color: #94A3B8 !important;
}

/* Remember me & Lost password */
.woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 10px 0 14px 0 !important;
  cursor: pointer !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #475569 !important;
}

.woocommerce-form-login .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: #7C3AED !important;
  cursor: pointer !important;
  margin: 0 !important;
}

.woocommerce-form-login .woocommerce-LostPassword {
  margin-top: 14px !important;
  text-align: right !important;
}

.woocommerce-form-login .woocommerce-LostPassword a {
  color: #7C3AED !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
  color: #6D28D9 !important;
  text-decoration: underline !important;
}

.woocommerce-privacy-policy-text {
  font-size: 12.5px !important;
  color: #64748b !important;
  line-height: 1.55 !important;
  margin: 10px 0 14px 0 !important;
}

.woocommerce-privacy-policy-text a {
  color: #7C3AED !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

/* Submit Buttons */
.woocommerce-account button[type="submit"].woocommerce-Button,
.woocommerce-account button[type="submit"].woocommerce-form-login__submit,
.woocommerce-account button[type="submit"].woocommerce-form-register__submit,
.woocommerce-account .woocommerce-Button.button {
  width: 100% !important;
  height: 50px !important;
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  border-radius: 14px !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  margin-top: auto !important;
}

.woocommerce-account button[type="submit"]:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #1D4ED8 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.4) !important;
}

/* 3. Logged-In Navigation & Content */
.woocommerce-MyAccount-navigation {
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04) !important;
  border: 1.5px solid #EDE9FE !important;
  overflow: hidden !important;
  position: sticky !important;
  top: 90px !important;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 8px 0 !important;
  margin: 0 !important;
}

.woocommerce-MyAccount-navigation ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-MyAccount-navigation ul li a {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 22px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border-left: 4px solid transparent !important;
}

.woocommerce-MyAccount-navigation ul li a::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  width: 22px !important;
  text-align: center !important;
  color: #94A3B8 !important;
  transition: color 0.2s ease !important;
}

.woocommerce-MyAccount-navigation-link--dashboard a::before { content: "\f015" !important; }
.woocommerce-MyAccount-navigation-link--orders a::before { content: "\f290" !important; }
.woocommerce-MyAccount-navigation-link--downloads a::before { content: "\f019" !important; }
.woocommerce-MyAccount-navigation-link--edit-address a::before { content: "\f3c5" !important; }
.woocommerce-MyAccount-navigation-link--edit-account a::before { content: "\f4ff" !important; }
.woocommerce-MyAccount-navigation-link--customer-logout a::before { content: "\f2f5" !important; }

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: #F5F3FF !important;
  color: #7C3AED !important;
  border-left-color: #7C3AED !important;
}

.woocommerce-MyAccount-navigation ul li a:hover::before,
.woocommerce-MyAccount-navigation ul li.is-active a::before {
  color: #7C3AED !important;
}

/* Right Content Box */
.woocommerce-MyAccount-content {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 36px 40px !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04) !important;
  border: 1.5px solid #EDE9FE !important;
  min-width: 0 !important;
}

.woocommerce-MyAccount-content p {
  color: #475569 !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

.woocommerce-MyAccount-content p strong {
  color: #0F172A !important;
}

.woocommerce-MyAccount-content p a {
  color: #7C3AED !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

/* Orders Table */
.woocommerce-orders-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-top: 18px !important;
}

.woocommerce-orders-table th {
  background: #F8FAFC !important;
  padding: 14px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.woocommerce-orders-table td {
  padding: 16px 18px !important;
  font-size: 14px !important;
  color: #334155 !important;
  border-bottom: 1px solid #F1F5F9 !important;
}

.woocommerce-orders-table tr:last-child td {
  border-bottom: none !important;
}

/* Addresses Grid */
.woocommerce-Addresses {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 24px !important;
}

.woocommerce-Address {
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 24px !important;
}

.woocommerce-Address header h3 {
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 0 12px 0 !important;
}

.woocommerce-Address address {
  font-style: normal !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #475569 !important;
}

/* Mobile Responsiveness (< 768px) */
@media (max-width: 768px) {
  .woocommerce #customer_login,
  .woocommerce-account #customer_login,
  #customer_login.u-columns.col2-set {
    flex-direction: column !important;
    gap: 24px !important;
  }
  #customer_login .u-column1.col-1,
  #customer_login .u-column2.col-2,
  #customer_login .col-1,
  #customer_login .col-2 {
    width: 100% !important;
    max-width: 100% !important;
  }
}



/* 2. Mobile App-like Bottom Navigation Toolbar */
.wd-mobile-bottom-toolbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.08);
  z-index: 998;
  align-items: center;
  justify-content: space-around;
  padding: 0 4px;
}

.wd-toolbar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  text-decoration: none !important;
  background: none;
  border: none;
  padding: 6px 2px;
  gap: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.wd-toolbar-btn i {
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.wd-toolbar-btn.active,
.wd-toolbar-btn:hover {
  color: var(--wd-primary, #7C3AED) !important;
}

.wd-toolbar-btn.active i,
.wd-toolbar-btn:hover i {
  transform: translateY(-2px);
  color: var(--wd-primary, #7C3AED);
}

.wd-toolbar-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wd-toolbar-badge {
  position: absolute;
  top: -6px;
  right: -9px;
  background-color: var(--wd-primary, #7C3AED);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff;
  line-height: 1;
}

/* Tablets & Mobile Responsiveness (< 992px) */
@media (max-width: 991px) {
  body {
    padding-bottom: 60px; /* Space for bottom toolbar */
  }

  .wd-content-wrapper {
    padding-left: 0 !important;
  }

  .wd-left-sticky-nav {
    display: none !important;
  }

  .wd-mobile-menu-toggle {
    display: flex !important;
  }

  .wd-mobile-bottom-toolbar {
    display: flex !important;
  }

  .wd-scroll-to-top {
    bottom: 74px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 12px !important;
  }

  /* Header Layout */
  .wd-topbar {
    display: none !important;
  }

  .wd-header {
    padding: 10px 0 12px !important;
  }

  .wd-header-inner {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px 14px !important;
  }

  .wd-mobile-menu-toggle {
    order: 1 !important;
  }

  .wd-site-logo {
    order: 2 !important;
    flex-shrink: 0 !important;
  }

  .wd-header-logo-img {
    height: 34px !important;
  }

  .wd-header-cart-wrap {
    order: 3 !important;
  }

  .wd-header-circle-cart-btn {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
    width: 38px !important;
    height: 38px !important;
  }

  .wd-header-categories-btn-wrap {
    display: none !important;
  }

  .wd-header-quick-links {
    display: none !important;
  }

  .wd-header-search-bar {
    order: 4 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-top: 2px !important;
  }

  .wd-search-pill-form {
    padding: 8px 16px !important;
    width: 100% !important;
  }

  .wd-search-pill-input {
    font-size: 13px !important;
  }

  /* Hero Section on Tablet/Mobile */
  .wd-hero-three-cols-section {
    padding: 8px 0 24px !important;
  }

  .wd-hero-three-cols-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Products Grids */
  .wd-products-grid,
  .wd-deals-grid,
  .wd-featured-grid,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products.wd-products-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  /* Features Bar */
  .wd-features-bar-section {
    padding: 24px 0 !important;
  }

  .wd-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Footer */
  .wd-footer-top-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 20px !important;
  }

  .wd-footer-about {
    grid-column: 1 / -1 !important;
  }
}

/* Smartphone Responsiveness (< 768px & < 600px) */
@media (max-width: 767px) {
  .wd-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* 1. Category Stories Carousel */
  .wd-stories-section {
    padding: 12px 0 8px !important;
  }

  .wd-stories-grid {
    gap: 12px !important;
    padding: 2px 2px 8px 2px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .wd-story-item {
    width: 68px !important;
    gap: 5px !important;
  }

  .wd-story-circle {
    width: 60px !important;
    height: 60px !important;
    border-width: 2px !important;
  }

  .wd-story-title {
    font-size: 10.5px !important;
    line-height: 1.2 !important;
  }

  /* 2. Hero Section */
  .wd-hero-main-banner {
    padding: 22px 18px 20px !important;
    min-height: auto !important;
    border-radius: 16px !important;
  }

  .wd-hero-pill-badge {
    font-size: 9.5px !important;
    padding: 3px 8px !important;
    margin-bottom: 8px !important;
  }

  .wd-hero-banner-title {
    font-size: 21px !important;
    line-height: 1.2 !important;
    margin: 0 0 10px !important;
  }

  .wd-hero-offer-row {
    gap: 6px !important;
    margin-bottom: 14px !important;
  }

  .wd-hero-discount-pill {
    font-size: 13px !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
  }

  .wd-delivery-badge {
    font-size: 10px !important;
    padding: 4px 8px !important;
  }

  .wd-hero-btn-row {
    gap: 6px !important;
  }

  .wd-hero-main-cta {
    font-size: 12.5px !important;
    padding: 9px 20px !important;
  }

  .wd-hero-small-note {
    font-size: 10px !important;
  }

  .wd-hero-veg-img-wrap {
    width: 44% !important;
    height: 70% !important;
    right: -10px !important;
    bottom: -5px !important;
    opacity: 0.85 !important;
  }

  .wd-hero-dots {
    margin-top: 14px !important;
  }

  /* Modern Compact Promo Cards on Mobile */
  .wd-hero-promo-card {
    min-height: auto !important;
    padding: 16px 16px !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .wd-promo-card-header {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .wd-card-pill-tag {
    font-size: 9px !important;
    padding: 2px 6px !important;
    margin-bottom: 4px !important;
  }

  .wd-promo-card-title {
    font-size: 17px !important;
    line-height: 1.2 !important;
    margin: 0 0 8px !important;
  }

  .wd-promo-card-link-btn {
    font-size: 11.5px !important;
    padding: 6px 12px !important;
  }

  .wd-promo-card-img-wrap {
    width: 85px !important;
    height: 85px !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
  }

  .wd-promo-card-img-wrap img {
    max-height: 80px !important;
    max-width: 80px !important;
  }

  /* 3. Deals Section */
  .wd-deals-section {
    padding: 16px 0 28px !important;
  }

  .wd-deals-card {
    padding: 16px 12px !important;
    border-radius: 16px !important;
  }

  .wd-deals-header {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
  }

  .wd-badge-deal {
    font-size: 10px !important;
    padding: 3px 8px !important;
  }

  .wd-deals-title {
    font-size: 19px !important;
  }

  .wd-deals-sub {
    font-size: 11.5px !important;
  }

  .wd-countdown-wrapper {
    justify-content: center !important;
    padding: 6px 10px !important;
    gap: 4px !important;
  }

  .wd-countdown-item {
    min-width: 36px !important;
  }

  .wd-countdown-num {
    font-size: 16px !important;
  }

  .wd-countdown-label {
    font-size: 7.5px !important;
  }

  .wd-cd-colon {
    font-size: 15px !important;
  }

  /* 4. Product Cards (Crisp & Perfect in 2-Column Mobile Grid) */
  .wd-products-grid,
  .wd-deals-grid,
  .wd-featured-grid,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products.wd-products-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .wd-product-card,
  .wd-product-card-wrap .wd-product-card {
    padding: 10px 8px !important;
    border-radius: 12px !important;
  }

  .wd-product-thumb-wrap {
    margin-bottom: 8px !important;
    border-radius: 8px !important;
  }

  .wd-product-badge {
    font-size: 8.5px !important;
    padding: 2px 5px !important;
    top: 5px !important;
    left: 5px !important;
  }

  .wd-product-hover-actions {
    opacity: 1 !important;
    transform: none !important;
    top: 5px !important;
    right: 5px !important;
    gap: 3px !important;
  }

  .wd-quick-action-btn {
    width: 24px !important;
    height: 24px !important;
    font-size: 10px !important;
  }

  .wd-product-cat {
    font-size: 9.5px !important;
    margin-bottom: 2px !important;
  }

  .wd-product-title {
    font-size: 12px !important;
    line-height: 1.25 !important;
    min-height: 30px !important;
    margin-bottom: 4px !important;
  }

  .wd-star-rating {
    font-size: 9px !important;
    gap: 2px !important;
    margin-bottom: 4px !important;
  }

  .wd-rating-count {
    font-size: 9px !important;
  }

  .wd-product-price-row {
    margin-bottom: 6px !important;
    gap: 4px !important;
  }

  .wd-product-price {
    font-size: 13.5px !important;
    gap: 4px !important;
  }

  .wd-product-price del {
    font-size: 10.5px !important;
  }

  .wd-stock-meter {
    margin-bottom: 6px !important;
  }

  .wd-stock-text {
    font-size: 9px !important;
  }

  .wd-stock-bar {
    height: 4px !important;
  }

  .wd-card-cart-action .wd-btn-cart,
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .add_to_cart_button {
    padding: 7px 6px !important;
    font-size: 10.5px !important;
    border-radius: 8px !important;
    gap: 4px !important;
  }

  /* 5. Featured Tabs Section */
  .wd-featured-products-section {
    padding: 20px 0 30px !important;
  }

  .wd-section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  .wd-section-subtitle {
    font-size: 9.5px !important;
  }

  .wd-section-title {
    font-size: 19px !important;
  }

  .wd-product-tabs {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 3px !important;
    gap: 3px !important;
    scrollbar-width: none !important;
  }

  .wd-product-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .wd-tab-btn {
    padding: 5px 12px !important;
    font-size: 11.5px !important;
    flex-shrink: 0 !important;
  }

  /* 6. Feature Infoboxes */
  .wd-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .wd-feature-box {
    padding: 10px 8px !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }

  .wd-feature-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
  }

  .wd-feature-info h4 {
    font-size: 11px !important;
  }

  .wd-feature-info p {
    font-size: 9.5px !important;
    line-height: 1.2 !important;
  }

  /* 7. Footer */
  .wd-green-footer {
  background: linear-gradient(135deg, #0a1128 0%, #0f1c3f 50%, #161233 100%) !important;
    padding: 30px 0 16px !important;
  }

  .wd-footer-top-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 14px !important;
    margin-bottom: 16px !important;
  }

  .wd-footer-white-logo {
    height: 32px !important;
  }

  .wd-footer-about-text {
    font-size: 12px !important;
    margin-top: 8px !important;
  }

  .wd-footer-col-title {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

  .wd-footer-col-links a {
    font-size: 12px !important;
  }

  .wd-footer-newsletter-card {
    padding: 18px 14px !important;
    margin: 18px 0 16px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background-image: none !important;
  }

  .wd-newsletter-title {
    font-size: 19px !important;
    text-align: center !important;
  }

  .wd-newsletter-sub {
    font-size: 11.5px !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  .wd-newsletter-form {
    width: 100% !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .wd-newsletter-input {
    width: 100% !important;
    padding: 10px 14px !important;
    font-size: 12.5px !important;
  }

  .wd-newsletter-submit-btn {
    width: 100% !important;
    padding: 10px 14px !important;
    font-size: 12.5px !important;
  }

  .wd-footer-bottom-row {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
    padding-top: 14px !important;
    font-size: 11.5px !important;
  }

  .wd-footer-legal-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    font-size: 11.5px !important;
  }

  /* Drawers */
  .wd-drawer-panel {
    width: 300px !important;
    max-width: 86vw !important;
  }

  .wd-mob-drawer-header {
    padding: 14px 16px !important;
  }

  .wd-mob-menu-list a {
    padding: 11px 16px !important;
    font-size: 13px !important;
  }
}

/* Extra small devices (< 380px) */
@media (max-width: 380px) {
  .wd-products-grid,
  .wd-deals-grid,
  .wd-featured-grid,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    gap: 8px !important;
  }

  .wd-product-card {
    padding: 8px 6px !important;
  }

  .wd-product-title {
    font-size: 11.5px !important;
  }

  .wd-card-cart-action .wd-btn-cart {
    font-size: 10px !important;
    padding: 6px 4px !important;
  }

  .wd-features-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Product Archive Page Mobile Responsiveness: Hide Sidebar & Subcategories only on Mobile (< 992px) */
@media (max-width: 991px) {
  .wd-subcat-chips-bar {
    display: none !important;
  }
  .wd-shop-sidebar {
    display: none !important;
  }
  .wd-shop-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .wd-archive-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}



/* ==========================================================================
   COMPREHENSIVE ALL PAGES MOBILE RESPONSIVENESS ENHANCEMENTS
   ========================================================================== */

/* 1. General Pages & Policy Content Boxes (About, Contact, Terms, Privacy, etc.) */
@media (max-width: 767px) {
  .wd-page-content-box {
    padding: 22px 16px !important;
    margin: 15px auto 30px !important;
    border-radius: 14px !important;
  }
  .wd-page-title {
    font-size: 22px !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
  }
  .wd-page-content-box .entry-content {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
  .wd-page-content-box .entry-content h2 {
    font-size: 18px !important;
  }
  .wd-page-content-box .entry-content h3 {
    font-size: 16px !important;
  }
}

/* 2. Single Product Page Mobile Optimization */
@media (max-width: 767px) {
  .wd-single-product-container {
    padding-top: 10px;
  }
  .wd-single-bcrumb-bar {
    font-size: 12px !important;
    margin-bottom: 16px !important;
  }
  .wd-single-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 25px !important;
  }
  .wd-single-gallery-card,
  .wd-single-details-card,
  .wd-single-tabs-card {
    padding: 18px 14px !important;
    border-radius: 14px !important;
  }
  .wd-single-title {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }
  .wd-single-rating-bar {
    font-size: 12px !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
  }
  .wd-single-price-box {
    padding: 12px 14px !important;
    margin-bottom: 14px !important;
  }
  .wd-single-sale-price {
    font-size: 22px !important;
  }
  .wd-single-save-pill {
    font-size: 11px !important;
    padding: 2px 6px !important;
  }
  .wd-single-stock-bar {
    font-size: 12px !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
  }
  .wd-single-short-desc {
    font-size: 13px !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
  }
  .wd-qty-btn-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .wd-quantity-wrap {
    justify-content: center !important;
  }
  .wd-single-add-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  .wd-single-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 12px 10px !important;
  }
  .wd-single-trust-item {
    gap: 6px !important;
  }
  .wd-single-trust-item i {
    font-size: 16px !important;
  }
  .wd-single-trust-item strong {
    font-size: 11.5px !important;
  }
  .wd-single-trust-item span {
    font-size: 10px !important;
  }
  .wd-single-tabs-section {
    margin-bottom: 30px !important;
  }
  .wd-tabs-heading {
    font-size: 18px !important;
    margin-bottom: 14px !important;
    padding-bottom: 10px !important;
  }
  .wd-tabs-body-content {
    font-size: 13.5px !important;
  }
  .wd-related-header h2 {
    font-size: 18px !important;
  }
  .wd-related-header p {
    font-size: 12px !important;
  }
  .wd-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

/* 3. About Us Page Mobile Optimization */
@media (max-width: 767px) {
  .wd-about-page-main {
    padding-top: 15px !important;
    padding-bottom: 40px !important;
  }
  .wd-about-hero {
    padding: 28px 16px !important;
    border-radius: 16px !important;
    margin-bottom: 24px !important;
  }
  .wd-about-hero-badge {
    font-size: 11px !important;
    padding: 4px 12px !important;
    margin-bottom: 14px !important;
  }
  .wd-about-hero-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }
  .wd-about-hero-subtitle {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }
  .wd-about-hero-pills {
    gap: 8px !important;
  }
  .wd-about-hero-pill {
    padding: 7px 12px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }
  .wd-about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
  }
  .wd-about-stat-box {
    padding: 16px 10px !important;
  }
  .wd-about-stat-number {
    font-size: 26px !important;
  }
  .wd-about-stat-label {
    font-size: 10.5px !important;
  }
  .wd-about-showcase {
    padding: 20px 14px !important;
    border-radius: 16px !important;
    margin-bottom: 30px !important;
    gap: 20px !important;
  }
  .wd-about-story h2 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }
  .wd-about-story p {
    font-size: 13.5px !important;
    margin-bottom: 12px !important;
  }
  .wd-about-img-container img {
    height: 220px !important;
  }
  .wd-about-floating-badge {
    bottom: 10px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 10px 12px !important;
    gap: 8px !important;
  }
  .wd-about-floating-badge i {
    font-size: 20px !important;
  }
  .wd-about-floating-badge strong {
    font-size: 12px !important;
  }
  .wd-about-floating-badge span {
    font-size: 10.5px !important;
  }
  .wd-about-section-title {
    margin-bottom: 20px !important;
  }
  .wd-about-section-title h2 {
    font-size: 20px !important;
  }
  .wd-about-section-title p {
    font-size: 13px !important;
  }
  .wd-about-cards-3col {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-bottom: 30px !important;
  }
  .wd-about-card-item {
    padding: 20px 18px !important;
  }
  .wd-about-card-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }
  .wd-about-card-item h3 {
    font-size: 17px !important;
  }
  .wd-about-card-item p {
    font-size: 13px !important;
  }
  .wd-about-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
  }
  .wd-about-pillar-card {
    padding: 14px 14px !important;
  }
  .wd-about-cats-box {
    padding: 24px 14px !important;
    border-radius: 16px !important;
    margin-bottom: 30px !important;
  }
  .wd-about-cats-box h3 {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .wd-about-tags-wrapper {
    gap: 6px !important;
  }
  .wd-about-tag-btn {
    padding: 6px 12px !important;
    font-size: 11.5px !important;
  }
  .wd-about-cta {
    padding: 30px 18px !important;
    border-radius: 16px !important;
  }
  .wd-about-cta h3 {
    font-size: 20px !important;
  }
  .wd-about-cta p {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }
  .wd-about-cta-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .wd-about-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 18px !important;
    font-size: 13.5px !important;
  }
}

/* 4. Contact Us Page Mobile Optimization */
@media (max-width: 767px) {
  .wd-contact-page-main {
    padding-top: 15px !important;
    padding-bottom: 40px !important;
  }
  .wd-contact-hero {
    padding: 28px 16px !important;
    border-radius: 16px !important;
    margin-bottom: 24px !important;
  }
  .wd-contact-hero-badge {
    font-size: 11px !important;
    padding: 4px 12px !important;
    margin-bottom: 14px !important;
  }
  .wd-contact-hero-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }
  .wd-contact-hero-subtitle {
    font-size: 13px !important;
  }
  .wd-contact-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-bottom: 28px !important;
  }
  .wd-contact-card {
    padding: 14px 10px !important;
    border-radius: 12px !important;
  }
  .wd-contact-card-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
  .wd-contact-card h3 {
    font-size: 13.5px !important;
    margin-bottom: 4px !important;
  }
  .wd-contact-card-val {
    font-size: 12.5px !important;
  }
  .wd-contact-card-note {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }
  .wd-contact-card-btn {
    font-size: 11px !important;
  }
  .wd-contact-main-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
  }
  .wd-contact-form-box {
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }
  .wd-contact-form-box h2 {
    font-size: 20px !important;
  }
  .wd-contact-form-box p.form-desc {
    font-size: 12.5px !important;
    margin-bottom: 18px !important;
  }
  .wd-form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .wd-form-group {
    margin-bottom: 14px !important;
  }
  .wd-form-input,
  .wd-form-select,
  .wd-form-textarea {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
  .wd-form-submit-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
  }
  .wd-support-highlight-box,
  .wd-contact-faq-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }
  .wd-support-highlight-box h3,
  .wd-contact-faq-card h3 {
    font-size: 17px !important;
  }
  .wd-contact-map-section {
    padding: 18px 14px !important;
    border-radius: 16px !important;
    margin-bottom: 30px !important;
  }
  .wd-map-header h3 {
    font-size: 17px !important;
  }
  .wd-map-header p {
    font-size: 12px !important;
  }
  .wd-map-frame-wrapper {
    height: 240px !important;
  }
}

/* 5. WooCommerce Cart & Checkout Pages Mobile Responsiveness */
@media (max-width: 991px) {
  /* Cart Page */
  .woocommerce-cart table.cart {
    border: none !important;
  }
  .woocommerce-cart table.cart tr.woocommerce-cart-form__cart-item {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    margin-bottom: 14px !important;
    padding: 14px !important;
  }
  .woocommerce-cart table.cart tr.woocommerce-cart-form__cart-item td {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 6px 0 !important;
    border: none !important;
  }
  .woocommerce-cart table.cart tr.woocommerce-cart-form__cart-item td.product-remove {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    padding: 0 !important;
  }
  .woocommerce-cart table.cart tr.woocommerce-cart-form__cart-item td.product-thumbnail {
    justify-content: center !important;
  }
  .woocommerce-cart table.cart tr.woocommerce-cart-form__cart-item td.product-thumbnail img {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }
  .woocommerce-cart table.cart td.actions {
    display: block !important;
    padding: 14px 0 !important;
  }
  .woocommerce-cart table.cart td.actions .coupon {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    float: none !important;
    margin-bottom: 12px !important;
  }
  .woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 100% !important;
    padding: 10px 14px !important;
  }
  .woocommerce-cart table.cart td.actions .button,
  .woocommerce-cart .cart_totals .checkout-button {
    width: 100% !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .cart-collaterals {
    width: 100% !important;
    margin-top: 20px !important;
  }
  .cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
    background: #ffffff !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 14px !important;
    padding: 20px 16px !important;
  }

  /* Checkout Page */
  .woocommerce-checkout .col2-set {
    float: none !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
  }
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    float: none !important;
    width: 100% !important;
  }
  .woocommerce-checkout #order_review {
    background: #ffffff !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 14px !important;
    padding: 20px 16px !important;
  }
  .woocommerce-checkout .form-row {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
  }
  .woocommerce-checkout #payment #place_order {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
}



/* ==========================================================================
   Luxury Mini Cart Drawer Styling (Fix for Cut-off, Raw List & Gray Buttons)
   ========================================================================== */
.wd-cart-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.wd-cart-drawer.open {
  visibility: visible !important;
}

.wd-cart-drawer .wd-drawer-backdrop {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(4px) !important;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.wd-cart-drawer.open .wd-drawer-backdrop {
  opacity: 1 !important;
}

.wd-cart-drawer .wd-drawer-panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 400px !important;
  max-width: 100vw !important;
  height: 100% !important;
  background-color: #ffffff !important;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.16) !important;
  transform: translateX(100%) !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 2 !important;
  overflow: hidden !important;
}

.wd-cart-drawer.open .wd-drawer-panel {
  transform: translateX(0) !important;
}

/* Cart Header */
.wd-cart-drawer-head {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 18px 22px !important;
  background: #ffffff !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.wd-cart-head-title-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.wd-cart-head-title-wrap i {
  font-size: 18px !important;
  color: var(--wd-primary, #7C3AED) !important;
}

.wd-cart-head-title-wrap .wd-drawer-title {
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 !important;
}

.wd-cart-count-pill {
  background: var(--wd-primary-light, #F5F3FF) !important;
  color: var(--wd-primary, #7C3AED) !important;
  font-family: var(--font-heading) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 2px 8px !important;
  border-radius: 20px !important;
}

.wd-cart-drawer .wd-drawer-close {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #64748b !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.wd-cart-drawer .wd-drawer-close:hover {
  background: #fee2e2 !important;
  color: #ef4444 !important;
  transform: rotate(90deg) !important;
}

/* Free Shipping Box */
.wd-cart-drawer .wd-free-shipping-box {
  padding: 12px 22px !important;
  background: #f8fafc !important;
  border-bottom: 1px solid #eef2eb !important;
}

.wd-shipping-text-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12.5px !important;
  color: #334155 !important;
  margin-bottom: 6px !important;
}

.wd-cart-drawer .wd-shipping-progress {
  height: 6px !important;
  background-color: #e2e8f0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.wd-cart-drawer .wd-shipping-bar {
  height: 100% !important;
  background: linear-gradient(90deg, #7C3AED 0%, #2563EB 100%) !important;
  border-radius: 10px !important;
}

/* Cart Content & Items List */
.wd-side-cart-content {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 18px 22px 24px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* WooCommerce Mini Cart List */
.woocommerce-mini-cart,
.widget_shopping_cart_content ul.product_list_widget {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px 0 !important;
  flex: 1 !important;
}

.woocommerce-mini-cart-item.mini_cart_item,
.widget_shopping_cart_content ul.product_list_widget li {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 14px 14px 12px !important;
  background: #ffffff !important;
  border: 1.5px solid #eef2eb !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
  position: relative !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-mini-cart-item.mini_cart_item:hover {
  border-color: #d1e7c4 !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.08) !important;
}

/* Remove button */
.woocommerce-mini-cart-item a.remove,
.widget_shopping_cart_content ul.product_list_widget li a.remove {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #f8fafc !important;
  color: #94a3b8 !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  z-index: 3 !important;
}

.woocommerce-mini-cart-item a.remove:hover,
.widget_shopping_cart_content ul.product_list_widget li a.remove:hover {
  background: #fee2e2 !important;
  color: #ef4444 !important;
  border-color: #fca5a5 !important;
  transform: scale(1.1) !important;
}

/* Product Image in Mini Cart */
.woocommerce-mini-cart-item a:has(img),
.widget_shopping_cart_content ul.product_list_widget li a:has(img) {
  display: block !important;
  flex-shrink: 0 !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce-mini-cart-item img,
.widget_shopping_cart_content ul.product_list_widget li img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  margin: 0 !important;
  display: block !important;
}

/* Product Info */
.woocommerce-mini-cart-item a:not(.remove):not(:has(img)),
.woocommerce-mini-cart-item > a:not(.remove) {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  display: block !important;
  padding-right: 26px !important;
  margin-bottom: 6px !important;
}

.woocommerce-mini-cart-item a:not(.remove):hover {
  color: var(--wd-primary, #7C3AED) !important;
}

.woocommerce-mini-cart-item .quantity {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  display: block !important;
}

.woocommerce-mini-cart-item .quantity .woocommerce-Price-amount {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--wd-primary, #7C3AED) !important;
  margin-left: 4px !important;
}

/* Total / Subtotal Box */
.woocommerce-mini-cart__total.total,
.widget_shopping_cart_content .total {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  margin: 16px 0 14px 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-top: none !important;
}

.woocommerce-mini-cart__total.total strong,
.widget_shopping_cart_content .total strong {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #475569 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.woocommerce-mini-cart__total.total .woocommerce-Price-amount,
.widget_shopping_cart_content .total .woocommerce-Price-amount {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
}

/* Mini Cart Action Buttons */
.woocommerce-mini-cart__buttons.buttons,
.widget_shopping_cart_content .buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 1. Checkout CTA Button (Top / Primary) */
.woocommerce-mini-cart__buttons.buttons a.button.checkout,
.widget_shopping_cart_content .buttons a.button.checkout {
  order: 1 !important;
  width: 100% !important;
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  padding: 14px 20px !important;
  border-radius: 14px !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35) !important;
  text-decoration: none !important;
  border: none !important;
  transition: all 0.25s ease !important;
}

.woocommerce-mini-cart__buttons.buttons a.button.checkout:hover,
.widget_shopping_cart_content .buttons a.button.checkout:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #1D4ED8 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45) !important;
  color: #ffffff !important;
}

/* 2. View Cart Button (Secondary / Outline) */
.woocommerce-mini-cart__buttons.buttons a.button:not(.checkout),
.widget_shopping_cart_content .buttons a.button:not(.checkout) {
  order: 2 !important;
  width: 100% !important;
  background: #ffffff !important;
  color: #7C3AED !important;
  border: 1.5px solid #7C3AED !important;
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 13px 20px !important;
  border-radius: 14px !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
}

.woocommerce-mini-cart__buttons.buttons a.button:not(.checkout):hover,
.widget_shopping_cart_content .buttons a.button:not(.checkout):hover {
  background: #F5F3FF !important;
  color: #6D28D9 !important;
  border-color: #6D28D9 !important;
  transform: translateY(-1px) !important;
}

/* Mobile Drawer Width (< 600px) */
@media (max-width: 600px) {
  .wd-cart-drawer .wd-drawer-panel {
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
  }
  .wd-cart-drawer-head {
    padding: 16px 18px !important;
  }
  .wd-side-cart-content {
    padding: 14px 16px 20px !important;
  }
}



/* ==========================================================================
   LUXURY WOOCOMMERCE CHECKOUT PAGE REDESIGN
   ========================================================================== */

.woocommerce-checkout .wd-page-content-box {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  max-width: 1200px !important;
}

.woocommerce-checkout .wd-page-title {
  font-family: var(--font-heading) !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-bottom: 24px !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* 1. Login / Coupon Notices */
.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  background: #f1f8ed !important;
  color: #7C3AED !important;
  border: 1.5px solid #bfe0ae !important;
  border-left: 5px solid #7C3AED !important;
  border-radius: 14px !important;
  padding: 14px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 18px !important;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08) !important;
}

.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info a,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a {
  color: #1b4500 !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

.woocommerce-checkout form.checkout_coupon,
.woocommerce-checkout form.login {
  background: #ffffff !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 24px 26px !important;
  margin-bottom: 25px !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
}

/* 2. Master Two-Column Grid */
.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: 1.2fr 0.95fr !important;
  gap: 32px !important;
  align-items: start !important;
  margin-top: 10px !important;
}

/* 3. Left Column: Billing Details Card */
.woocommerce-checkout .col2-set {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  float: none !important;
  width: 100% !important;
  background: #ffffff !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 30px 28px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  margin-bottom: 24px !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout h3 {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 0 20px 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1.5px solid #f1f5f9 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Form Fields Styling */
.woocommerce-checkout .form-row {
  margin-bottom: 18px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout .form-row label {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  margin-bottom: 6px !important;
  display: block !important;
  line-height: 1.3 !important;
}

.woocommerce-checkout .form-row .required {
  color: #ef4444 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.22s ease !important;
  outline: none !important;
  height: auto !important;
  line-height: 1.4 !important;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
  background: #ffffff !important;
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15) !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 8px) !important;
  display: inline-block !important;
  vertical-align: top !important;
}

.woocommerce-checkout .form-row-first {
  margin-right: 12px !important;
}

.woocommerce-checkout .form-row-wide {
  width: 100% !important;
  clear: both !important;
}

/* 4. Right Column: Order Review Box */
.woocommerce-checkout #order_review_heading {
  display: none !important; /* Included inside #order_review */
}

.woocommerce-checkout #order_review {
  float: none !important;
  width: 100% !important;
  background: #ffffff !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 30px 28px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
  position: sticky !important;
  top: 90px !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout #order_review::before {
  content: 'Order Summary' !important;
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-bottom: 18px !important;
  padding-bottom: 12px !important;
  border-bottom: 1.5px solid #f1f5f9 !important;
  display: block !important;
}

/* Order Review Table */
.woocommerce-checkout table.woocommerce-checkout-review-order-table {
  width: 100% !important;
  border: none !important;
  border-collapse: collapse !important;
  margin-bottom: 20px !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
  border: none !important;
  padding: 12px 0 !important;
  font-size: 13.5px !important;
  vertical-align: middle !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th {
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  padding-bottom: 8px !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody td.product-name {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.35 !important;
  border-bottom: 1px solid #f8fafc !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-quantity {
  background: #f1f8ed !important;
  color: #7C3AED !important;
  font-family: var(--font-heading) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 2px 8px !important;
  border-radius: 20px !important;
  margin-left: 6px !important;
  display: inline-block !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody td.product-total {
  font-family: var(--font-heading) !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  text-align: right !important;
  border-bottom: 1px solid #f8fafc !important;
}

/* Totals rows */
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  border-top: 1px solid #f1f5f9 !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td {
  font-family: var(--font-heading) !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  text-align: right !important;
  border-top: 1px solid #f1f5f9 !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total th {
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  border-top: 2px solid #e2e8f0 !important;
  padding-top: 16px !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  border-top: 2px solid #e2e8f0 !important;
  padding-top: 16px !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total td .woocommerce-Price-amount {
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #7C3AED !important;
}

/* 5. Payment Methods */
.woocommerce-checkout #payment {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 18px !important;
  margin: 20px 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  margin-bottom: 10px !important;
  transition: all 0.2s ease !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:hover {
  border-color: #a3d987 !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input[type="radio"] {
  accent-color: #7C3AED !important;
  transform: scale(1.15) !important;
  margin-right: 8px !important;
  cursor: pointer !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method label {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: inline !important;
}

.woocommerce-checkout #payment div.payment_box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  margin-top: 10px !important;
  font-size: 12.5px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none !important;
}

/* Privacy & Terms Notice */
.woocommerce-checkout .woocommerce-privacy-policy-text {
  font-size: 12px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 14px 0 !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
  color: #7C3AED !important;
  text-decoration: underline !important;
}

/* 6. Place Order Button */
.woocommerce-checkout #payment #place_order {
  width: 100% !important;
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  padding: 16px 24px !important;
  border-radius: 14px !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4) !important;
  transition: all 0.25s ease !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
}

.woocommerce-checkout #payment #place_order:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #1E40AF 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5) !important;
}

/* Mobile Responsiveness for Checkout (< 991px) */
@media (max-width: 991px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2,
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout #order_review {
    padding: 20px 16px !important;
    border-radius: 16px !important;
    position: static !important;
  }
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .woocommerce-checkout #payment #place_order {
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
}

/* ==========================================================================
   🌿 WoodMart Visual Sections Layout Enhancements (Pixel Perfect)
   ========================================================================== */

/* 1. Category Stories Circles */
.wd-stories-section {
  padding: 15px 0 25px;
  background: #fbfbf9;
}
.wd-stories-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 15px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.wd-stories-grid::-webkit-scrollbar {
  height: 4px;
}
.wd-stories-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.wd-story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  flex: 0 0 auto;
  width: 84px;
  text-align: center;
  transition: transform 0.25s ease;
}
.wd-story-item:hover {
  transform: translateY(-3px);
}
.wd-story-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: #ffffff;
  border: 2px solid #7C3AED;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}
.wd-story-item:hover .wd-story-circle {
  border-color: #33691e;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}
.wd-story-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.wd-story-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 11.5px;
  font-weight: 600;
  color: #2b3d20;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 84px;
}

/* 2. Hero Section 3-Columns Layout */
.wd-hero-three-cols-section {
  padding: 14px 0 36px;
}
.wd-hero-three-cols-grid {
  display: grid;
  grid-template-columns: 1.85fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Card 1: Main Green Hero Banner with Background Image */
.wd-hero-main-banner {
  background-color: #F5F3FF !important;
  background-image: linear-gradient(90deg, rgba(245, 243, 255, 0.96) 0%, rgba(245, 243, 255, 0.88) 42%, rgba(245, 243, 255, 0.15) 70%, rgba(245, 243, 255, 0) 100%), url('../images/hero-veg-bg.jpg') !important;
  background-position: center right !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 24px !important;
  padding: 40px 38px 36px !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12) !important;
  border: 1px solid rgba(124, 58, 237, 0.28) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wd-hero-main-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.18) !important;
}
.wd-hero-main-content {
  position: relative;
  z-index: 3;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wd-hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.22);
  color: #234814;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  backdrop-filter: blur(4px);
}
.wd-hero-banner-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 35px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  line-height: 1.15 !important;
  margin: 0 0 14px !important;
  letter-spacing: -0.5px;
}
.wd-hero-banner-title .wd-title-accent {
  color: #7C3AED;
}
.wd-hero-banner-desc {
  font-size: 14.5px !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 0 24px !important;
  font-weight: 500;
}
.wd-hero-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wd-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 24px;
  border-radius: 25px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  cursor: pointer;
}
.wd-hero-btn-primary {
  background: #0F172A !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28);
}
.wd-hero-btn-primary:hover {
  background: #7C3AED !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}
.wd-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #0F172A !important;
  border: 1px solid rgba(124, 58, 237, 0.18);
  backdrop-filter: blur(6px);
}
.wd-hero-btn-secondary:hover {
  background: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.wd-hero-main-img-wrap {
  display: none !important;
}

/* Card 2: Right Top Citrus Promo Banner with Background Image */
.wd-hero-side-card {
  border-radius: 24px !important;
  padding: 30px 24px 24px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
}
.wd-hero-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.11) !important;
}
.wd-hero-side-card-orange {
  background-color: #fff8f0 !important;
  background-image: linear-gradient(180deg, rgba(255, 248, 240, 0.98) 0%, rgba(255, 248, 240, 0.92) 40%, rgba(255, 248, 240, 0.2) 65%, rgba(255, 248, 240, 0) 100%), url('../images/hero-citrus-bg.jpg') !important;
  background-position: center bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(253, 186, 116, 0.5) !important;
}
.wd-hero-side-card-cream {
  background-color: #f0fdf4 !important;
  background-image: linear-gradient(180deg, rgba(240, 253, 244, 0.98) 0%, rgba(240, 253, 244, 0.92) 40%, rgba(240, 253, 244, 0.2) 65%, rgba(240, 253, 244, 0) 100%), url('../images/hero-staples-bg.jpg') !important;
  background-position: center bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(134, 239, 172, 0.5) !important;
}
.wd-side-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.wd-side-tag {
  display: inline-block;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.wd-hero-side-card-orange .wd-side-tag {
  background: rgba(234, 88, 12, 0.16);
  color: #b43403;
  border: 1px solid rgba(234, 88, 12, 0.28);
}
.wd-hero-side-card-cream .wd-side-tag {
  background: rgba(22, 163, 74, 0.16);
  color: #7C3AED;
  border: 1px solid rgba(22, 163, 74, 0.28);
}
.wd-side-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #1c1917 !important;
  line-height: 1.22 !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.3px;
}
.wd-side-discount {
  display: inline-block;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 12.5px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}
.wd-hero-side-card-orange .wd-side-discount {
  color: #ea580c;
}
.wd-hero-side-card-cream .wd-side-discount {
  color: #16a34a;
}
.wd-side-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 13.5px;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  margin-top: 4px;
}
.wd-side-btn i {
  transition: transform 0.2s ease;
}
.wd-side-btn:hover {
  color: #7C3AED !important;
}
.wd-side-btn:hover i {
  transform: translateX(4px);
}
.wd-side-card-img {
  display: none !important;
}


/* 3. Deal of the Day & Live Countdown Section */
.wd-deals-section {
  padding: 25px 0 45px;
}
.wd-deals-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: stretch;
}
.wd-deals-countdown-card {
  background: linear-gradient(145deg, #0A1128 0%, #111D38 100%) !important;
  border-radius: 24px;
  padding: 34px 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(24, 42, 19, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.wd-deal-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f59e0b;
  color: #1e293b;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 16px;
  margin-bottom: 14px;
  width: fit-content;
}
.wd-deal-card-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
}
.wd-deal-card-sub {
  font-size: 13.5px !important;
  color: #d1fae5 !important;
  line-height: 1.5 !important;
  margin: 0 0 22px !important;
}
.wd-countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.wd-timer-unit {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.wd-timer-val {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: #0A1128;
  line-height: 1;
}
.wd-timer-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #64748b;
  margin-top: 3px;
}
.wd-timer-sep {
  color: #86efac;
  font-size: 20px;
  font-weight: 800;
}
.wd-deal-products-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* 4. Products Grid & Card Styles */
.wd-bestsellers-section {
  padding: 20px 0 45px;
}
.wd-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 26px;
}
.wd-subheading-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7C3AED;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.wd-section-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 6px !important;
}
.wd-section-desc {
  font-size: 13.5px !important;
  color: #64748b !important;
  margin: 0 !important;
}
.wd-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 13.5px;
  color: #7C3AED !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.wd-view-all-link:hover {
  color: #33691e !important;
  transform: translateX(3px);
}
.wd-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wd-product-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #f1f5f9;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.wd-product-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.wd-product-thumb-wrap {
  position: relative;
  width: 100%;
  padding-top: 90%;
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
}
.wd-product-thumb-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-product-thumb-link img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.wd-product-card:hover .wd-product-thumb-link img {
  transform: scale(1.08);
}
.wd-card-quick-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s ease;
  z-index: 4;
}
.wd-product-card:hover .wd-card-quick-actions {
  opacity: 1;
  transform: translateX(0);
}
.wd-quick-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  text-decoration: none !important;
}
.wd-quick-action-btn:hover {
  background: #7C3AED;
  color: #ffffff;
  border-color: #7C3AED;
}
.wd-product-info {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wd-product-cat {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wd-product-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.35 !important;
}
.wd-product-title a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.wd-product-title a:hover {
  color: #7C3AED !important;
}
.wd-product-price-row {
  margin: 6px 0 8px;
}
.wd-product-price {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
}
.wd-product-price del {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  margin-right: 4px;
}
.wd-product-price ins {
  text-decoration: none;
  color: #dc2626;
}
.wd-card-cart-action .wd-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px 14px;
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 12.5px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  border: none;
}
.wd-card-cart-action .wd-btn-cart:hover {
  background: #7C3AED;
  color: #ffffff !important;
}

/* 5. Features Infoboxes Strip */
.wd-features-bar-section {
  padding: 10px 0 45px;
}
.wd-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #ffffff;
  padding: 26px 28px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}
.wd-feature-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wd-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #7C3AED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.wd-feature-info h4 {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  -webkit-text-fill-color: #0F172A !important;
  margin: 0 0 3px 0 !important;
  line-height: 1.3 !important;
}
.wd-feature-info p {
  font-size: 12px !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .wd-hero-three-cols-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wd-hero-main-banner {
    grid-column: 1 / -1;
  }
  .wd-deals-grid {
    grid-template-columns: 1fr;
  }
  .wd-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .wd-hero-three-cols-grid {
    grid-template-columns: 1fr;
  }
  .wd-hero-main-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 20px !important;
  }
  .wd-hero-main-img-wrap {
    max-width: 100%;
    margin-top: 20px;
    justify-content: center;
  }
  .wd-deal-products-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .wd-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }
}

/* ==========================================================================
   🌿 Category Stories Carousel Slider & Hero Images Fix
   ========================================================================== */
.wd-stories-section {
  padding: 16px 0 20px !important;
  background: #ffffff !important;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}
.wd-stories-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.wd-stories-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  font-size: 13px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}
.wd-stories-arrow:hover {
  background: #7C3AED;
  color: #ffffff;
  border-color: #7C3AED;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
  transform: translateY(-50%) scale(1.1);
}
.wd-stories-prev {
  left: -12px;
}
.wd-stories-next {
  right: -12px;
}
.wd-stories-grid {
  display: flex !important;
  align-items: flex-start !important;
  gap: 22px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  padding: 8px 12px 14px 12px !important;
  width: 100% !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.wd-stories-grid::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
}
.wd-story-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  flex: 0 0 84px !important;
  width: 84px !important;
  text-align: center !important;
  transition: transform 0.25s ease !important;
}
.wd-story-item:hover {
  transform: translateY(-4px) !important;
}
.wd-story-circle {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  padding: 3px !important;
  background: #ffffff !important;
  border: 2.5px solid #7C3AED !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.16) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}
.wd-story-item:hover .wd-story-circle {
  border-color: #33691e !important;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35) !important;
  transform: scale(1.06) !important;
}
.wd-story-circle img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}
.wd-story-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 84px !important;
}

/* ==========================================================================
   🌿 Category Stories Carousel Slider & Hero Images Fix
   ========================================================================== */
.wd-stories-section {
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}
.wd-stories-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.wd-stories-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  font-size: 13px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}
.wd-stories-arrow:hover {
  background: #7C3AED;
  color: #ffffff;
  border-color: #7C3AED;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
  transform: translateY(-50%) scale(1.1);
}
.wd-stories-prev {
  left: -12px;
}
.wd-stories-next {
  right: -12px;
}
.wd-stories-grid {
}
.wd-stories-grid::-webkit-scrollbar {
}
.wd-story-item {
}
.wd-story-item:hover {
}
.wd-story-circle {
}
.wd-story-item:hover .wd-story-circle {
}
.wd-story-circle img {
}
.wd-story-title {
}




/* ==========================================================================
   🌿 About Us & Contact Us Dedicated Layout Styles (Pixel Perfect)
   ========================================================================== */

/* Breadcrumbs Bar */
.wd-page-breadcrumb-bar {
  background: #f8fafc;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 30px;
}
.wd-breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
}
.wd-breadcrumbs a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.wd-breadcrumbs a:hover {
  color: #7C3AED;
}
.wd-breadcrumbs .active {
  color: #1e293b;
  font-weight: 700;
}

/* --- About Us Page --- */
.wd-about-hero-section {
  padding: 10px 0 50px;
}
.wd-about-hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}
.wd-about-hero-title {
}
.wd-about-hero-sub {
}
.wd-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wd-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.wd-stat-card:hover {
  transform: translateY(-4px);
  border-color: #7C3AED;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.12);
}
.wd-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #7C3AED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.wd-stat-num {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 32px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
  margin-bottom: 6px;
}
.wd-stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

/* Story Section */
.wd-about-story-section {
  padding: 40px 0 60px;
  background: #fbfbf9;
}
.wd-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wd-story-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.wd-story-main-img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.wd-story-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.wd-badge-years {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 34px;
  font-weight: 800;
  color: #7C3AED;
  line-height: 1;
}
.wd-badge-text {
  font-size: 12.5px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  max-width: 130px;
}
.wd-about-story-text-col .wd-story-title {
}
.wd-about-story-text-col .wd-story-desc {
}
.wd-story-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wd-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.wd-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #7C3AED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.wd-pillar-info h4 {
}
.wd-pillar-info p {
}

/* Values Section */
.wd-about-values-section {
  padding: 60px 0 50px;
}
.wd-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wd-value-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.wd-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}
.wd-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.wd-value-card h3 {
}
.wd-value-card p {
}

/* About CTA Box */
.wd-about-cta-section {
  padding: 20px 0 60px;
}
.wd-about-cta-box {
  background: linear-gradient(135deg, #0A1128 0%, #161233 100%);
  border-radius: 28px;
  padding: 48px 44px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 40px rgba(24, 42, 19, 0.25);
}
.wd-cta-text h2 {
}
.wd-cta-text p {
}
.wd-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.wd-btn-outline {
  padding: 12px 24px;
  border-radius: 25px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 13.5px;
  transition: all 0.25s ease;
}
.wd-btn-outline:hover {
}

/* --- Contact Us Page --- */
.wd-contact-hero-section {
  padding: 10px 0 45px;
}
.wd-contact-hero-content {
  max-width: 780px;
  margin: 0 auto 36px;
}
.wd-contact-hero-title {
}
.wd-contact-hero-sub {
}
.wd-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wd-contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.wd-contact-card:hover {
  transform: translateY(-4px);
  border-color: #7C3AED;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.12);
}
.wd-contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.wd-icon-phone {
  background: #eff6ff;
  color: #2563eb;
}
.wd-icon-email {
  background: #ecfdf5;
  color: #7C3AED;
}
.wd-icon-location {
  background: #fff7ed;
  color: #ea580c;
}
.wd-contact-card h3 {
}
.wd-contact-card p {
}
.wd-contact-link {
  display: inline-block;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #7C3AED;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.wd-contact-link:hover {
  color: #33691e;
}
.wd-contact-link-static {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
}
.wd-contact-timing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

/* Contact Body Grid (Form + Sidebar) */
.wd-contact-body-section {
  padding: 30px 0 50px;
}
.wd-contact-body-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.wd-contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 38px 34px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}
.wd-form-header h2 {
}
.wd-form-header p {
}
.wd-form-alert {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  margin-bottom: 20px;
}
.wd-form-alert.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.wd-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.wd-form-group {
  margin-bottom: 16px;
}
.wd-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}
.wd-form-group .required {
  color: #dc2626;
}
.wd-input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wd-input-icon-wrap i {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}
.wd-input-icon-wrap input,
.wd-input-icon-wrap select {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 13.5px;
  color: #1e293b;
  outline: none;
  transition: all 0.2s ease;
  background: #ffffff;
}
.wd-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 13.5px;
  color: #1e293b;
  outline: none;
  resize: vertical;
  transition: all 0.2s ease;
  font-family: inherit;
}
.wd-input-icon-wrap input:focus,
.wd-input-icon-wrap select:focus,
.wd-form-group textarea:focus {
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.wd-btn-submit {
  width: 100%;
  padding: 14px 20px;
  font-size: 14.5px;
  justify-content: center;
  border: none;
  margin-top: 8px;
}

/* Contact Sidebar */
.wd-contact-faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}
.wd-contact-faq-card h3 {
}
.wd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.wd-faq-item {
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #f1f5f9;
}
.wd-faq-question {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wd-faq-question i {
  color: #7C3AED;
  font-size: 13px;
}
.wd-faq-answer {
}
.wd-sidebar-support-banner {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.wd-support-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.wd-support-text h5 {
}
.wd-support-text p {
}
.wd-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.wd-whatsapp-btn:hover {
  background: #1eb956;
  transform: translateY(-1px);
}

/* Map Section */
.wd-contact-map-section {
  padding: 10px 0 60px;
}
.wd-map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

/* Responsive Rules for About & Contact */
@media (max-width: 1024px) {
  .wd-about-stats-grid,
  .wd-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wd-about-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
  .wd-contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .wd-contact-body-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wd-about-stats-grid,
  .wd-values-grid {
    grid-template-columns: 1fr;
  }
  .wd-form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .wd-about-hero-title {
  }
  .wd-contact-hero-title {
  }
}

/* Legal / Policy Pages Styling */
.wd-legal-hero-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  padding: 45px 0 35px;
  border-bottom: 1px solid #e2e8f0;
}
.wd-legal-hero-section .wd-page-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin: 12px 0 6px;
}
.wd-legal-hero-section .wd-page-sub {
  font-size: 14px;
  color: #64748b;
}
.wd-legal-body-section {
  padding: 50px 0 70px;
  background: #FAF8FC;
}
.wd-legal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  max-width: 900px;
  margin: 0 auto;
}
.wd-legal-block {
  margin-bottom: 32px;
}
.wd-legal-block:last-child {
  margin-bottom: 0;
}
.wd-legal-block h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f1f5f9;
}
.wd-legal-block p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 10px;
}
.wd-legal-block ul,
.wd-legal-block ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.wd-legal-block li {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 6px;
}
.wd-legal-block a {
  color: #7C3AED;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .wd-legal-card {
    padding: 24px 20px;
  }
  .wd-legal-hero-section .wd-page-title {
    font-size: 26px;
  }
}

/* ==========================================================================
   VYBE ONLINE BRAND THEME OVERRIDES (Logo-matched Palette)
   ========================================================================== */

/* 1. Global Brand Accents & Gradients */
.wd-pill-cat-btn,
.wd-sticky-nav-top-btn,
.wd-header-circle-cart-btn,
.wd-newsletter-submit-btn,
.wd-btn-primary,
.wd-hero-btn-primary,
.button.checkout-button,
.single_add_to_cart_button,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

.wd-pill-cat-btn:hover,
.wd-sticky-nav-top-btn:hover,
.wd-header-circle-cart-btn:hover,
.wd-newsletter-submit-btn:hover,
.wd-btn-primary:hover,
.wd-hero-btn-primary:hover,
.button.checkout-button:hover,
.single_add_to_cart_button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #1D4ED8 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3) !important;
}

/* 2. Top Header & Search */
.wd-search-submit-btn {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
}
.wd-search-input:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15) !important;
}

/* 3. Badge & Tags */
.wd-badge-pill,
.wd-subheading-tag,
.wd-hero-pill-badge {
  background: #F5F3FF !important;
  color: #7C3AED !important;
  border: 1px solid #DDD6FE !important;
}

/* 4. Product Cards & Pricing */
.wd-product-price,
.price,
.amount,
.wd-price-current {
  color: #7C3AED !important;
  font-weight: 700;
}
.wd-product-card:hover {
  border-color: #DDD6FE !important;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.1) !important;
}
.wd-add-to-cart-btn:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
}

/* 5. Luxury Brand Footer */
.wd-green-footer {
  background: linear-gradient(135deg, #0a1128 0%, #0f1c3f 50%, #161233 100%) !important;
  border-top: 3px solid #7C3AED;
}
.wd-footer-newsletter-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f284e 100%) !important;
  border: 1px solid rgba(124, 58, 237, 0.25) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25) !important;
}
.wd-social-circle:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  border-color: transparent !important;
}

/* 6. Active Tabs & Mobile Navigation */
.wd-mob-tab-btn.active {
  color: #7C3AED !important;
  border-bottom-color: #7C3AED !important;
}
.wd-mob-drawer-header {
  border-bottom: 2px solid #F5F3FF;
}
.wd-cart-badge,
.wd-wishlist-badge {
  background: linear-gradient(135deg, #EF4444 0%, #EC4899 100%) !important;
  color: #ffffff !important;
}

/* 7. Deals & Banner Highlights */
.wd-deal-card-badge {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
}
.wd-deal-progress-fill {
  background: linear-gradient(90deg, #7C3AED 0%, #2563EB 100%) !important;
}

/* ==========================================================================
   Universal White Text for All Action Buttons & Add to Cart
   ========================================================================== */
.wd-btn,
.wd-btn *,
.wd-btn-cart,
.wd-btn-cart *,
.wd-card-cart-action .wd-btn-cart,
.wd-card-cart-action .wd-btn-cart *,
.add_to_cart_button,
.add_to_cart_button *,
.ajax_add_to_cart,
.ajax_add_to_cart *,
.single_add_to_cart_button,
.single_add_to_cart_button *,
.button.add_to_cart_button,
.button.add_to_cart_button *,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .button *,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .add_to_cart_button *,
.wd-hero-btn-primary,
.wd-hero-btn-primary *,
.wd-pill-cat-btn,
.wd-pill-cat-btn *,
.wd-search-submit-btn,
.wd-search-submit-btn *,
.wd-newsletter-submit-btn,
.wd-newsletter-submit-btn *,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit *,
.woocommerce a.button,
.woocommerce a.button *,
.woocommerce button.button,
.woocommerce button.button *,
.woocommerce input.button,
.woocommerce input.button * {
  color: #ffffff !important;
  fill: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.wd-btn-cart i,
.add_to_cart_button i,
.ajax_add_to_cart i {
  color: #ffffff !important;
  margin-right: 6px;
}

/* Category Stories Smooth Scroll & Title Color Fix */
.wd-stories-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 20px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 8px 16px 12px 16px !important;
  width: 100% !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  cursor: grab;
}
.wd-stories-grid.active {
  cursor: grabbing;
}
.wd-stories-grid::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
}
.wd-story-item {
  flex: 0 0 84px !important;
  width: 84px !important;
  min-width: 84px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-decoration: none !important;
}
.wd-story-title {
  color: #1e293b !important;
  -webkit-text-fill-color: #1e293b !important;
  font-weight: 600 !important;
  font-size: 11.5px !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 84px !important;
  display: block !important;
  margin-top: 5px !important;
}
.wd-story-item:hover .wd-story-title {
  color: #7C3AED !important;
  -webkit-text-fill-color: #7C3AED !important;
}
.wd-stories-arrow {
  z-index: 20 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* ==========================================================================
   Category Stories Smooth Carousel Slider & Styling (Fixed & Enhanced)
   ========================================================================== */
.wd-stories-section {
  padding: 16px 0 20px !important;
  background: #ffffff !important;
  border-bottom: 1px solid #f1f5f9 !important;
  position: relative !important;
}

.wd-stories-slider-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.wd-stories-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 22px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 8px 6px 12px 6px !important;
  width: 100% !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  cursor: grab;
  user-select: none;
}

.wd-stories-grid.active {
  cursor: grabbing;
  scroll-behavior: auto !important;
}

.wd-stories-grid::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}

.wd-story-item {
  flex: 0 0 94px !important;
  width: 94px !important;
  min-width: 94px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: transform 0.25s ease !important;
}

.wd-story-circle {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  border: 2.5px solid #7C3AED !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.18) !important;
  background: #ffffff !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wd-story-circle img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  pointer-events: none !important;
  transition: transform 0.35s ease !important;
}

.wd-story-item:hover .wd-story-circle {
  transform: translateY(-4px) scale(1.06) !important;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35) !important;
  border-color: #6D28D9 !important;
}

.wd-story-item:hover .wd-story-circle img {
  transform: scale(1.08) !important;
}

.wd-story-title {
  color: #1e293b !important;
  -webkit-text-fill-color: #1e293b !important;
  font-weight: 600 !important;
  font-size: 11.5px !important;
  line-height: 1.25 !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 94px !important;
  display: block !important;
  margin-top: 6px !important;
  transition: color 0.2s ease !important;
}

.wd-story-item:hover .wd-story-title {
  color: #7C3AED !important;
  -webkit-text-fill-color: #7C3AED !important;
}

.wd-stories-arrow {
  position: absolute !important;
  top: 42% !important;
  transform: translateY(-50%) !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1e293b !important;
  font-size: 14px !important;
  cursor: pointer !important;
  z-index: 20 !important;
  transition: all 0.25s ease !important;
}

.wd-stories-arrow:hover {
  background: #7C3AED !important;
  color: #ffffff !important;
  border-color: #7C3AED !important;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.wd-stories-arrow:hover i {
  color: #ffffff !important;
}

.wd-stories-prev {
  left: -14px !important;
}

.wd-stories-next {
  right: -14px !important;
}

.wd-stories-arrow.hidden-arrow {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* ==========================================================================
   ✨ Hero Product Showcase Slider & Side Cards (State-of-the-art Design)
   ========================================================================== */
.wd-hero-three-cols-section {
  padding: 16px 0 32px !important;
  background: transparent !important;
}

.wd-hero-three-cols-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  gap: 20px !important;
  align-items: stretch !important;
}

/* Main Hero Slider Container */
.wd-hero-slider-container {
  position: relative !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  min-height: 420px !important;
  display: flex !important;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06) !important;
}

.wd-hero-slider-track {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  overflow: hidden !important;
}

/* Hero Slides */
.wd-hero-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transform: scale(0.97) !important;
  z-index: 1 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
}

.wd-hero-slide.active {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: scale(1) !important;
  z-index: 2 !important;
}

/* Individual Slide Backgrounds */
.wd-hero-slide-1 {
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 45%, #ffffff 100%) !important;
  border: 1.5px solid #ede9fe !important;
}
.wd-hero-slide-2 {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 45%, #ffffff 100%) !important;
  border: 1.5px solid #fde68a !important;
}
.wd-hero-slide-3 {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 45%, #ffffff 100%) !important;
  border: 1.5px solid #bbf7d0 !important;
}
.wd-hero-slide-4 {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 45%, #ffffff 100%) !important;
  border: 1.5px solid #c7d2fe !important;
}

.wd-hero-slide-inner {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 20px !important;
  align-items: center !important;
  padding: 34px 36px 36px 36px !important;
  height: 100% !important;
}

.wd-hero-slide-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  z-index: 3 !important;
}

/* Hero Pill Badges */
.wd-hero-pill-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 12px !important;
  background: #ede9fe !important;
  color: #7C3AED !important;
  border: 1px solid #ddd6fe !important;
}
.wd-hero-pill-badge.badge-dairy {
  background: #fef3c7 !important;
  color: #d97706 !important;
  border-color: #fde68a !important;
}
.wd-hero-pill-badge.badge-staples {
  background: #dcfce7 !important;
  color: #15803d !important;
  border-color: #bbf7d0 !important;
}
.wd-hero-pill-badge.badge-tech {
  background: #e0e7ff !important;
  color: #4338ca !important;
  border-color: #c7d2fe !important;
}

.wd-hero-banner-title {
  font-size: 27px !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
  color: #0f172a !important;
  margin-bottom: 10px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-hero-banner-title .wd-title-accent {
  background: linear-gradient(135deg, #7C3AED 0%, #9333ea 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.wd-hero-banner-desc {
  font-size: 13.5px !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin-bottom: 14px !important;
  max-width: 360px !important;
}

.wd-hero-offer-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #ffffff !important;
  border: 1px dashed #cbd5e1 !important;
  padding: 5px 12px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  color: #334155 !important;
  margin-bottom: 20px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
}

.wd-hero-offer-tag .wd-offer-highlight {
  font-weight: 700 !important;
  color: #7C3AED !important;
}

.wd-hero-banner-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.wd-hero-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 20px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.wd-hero-btn-primary {
  background: #7C3AED !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35) !important;
}

.wd-hero-btn-primary * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.wd-hero-btn-primary:hover {
  background: #6D28D9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.45) !important;
}

.wd-hero-btn-secondary {
  background: #ffffff !important;
  color: #1e293b !important;
  -webkit-text-fill-color: #1e293b !important;
  border: 1px solid #e2e8f0 !important;
}

.wd-hero-btn-secondary:hover {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
  color: #7C3AED !important;
  -webkit-text-fill-color: #7C3AED !important;
  transform: translateY(-2px) !important;
}

/* Hero Showcase Visuals & Floating Cards */
.wd-hero-showcase-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  min-height: 270px !important;
}

.wd-hero-img-box {
  position: relative !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.wd-hero-main-img {
  max-width: 100% !important;
  max-height: 240px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12)) !important;
  transition: transform 0.4s ease !important;
}

.wd-hero-main-img.img-dairy,
.wd-hero-main-img.img-tech {
  width: 210px !important;
  height: 210px !important;
  border-radius: 20px !important;
  object-fit: cover !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
}

.wd-hero-slide:hover .wd-hero-main-img {
  transform: scale(1.04) !important;
}

/* Floating Product Micro Cards */
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

.wd-hero-float-card {
  position: absolute !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 6px 11px !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
  z-index: 5 !important;
  animation: floatCard 4s ease-in-out infinite !important;
}

.wd-hero-float-card img {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
}

.wd-float-info {
  display: flex !important;
  flex-direction: column !important;
}

.wd-float-name {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  white-space: nowrap !important;
}

.wd-float-price {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #7C3AED !important;
}

.wd-float-price del {
  font-size: 9.5px !important;
  color: #94a3b8 !important;
  font-weight: 400 !important;
  margin-left: 2px !important;
}

.wd-float-badge {
  font-size: 9.5px !important;
  font-weight: 700 !important;
  color: #16a34a !important;
  background: #dcfce7 !important;
  padding: 2px 6px !important;
  border-radius: 6px !important;
  display: inline-block !important;
  margin-top: 1px !important;
}

.wd-float-card-1 {
  top: 12px !important;
  right: -6px !important;
}

.wd-float-card-2 {
  bottom: 12px !important;
  left: -6px !important;
  animation-delay: 2s !important;
}

/* Slider Arrows */
.wd-hero-nav-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1e293b !important;
  font-size: 13px !important;
  cursor: pointer !important;
  z-index: 10 !important;
  opacity: 0 !important;
  transition: all 0.25s ease !important;
}

.wd-hero-slider-container:hover .wd-hero-nav-arrow {
  opacity: 1 !important;
}

.wd-hero-prev {
  left: 14px !important;
}

.wd-hero-next {
  right: 14px !important;
}

.wd-hero-nav-arrow:hover {
  background: #7C3AED !important;
  color: #ffffff !important;
  border-color: #7C3AED !important;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.wd-hero-nav-arrow:hover i {
  color: #ffffff !important;
}

/* Slider Dots */
.wd-hero-dots-wrap {
  position: absolute !important;
  bottom: 14px !important;
  left: 36px !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  z-index: 10 !important;
}

.wd-hero-dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 6px !important;
  background: #cbd5e1 !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.wd-hero-dot.active {
  width: 26px !important;
  background: #7C3AED !important;
}

/* Side Promo Cards */
.wd-hero-side-card {
  border-radius: 24px !important;
  padding: 26px 22px 18px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 420px !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
}

.wd-hero-side-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.11) !important;
}

.wd-hero-side-card-orange {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 60%, #fed7aa 100%) !important;
  border: 1.5px solid #fed7aa !important;
}

.wd-hero-side-card-cream {
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 60%, #bbf7d0 100%) !important;
  border: 1.5px solid #bbf7d0 !important;
}

.wd-side-card-content {
  position: relative !important;
  z-index: 2 !important;
}

.wd-side-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 5px 10px !important;
  border-radius: 8px !important;
  margin-bottom: 10px !important;
  width: fit-content !important;
}

.wd-hero-side-card-orange .wd-side-tag {
  background: #ffedd5 !important;
  color: #c2410c !important;
}

.wd-hero-side-card-cream .wd-side-tag {
  background: #dcfce7 !important;
  color: #15803d !important;
}

.wd-side-title {
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-side-discount {
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  margin-bottom: 12px !important;
  width: fit-content !important;
}

.wd-hero-side-card-orange .wd-side-discount {
  background: #ffffff !important;
  color: #ea580c !important;
  border: 1px solid #fdba74 !important;
}

.wd-hero-side-card-cream .wd-side-discount {
  background: #ffffff !important;
  color: #16a34a !important;
  border: 1px solid #86efac !important;
}

.wd-side-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  text-decoration: none !important;
  margin-bottom: 8px !important;
  transition: color 0.2s ease !important;
}

.wd-side-btn:hover {
  color: #7C3AED !important;
  -webkit-text-fill-color: #7C3AED !important;
}

.wd-side-card-img {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: auto !important;
  padding-top: 10px !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1 !important;
}

.wd-side-card-img img {
  max-height: 175px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.1)) !important;
  transition: transform 0.35s ease !important;
}

.wd-hero-side-card:hover .wd-side-card-img img {
  transform: scale(1.08) translateY(-4px) !important;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .wd-hero-three-cols-grid {
    grid-template-columns: 1fr !important;
  }
  .wd-hero-slider-container {
    min-height: 380px !important;
  }
}

@media (max-width: 768px) {
  .wd-hero-slide-inner {
    grid-template-columns: 1fr !important;
    padding: 24px 20px 48px 20px !important;
  }
  .wd-hero-banner-title {
    font-size: 22px !important;
  }
  .wd-hero-showcase-wrap {
    min-height: 200px !important;
    margin-top: 15px !important;
  }
  .wd-hero-dots-wrap {
    left: 20px !important;
    bottom: 12px !important;
  }
  .wd-hero-nav-arrow {
    opacity: 1 !important;
  }
}

/* ==========================================================================
   ✨ Full-Width Hero Product Showcase Slider (Responsive & High Polish)
   ========================================================================== */
.wd-hero-fullwidth-section {
  padding: 16px 0 32px !important;
}

.wd-hero-fullwidth-grid {
  display: block !important;
  width: 100% !important;
}

.wd-hero-slider-fullwidth {
  width: 100% !important;
  min-height: 440px !important;
  border-radius: 26px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06) !important;
}

.wd-hero-slider-fullwidth .wd-hero-slider-track {
  min-height: 440px !important;
}

.wd-hero-slider-fullwidth .wd-hero-slide-inner {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 40px !important;
  align-items: center !important;
  padding: 44px 60px 48px 60px !important;
  min-height: 440px !important;
  height: 100% !important;
}

.wd-hero-slider-fullwidth .wd-hero-banner-title {
  font-size: 34px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-hero-slider-fullwidth .wd-hero-banner-desc {
  font-size: 14.5px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
  max-width: 480px !important;
}

.wd-hero-slider-fullwidth .wd-hero-showcase-wrap {
  min-height: 320px !important;
}

.wd-hero-slider-fullwidth .wd-hero-main-img {
  max-height: 290px !important;
}

.wd-hero-slider-fullwidth .wd-hero-main-img.img-dairy,
.wd-hero-slider-fullwidth .wd-hero-main-img.img-tech {
  width: 250px !important;
  height: 250px !important;
  border-radius: 24px !important;
}

.wd-hero-slider-fullwidth .wd-hero-float-card {
  padding: 8px 14px !important;
}

.wd-hero-slider-fullwidth .wd-hero-float-card img {
  width: 42px !important;
  height: 42px !important;
  border-radius: 10px !important;
}

.wd-hero-slider-fullwidth .wd-float-name {
  font-size: 12px !important;
}

.wd-hero-slider-fullwidth .wd-float-price {
  font-size: 12px !important;
}

.wd-hero-slider-fullwidth .wd-float-badge {
  font-size: 10.5px !important;
  padding: 3px 8px !important;
}

.wd-hero-slider-fullwidth .wd-float-card-1 {
  top: 18px !important;
  right: 15px !important;
}

.wd-hero-slider-fullwidth .wd-float-card-2 {
  bottom: 18px !important;
  left: 15px !important;
}

.wd-hero-slider-fullwidth .wd-hero-prev {
  left: 20px !important;
}

.wd-hero-slider-fullwidth .wd-hero-next {
  right: 20px !important;
}

.wd-hero-slider-fullwidth .wd-hero-dots-wrap {
  left: 60px !important;
  bottom: 20px !important;
}

@media (max-width: 1024px) {
  .wd-hero-slider-fullwidth .wd-hero-slide-inner {
    padding: 36px 40px 44px 40px !important;
    gap: 25px !important;
  }
  .wd-hero-slider-fullwidth .wd-hero-banner-title {
    font-size: 28px !important;
  }
  .wd-hero-slider-fullwidth .wd-hero-dots-wrap {
    left: 40px !important;
  }
}

@media (max-width: 768px) {
  .wd-hero-slider-fullwidth .wd-hero-slide-inner {
    grid-template-columns: 1fr !important;
    padding: 26px 20px 52px 20px !important;
    gap: 20px !important;
  }
  .wd-hero-slider-fullwidth .wd-hero-banner-title {
    font-size: 23px !important;
  }
  .wd-hero-slider-fullwidth .wd-hero-banner-desc {
    font-size: 13.5px !important;
  }
  .wd-hero-slider-fullwidth .wd-hero-showcase-wrap {
    min-height: 220px !important;
  }
  .wd-hero-slider-fullwidth .wd-hero-main-img {
    max-height: 210px !important;
  }
  .wd-hero-slider-fullwidth .wd-hero-main-img.img-dairy,
  .wd-hero-slider-fullwidth .wd-hero-main-img.img-tech {
    width: 190px !important;
    height: 190px !important;
  }
  .wd-hero-slider-fullwidth .wd-hero-dots-wrap {
    left: 20px !important;
    bottom: 14px !important;
  }
}

/* Spacing adjustments for Hero on Top + Category Slider Below */
.wd-hero-fullwidth-section {
  padding: 20px 0 10px !important;
}

.wd-stories-section {
  padding: 12px 0 24px !important;
  background: #ffffff !important;
  border-top: none !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

/* ==========================================================================
   ✨ Contact Us Page Form & FAQs Modern Redesign
   ========================================================================== */
.wd-contact-page {
  padding-bottom: 60px;
}

.wd-contact-hero-section {
  padding: 40px 0 25px;
  background: linear-gradient(180deg, #f5f3ff 0%, #faf8ff 60%, #ffffff 100%);
  border-bottom: 1px solid #f1f5f9;
}

.wd-contact-hero-content {
  max-width: 720px;
  margin: 0 auto 35px;
  text-align: center;
}

.wd-contact-hero-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 12px 0 10px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-contact-hero-sub {
  font-size: 15px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
}

/* Contact Cards Grid */
.wd-contact-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  margin-top: 10px !important;
}

.wd-contact-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 28px 24px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.wd-contact-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08) !important;
  border-color: #ddd6fe !important;
}

.wd-contact-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 16px !important;
  background: #ede9fe !important;
  color: #7C3AED !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  margin-bottom: 16px !important;
}

.wd-contact-card h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
}

.wd-contact-card p {
  font-size: 13px !important;
  color: #64748b !important;
  margin-bottom: 12px !important;
}

.wd-contact-link {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #7C3AED !important;
  text-decoration: none !important;
  margin-bottom: 8px !important;
}

.wd-contact-link:hover {
  text-decoration: underline !important;
}

.wd-contact-link-static {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
}

.wd-contact-timing {
  font-size: 12px !important;
  color: #94a3b8 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  margin-top: auto !important;
}

/* Contact Body Section */
.wd-contact-body-section {
  padding: 40px 0 20px;
}

.wd-contact-body-grid {
  display: grid !important;
  grid-template-columns: 1.45fr 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

/* Contact Form Card */
.wd-contact-form-wrap {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 38px 34px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
}

.wd-form-header h2 {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-form-header p {
  font-size: 14px !important;
  color: #64748b !important;
  margin-bottom: 24px !important;
}

.wd-form-row-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}

.wd-form-group {
  margin-bottom: 18px !important;
}

.wd-form-group label {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin-bottom: 7px !important;
}

.wd-form-group .required {
  color: #ef4444 !important;
  font-weight: 700 !important;
}

.wd-input-icon-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.wd-input-icon-wrap i {
  position: absolute !important;
  left: 16px !important;
  color: #94a3b8 !important;
  font-size: 15px !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.wd-form-input,
.wd-form-select {
  width: 100% !important;
  padding: 13px 16px 13px 44px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  outline: none !important;
  font-family: inherit !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.wd-form-select {
  cursor: pointer !important;
  appearance: auto !important;
}

.wd-form-input:focus,
.wd-form-select:focus {
  border-color: #7C3AED !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3.5px rgba(124, 58, 237, 0.15) !important;
}

.wd-form-textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  outline: none !important;
  resize: vertical !important;
  min-height: 130px !important;
  font-family: inherit !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.wd-form-textarea:focus {
  border-color: #7C3AED !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3.5px rgba(124, 58, 237, 0.15) !important;
}

.wd-btn-submit-contact {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 15px 30px !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  background: #7C3AED !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35) !important;
  margin-top: 6px !important;
}

.wd-btn-submit-contact * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.wd-btn-submit-contact:hover {
  background: #6D28D9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.45) !important;
}

/* Contact FAQ Wrap */
.wd-contact-faq-wrap {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 34px 28px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
}

.wd-faq-header .wd-subheading-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 5px 11px !important;
  border-radius: 8px !important;
  background: #ede9fe !important;
  color: #7C3AED !important;
  margin-bottom: 8px !important;
}

.wd-faq-header h2 {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-faq-header p {
  font-size: 13.5px !important;
  color: #64748b !important;
  margin-bottom: 20px !important;
}

.wd-faq-item {
  border: 1px solid #f1f5f9 !important;
  background: #f8fafc !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  margin-bottom: 14px !important;
  transition: all 0.25s ease !important;
}

.wd-faq-item:hover {
  background: #ffffff !important;
  border-color: #ddd6fe !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.06) !important;
}

.wd-faq-question {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
}

.wd-faq-question i {
  color: #7C3AED !important;
  font-size: 14px !important;
}

.wd-faq-answer {
  font-size: 13px !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .wd-contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .wd-contact-body-grid {
    grid-template-columns: 1fr !important;
  }
  .wd-form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .wd-contact-form-wrap,
  .wd-contact-faq-wrap {
    padding: 26px 20px !important;
  }
}

/* ==========================================================================
   ✨ Contact Us Page Form & FAQs Modern Redesign
   ========================================================================== */
.wd-contact-page {
  padding-bottom: 60px;
}

.wd-contact-hero-section {
  padding: 40px 0 25px;
  background: linear-gradient(180deg, #f5f3ff 0%, #faf8ff 60%, #ffffff 100%);
  border-bottom: 1px solid #f1f5f9;
}

.wd-contact-hero-content {
  max-width: 720px;
  margin: 0 auto 35px;
  text-align: center;
}

.wd-contact-hero-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 12px 0 10px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-contact-hero-sub {
  font-size: 15px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
}

/* Contact Cards Grid */
.wd-contact-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  margin-top: 10px !important;
}

.wd-contact-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 28px 24px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.wd-contact-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08) !important;
  border-color: #ddd6fe !important;
}

.wd-contact-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 16px !important;
  background: #ede9fe !important;
  color: #7C3AED !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  margin-bottom: 16px !important;
}

.wd-contact-card h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
}

.wd-contact-card p {
  font-size: 13px !important;
  color: #64748b !important;
  margin-bottom: 12px !important;
}

.wd-contact-link {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #7C3AED !important;
  text-decoration: none !important;
  margin-bottom: 8px !important;
}

.wd-contact-link:hover {
  text-decoration: underline !important;
}

.wd-contact-link-static {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
}

.wd-contact-timing {
  font-size: 12px !important;
  color: #94a3b8 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  margin-top: auto !important;
}

/* Contact Body Section */
.wd-contact-body-section {
  padding: 40px 0 20px;
}

.wd-contact-body-grid {
  display: grid !important;
  grid-template-columns: 1.45fr 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

/* Contact Form Card */
.wd-contact-form-wrap {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 38px 34px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
}

.wd-form-header h2 {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-form-header p {
  font-size: 14px !important;
  color: #64748b !important;
  margin-bottom: 24px !important;
}

.wd-form-row-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}

.wd-form-group {
  margin-bottom: 18px !important;
}

.wd-form-group label {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin-bottom: 7px !important;
}

.wd-form-group .required {
  color: #ef4444 !important;
  font-weight: 700 !important;
}

.wd-input-icon-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.wd-input-icon-wrap i {
  position: absolute !important;
  left: 16px !important;
  color: #94a3b8 !important;
  font-size: 15px !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.wd-form-input,
.wd-form-select {
  width: 100% !important;
  padding: 13px 16px 13px 44px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  outline: none !important;
  font-family: inherit !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.wd-form-select {
  cursor: pointer !important;
  appearance: auto !important;
}

.wd-form-input:focus,
.wd-form-select:focus {
  border-color: #7C3AED !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3.5px rgba(124, 58, 237, 0.15) !important;
}

.wd-form-textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  outline: none !important;
  resize: vertical !important;
  min-height: 130px !important;
  font-family: inherit !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.wd-form-textarea:focus {
  border-color: #7C3AED !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3.5px rgba(124, 58, 237, 0.15) !important;
}

.wd-btn-submit-contact {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 15px 30px !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  background: #7C3AED !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35) !important;
  margin-top: 6px !important;
}

.wd-btn-submit-contact * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.wd-btn-submit-contact:hover {
  background: #6D28D9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.45) !important;
}

/* Contact FAQ Wrap */
.wd-contact-faq-wrap {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 34px 28px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
}

.wd-faq-header .wd-subheading-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 5px 11px !important;
  border-radius: 8px !important;
  background: #ede9fe !important;
  color: #7C3AED !important;
  margin-bottom: 8px !important;
}

.wd-faq-header h2 {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-faq-header p {
  font-size: 13.5px !important;
  color: #64748b !important;
  margin-bottom: 20px !important;
}

.wd-faq-item {
  border: 1px solid #f1f5f9 !important;
  background: #f8fafc !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  margin-bottom: 14px !important;
  transition: all 0.25s ease !important;
}

.wd-faq-item:hover {
  background: #ffffff !important;
  border-color: #ddd6fe !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.06) !important;
}

.wd-faq-question {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
}

.wd-faq-question i {
  color: #7C3AED !important;
  font-size: 14px !important;
}

.wd-faq-answer {
  font-size: 13px !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .wd-contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .wd-contact-body-grid {
    grid-template-columns: 1fr !important;
  }
  .wd-form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .wd-contact-form-wrap,
  .wd-contact-faq-wrap {
    padding: 26px 20px !important;
  }
}

/* ==========================================================================
   ✨ All Categories Dropdown & Subcategory Smart Hover Bridge
   ========================================================================== */
.wd-subcat-flyout-panel {
  position: absolute !important;
  top: -8px;
  left: calc(100% - 6px) !important;
  width: 330px !important;
  background-color: #ffffff !important;
  box-shadow: 12px 14px 35px rgba(0, 0, 0, 0.15) !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 0 16px 16px 16px !important;
  padding: 20px 24px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateX(4px) !important;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease !important;
  z-index: 10005 !important;
}

/* Invisible bridge so cursor never drops hover when crossing diagonally */
.wd-subcat-flyout-panel::before {
  content: '' !important;
  position: absolute !important;
  top: -40px !important;
  bottom: -40px !important;
  left: -50px !important;
  width: 60px !important;
  background: transparent !important;
  pointer-events: auto !important;
  z-index: 10 !important;
}

.wd-cat-menu-item:hover > .wd-subcat-flyout-panel,
.wd-cat-menu-item.active > .wd-subcat-flyout-panel,
.wd-cat-menu-item.sub-open > .wd-subcat-flyout-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
  display: block !important;
}

.wd-cat-menu-item.active > .wd-cat-link,
.wd-cat-menu-item.sub-open > .wd-cat-link {
  background-color: #f5f3ff !important;
  color: #7C3AED !important;
  padding-left: 24px !important;
}

.wd-cat-menu-item.active > .wd-cat-link .wd-submenu-arr,
.wd-cat-menu-item.sub-open > .wd-cat-link .wd-submenu-arr {
  color: #7C3AED !important;
  transform: translateX(3px) !important;
}

/* ==========================================================================
   ✨ Bulletproof Dropdown & Flyout Hover Bridge
   ========================================================================== */
.wd-header-categories-btn-wrap {
  position: relative !important;
}

.wd-all-cat-dropdown {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  width: 275px !important;
  background-color: #ffffff !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14) !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 8px 0 !important;
  z-index: 99999 !important;
}

.wd-all-cat-dropdown::before {
  content: '' !important;
  position: absolute !important;
  top: -15px !important;
  left: 0 !important;
  right: 0 !important;
  height: 20px !important;
  background: transparent !important;
  pointer-events: auto !important;
}

.wd-header-categories-btn-wrap:hover .wd-all-cat-dropdown,
.wd-all-cat-dropdown.open {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.wd-cat-menu-item {
  position: relative !important;
}

.wd-cat-menu-item .wd-cat-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
  cursor: pointer !important;
}

.wd-cat-menu-item:hover > .wd-cat-link,
.wd-cat-menu-item.active > .wd-cat-link,
.wd-cat-menu-item.sub-open > .wd-cat-link {
  background-color: #f5f3ff !important;
  color: #7C3AED !important;
  padding-left: 24px !important;
}

.wd-cat-menu-item .wd-submenu-arr {
  margin-left: auto !important;
  font-size: 10px !important;
  color: #94a3b8 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.wd-cat-menu-item:hover > .wd-cat-link .wd-submenu-arr,
.wd-cat-menu-item.active > .wd-cat-link .wd-submenu-arr,
.wd-cat-menu-item.sub-open > .wd-cat-link .wd-submenu-arr {
  color: #7C3AED !important;
  transform: translateX(3px) !important;
}

.wd-subcat-flyout-panel {
  position: absolute !important;
  top: -8px !important;
  left: 100% !important;
  width: 320px !important;
  background-color: #ffffff !important;
  box-shadow: 10px 14px 35px rgba(0, 0, 0, 0.12) !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 0 16px 16px 16px !important;
  padding: 20px 24px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateX(4px) !important;
  transition: opacity 0.15s ease, transform 0.15s ease !important;
  z-index: 100000 !important;
}

/* 60px wide safe hover bridge */
.wd-subcat-flyout-panel::before {
  content: '' !important;
  position: absolute !important;
  top: -40px !important;
  bottom: -40px !important;
  left: -50px !important;
  width: 60px !important;
  background: transparent !important;
  pointer-events: auto !important;
  z-index: 10 !important;
}

.wd-cat-menu-item:hover > .wd-subcat-flyout-panel,
.wd-cat-menu-item.active > .wd-subcat-flyout-panel,
.wd-cat-menu-item.sub-open > .wd-subcat-flyout-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
  display: block !important;
}

/* ==========================================================================
   📱 100% Comprehensive Mobile & Tablet Responsive Master System
   ========================================================================== */

/* 1. Global Viewport & Container Settings */
@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  body {
    padding-bottom: 70px !important;
  }

  .wd-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
  }
}

/* 2. Topbar & Header Mobile Layout */
@media (max-width: 991px) {
  .wd-topbar {
    display: none !important;
  }

  .wd-header-middle-bar {
    padding: 10px 0 !important;
  }

  .wd-header-middle-grid {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .wd-site-logo .wd-header-logo-img,
  .wd-site-logo img {
    max-width: 130px !important;
    height: auto !important;
  }

  .wd-header-categories-btn-wrap {
    display: none !important;
  }

  .wd-header-search-bar {
    display: none !important;
  }

  .wd-header-quick-links {
    display: none !important;
  }

  .wd-header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .wd-header-action-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
  }
}

/* 3. Hero Product Showcase Slider on Tablet & Mobile */
@media (max-width: 991px) {
  .wd-hero-fullwidth-section {
    padding: 14px 0 10px !important;
  }

  .wd-hero-slider-fullwidth {
    min-height: auto !important;
    border-radius: 20px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-slider-track {
    min-height: auto !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-slide-inner {
    grid-template-columns: 1fr !important;
    padding: 28px 22px 48px 22px !important;
    gap: 18px !important;
    min-height: auto !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-banner-title {
    font-size: 26px !important;
    margin-bottom: 10px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-banner-desc {
    font-size: 13.5px !important;
    margin-bottom: 14px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-showcase-wrap {
    min-height: 240px !important;
    margin-top: 10px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-main-img {
    max-height: 220px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-main-img.img-dairy,
  .wd-hero-slider-fullwidth .wd-hero-main-img.img-tech {
    width: 200px !important;
    height: 200px !important;
    border-radius: 18px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-dots-wrap {
    left: 22px !important;
    bottom: 14px !important;
  }
}

@media (max-width: 600px) {
  .wd-hero-fullwidth-section {
    padding: 10px 0 6px !important;
  }

  .wd-hero-slider-fullwidth {
    border-radius: 16px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-slide-inner {
    padding: 22px 16px 44px 16px !important;
    gap: 14px !important;
  }

  .wd-hero-pill-badge {
    font-size: 9.5px !important;
    padding: 4px 10px !important;
    margin-bottom: 8px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-banner-title {
    font-size: 21px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-banner-desc {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
  }

  .wd-hero-offer-tag {
    font-size: 11px !important;
    padding: 4px 9px !important;
    margin-bottom: 12px !important;
  }

  .wd-hero-btn {
    padding: 8px 14px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-showcase-wrap {
    min-height: 180px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-main-img {
    max-height: 160px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-main-img.img-dairy,
  .wd-hero-slider-fullwidth .wd-hero-main-img.img-tech {
    width: 150px !important;
    height: 150px !important;
    border-radius: 14px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-float-card {
    padding: 4px 8px !important;
    border-radius: 10px !important;
    gap: 6px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-float-card img {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
  }

  .wd-hero-slider-fullwidth .wd-float-name {
    font-size: 10px !important;
  }

  .wd-hero-slider-fullwidth .wd-float-price {
    font-size: 10px !important;
  }

  .wd-hero-slider-fullwidth .wd-float-card-1 {
    top: 6px !important;
    right: 4px !important;
  }

  .wd-hero-slider-fullwidth .wd-float-card-2 {
    bottom: 6px !important;
    left: 4px !important;
  }

  .wd-hero-nav-arrow {
    width: 32px !important;
    height: 32px !important;
    font-size: 11px !important;
    opacity: 0.85 !important;
  }

  .wd-hero-prev {
    left: 6px !important;
  }

  .wd-hero-next {
    right: 6px !important;
  }

  .wd-hero-slider-fullwidth .wd-hero-dots-wrap {
    left: 16px !important;
    bottom: 10px !important;
  }
}

/* 4. Category Stories Circles Slider on Mobile */
@media (max-width: 768px) {
  .wd-stories-section {
    padding: 8px 0 16px !important;
  }

  .wd-stories-grid {
    gap: 14px !important;
    padding: 4px 8px 10px 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .wd-story-item {
    flex: 0 0 76px !important;
    width: 76px !important;
    min-width: 76px !important;
  }

  .wd-story-circle {
    width: 64px !important;
    height: 64px !important;
    border-width: 2px !important;
  }

  .wd-story-title {
    font-size: 10.5px !important;
    max-width: 76px !important;
    margin-top: 4px !important;
  }

  .wd-stories-arrow {
    display: none !important;
  }
}

/* 5. Deals of the Day Section on Mobile */
@media (max-width: 991px) {
  .wd-deals-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .wd-deals-countdown-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    text-align: center !important;
  }

  .wd-deal-card-badge {
    margin: 0 auto 12px auto !important;
  }

  .wd-deal-card-title {
    font-size: 22px !important;
  }

  .wd-countdown-timer {
    justify-content: center !important;
  }

  .wd-deal-products-mini-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 640px) {
  .wd-deal-products-mini-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .wd-timer-unit {
    min-width: 44px !important;
    padding: 6px 4px !important;
  }

  .wd-timer-val {
    font-size: 17px !important;
  }

  .wd-timer-lbl {
    font-size: 9px !important;
  }
}

/* 6. Products Grid (Shop, Home, Categories) on Mobile */
@media (max-width: 768px) {
  .wd-section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
  }

  .wd-section-title {
    font-size: 22px !important;
  }

  .wd-section-tabs {
    overflow-x: auto !important;
    width: 100% !important;
    padding-bottom: 4px !important;
    flex-wrap: nowrap !important;
  }

  .wd-tab-btn {
    white-space: nowrap !important;
    padding: 6px 14px !important;
    font-size: 12.5px !important;
  }

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

  .wd-product-card {
    padding: 10px !important;
    border-radius: 16px !important;
  }

  .wd-product-thumb-wrap {
    border-radius: 12px !important;
  }

  .wd-product-title {
    font-size: 12.5px !important;
    line-height: 1.35 !important;
  }

  .wd-product-price {
    font-size: 13.5px !important;
  }

  .wd-btn-cart {
    padding: 8px 10px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 380px) {
  .wd-products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 7. Features Grid Bar on Mobile */
@media (max-width: 768px) {
  .wd-features-bar-section {
    padding: 20px 0 !important;
  }

  .wd-features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .wd-feature-box {
    padding: 14px 16px !important;
    border-radius: 14px !important;
  }

  .wd-feature-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
  }

  .wd-feature-info h4 {
    font-size: 14px !important;
  }

  .wd-feature-info p {
    font-size: 12px !important;
  }
}

/* 8. Single Product Details Page on Mobile */
@media (max-width: 991px) {
  .wd-single-product-grid,
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary {
    width: 100% !important;
    float: none !important;
    margin: 0 0 24px 0 !important;
  }

  .wd-single-product-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .woocommerce div.product .product_title,
  .wd-single-product-title {
    font-size: 22px !important;
  }

  .woocommerce div.product form.cart {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .woocommerce div.product form.cart .button {
    flex: 1 !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
  }

  .woocommerce-tabs ul.tabs {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 0 !important;
  }

  .woocommerce-tabs ul.tabs li {
    flex-shrink: 0 !important;
  }

  .woocommerce-tabs .panel {
    padding: 18px 14px !important;
  }
}

/* 9. Cart & Checkout Pages on Mobile */
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce {
    padding: 0 !important;
  }

  .woocommerce-cart table.cart,
  .woocommerce-cart table.cart thead {
    display: block !important;
    width: 100% !important;
  }

  .woocommerce-cart table.cart thead {
    display: none !important;
  }

  .woocommerce-cart table.cart tbody,
  .woocommerce-cart table.cart tr {
    display: block !important;
    width: 100% !important;
  }

  .woocommerce-cart table.cart tr.cart_item {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
    position: relative !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03) !important;
  }

  .woocommerce-cart table.cart tr.cart_item td {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: none !important;
    padding: 6px 0 !important;
    text-align: right !important;
  }

  .woocommerce-cart table.cart tr.cart_item td::before {
    content: attr(data-title);
    font-weight: 700;
    font-size: 13px;
    color: #475569;
    text-align: left;
  }

  .woocommerce-cart table.cart tr.cart_item td.product-remove {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    padding: 0 !important;
  }

  .woocommerce-cart table.cart tr.cart_item td.product-thumbnail {
    justify-content: center !important;
    padding-bottom: 10px !important;
  }

  .woocommerce-cart table.cart tr.cart_item td.product-thumbnail::before {
    display: none !important;
  }

  .woocommerce-cart table.cart tr.cart_item td.product-thumbnail img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
  }

  .woocommerce-cart .cart-collaterals,
  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
  }

  /* Checkout 1-col stack */
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    width: 100% !important;
    float: none !important;
  }

  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px !important;
  }

  .woocommerce form .form-row {
    width: 100% !important;
    float: none !important;
    margin-bottom: 14px !important;
  }

  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row select,
  .woocommerce form .form-row textarea {
    padding: 12px 14px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
  }

  #place_order {
    width: 100% !important;
    padding: 16px !important;
    font-size: 16px !important;
    border-radius: 14px !important;
  }
}

/* 10. Contact Page, Policy & Legal Pages on Mobile */
@media (max-width: 991px) {
  .wd-contact-hero-title,
  .wd-policy-title,
  .wd-about-hero-title {
    font-size: 24px !important;
  }

  .wd-contact-hero-sub,
  .wd-policy-content,
  .wd-about-content {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .wd-contact-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .wd-contact-body-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .wd-contact-form-wrap,
  .wd-contact-faq-wrap,
  .wd-policy-card,
  .wd-about-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }

  .wd-form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

/* 11. Footer Mobile Stack & Sticky Navigation Safe Bottom Spacing */
@media (max-width: 991px) {
  .wd-footer-section {
    padding-top: 36px !important;
    padding-bottom: 85px !important;
  }

  .wd-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .wd-footer-col {
    text-align: left !important;
  }

  .wd-footer-col h4 {
    font-size: 16px !important;
    margin-bottom: 14px !important;
  }

  .wd-footer-bottom-bar {
    flex-direction: column !important;
    gap: 14px !important;
    text-align: center !important;
    padding-bottom: 20px !important;
  }

  .wd-footer-copyright {
    text-align: center !important;
  }

  .wd-footer-payment-icons {
    justify-content: center !important;
  }
}

/* ==========================================================================
   ✨ Ultra-Premium WooCommerce Product Archive & Category Page Redesign
   ========================================================================== */
.wd-shop-main-container {
  padding: 30px 0 60px;
  background-color: #f8fafc;
  min-height: 70vh;
}

.wd-shop-layout {
  width: 100%;
}

/* Category & Archive Header Banner */
.woocommerce-products-header {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 60%, #fae8ff 100%);
  border: 1.5px solid #ddd6fe;
  border-radius: 24px;
  padding: 32px 36px;
  margin-bottom: 28px;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.05);
  position: relative;
  overflow: hidden;
}

.woocommerce-products-header::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.woocommerce-products-header__title.page-title {
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
  font-family: "Outfit", sans-serif !important;
  letter-spacing: -0.5px !important;
}

.term-description,
.page-description {
  font-size: 14.5px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  max-width: 750px !important;
}

/* Toolbar: Result Count & Orderby */
.woocommerce-notices-wrapper {
  margin-bottom: 16px;
}

.woocommerce-result-count {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  margin: 12px 0 !important;
  float: left !important;
}

.woocommerce-ordering {
  margin: 0 0 24px 0 !important;
  float: right !important;
}

.woocommerce-ordering select.orderby {
  padding: 10px 38px 10px 16px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") no-repeat right 12px center / 16px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-ordering select.orderby:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15) !important;
}

/* Master Products Grid */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products.wd-products-archive-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 40px 0 !important;
  width: 100% !important;
  clear: both !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
}

/* Product Card */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: #7C3AED !important;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.12) !important;
  transform: translateY(-5px) !important;
}

/* Product Thumbnail Container */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  width: 100% !important;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100% !important;
  height: 200px !important;
  max-height: 200px !important;
  aspect-ratio: 1/1 !important;
  object-fit: contain !important;
  border-radius: 14px !important;
  background: #f8fafc !important;
  padding: 12px !important;
  margin: 0 auto 12px auto !important;
  display: block !important;
  transition: transform 0.4s ease !important;
  box-sizing: border-box !important;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.06) !important;
}

/* Sale Badge */
.woocommerce ul.products li.product span.onsale,
.woocommerce-page ul.products li.product span.onsale {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 5 !important;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 4px 10px !important;
  border-radius: 8px !important;
  min-height: auto !important;
  line-height: 1.2 !important;
  min-width: auto !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3) !important;
  margin: 0 !important;
}

/* Product Title */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce-page ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.35 !important;
  min-height: 38px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-family: "Outfit", sans-serif !important;
  transition: color 0.2s ease !important;
}

.woocommerce ul.products li.product:hover h2.woocommerce-loop-product__title {
  color: #7C3AED !important;
}

/* Price */
.woocommerce ul.products li.product span.price,
.woocommerce-page ul.products li.product span.price {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 14px 0 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.woocommerce ul.products li.product span.price del,
.woocommerce-page ul.products li.product span.price del {
  font-size: 13px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  text-decoration: line-through !important;
}

.woocommerce ul.products li.product span.price ins,
.woocommerce-page ul.products li.product span.price ins {
  text-decoration: none !important;
  color: #7C3AED !important;
  font-weight: 800 !important;
}

.woocommerce ul.products li.product span.price .woocommerce-Price-amount {
  color: inherit !important;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce-page ul.products li.product .button,
.woocommerce-page ul.products li.product .add_to_cart_button {
  width: 100% !important;
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 11px 16px !important;
  border-radius: 12px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  background: #7C3AED !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  text-align: center !important;
}

.woocommerce ul.products li.product .button *,
.woocommerce ul.products li.product .add_to_cart_button * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce-page ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .add_to_cart_button:hover {
  background: #6D28D9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4) !important;
}

.woocommerce ul.products li.product .button.added,
.woocommerce-page ul.products li.product .button.added {
  background: #16a34a !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3) !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination,
.woocommerce-page nav.woocommerce-pagination {
  display: flex !important;
  justify-content: center !important;
  margin: 35px 0 10px 0 !important;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce-page nav.woocommerce-pagination ul {
  display: flex !important;
  gap: 8px !important;
  border: none !important;
  list-style: none !important;
  padding: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-page nav.woocommerce-pagination ul li {
  border: none !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce-page nav.woocommerce-pagination ul li a,
.woocommerce-page nav.woocommerce-pagination ul li span {
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  color: #334155 !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-page nav.woocommerce-pagination ul li span.current {
  background: #7C3AED !important;
  color: #ffffff !important;
  border-color: #7C3AED !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3) !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce-page nav.woocommerce-pagination ul li a:hover {
  border-color: #7C3AED !important;
  color: #7C3AED !important;
}

/* Archive Responsive Breakpoints */
@media (max-width: 1200px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 768px) {
  .woocommerce-products-header {
    padding: 22px 20px !important;
    border-radius: 18px !important;
    margin-bottom: 20px !important;
  }

  .woocommerce-products-header__title.page-title {
    font-size: 24px !important;
  }

  .term-description,
  .page-description {
    font-size: 13px !important;
  }

  .woocommerce-result-count {
    float: none !important;
    margin-bottom: 8px !important;
  }

  .woocommerce-ordering {
    float: none !important;
    width: 100% !important;
    margin-bottom: 18px !important;
  }

  .woocommerce-ordering select.orderby {
    width: 100% !important;
  }

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

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    padding: 10px !important;
    border-radius: 16px !important;
  }

  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img {
    height: 150px !important;
    max-height: 150px !important;
    padding: 8px !important;
    border-radius: 10px !important;
  }

  .woocommerce ul.products li.product h2.woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 12.5px !important;
    min-height: 32px !important;
  }

  .woocommerce ul.products li.product span.price,
  .woocommerce-page ul.products li.product span.price {
    font-size: 13.5px !important;
    margin-bottom: 10px !important;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .add_to_cart_button,
  .woocommerce-page ul.products li.product .button,
  .woocommerce-page ul.products li.product .add_to_cart_button {
    padding: 8px 10px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 380px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   ✨ Product Images Full-Bleed Fix (No Side Blank Space)
   ========================================================================== */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
.wd-product-thumb-wrap img,
.wd-product-card .wd-product-thumb-wrap img {
  width: 100% !important;
  height: 220px !important;
  max-height: 220px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  background: #f1f5f9 !important;
  padding: 0 !important;
  margin: 0 0 12px 0 !important;
  display: block !important;
  transition: transform 0.4s ease !important;
  box-sizing: border-box !important;
}

.woocommerce ul.products li.product:hover a img,
.woocommerce-page ul.products li.product:hover a img,
.wd-product-card:hover .wd-product-thumb-wrap img {
  transform: scale(1.05) !important;
}

.wd-product-thumb-wrap {
  padding: 0 !important;
  background: #f1f5f9 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img,
  .wd-product-thumb-wrap img,
  .wd-product-card .wd-product-thumb-wrap img {
    height: 165px !important;
    max-height: 165px !important;
    padding: 0 !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }
}

/* ==========================================================================
   ✨ Custom Archive Breadcrumbs, Hero & Polished Footer System
   ========================================================================== */

/* 1. Archive Breadcrumb Bar */
.wd-archive-breadcrumb-section {
  padding: 16px 0 8px;
  background: transparent;
}

.wd-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.wd-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.wd-breadcrumbs a:hover {
  color: #7C3AED;
}

.wd-crumb-sep {
  font-size: 9px;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
}

.wd-crumb-current {
  color: #0f172a;
  font-weight: 700;
}

/* 2. Archive Category Hero Banner with Background Image & Subcategories */
.wd-archive-hero-section {
  padding: 6px 0 24px !important;
}

.wd-archive-hero-card {
  position: relative !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
  border-radius: 24px !important;
  padding: 38px 44px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
  border: 1.5px solid #EDE9FE !important;
  min-height: 200px !important;
  display: flex !important;
  align-items: center !important;
}

.wd-archive-hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.35) 100%) !important;
  backdrop-filter: blur(1.5px) !important;
  z-index: 1 !important;
}

.wd-archive-hero-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 720px !important;
}

.wd-archive-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 10px !important;
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.25) !important;
}

.wd-archive-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 6px 0 !important;
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
}

.wd-archive-desc {
  font-size: 14.5px !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 0 16px 0 !important;
  max-width: 650px !important;
}

/* Subcategories Navigation */
.wd-subcategories-nav-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1.5px solid rgba(226, 232, 240, 0.8) !important;
}

.wd-subcat-label {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.wd-subcategories-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 10px !important;
  align-items: center !important;
}

.wd-subcat-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 6px 14px !important;
  border-radius: 30px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.2s ease !important;
}

.wd-subcat-count {
  font-size: 11px !important;
  font-weight: 700 !important;
  background: #f1f5f9 !important;
  color: #64748b !important;
  padding: 1px 7px !important;
  border-radius: 20px !important;
  transition: all 0.2s ease !important;
}

.wd-subcat-pill:hover,
.wd-subcat-pill.active {
  background: #7C3AED !important;
  border-color: #7C3AED !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3) !important;
}

.wd-subcat-pill:hover .wd-subcat-count,
.wd-subcat-pill.active .wd-subcat-count {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .wd-archive-hero-card {
    padding: 24px 20px !important;
  }
  .wd-archive-hero-overlay {
    background: rgba(255, 255, 255, 0.94) !important;
  }
  .wd-archive-title {
    font-size: 24px !important;
  }
  .wd-subcat-pill {
    padding: 5px 11px !important;
    font-size: 12px !important;
  }
}

/* Hide default duplicate woocommerce-products-header if rendered inside content */
.wd-archive-body-section .woocommerce-products-header,
.wd-archive-body-section .woocommerce-products-header__title,
.wd-archive-body-section .page-title,
.wd-archive-body-section .term-description,
.wd-shop-layout > .woocommerce-products-header,
.wd-shop-layout > .woocommerce-products-header__title,
.wd-shop-layout > .page-title,
.wd-shop-layout > .term-description,
.wd-shop-layout > h1.page-title,
.wd-shop-layout > .term-description {
  display: none !important;
}

/* 3. Footer Polish */
.wd-green-footer {
  background-color: #0d1326 !important;
  padding: 50px 0 25px !important;
  color: #94a3b8 !important;
  border-top: none !important;
}

.wd-footer-top-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
  gap: 35px !important;
  margin-bottom: 35px !important;
}

.wd-footer-col-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-footer-col-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wd-footer-col-links li {
  margin-bottom: 9px !important;
}

.wd-footer-col-links a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 13.5px !important;
  transition: color 0.2s ease !important;
}

.wd-footer-col-links a:hover {
  color: #a78bfa !important;
  padding-left: 3px !important;
}

.wd-footer-newsletter-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%) !important;
  border: 1.5px solid #4338ca !important;
  border-radius: 20px !important;
  padding: 26px 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin-bottom: 32px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
}

.wd-newsletter-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 4px 0 !important;
  font-family: "Outfit", sans-serif !important;
}

.wd-newsletter-sub {
  font-size: 13px !important;
  color: #c7d2fe !important;
  margin: 0 !important;
}

.wd-newsletter-form {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  max-width: 460px !important;
  width: 100% !important;
}

.wd-newsletter-input {
  flex: 1 !important;
  height: 46px !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  border: 1.5px solid #6366f1 !important;
  background: #ffffff !important;
  font-size: 14px !important;
  color: #0f172a !important;
  outline: none !important;
}

.wd-newsletter-submit-btn {
  height: 46px !important;
  padding: 0 24px !important;
  border-radius: 12px !important;
  background: #7C3AED !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
}

.wd-newsletter-submit-btn:hover {
  background: #6D28D9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4) !important;
}

.wd-footer-bottom-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-size: 13px !important;
}

.wd-footer-copyright {
  color: #94a3b8 !important;
  font-size: 13px !important;
}

.wd-footer-copyright a {
  color: #a78bfa !important;
  text-decoration: none !important;
}

.wd-footer-legal-links a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  margin-left: 18px !important;
  font-size: 13px !important;
  transition: color 0.2s ease !important;
}

.wd-footer-legal-links a:hover {
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .wd-footer-top-grid {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }
  .wd-footer-newsletter-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 22px 18px !important;
  }
  .wd-newsletter-form {
    flex-direction: column !important;
    max-width: 100% !important;
  }
  .wd-newsletter-input,
  .wd-newsletter-submit-btn {
    width: 100% !important;
  }
  .wd-footer-bottom-row {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }
  .wd-footer-legal-links a {
    margin: 0 8px !important;
  }
}

/* --- Logo Global Strict Sizing --- */
.wd-site-logo {
  flex-shrink: 0 !important;
  max-width: 145px !important;
  display: flex !important;
  align-items: center !important;
}

.wd-site-logo .wd-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  max-width: 145px !important;
}

.wd-header-logo-img,
.wd-site-logo img {
  width: 140px !important;
  max-width: 140px !important;
  height: auto !important;
  max-height: 44px !important;
  object-fit: contain !important;
  display: block !important;
}

.wd-footer-white-logo,
.wd-footer-about .wd-footer-logo-link img {
  width: 140px !important;
  max-width: 140px !important;
  height: auto !important;
  max-height: 46px !important;
  object-fit: contain !important;
  display: block !important;
}


/* ==========================================================================
   Single Product Page High-End Modern Layout
   ========================================================================== */

.wd-single-product-page {
  padding-bottom: 30px;
}

.wd-single-product-container {
  margin-top: 8px;
  margin-bottom: 40px;
}

/* 1. Main Product Card */
.woocommerce div.product {
  background: #ffffff !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03) !important;
  display: grid !important;
  grid-template-columns: 1fr 1.15fr !important;
  gap: 48px !important;
  align-items: start !important;
  position: relative !important;
  margin-bottom: 40px !important;
}

.woocommerce div.product::after,
.woocommerce div.product::before {
  display: none !important;
}

/* 2. Gallery (Left Column) */
.woocommerce div.product div.images.woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  position: relative !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  margin: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #f8fafc !important;
  border: 1.5px solid #ede9fe !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.04) !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
  border-radius: 20px !important;
  overflow: hidden !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  max-height: 480px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  display: block !important;
  transition: transform 0.3s ease !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  top: 16px !important;
  right: 16px !important;
  width: 36px !important;
  height: 36px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Sale Flash Badge */
.woocommerce div.product span.onsale {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 5px 12px !important;
  border-radius: 30px !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.2 !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35) !important;
  z-index: 9 !important;
}

/* 3. Product Summary (Right Column) */
.woocommerce div.product div.summary.entry-summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

/* Product Title */
.woocommerce div.product div.summary h1.product_title {
  font-family: var(--font-heading) !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  line-height: 1.25 !important;
  margin: 0 !important;
  letter-spacing: -0.5px !important;
}

/* Star Rating */
.woocommerce div.product .woocommerce-product-rating {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  font-size: 13px !important;
  color: #64748B !important;
}

.woocommerce div.product .star-rating {
  color: #f59e0b !important;
  font-size: 14px !important;
}

.woocommerce div.product .woocommerce-review-link {
  color: #64748B !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.woocommerce div.product .woocommerce-review-link:hover {
  color: #7C3AED !important;
}

/* Price Box */
.woocommerce div.product div.summary p.price {
  font-family: var(--font-heading) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #7C3AED !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.woocommerce div.product div.summary p.price del {
  color: #94A3B8 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.woocommerce div.product div.summary p.price ins {
  text-decoration: none !important;
  color: #7C3AED !important;
}

/* Short Description */
.woocommerce div.product div.summary .woocommerce-product-details__short-description {
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin: 4px 0 !important;
  padding: 14px 18px !important;
  background: #F8FAFC !important;
  border-radius: 14px !important;
  border-left: 4px solid #7C3AED !important;
}

.woocommerce div.product div.summary .woocommerce-product-details__short-description p {
  margin: 0 !important;
}

/* In Stock Badge */
.woocommerce div.product p.stock.in-stock {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #15803d !important;
  background: #f0fdf4 !important;
  border: 1px solid #bbf7d0 !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  margin: 0 !important;
  width: fit-content !important;
}
.woocommerce div.product p.stock.in-stock::before {
  content: "" !important;
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #22c55e !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25) !important;
}

/* Add to Cart Form & Quantity */
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 10px 0 6px 0 !important;
  flex-wrap: wrap !important;
}

.woocommerce div.product form.cart .quantity {
  display: inline-flex !important;
  align-items: center !important;
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  height: 50px !important;
}

.wd-qty-btn {
  background: transparent !important;
  border: none !important;
  width: 38px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #475569 !important;
  font-size: 13px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.wd-qty-btn:hover {
  background: #ede9fe !important;
  color: #7C3AED !important;
}

.woocommerce div.product form.cart .quantity input.qty {
  width: 44px !important;
  height: 100% !important;
  border: none !important;
  background: transparent !important;
  text-align: center !important;
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  padding: 0 !important;
  -moz-appearance: textfield !important;
}

.woocommerce div.product form.cart .quantity input.qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Single Add to Cart Button */
.woocommerce div.product form.cart .single_add_to_cart_button.button {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  padding: 14px 34px !important;
  height: 50px !important;
  border-radius: 14px !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35) !important;
  transition: all 0.25s ease !important;
  flex: 1 !important;
  max-width: 280px !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button.button:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #1D4ED8 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.45) !important;
}

/* 4. Single Product Trust Perks */
.wd-single-trust-perks {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  background: #fdfcff !important;
  border: 1.5px solid #ede9fe !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin-top: 6px !important;
}

.wd-trust-perk-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.wd-perk-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  border: 1px solid #ede9fe !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.05) !important;
}

.wd-perk-icon.text-purple { color: #7C3AED !important; }
.wd-perk-icon.text-green { color: #16a34a !important; }
.wd-perk-icon.text-blue { color: #2563eb !important; }
.wd-perk-icon.text-orange { color: #f97316 !important; }

.wd-perk-info {
  display: flex !important;
  flex-direction: column !important;
}

.wd-perk-info strong {
  font-family: var(--font-heading) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}

.wd-perk-info span {
  font-size: 11px !important;
  color: #64748b !important;
}

/* 5. Product Meta (SKU, Categories, Tags) */
.woocommerce div.product .product_meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: #64748b !important;
  padding-top: 16px !important;
  border-top: 1px solid #f1f5f9 !important;
  margin: 0 !important;
}

.woocommerce div.product .product_meta > span {
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.woocommerce div.product .product_meta strong,
.woocommerce div.product .product_meta .sku {
  color: #0f172a !important;
  font-weight: 700 !important;
}

.woocommerce div.product .product_meta a {
  color: #7C3AED !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  background: #f5f3ff !important;
  padding: 3px 10px !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}

.woocommerce div.product .product_meta a:hover {
  background: #ede9fe !important;
  color: #6d28d9 !important;
}

/* 6. Product Tabs (Description & Reviews) */
.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1 !important;
  margin-top: 20px !important;
  border-top: 1px solid #f1f5f9 !important;
  padding-top: 30px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
  list-style: none !important;
  border-bottom: 2px solid #f1f5f9 !important;
  background: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 -2px 0 !important;
  border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block !important;
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  padding: 10px 20px !important;
  border-bottom: 3px solid transparent !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #7C3AED !important;
  border-bottom-color: #7C3AED !important;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  color: #475569 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  padding: 10px 4px !important;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 14px 0 !important;
}

/* 7. Related Products Full Width & Grid */
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products,
.woocommerce .related.products,
.woocommerce .upsells.products,
section.related.products {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-top: 45px !important;
  padding-top: 35px !important;
  border-top: 1px solid #f1f5f9 !important;
}

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.woocommerce div.product .related.products ul.products,
.woocommerce div.product .upsells.products ul.products,
.woocommerce .related.products ul.products,
.woocommerce-page .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce div.product .related.products ul.products li.product,
.woocommerce div.product .upsells.products ul.products li.product {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 1100px) {
  .woocommerce div.product .related.products ul.products,
  .woocommerce .related.products ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .woocommerce div.product .related.products ul.products,
  .woocommerce .related.products ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 420px) {
  .woocommerce div.product .related.products ul.products,
  .woocommerce .related.products ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* Responsive Single Product Layout on Tablet/Mobile */
@media (max-width: 991px) {
  .woocommerce div.product {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 24px !important;
    border-radius: 18px !important;
  }
  .woocommerce div.product div.summary h1.product_title {
    font-size: 24px !important;
  }
  .wd-single-trust-perks {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .woocommerce div.product form.cart .single_add_to_cart_button.button {
    max-width: 100% !important;
    width: 100% !important;
  }
}



/* ==========================================================================
   ✨ Global Features Bar Section High-Contrast Polish
   ========================================================================== */
.wd-features-bar-section {
  padding: 30px 0 !important;
  background: #F8FAFC !important;
  border-top: 1px solid #E2E8F0 !important;
  margin-top: 40px !important;
}

.wd-features-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.wd-feature-box {
  background: #ffffff !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s ease !important;
}

.wd-feature-box:hover {
  border-color: #7C3AED !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12) !important;
}

.wd-feature-icon {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: #F5F3FF !important;
  color: #7C3AED !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

.wd-feature-info {
  display: flex !important;
  flex-direction: column !important;
}

.wd-feature-info h4 {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  -webkit-text-fill-color: #0F172A !important;
  margin: 0 0 3px 0 !important;
  line-height: 1.3 !important;
}

.wd-feature-info p {
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: #64748B !important;
  -webkit-text-fill-color: #64748B !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

@media (max-width: 1024px) {
  .wd-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 580px) {
  .wd-features-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   ✨ WooCommerce Variable Product Styling (Color & Size Dropdowns)
   ========================================================================== */
.woocommerce div.product form.variations_form {
  margin: 18px 0 24px 0 !important;
  padding: 18px 22px !important;
  background: #F8FAFC !important;
  border: 1.5px solid #EDE9FE !important;
  border-radius: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.woocommerce div.product table.variations {
  width: 100% !important;
  border: none !important;
  margin: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
}

.woocommerce div.product table.variations tr {
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 10px !important;
}

.woocommerce div.product table.variations th.label {
  padding: 0 0 6px 0 !important;
  text-align: left !important;
}

.woocommerce div.product table.variations th.label label {
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  text-transform: capitalize !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.woocommerce div.product table.variations th.label label::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  color: #7C3AED;
}

.woocommerce div.product table.variations td.value {
  padding: 0 !important;
  position: relative !important;
  width: 100% !important;
}

.woocommerce div.product table.variations td.value select {
  width: 100% !important;
  height: 46px !important;
  padding: 8px 16px !important;
  background-color: #ffffff !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce div.product table.variations td.value select:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12) !important;
}

.woocommerce div.product a.reset_variations {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #ef4444 !important;
  text-decoration: none !important;
  margin-top: 8px !important;
  transition: color 0.2s ease !important;
}

.woocommerce div.product a.reset_variations:hover {
  color: #dc2626 !important;
  text-decoration: underline !important;
}

.woocommerce div.product .single_variation_wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
  padding-top: 14px !important;
  border-top: 1px dashed #E2E8F0 !important;
}

.woocommerce div.product .woocommerce-variation-price {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #7C3AED !important;
  margin-bottom: 4px !important;
}

.woocommerce div.product .woocommerce-variation-availability {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #16a34a !important;
  margin-bottom: 4px !important;
}

.woocommerce div.product .woocommerce-variation-add-to-cart {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

/* ==========================================================================
   ✨ WooCommerce Single Product Reviews & Form Styling (Luxury Polish)
   ========================================================================== */
#reviews.woocommerce-Reviews {
  margin-top: 10px !important;
}

#reviews #comments {
  margin-bottom: 30px !important;
}

#reviews #comments h2.woocommerce-Reviews-title {
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-bottom: 16px !important;
}

#reviews #comments p.woocommerce-noreviews {
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 14px !important;
  padding: 18px 22px !important;
  color: #64748B !important;
  font-size: 14.5px !important;
  margin-bottom: 24px !important;
}

/* Reviews List */
#reviews ol.commentlist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 30px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

#reviews ol.commentlist li.review {
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 20px 24px !important;
  margin: 0 !important;
  position: relative !important;
}

#reviews ol.commentlist li.review img.avatar {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 2px solid #EDE9FE !important;
  float: left !important;
  margin-right: 14px !important;
}

#reviews ol.commentlist li.review .comment-text {
  overflow: hidden !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#reviews ol.commentlist li.review .star-rating {
  float: right !important;
  color: #F59E0B !important;
  font-size: 14px !important;
}

#reviews ol.commentlist li.review .meta {
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  margin-bottom: 8px !important;
}

#reviews ol.commentlist li.review .meta time {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #94A3B8 !important;
  margin-left: 8px !important;
}

#reviews ol.commentlist li.review .description {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #475569 !important;
}

/* Review Submission Form Container */
#review_form_wrapper {
  background: #ffffff !important;
  border: 1.5px solid #EDE9FE !important;
  border-radius: 22px !important;
  padding: 32px 36px !important;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.04) !important;
}

#review_form #reply-title {
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 0 6px 0 !important;
  display: block !important;
}

#review_form p.comment-notes {
  font-size: 13.5px !important;
  color: #64748B !important;
  margin: 0 0 20px 0 !important;
}

#review_form p.comment-notes .required {
  color: #EF4444 !important;
}

/* Star Rating Selector */
.comment-form-rating {
  margin-bottom: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.comment-form-rating label {
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1E293B !important;
}

.comment-form-rating .stars {
  margin: 0 !important;
}

.comment-form-rating .stars span {
  display: inline-flex !important;
  gap: 4px !important;
}

.comment-form-rating .stars span a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  color: #CBD5E1 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  width: 24px !important;
  height: 24px !important;
}

.comment-form-rating .stars span a::before {
  content: "\f005" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  color: inherit !important;
}

.comment-form-rating .stars:hover span a,
.comment-form-rating .stars.selected span a {
  color: #F59E0B !important;
}

.comment-form-rating .stars:hover span a:hover ~ a,
.comment-form-rating .stars.selected span a.active ~ a {
  color: #CBD5E1 !important;
}

/* Review Textarea */
.comment-form-comment {
  margin-bottom: 18px !important;
}

.comment-form-comment label {
  display: block !important;
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  margin-bottom: 8px !important;
}

.comment-form-comment textarea {
  width: 100% !important;
  min-height: 120px !important;
  padding: 14px 18px !important;
  background: #F8FAFC !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 14px !important;
  font-size: 14.5px !important;
  color: #0F172A !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}

.comment-form-comment textarea:focus {
  border-color: #7C3AED !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12) !important;
}

/* Author & Email 2-Column Row */
#commentform {
  display: flex !important;
  flex-direction: column !important;
}

.comment-form-author,
.comment-form-email {
  margin-bottom: 18px !important;
  width: 100% !important;
}

.comment-form-author label,
.comment-form-email label {
  display: block !important;
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  margin-bottom: 8px !important;
}

.comment-form-author input,
.comment-form-email input {
  width: 100% !important;
  height: 48px !important;
  padding: 10px 16px !important;
  background: #F8FAFC !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 12px !important;
  font-size: 14.5px !important;
  color: #0F172A !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.comment-form-author input:focus,
.comment-form-email input:focus {
  border-color: #7C3AED !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12) !important;
}

/* Checkbox Consent */
.comment-form-cookies-consent {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 6px 0 20px 0 !important;
  cursor: pointer !important;
}

.comment-form-cookies-consent input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: #7C3AED !important;
  cursor: pointer !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.comment-form-cookies-consent label {
  font-size: 13px !important;
  color: #64748B !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* Submit Button */
.form-submit {
  margin: 0 !important;
}

.form-submit input[type="submit"]#submit,
#review_form input[type="submit"] {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading, "Outfit", sans-serif) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 13px 36px !important;
  border-radius: 14px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35) !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.form-submit input[type="submit"]#submit:hover,
#review_form input[type="submit"]:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #1D4ED8 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45) !important;
}

@media (min-width: 640px) {
  #commentform {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 20px !important;
  }
  .comment-form-rating,
  .comment-form-comment,
  .comment-form-cookies-consent,
  .form-submit {
    grid-column: 1 / -1 !important;
  }
}
