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

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

:root {
  --wd-primary: #8cbc67;
  --wd-primary-hover: #7ba857;
  --wd-primary-light: #eef7e5;
  --wd-page-bg: #faf8f5;
  --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
   ========================================================================== */
.wd-left-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 56px;
  background-color: #ffffff;
  border-right: 1px solid #eae7e1;
  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 {
  width: 56px;
  height: 56px;
  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;
}

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

.wd-sticky-icon-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 10px;
}

.wd-sticky-item {
  width: 56px;
  height: 50px;
  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-sticky-item:hover .wd-sticky-svg {
  transform: scale(1.12);
}

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

.wd-tooltip {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #242424;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1001;
}

.wd-sticky-item:hover .wd-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(6px);
}

/* Sticky Flyout */
.wd-sticky-flyout {
  position: absolute;
  left: 100%;
  top: 0;
  width: 250px;
  background-color: #ffffff;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.12);
  border: 1px solid #eae7e1;
  border-radius: 0 var(--wd-radius-md) var(--wd-radius-md) 0;
  padding: 18px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.wd-sticky-item:hover .wd-sticky-flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.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 #eae7e1;
  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 #eae7e1;
}

.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: 45px;
  width: auto;
}

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

.wd-pill-cat-btn {
  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: 260px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 1px solid #eae7e1;
  border-radius: var(--wd-radius-md);
  padding: 12px 0;
  z-index: 995;
  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 {
  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 Section
   ========================================================================== */
.wd-stories-section {
  padding: 24px 0 16px;
}

.wd-stories-grid {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.wd-story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex-shrink: 0;
}

.wd-story-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #eef7e5;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7faf3;
  transition: all 0.25s ease;
}

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

.wd-story-item:hover .wd-story-circle {
  border-color: var(--wd-primary);
  transform: scale(1.06);
}

.wd-story-new-badge {
  background-color: #e2f0d9;
  color: var(--wd-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}

.wd-story-title {
  font-size: 12px;
  font-weight: 600;
  color: #444444;
}

/* ==========================================================================
   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 #eae7e1;
  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 #eae7e1;
  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 #eae7e1;
  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 #eae7e1;
}

.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 #eae7e1;
  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-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-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: #faf8f5;
}

.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: #eae7e1;
}

.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: 10px 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #eae7e1;
  border-radius: 0 var(--wd-radius-md) var(--wd-radius-md) 0;
  padding: 20px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.22s ease;
  z-index: 1002;
}

.wd-cat-menu-item:hover > .wd-subcat-flyout-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.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);
}
