/* ==========================================================================
   YASH INDUSTRIES - EXACT MOCKUP DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
  --yash-gold: #8f6d28;
  --yash-gold-hover: #785a1e;
  --yash-gold-light: #f5eedf;
  --yash-dark: #211d17;
  --yash-dark-surface: #2b251d;
  --yash-cta-bg: #383126;
  --yash-body-text: #595347;
  --yash-muted: #787265;
  --yash-light-bg: #fbfaf6;
  --yash-card-bg: #ffffff;
  --yash-border: #eae6dd;
  --yash-border-light: #f0ede6;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cursive: 'Caveat', 'Alex Brush', cursive;
}

body {
  font-family: var(--font-sans);
  color: var(--yash-body-text);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Logo - Natural Proportions & Vertical Alignment */
.vl-logo,
.vl-logo a {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

.vl-logo img,
.vl-logo a img {
  height: 48px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  display: block !important;
}

/* Header Quote Button */
.btn-quote-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--yash-gold);
  color: #ffffff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(143, 109, 40, 0.2);
}

.btn-quote-header:hover {
  background-color: var(--yash-gold-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(143, 109, 40, 0.3);
}

.btn-quote-header i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-quote-header:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   HERO SECTION (FULL BACKGROUND IMAGE)
   ========================================================================== */
.hero-mockup-section {
  background-color: #fbfaf6;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 165px 0 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--yash-border-light);
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(253, 251, 246, 0.96) 0%,
      rgba(253, 251, 246, 0.88) 30%,
      rgba(253, 251, 246, 0.35) 45%,
      rgba(253, 251, 246, 0) 56%,
      transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-script-flourish-bg {
  position: absolute;
  top: 110px;
  right: 6%;
  font-family: var(--font-cursive);
  font-size: 34px;
  line-height: 1.1;
  color: #70541d;
  text-align: right;
  z-index: 2;
  transform: rotate(-3deg);
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-script-flourish-bg .swash {
  display: block;
  width: 90px;
  height: 4px;
  margin-left: auto;
  margin-top: 2px;
  background: radial-gradient(ellipse at center, #70541d 0%, transparent 80%);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--yash-gold);
  margin-bottom: 14px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--yash-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--yash-body-text);
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--yash-gold);
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(143, 109, 40, 0.25);
}

.btn-hero-primary:hover {
  background-color: var(--yash-gold-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(143, 109, 40, 0.35);
}

.btn-hero-primary i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(4px);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--yash-dark) !important;
  border: 1.5px solid #2e281f;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-hero-outline:hover {
  background-color: var(--yash-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Hero 4 Badges */
.hero-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(143, 109, 40, 0.15);
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-badge-icon {
  width: 32px;
  height: 32px;
  color: var(--yash-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-badge-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--yash-dark);
  line-height: 1.25;
}

/* Hero Right Image Box */
.hero-image-wrapper {
  position: relative;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(33, 29, 23, 0.12);
  border: 4px solid #ffffff;
}

.hero-script-flourish {
  position: absolute;
  top: -24px;
  right: 10px;
  font-family: var(--font-cursive);
  font-size: 34px;
  line-height: 1.1;
  color: #70541d;
  text-align: right;
  z-index: 2;
  transform: rotate(-3deg);
  pointer-events: none;
}

.hero-script-flourish .swash {
  display: block;
  width: 90px;
  height: 4px;
  margin-left: auto;
  margin-top: 2px;
  background: radial-gradient(ellipse at center, #70541d 0%, transparent 80%);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-mockup-section {
  padding: 85px 0 80px 0;
  background-color: #ffffff;
}

.about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--yash-gold);
  margin-bottom: 12px;
  display: inline-block;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--yash-dark);
  margin-bottom: 22px;
}

.about-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--yash-body-text);
  margin-bottom: 28px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--yash-gold);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-bottom: 45px;
  box-shadow: 0 4px 12px rgba(143, 109, 40, 0.2);
}

.btn-about:hover {
  background-color: var(--yash-gold-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-about i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-about:hover i {
  transform: translateX(4px);
}

/* About 4 Stats Counters */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid var(--yash-border);
}

.about-stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--yash-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-item .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--yash-muted);
  line-height: 1.3;
}

/* About Right Visual with Floating Badge */
.about-image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.about-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-image-card:hover img {
  transform: scale(1.02);
}

.about-float-badge {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background-color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-float-badge i {
  color: var(--yash-gold);
  font-size: 16px;
}

.about-float-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--yash-dark);
  line-height: 1.2;
}

/* ==========================================================================
   OUR PRODUCTS SECTION
   ========================================================================== */
.products-mockup-section {
  padding: 85px 0;
  background-color: #fbfaf6;
  border-top: 1px solid var(--yash-border-light);
  border-bottom: 1px solid var(--yash-border-light);
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-main-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--yash-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}

.section-main-sub {
  font-size: 15px;
  color: var(--yash-muted);
  margin-bottom: 0;
}

.section-header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--yash-gold);
  text-decoration: none;
  transition: all 0.2s ease;
}

.section-header-link:hover {
  color: var(--yash-gold-hover);
}

.section-header-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.section-header-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   PRODUCT CATEGORY TABS (EXACT MATCH TO IMAGE 2)
   ========================================================================== */
.product-tabs-wrapper {
  margin-bottom: 35px;
}

.product-filter-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-tab-btn {
  background-color: #2b251d;
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2px;
}

.product-tab-btn:hover {
  background-color: #3d352b;
  color: #ffffff;
  transform: translateY(-1px);
}

.product-tab-btn.active {
  background-color: var(--yash-gold);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(143, 109, 40, 0.35);
}

/* Product Card Filter Animations */
.product-filter-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-filter-item.is-hidden {
  display: none !important;
}

/* Product Cards Grid */
.product-card-mockup {
  background-color: #ffffff;
  border: 1px solid var(--yash-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(43, 37, 29, 0.08);
  border-color: #d8ceba;
}

.product-thumb-container {
  height: 215px;
  width: 100%;
  overflow: hidden;
  background-color: #f7f5f0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.product-card-mockup:hover .product-thumb-container img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--yash-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.product-card-title a:hover {
  color: var(--yash-gold);
}

.product-card-desc {
  font-size: 13.5px;
  color: var(--yash-body-text);
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--yash-border-light);
}

.product-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--yash-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-learn-more:hover {
  color: var(--yash-gold);
}

.product-circle-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--yash-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yash-gold);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.product-card-mockup:hover .product-circle-arrow {
  background-color: var(--yash-gold);
  border-color: var(--yash-gold);
  color: #ffffff;
  transform: translateX(2px);
}

/* ==========================================================================
   WHY CHOOSE YASH INDUSTRIES (FULL-WIDTH BACKGROUND SECTION)
   ========================================================================== */
.why-choose-mockup-section {
  background-color: #1a1711;
  background-image: url('../img/middle.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 85px 0 80px 0;
}

.why-choose-left-content {
  padding: 0;
  max-width: 100%;
}

.why-choose-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.why-choose-sub {
  font-size: 15px;
  color: #d6cfbf;
  margin-bottom: 42px;
}

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

.why-feature-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.18);
}

.why-feature-box:hover .why-feature-icon-circle {
  border-color: var(--yash-gold);
  background-color: rgba(143, 109, 40, 0.3);
  color: var(--yash-gold-light);
  transform: translateY(-3px);
}

.why-feature-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.why-feature-desc {
  font-size: 12px;
  color: #b8b1a2;
  line-height: 1.45;
  margin-bottom: 0;
}

.why-script-flourish {
  font-family: var(--font-cursive);
  font-size: 42px;
  line-height: 1.15;
  color: #3e3016;
  text-align: right;
  z-index: 2;
  transform: rotate(-2deg);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
  display: inline-block;
}

.script-underline {
  display: block;
  width: 65px;
  height: 2px;
  background-color: #3e3016;
  margin-left: auto;
  margin-top: 6px;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .why-choose-mockup-section {
    background: linear-gradient(rgba(18, 16, 12, 0.88), rgba(18, 16, 12, 0.88)), url('../img/middle.png') center / cover no-repeat;
    padding: 60px 0;
  }

  .why-choose-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .why-choose-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.blog-mockup-section {
  padding: 85px 0 80px 0;
  background-color: #ffffff;
}

.blog-card-mockup {
  background-color: #ffffff;
  border: 1px solid var(--yash-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-mockup:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #d6ccb8;
}

.blog-card-thumb {
  height: 210px;
  width: 100%;
  overflow: hidden;
  background-color: #f7f5ef;
}

.blog-card-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.blog-card-mockup:hover .blog-card-thumb img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--yash-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--yash-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

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

.blog-card-title a:hover {
  color: var(--yash-gold);
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--yash-body-text);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--yash-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-readmore:hover {
  color: var(--yash-gold);
}

.blog-card-readmore i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.blog-card-readmore:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-mockup-section {
  background-color: var(--yash-cta-bg);
  padding: 48px 0;
  color: #ffffff;
}

.cta-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.cta-subtitle {
  font-size: 15px;
  color: #d1cabf;
  margin-bottom: 0;
}

.btn-cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--yash-gold);
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.btn-cta-contact:hover {
  background-color: var(--yash-gold-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.btn-cta-contact i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-cta-contact:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   CLEAN LIGHT FOOTER (EXACT MATCH TO MOCKUP)
   ========================================================================== */
.footer-mockup-section {
  background-color: #fbfbfa;
  border-top: 1px solid var(--yash-border);
  padding: 70px 0 25px 0;
  font-size: 14px;
  color: var(--yash-body-text);
}

.footer-brand-col {
  padding-right: 30px;
}

.footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--yash-body-text);
  margin-bottom: 22px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #d4cebe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #554e42;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.footer-social-btn:hover {
  background-color: var(--yash-gold);
  border-color: var(--yash-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--yash-dark);
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 9px;
}

.footer-nav-list li a {
  font-size: 13.5px;
  color: var(--yash-body-text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-nav-list li a:hover {
  color: var(--yash-gold);
  padding-left: 3px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--yash-body-text);
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--yash-gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: var(--yash-gold);
}

/* Footer World Map Badge */
.footer-map-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  padding-top: 12px;
}

.footer-map-svg {
  width: 85px;
  opacity: 0.55;
}

.footer-map-tagline {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--yash-muted);
  line-height: 1.3;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
  border-top: 1px solid var(--yash-border);
  padding-top: 22px;
  margin-top: 50px;
}

.footer-copy-text {
  font-size: 13px;
  color: var(--yash-muted);
  margin-bottom: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-links li a {
  font-size: 13px;
  color: var(--yash-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links li a:hover {
  color: var(--yash-gold);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS: TABLETS & MOBILE (< 992px)
   ========================================================================== */
@media (max-width: 991.98px) {
  .vl-transparent-header {
    top: 0 !important;
  }

  .vkl-white-menubg-10 {
    padding: 10px 14px !important;
  }

  .vl-logo,
  .vl-logo a {
    display: inline-flex !important;
    align-items: center !important;
  }

  .vl-logo img,
  .vl-logo a img {
    height: 44px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
  }

  .hero-mockup-section {
    padding: 105px 0 50px 0 !important;
    min-height: auto !important;
    background-position: right bottom !important;
  }

  .hero-overlay-gradient {
    background: linear-gradient(180deg,
        rgba(253, 251, 246, 0.96) 0%,
        rgba(253, 251, 246, 0.92) 50%,
        rgba(253, 251, 246, 0.85) 100%) !important;
  }

  .hero-eyebrow {
    font-size: 11.5px !important;
    letter-spacing: 1.4px !important;
    margin-bottom: 12px !important;
    display: inline-block;
  }

  .hero-title {
    font-size: 34px !important;
    line-height: 1.22 !important;
    margin-bottom: 16px !important;
  }

  .hero-subtitle {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  .hero-btn-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-badges-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 20px !important;
    padding-top: 18px !important;
  }

  .hero-badge-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(143, 109, 40, 0.2) !important;
    border-radius: 8px !important;
    padding: 9px 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  }

  .hero-badge-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
  }

  .hero-badge-text {
    font-size: 12px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
    color: var(--yash-dark) !important;
  }

  .about-title,
  .section-main-title,
  .why-choose-title {
    font-size: 30px !important;
  }

  .about-mockup-section {
    padding: 55px 0 35px 0 !important;
  }

  .about-mockup-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px 20px !important;
    padding: 26px 15px 0 15px !important;
    border-top: 1px solid var(--yash-border) !important;
    text-align: center !important;
  }

  .about-stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .about-stat-item .stat-num {
    font-size: 36px !important;
    text-align: center !important;
    margin-bottom: 4px !important;
  }

  .about-stat-item .stat-label {
    font-size: 13px !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 140px !important;
  }

  .about-image-card {
    margin-top: 30px;
  }

  .products-mockup-section {
    padding: 40px 0 50px 0 !important;
  }

  .section-header-flex {
    margin-bottom: 25px;
  }

  .why-choose-mockup-section {
    padding: 60px 0 50px 0 !important;
  }

  .why-choose-left-content {
    padding: 0 10px;
  }

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

  .why-feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 16px;
  }

  .footer-mockup-section {
    padding: 55px 0 25px 0 !important;
  }

  .footer-brand-col {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .footer-bottom-bar {
    margin-top: 35px !important;
    padding-top: 20px !important;
    text-align: center;
  }

  .footer-copy-text {
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  .footer-legal-links {
    justify-content: center !important;
    gap: 14px !important;
    margin-top: 0 !important;
  }

  .footer-map-badge {
    margin-top: 18px !important;
    padding: 10px 14px !important;
    background: rgba(0, 0, 0, 0.02) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    display: inline-flex !important;
  }

  .cta-mockup-section {
    padding: 42px 0 !important;
    text-align: center !important;
  }

  .cta-flex-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 18px !important;
  }

  .cta-title {
    font-size: 27px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  .cta-subtitle {
    font-size: 14.5px !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 500px !important;
  }

  .btn-cta-contact {
    margin: 0 auto !important;
    padding: 12px 30px !important;
  }
}

@media (max-width: 575.98px) {
  .vl-transparent-header {
    top: 0 !important;
  }

  .vkl-white-menubg-10 {
    padding: 8px 16px !important;
  }

  .vl-logo,
  .vl-logo a {
    display: inline-flex !important;
    align-items: center !important;
  }

  .vl-logo img,
  .vl-logo a img {
    height: 42px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
  }

  .vl-header-action-item .vl-offcanvas-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    width: 42px !important;
    padding: 0 !important;
  }

  .hero-mockup-section {
    padding: 88px 0 35px 0 !important;
    background-position: center bottom !important;
  }

  .hero-overlay-gradient {
    background: linear-gradient(180deg,
        rgba(253, 251, 246, 0.98) 0%,
        rgba(253, 251, 246, 0.95) 50%,
        rgba(253, 251, 246, 0.90) 100%) !important;
  }

  .hero-eyebrow {
    font-size: 10.5px !important;
    letter-spacing: 1.1px !important;
    margin-bottom: 8px !important;
    display: inline-block;
  }

  .hero-title {
    font-size: 26px !important;
    line-height: 1.22 !important;
    margin-bottom: 12px !important;
  }

  .hero-subtitle {
    font-size: 13.5px !important;
    line-height: 1.48 !important;
    margin-bottom: 18px !important;
  }

  .hero-btn-group {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    flex: 1 !important;
    justify-content: center !important;
    padding: 10px 10px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .hero-badges-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 16px !important;
    padding-top: 14px !important;
  }

  .hero-badge-item {
    padding: 8px 10px !important;
    gap: 8px !important;
    border-radius: 7px !important;
  }

  .hero-badge-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 13px !important;
  }

  .hero-badge-text {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .why-choose-mockup-section {
    padding: 48px 0 42px 0 !important;
  }

  .why-choose-title {
    font-size: 26px !important;
    line-height: 1.22 !important;
    margin-bottom: 8px !important;
  }

  .why-choose-sub {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }

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

  .why-feature-box {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 15px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .why-feature-icon-circle {
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  .why-feature-title {
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
  }

  .why-feature-desc {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    color: #cfc8ba !important;
  }

  .about-mockup-section .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px 16px !important;
    padding: 24px 16px 0 16px !important;
    margin-top: 25px !important;
    border-top: 1px solid var(--yash-border) !important;
    text-align: center !important;
  }

  .about-stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 4px 6px !important;
  }

  .about-stat-item .stat-num {
    font-size: 32px !important;
    text-align: center !important;
    margin-bottom: 4px !important;
  }

  .about-stat-item .stat-label {
    font-size: 12px !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 130px !important;
    line-height: 1.35 !important;
  }

  .about-mockup-section {
    padding: 45px 0 20px 0 !important;
  }

  .about-image-card {
    margin-top: 24px !important;
  }

  .products-mockup-section {
    padding: 28px 0 35px 0 !important;
  }

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

  .cta-mockup-section {
    padding: 38px 0 !important;
    text-align: center !important;
  }

  .cta-mockup-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .cta-flex-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .cta-title {
    font-size: 23px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  .cta-subtitle {
    font-size: 13.5px !important;
    line-height: 1.48 !important;
    text-align: center !important;
    margin: 0 auto 6px auto !important;
    max-width: 320px !important;
  }

  .btn-cta-contact {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 220px !important;
    padding: 11px 20px !important;
    font-size: 14px !important;
    margin: 0 auto !important;
  }

  .footer-mockup-section {
    padding: 42px 0 20px 0 !important;
  }

  .footer-mockup-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .footer-map-badge {
    margin-top: 15px !important;
    padding: 10px 14px !important;
    background: rgba(0, 0, 0, 0.02) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    max-width: 100% !important;
  }

  .footer-map-svg {
    width: 65px !important;
  }

  .footer-map-tagline {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .footer-bottom-bar {
    margin-top: 25px !important;
    padding-top: 16px !important;
    text-align: center !important;
  }

  .footer-copy-text {
    font-size: 12px !important;
    text-align: center !important;
    margin-bottom: 8px !important;
  }

  .footer-legal-links {
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 0 !important;
  }

  .footer-legal-links li,
  .footer-legal-links li a {
    font-size: 11.5px !important;
  }
}

/* ==========================================================================
   CONTACT US PAGE - EXACT MOCKUP UI STYLES
   ========================================================================== */
.contact-page-wrapper {
  background-color: #f6f2ea;
  padding: 135px 0 85px 0;
}

.contact-breadcrumb-nav {
  margin-bottom: 30px;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
}

.contact-breadcrumb li a {
  color: #8a8378;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-breadcrumb li a:hover {
  color: var(--yash-gold);
}

.contact-breadcrumb .separator {
  color: #b8b1a5;
  font-size: 13px;
}

.contact-breadcrumb .active {
  color: #1c1917;
  font-weight: 500;
}

.contact-header-content {
  margin-bottom: 58px;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #af812c;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-main-title {
  font-family: var(--font-serif);
  font-size: 43px;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.18;
  margin-bottom: 0;
  letter-spacing: -0.3px;
}

.contact-title-divider {
  width: 42px;
  height: 2px;
  background-color: #c49a45;
  margin: 15px 0 20px 0;
}

.contact-lead-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #756e63;
  max-width: 460px;
  margin-bottom: 0;
}

/* Two Cards Unified Connected Box */
.contact-cards-container {
  margin-bottom: 50px;
}

.contact-unified-card {
  background-color: #ffffff;
  border: 1px solid #e5dfd5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

/* Left Card: Get in touch */
.contact-info-card {
  background-color: #ffffff;
  border-right: 1px solid #e5dfd5;
  padding: 44px 40px;
  height: 100%;
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  color: #211d17;
  margin-bottom: 6px;
}

.contact-card-subtitle {
  font-size: 13px;
  color: #7a7571;
  margin-bottom: 24px;
  line-height: 1.5;
}

.contact-divider {
  height: 1px;
  background-color: #ece7de;
  margin: 22px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f6eedf;
  color: #8f6d28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  flex-shrink: 0;
}

.contact-info-text {
  flex: 1;
}

.contact-info-kicker {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: #999183;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-info-detail {
  font-size: 13.5px;
  font-weight: 600;
  color: #211d17;
  line-height: 1.45;
  margin-bottom: 0;
}

.contact-info-detail a {
  color: #211d17;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-detail a:hover {
  color: var(--yash-gold);
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-social-label {
  font-size: 13px;
  color: #7a7571;
  font-weight: 500;
}

.contact-social-pill {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #d5cebf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #554e42;
  text-decoration: none;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.contact-social-pill:hover {
  background-color: var(--yash-gold);
  border-color: var(--yash-gold);
  color: #ffffff;
}

/* Right Card: Send a message */
.contact-form-card {
  background-color: #f7f4ee;
  padding: 44px 42px;
  height: 100%;
}

.contact-form-group {
  margin-bottom: 15px;
}

.contact-form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #595347;
  margin-bottom: 5px;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dfd9ce;
  border-radius: 4px;
  padding: 9px 13px;
  font-size: 13.5px;
  color: #211d17;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  display: block;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #a8a297;
  font-size: 13.5px;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: var(--yash-gold);
  box-shadow: 0 0 0 2px rgba(143, 109, 40, 0.15);
}

.contact-form-textarea {
  min-height: 95px;
  resize: vertical;
}

.contact-captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 20px 0;
}

.contact-captcha-question {
  font-size: 13px;
  color: #595347;
  font-weight: 500;
  white-space: nowrap;
}

.contact-captcha-field {
  width: 90px !important;
  max-width: 90px !important;
  flex: 0 0 90px !important;
  height: 38px !important;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #dfd9ce;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #211d17;
  outline: none;
  transition: border-color 0.2s ease;
  padding: 0 8px;
}

.contact-captcha-field:focus {
  border-color: var(--yash-gold);
}

.btn-send-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #9c7229;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(156, 114, 41, 0.2);
}

.btn-send-message:hover {
  background-color: #856121;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(156, 114, 41, 0.3);
}

.btn-send-message i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-send-message:hover i {
  transform: translateX(4px);
}

.contact-form-disclaimer {
  font-size: 11.5px;
  color: #8c867e;
  margin-top: 14px;
  margin-bottom: 0;
}

#contact-form label.error {
  color: #d9534f;
  font-size: 11.5px;
  margin-top: 4px;
  display: block;
}

/* Map Section with Floating Overlay */
.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 360px;
  border: 1px solid #ece7de;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f7f4ed;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-floating-card {
  position: absolute;
  top: 28px;
  left: 28px;
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  border: 1px solid #eae5dc;
  max-width: 250px;
  z-index: 10;
  text-align: left;
}

.contact-map-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: #211d17;
  margin-bottom: 6px;
}

.contact-map-card-address {
  font-size: 12px;
  line-height: 1.55;
  color: #6b655b;
  margin-bottom: 12px;
}

.contact-map-directions-link {
  color: #8f6d28;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.contact-map-directions-link:hover {
  color: #6d521c;
}

.contact-map-directions-link i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.contact-map-directions-link:hover i {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .contact-info-card,
  .contact-form-card {
    padding: 30px 22px;
  }

  .contact-main-title {
    font-size: 34px;
  }
}

@media (max-width: 575.98px) {
  .contact-main-title {
    font-size: 26px;
  }

  .contact-map-floating-card {
    position: static;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .contact-map-wrapper {
    height: 280px;
  }
}

/* ==========================================================================
   ABOUT US PAGE - HERO BANNER
   ========================================================================== */
.about-hero-section {
  background-color: #fbfaf6;
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 145px 0 75px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--yash-border-light);
  min-height: 540px;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      #fbfaf6 0%,
      #fbfaf6 40%,
      rgba(251, 250, 246, 0.95) 47%,
      rgba(251, 250, 246, 0.45) 55%,
      rgba(251, 250, 246, 0) 65%);
  pointer-events: none;
  z-index: 1;
}

.about-hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-hero-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #a67c37;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  color: #101f33;
  line-height: 1.14;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.about-hero-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: #5a554c;
  max-width: 460px;
  margin-bottom: 22px;
}

.btn-about-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #9c7229;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(156, 114, 41, 0.25);
}

.btn-about-hero:hover {
  background-color: #856121;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(156, 114, 41, 0.35);
}

.btn-about-hero i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-about-hero:hover i {
  transform: translateX(4px);
}

.about-hero-script-flourish {
  position: absolute;
  top: 135px;
  right: 35px;
  font-family: var(--font-cursive);
  font-size: 28px;
  line-height: 1.15;
  color: #2e261e;
  text-align: center;
  z-index: 3;
  transform: rotate(-3deg);
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: max-content;
}

.about-hero-script-flourish .flourish-line {
  display: block;
  white-space: nowrap;
}

.about-hero-script-flourish svg {
  margin: 3px auto 0 auto;
  display: block;
}

@media (max-width: 991.98px) {
  .about-hero-section {
    padding: 130px 0 60px 0;
    min-height: 440px;
    background-position: center right 25%;
  }

  .about-hero-overlay {
    background: linear-gradient(90deg,
        rgba(253, 251, 247, 0.98) 0%,
        rgba(253, 251, 247, 0.92) 55%,
        rgba(253, 251, 247, 0.65) 100%);
  }

  .about-hero-title {
    font-size: 38px;
  }

  .about-hero-script-flourish {
    font-size: 16px;
    top: 92px;
    right: 15px;
    display: flex !important;
  }

  .about-hero-script-flourish svg {
    width: 36px;
    height: 8px;
  }
}

@media (max-width: 575.98px) {
  .about-hero-section {
    padding: 110px 0 45px 0;
    min-height: 380px;
  }

  .about-hero-overlay {
    background: linear-gradient(180deg,
        rgba(253, 251, 247, 0.96) 0%,
        rgba(253, 251, 247, 0.92) 65%,
        rgba(253, 251, 247, 0.82) 100%);
  }

  .about-hero-eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .about-hero-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .about-hero-desc {
    font-size: 13.5px;
    margin-bottom: 20px;
  }

  .about-hero-script-flourish {
    display: flex !important;
    font-size: 14px;
    top: 86px;
    right: 12px;
  }

  .about-hero-script-flourish svg {
    width: 30px;
    height: 7px;
  }
}

/* ==========================================================================
   About Stats Strip Section
   ========================================================================== */
.about-stats-strip {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #ebe8e1;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.about-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  justify-content: center;
  padding: 6px 16px;
  transition: transform 0.2s ease;
}

.about-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.about-stat-item:hover .about-stat-icon {
  transform: translateY(-2px);
}

.about-stat-text {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: #121f33;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.about-stat-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: #635e56;
  line-height: 1.3;
  margin-top: 3px;
  white-space: nowrap;
}

.about-stat-divider {
  width: 1px;
  height: 36px;
  background-color: #eae6de;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .about-stats-strip {
    padding: 22px 0;
  }

  .about-stats-row {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .about-stat-item {
    flex: 0 0 50%;
    justify-content: flex-start;
    padding: 6px 14px;
  }

  .about-stat-divider {
    display: none !important;
  }

  .about-stat-number {
    font-size: 18px;
  }

  .about-stat-label {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .about-stats-strip {
    padding: 18px 0;
  }

  .about-stat-item {
    flex: 0 0 50%;
    padding: 8px 10px;
    gap: 10px;
  }

  .about-stat-icon svg {
    width: 28px;
    height: 28px;
  }

  .about-stat-number {
    font-size: 16px;
  }

  .about-stat-label {
    font-size: 11px;
  }
}

/* ==========================================================================
   Our Story Section (About Page)
   ========================================================================== */
.about-story-section {
  background-color: #ffffff;
  padding: 28px 0 75px 0;
  position: relative;
}

.about-story-image-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
  height: 455px;
  width: 100%;
}

.about-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}

.about-story-card {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #21301c;
  padding: 26px 28px 28px 26px;
  border-top-right-radius: 8px;
  width: 48%;
  min-width: 220px;
  max-width: 265px;
  z-index: 2;
  box-shadow: 4px -4px 18px rgba(0, 0, 0, 0.15);
}

.about-story-card-dash {
  width: 36px;
  height: 3.5px;
  background-color: #cda245;
  border-radius: 2px;
  margin-bottom: 15px;
}

.about-story-card-title {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.about-story-card-title span {
  display: block;
}

.about-story-card-text {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.45;
  color: #b8c8b4;
  margin-bottom: 0;
}

.about-story-content {
  position: relative;
  padding-left: 28px;
}

.about-story-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #a67c37;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-story-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: #101e30;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}

.about-story-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.66;
  color: #52565e;
  margin-bottom: 14px;
}

.about-story-action-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  min-height: 55px;
}

.btn-story-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #a67c37;
  color: #a67c37 !important;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-story-outline:hover {
  background-color: #a67c37;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(166, 124, 55, 0.25);
}

.btn-story-outline i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-story-outline:hover i {
  transform: translateX(4px);
}

.about-story-deco-leaf {
  position: absolute;
  right: 15px;
  bottom: -15px;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .about-story-section {
    padding: 55px 0;
  }

  .about-story-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-story-title {
    font-size: 32px;
  }

  .about-story-image-wrap {
    max-width: 100%;
    height: 350px;
  }

  .about-story-deco-leaf {
    right: 0;
    bottom: -10px;
  }
}

@media (max-width: 575.98px) {
  .about-story-card {
    width: 72%;
    padding: 16px 18px 18px 16px;
  }

  .about-story-card-title {
    font-size: 18px;
  }

  .about-story-card-text {
    font-size: 11.5px;
  }

  .about-story-title {
    font-size: 26px;
  }

  .about-story-deco-leaf {
    display: none;
  }
}

/* ==========================================================================
   Global Presence Section (About Page)
   ========================================================================== */
.about-global-section {
  background-color: #ffffff;
  padding: 75px 0 35px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f0ede6;
}

.about-global-content {
  position: relative;
  z-index: 2;
  padding-right: 15px;
}

.about-global-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #a67c37;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-global-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: #101e30;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}

.about-global-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.66;
  color: #52565e;
  margin-bottom: 26px;
  max-width: 530px;
}

.about-global-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.about-global-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-global-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-global-stat-text {
  display: flex;
  flex-direction: column;
}

.global-stat-num {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: #101f33;
  line-height: 1.15;
}

.global-stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: #635e56;
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
}

.about-global-divider {
  width: 1px;
  height: 32px;
  background-color: #eae5dc;
  flex-shrink: 0;
}

.about-global-map-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.about-global-map-img {
  width: 100%;
  max-width: 630px;
  height: auto;
  display: block;
}

.about-global-flourish {
  position: absolute;
  right: 6%;
  bottom: 12%;
  font-family: var(--font-cursive);
  font-size: 21px;
  line-height: 1.15;
  color: #2e261e;
  text-align: center;
  transform: rotate(-4deg);
  pointer-events: none;
  z-index: 3;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: max-content;
}

.about-global-flourish .flourish-line {
  display: block;
  white-space: nowrap;
}

.about-global-flourish svg {
  margin: 3px auto 0 auto;
  display: block;
}

@media (max-width: 991.98px) {
  .about-global-section {
    padding: 60px 0;
  }

  .about-global-title {
    font-size: 32px;
  }

  .about-global-map-wrap {
    margin-top: 35px;
  }

  .about-global-flourish {
    right: 4%;
    bottom: 8%;
    font-size: 18px;
    display: flex !important;
  }
}

@media (max-width: 575.98px) {
  .about-global-stats-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .about-global-divider {
    display: none;
  }

  .about-global-title {
    font-size: 26px;
  }

  .about-global-flourish {
    display: flex !important;
    right: 15px;
    bottom: 12px;
    font-size: 15px;
  }
}

/* ==========================================================================
   Our Leadership Section (About Page)
   ========================================================================== */
.about-leadership-section {
  background-color: #ffffff;
  padding: 30px 0 80px 0;
}

.about-leadership-header {
  margin-bottom: 35px;
}

.about-leadership-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #a67c37;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-leadership-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: #101e30;
  line-height: 1.18;
  letter-spacing: -0.4px;
}

.leadership-card {
  background-color: #ffffff;
  border: 1px solid #edebe5;
  border-radius: 6px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.leadership-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.leadership-thumb {
  flex-shrink: 0;
  width: 175px;
  height: 190px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f7f6f2;
}

.leadership-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.leadership-info {
  flex-grow: 1;
}

.leadership-name {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: #101f33;
  margin-bottom: 6px;
  line-height: 1.25;
}

.leadership-badge {
  display: inline-block;
  background-color: #9c7229;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.leadership-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  color: #555047;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .about-leadership-section {
    padding: 60px 0;
  }

  .about-leadership-title {
    font-size: 32px;
  }

  .leadership-card {
    padding: 18px;
    gap: 16px;
  }

  .leadership-thumb {
    width: 145px;
    height: 165px;
  }

  .leadership-name {
    font-size: 17px;
  }

  .leadership-desc {
    font-size: 12.5px;
  }
}

@media (max-width: 575.98px) {
  .leadership-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .leadership-thumb {
    width: 165px;
    height: 180px;
    margin-bottom: 15px;
  }

  .about-leadership-title {
    font-size: 26px;
  }
}

/* ==========================================================================
   About Us Page - Certifications & Compliance Section
   ========================================================================== */
.about-cert-section {
  background-color: #f7f5ef;
  padding: 56px 0;
  border-top: 1px solid #e9e6dd;
  border-bottom: 1px solid #e9e6dd;
}

.about-cert-text-wrap {
  max-width: 360px;
}

.about-cert-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: #0f1e31;
  line-height: 1.14;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.about-cert-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: #5d574e;
  margin-bottom: 22px;
}

.about-cert-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: #9c7229;
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(156, 114, 41, 0.2);
}

.about-cert-view-all-btn:hover {
  background-color: #856121;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(156, 114, 41, 0.3);
  color: #ffffff !important;
}

.about-cert-view-all-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.about-cert-view-all-btn:hover i {
  transform: translateX(3px);
}

.about-cert-grid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.about-cert-card {
  background-color: #ffffff;
  border: 1px solid #e5e2d8;
  border-radius: 6px;
  width: 165px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-cert-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  border-color: #d6d0c2;
}

.about-cert-logo {
  max-width: 90%;
  max-height: 105px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 1199.98px) {
  .about-cert-card {
    width: 145px;
    height: 124px;
    padding: 8px 10px;
  }

  .about-cert-logo {
    max-height: 90px;
  }
}

@media (max-width: 991.98px) {
  .about-cert-section {
    padding: 45px 0;
  }

  .about-cert-text-wrap {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .about-cert-title {
    font-size: 32px;
  }

  .about-cert-grid {
    justify-content: flex-start;
    gap: 14px;
  }

  .about-cert-card {
    width: 135px;
    height: 115px;
    padding: 8px 10px;
  }

  .about-cert-logo {
    max-height: 80px;
  }
}

@media (max-width: 575.98px) {
  .about-cert-title {
    font-size: 28px;
  }

  .about-cert-grid {
    gap: 12px;
  }

  .about-cert-card {
    width: calc(50% - 6px);
    height: 110px;
    padding: 8px 10px;
  }

  .about-cert-logo {
    max-height: 75px;
  }
}

/* ==========================================================================
   About Us Page - Leaf CTA Banner Section
   ========================================================================== */
.about-cta-banner-section {
  position: relative;
  background-image: url('../img/leaf.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 72px 0;
  overflow: hidden;
}

.about-cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(7, 18, 9, 0.86) 0%,
      rgba(7, 18, 9, 0.70) 36%,
      rgba(7, 18, 9, 0.08) 64%,
      rgba(7, 18, 9, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.about-cta-banner-section .container,
.about-cta-banner-section .container-fluid {
  position: relative;
  z-index: 3;
}

.about-cta-text-wrap {
  max-width: 500px;
}

.about-cta-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.about-cta-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: #ffffff !important;
  opacity: 0.94;
  margin-bottom: 24px;
  max-width: 440px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: #9c7229;
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.about-cta-btn:hover {
  background-color: #856121;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #ffffff !important;
}

.about-cta-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.about-cta-btn:hover i {
  transform: translateX(3px);
}

.about-cta-feature-capsule {
  background: rgba(18, 34, 20, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 140px 0 0 140px;
  padding: 42px 48px 42px 68px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: -12px 0 35px rgba(0, 0, 0, 0.25);
  margin-right: -48px;
}

.about-cta-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-cta-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-cta-feature-item:hover .about-cta-badge-icon {
  transform: scale(1.08);
  border-color: #ffffff;
}

.about-cta-feature-text {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

@media (max-width: 1199.98px) {
  .about-cta-feature-capsule {
    margin-right: -24px;
    padding: 34px 38px 34px 54px;
    border-radius: 110px 0 0 110px;
  }
}

@media (max-width: 991.98px) {
  .about-cta-banner-section {
    padding: 55px 0;
  }

  .about-cta-banner-overlay {
    background: linear-gradient(180deg,
        rgba(8, 20, 11, 0.94) 0%,
        rgba(8, 20, 11, 0.88) 100%);
  }

  .about-cta-title {
    font-size: 32px;
  }

  .about-cta-feature-capsule {
    border-radius: 24px;
    padding: 24px 28px;
    width: 100%;
    max-width: 360px;
    margin-right: 0;
    margin-top: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 575.98px) {
  .about-cta-title {
    font-size: 26px;
  }

  .about-cta-feature-capsule {
    padding: 20px 22px;
    gap: 16px;
  }

  .about-cta-badge-icon {
    width: 40px;
    height: 40px;
  }

  .about-cta-feature-text {
    font-size: 14.5px;
  }
}

/* ==========================================================================
   About Us Page - Core Values ("What Drives Us") Section
   ========================================================================== */
.about-values-section {
  background-color: #fbfaf7;
  padding: 58px 0;
  border-top: 1px solid #ebe5da;
  border-bottom: 1px solid #ebe5da;
}

.about-values-header {
  padding-right: 15px;
}

.about-values-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #af812c;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-values-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: #101f33;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.about-values-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 18px;
  position: relative;
  transition: transform 0.25s ease;
}

.about-values-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 0;
  height: 84%;
  width: 1px;
  background-color: #e5dfd2;
}

.about-values-item:hover {
  transform: translateY(-2px);
}

.about-values-icon {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.25s ease;
}

.about-value-img {
  max-height: 38px;
  max-width: 48px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.about-values-item:hover .about-values-icon,
.about-values-item:hover .about-value-img {
  transform: scale(1.08);
}

.about-values-name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #101f33;
  margin-bottom: 6px;
  line-height: 1.25;
}

.about-values-text {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.45;
  color: #615b51;
  margin-bottom: 0;
  max-width: 170px;
}

@media (max-width: 991.98px) {
  .about-values-section {
    padding: 45px 0;
  }

  .about-values-header {
    text-align: center;
    margin-bottom: 32px;
    padding-right: 0;
  }

  .about-values-title {
    font-size: 30px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .about-values-item:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .about-values-title {
    font-size: 26px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 22px 0;
  }

  .about-values-item::before {
    display: none !important;
  }

  .about-values-item {
    padding: 6px 12px;
  }
}

/* Ensure theme's global 'br { display: none }' does not fuse words together on smaller screens */
@media only screen and (min-width: 1200px) and (max-width: 1399.98px),
only screen and (min-width: 768px) and (max-width: 991.98px),
(max-width: 575.98px) {
  br {
    content: " " !important;
  }
}

/* ==========================================================================
   Product Page Hero / Header Section (Exact Mockup)
   ========================================================================== */
.product-hero-section {
  position: relative;
  background-color: #faf8f5;
  padding: 75px 0 70px 0;
  overflow: hidden;
  border-bottom: none;
  min-height: 410px;
  display: flex;
  align-items: center;
}

/* Background Left Leaf (half-leaf.webp) */
.product-hero-leaf-bg {
  position: absolute;
  top: 85px;
  left: 0;
  height: 65%;
  max-height: 220px;
  width: auto;
  object-fit: contain;
  object-position: left top;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

/* Background Right Spoon with Seeds (product-leaf.webp) */
.product-hero-spoon-bg {
  position: absolute;
  top: 80px;
  right: -15px;
  height: 100%;
  max-height: 380px;
  width: 415px;
  object-fit: contain;
  object-position: right top;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* Container & Inner Layout */
.product-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 305px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.product-hero-row {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

/* Left Flourish Column: "Quality Seeds for a Healthier Tomorrow." */
.product-hero-col-left {
  flex: 0 0 190px;
  max-width: 190px;
  padding-left: 20px;
  padding-right: 15px;
}

.product-hero-left-flourish {
  position: relative;
  margin-top: 70px;
  transform: rotate(-3.5deg);
}

.left-flourish-text {
  font-family: var(--font-cursive);
  font-size: 21px;
  line-height: 1.22;
  font-weight: 600;
  color: #4a564e;
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.left-flourish-bar {
  display: block;
  width: 34px;
  height: 2.5px;
  background-color: #be8426;
  border-radius: 2px;
}

/* Center Content Column: Breadcrumbs, Title, Subtitle, Description */
.product-hero-col-center {
  flex: 0 0 490px;
  max-width: 490px;
  padding-right: 20px;
}

.product-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: #636e67;
  margin-bottom: 12px;
}

.product-hero-breadcrumb a {
  color: #636e67;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-hero-breadcrumb a:hover {
  color: #1e3a2b;
}

.product-hero-breadcrumb .breadcrumb-sep {
  color: #929c95;
  font-size: 11px;
}

.product-hero-breadcrumb .breadcrumb-active {
  color: #2b3930;
  font-weight: 600;
}

.product-hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.product-hero-title .title-dark {
  color: #1a3828;
}

.product-hero-title .title-gold {
  color: #be8225;
}

.product-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #1b241e;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-hero-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.58;
  color: #5b6660;
  max-width: 470px;
  margin-bottom: 0;
}

/* Right Flourish Column: "From Nature to the World" + Golden Leaves */
.product-hero-col-flourish {
  flex: 0 0 200px;
  max-width: 200px;
  padding-left: 10px;
}

.product-hero-script-flourish {
  font-family: var(--font-cursive);
  font-size: 36px;
  line-height: 1.05;
  font-weight: 600;
  color: #be8225;
  transform: rotate(-3deg);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-hero-script-flourish .script-line {
  display: block;
  white-space: nowrap;
}

.script-line-with-leaves {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.script-golden-leaves {
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-2px);
}

/* Spacer column for spoon */
.product-hero-col-spoon {
  flex: 1 1 auto;
  min-width: 240px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .product-hero-container {
    padding: 0 24px;
  }

  .product-hero-col-left {
    flex: 0 0 160px;
    max-width: 160px;
    padding-left: 10px;
  }

  .left-flourish-text {
    font-size: 18px;
  }

  .product-hero-col-center {
    flex: 0 0 420px;
    max-width: 420px;
  }

  .product-hero-title {
    font-size: 42px;
  }

  .product-hero-script-flourish {
    font-size: 30px;
  }

  .product-hero-spoon-bg {
    max-height: 250px;
  }
}

@media (max-width: 991.98px) {
  .product-hero-section {
    padding: 95px 0 35px;
  }

  .product-hero-col-left {
    display: none;
  }

  .product-hero-leaf-bg {
    max-height: 160px;
    opacity: 0.5;
  }

  .product-hero-spoon-bg {
    max-height: 200px;
    opacity: 0.45;
  }

  .product-hero-col-center {
    flex: 1 1 auto;
    max-width: 100%;
    padding-right: 0;
  }

  .product-hero-col-flourish {
    display: none;
  }

  .product-hero-col-spoon {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .product-hero-section {
    padding: 90px 0 25px;
  }

  .product-hero-title {
    font-size: 30px;
  }

  .product-hero-subtitle {
    font-size: 15.5px;
  }

  .product-hero-desc {
    font-size: 13px;
  }

  .product-hero-leaf-bg {
    display: none;
  }

  .product-hero-spoon-bg {
    opacity: 0.2;
    max-height: 160px;
  }
}

/* =======================================================
   Product Showcase Cards Section (Hulled & Natural Sesame)
   ======================================================= */
.product-cards-showcase-section {
  background-color: transparent;
  padding: 0 0 40px;
  margin-top: -35px;
  position: relative;
  z-index: 5;
}

.product-cards-showcase-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Individual Showcase Card */
.product-showcase-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 16px 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 255px;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-showcase-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.055);
}

/* Image Column */
.product-card-img-col {
  flex: 0 0 38%;
  max-width: 38%;
  height: 222px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.product-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.product-showcase-card:hover .product-showcase-img {
  transform: scale(1.02);
}

/* Content Body Column */
.product-card-body-col {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 10px 4px 0;
  z-index: 2;
}

/* Even Cards Specific Offset so watermarks 02, 04, 06 sit on left */
.product-card-body-col.card-body-offset-left {
  padding: 4px 0 4px 115px;
}

/* Watermark Numbers 01, 02, 03, 04, 05, 06 */
.product-card-watermark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  color: #e6e9ed;
  line-height: 0.9;
  position: absolute;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.product-card-watermark.num-right {
  top: 6px;
  right: 25px;
}

.product-card-watermark.num-left {
  top: 8px;
  left: 10px;
}

/* Floating Sesame Seeds Watermark in Card 1 */
.product-card-floating-seeds {
  position: absolute;
  right: 40px;
  top: 140px;
  width: 113px;
  height: 141px;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Floating Cumin Deco in Card 3 */
.product-card-cumin-deco {
  position: absolute;
  right: 30px;
  top: 95px;
  width: 90px;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.85;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Eyebrow / Category Tag */
.product-card-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #a8843c;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

/* Title */
.product-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #173827;
  margin-bottom: 8px;
  line-height: 1.25;
  position: relative;
  z-index: 3;
}

/* Description */
.product-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: #697177;
  line-height: 1.45;
  margin-bottom: 12px;
  max-width: 540px;
  position: relative;
  z-index: 3;
}

/* Bullet Points */
.product-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  position: relative;
  z-index: 3;
}

.product-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.product-bullet-item:last-child {
  margin-bottom: 0;
}

.product-bullet-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-bullet-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3b4247;
  line-height: 1.4;
}

/* View More Button */
.product-card-btn {
  background: #ba8627;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 22px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  box-shadow: 0 3px 12px rgba(186, 134, 39, 0.22);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.product-card-btn:hover {
  background: #a5741b;
  box-shadow: 0 5px 15px rgba(186, 134, 39, 0.3);
  transform: translateY(-1px);
}

.product-card-btn i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
  .product-showcase-card {
    flex-direction: column;
    gap: 22px;
    padding: 20px;
  }

  .product-showcase-card.card-reversed .product-card-img-col {
    order: -1;
  }

  .product-card-img-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: 260px;
  }

  .product-showcase-img {
    height: 100%;
    min-height: auto;
  }

  .product-card-body-col,
  .product-card-body-col.card-body-offset-left {
    padding: 0;
  }

  .product-card-watermark.num-left {
    left: auto;
    right: 20px;
    top: -5px;
  }

  .product-card-floating-seeds {
    display: none;
  }

  .product-card-title {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .product-cards-showcase-section {
    padding: 20px 0 40px;
  }

  .product-showcase-card {
    padding: 16px;
    border-radius: 18px;
  }

  .product-card-img-col {
    height: 200px;
    border-radius: 14px;
  }

  .product-showcase-img {
    border-radius: 14px;
  }

  .product-card-watermark {
    font-size: 60px;
  }

  .product-card-title {
    font-size: 22px;
  }

  .product-bullet-text {
    font-size: 13px;
  }
}

/* =======================================================
   Product Quick Navigation & Supplying Worldwide Bar
   ======================================================= */
.product-global-supply-card {
  padding: 18px 6px 10px;
  margin-top: 10px;
}

.product-quick-links-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 4px 16px;
}

.quick-link-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #1e3325;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.quick-link-item:hover {
  color: #be8a28;
  transform: translateY(-2px);
}

.quick-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #be8a28;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.quick-link-item:hover .quick-link-icon {
  transform: scale(1.1);
}

.product-supply-divider {
  width: 100%;
  height: 1px;
  background: #e9ecea;
  margin: 4px 0 20px;
}

.product-supplying-worldwide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 4px 4px 16px;
}

.supplying-worldwide-brand {
  display: flex;
  align-items: center;
}

.supplying-worldwide-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18.5px;
  font-weight: 700;
  color: #153724;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.supplying-vertical-divider {
  display: inline-block;
  width: 1.5px;
  height: 36px;
  background: #caa03e;
  margin: 0 24px;
  flex-shrink: 0;
}

.supplying-countries-list {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.supplying-country-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #27342b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.supplying-country-item:hover {
  color: #be8a28;
  transform: translateY(-2px);
}

.country-flag-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.supplying-worldwide-action {
  margin-left: auto;
}

.btn-view-all-products {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  border: 1.5px solid #be8a28;
  color: #b88122 !important;
  background: transparent;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-view-all-products:hover {
  background: #be8a28;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(190, 138, 40, 0.25);
  transform: translateY(-2px);
}

.btn-view-all-products i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.btn-view-all-products:hover i {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .product-quick-links-row {
    justify-content: flex-start;
    gap: 18px 24px;
  }

  .supplying-worldwide-brand {
    width: 100%;
  }

  .supplying-vertical-divider {
    display: none;
  }

  .supplying-countries-list {
    gap: 16px 20px;
  }

  .supplying-worldwide-action {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .product-quick-links-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .supplying-countries-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* =======================================================
   Processing Page - Timeline & Working Process Styles
   ======================================================= */
.process-breadcrumb-bar {
  background: #ffffff;
  border-bottom: 1px solid #ebebeb;
  padding: 14px 0;
}

.process-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
}

.process-breadcrumb-list li a {
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.process-breadcrumb-list li a:hover {
  color: #caa03e;
}

.process-breadcrumb-list li.separator {
  color: #aaaaaa;
  font-size: 10px;
}

.process-breadcrumb-list li.active {
  color: #162c1d;
  font-weight: 600;
}

/* Process Timeline Section */
.process-timeline-section {
  position: relative;
  background-color: #fbfbfa;
  padding: 50px 0 60px;
  overflow: hidden;
}

.process-deco-leaf-left {
  position: absolute;
  top: 15px;
  left: -20px;
  width: 140px;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  transform: rotate(20deg);
}

.process-deco-leaf-right {
  position: absolute;
  bottom: 80px;
  right: -30px;
  width: 160px;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  transform: rotate(-35deg);
}

.process-timeline-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Section Header */
.process-header-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 45px;
}

.process-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #caa03e;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.process-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: #162c1d;
  line-height: 1.2;
  margin: 0 0 14px;
}

.process-main-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  color: #556259;
  max-width: 630px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-title-dash {
  width: 44px;
  height: 2px;
  background: #caa03e;
  margin: 18px auto 0;
  border-radius: 2px;
}

/* Stamp Badge (Quality in Every Step) */
.process-stamp-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  text-align: center;
  transform: rotate(-7deg);
  user-select: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.stamp-text {
  font-family: 'Caveat', cursive, Georgia;
  font-size: 26px;
  font-weight: 600;
  color: #b88a28;
  line-height: 1.08;
  display: inline-block;
  text-align: center;
}

.stamp-text .stamp-line-1,
.stamp-text .stamp-line-2 {
  display: block;
  white-space: nowrap;
}

.stamp-text br {
  display: block !important;
}

.stamp-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #b88a28;
  margin-top: 3px;
  border-radius: 1px;
}

/* Timeline Layout */
.process-timeline-track {
  position: relative;
  padding: 20px 0;
}

.process-timeline-center-line {
  position: absolute;
  left: 50%;
  top: 25px;
  bottom: 25px;
  width: 2px;
  background: #caa03e;
  transform: translateX(-50%);
  z-index: 1;
}

.process-timeline-row {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 34px;
}

.process-timeline-row:last-child {
  margin-bottom: 0;
}

.process-timeline-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3.5px solid #caa03e;
  box-shadow: 0 0 0 3px rgba(202, 160, 62, 0.18);
  z-index: 3;
}

.process-timeline-col {
  width: calc(50% - 34px);
  position: relative;
  z-index: 2;
}

.process-timeline-col.col-left {
  margin-right: auto;
}

.process-timeline-col.col-right {
  margin-left: auto;
}

/* Timeline Step Card */
.process-step-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.035);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 195px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

/* Image Column (Blank for future addition) */
.process-card-img-col {
  flex: 0 0 44%;
  width: 44%;
  height: 168px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.process-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8faf8 0%, #ebeee9 100%);
  border: 1.5px dashed rgba(202, 160, 62, 0.32);
  border-radius: 12px;
  box-sizing: border-box;
  color: #caa03e;
  transition: background 0.3s ease;
}

.process-step-card:hover .process-img-placeholder {
  background: linear-gradient(135deg, #f3f6f3 0%, #e3e8e1 100%);
}

.process-card-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .process-card-img-col img {
  transform: scale(1.05);
}

/* Content Column */
.process-card-content-col {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.process-card-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.process-card-watermark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #ede4d1;
  line-height: 0.9;
  user-select: none;
}

.process-card-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #caa03e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(202, 160, 62, 0.28);
  flex-shrink: 0;
}

.process-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #162c1d;
  margin: 0 0 6px;
  line-height: 1.25;
}

.process-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #58635c;
  line-height: 1.5;
  margin: 0;
}

/* Bottom Features Grid */
.process-features-wrapper {
  margin-top: 50px;
}

.process-features-grid {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 26px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-feature-item {
  border-right: 1px solid #ebebeb;
  padding: 0 20px;
  text-align: center;
}

.process-feature-item:last-child {
  border-right: none;
}

.process-feature-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #caa03e;
}

.process-feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #162c1d;
  margin: 0 0 3px;
}

.process-feature-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #69736c;
  margin: 0;
}

/* Bottom Features Strip (Exact Mockup Match) */
.process-bottom-strip-section {
  position: relative;
  background-color: #faf7f2;
  border-top: 1px solid #e9e4d9;
  padding: 36px 0 34px;
  overflow: hidden;
  clear: both;
}

.process-strip-leaf-right {
  position: absolute;
  top: -15px;
  right: -30px;
  width: 155px;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  transform: rotate(-10deg);
  z-index: 1;
}

.process-strip-grid {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

.process-strip-item {
  flex: 1 1 0 !important;
  text-align: center;
  padding: 0 16px;
}

.process-strip-divider {
  display: block !important;
  width: 1px !important;
  height: 52px !important;
  background-color: #dfd7c7 !important;
  flex-shrink: 0;
  margin: 0;
}

.process-strip-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5882e;
  transition: transform 0.25s ease;
}

.process-strip-item:hover .process-strip-icon {
  transform: translateY(-2px);
}

.process-strip-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #1e2621;
  margin: 0 0 4px;
  letter-spacing: -0.1px;
}

.process-strip-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  color: #6e736e;
  margin: 0;
}

/* Responsive Styles for Process Timeline */
@media (max-width: 991.98px) {
  .process-stamp-badge {
    position: static;
    margin: 0 auto 16px;
    display: inline-flex;
  }

  .process-timeline-center-line {
    left: 20px;
    transform: none;
  }

  .process-timeline-node {
    left: 20px;
    transform: translate(-50%, -50%);
  }

  .process-timeline-row {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .process-timeline-col {
    width: calc(100% - 45px);
    margin-left: 45px !important;
    margin-right: 0 !important;
  }

  .process-timeline-col:empty {
    display: none;
  }

  .process-strip-grid {
    flex-wrap: wrap;
    gap: 24px 0;
  }

  .process-strip-item {
    flex: 0 0 50%;
  }

  .process-strip-divider {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .process-header-wrap {
    padding-top: 20px;
  }

  .process-stamp-badge {
    position: absolute;
    top: -18px;
    right: 4px;
    margin: 0;
  }

  .stamp-text {
    font-size: 21px;
  }

  .process-main-title {
    font-size: 28px;
  }

  .process-step-card {
    flex-direction: column;
    padding: 14px;
    gap: 14px;
  }

  .process-step-card.card-reversed .process-card-img-col {
    order: -1;
  }

  .process-card-img-col {
    width: 100%;
    flex: 0 0 160px;
    height: 160px;
  }

  .process-strip-item {
    flex: 0 0 100%;
  }

  .process-bottom-strip-section {
    padding: 28px 0;
  }
}

/* =======================================================
   Get a Quote Modal (Homepage Theme & Typography Match)
   ======================================================= */
.quote-theme-modal .modal-dialog {
  max-width: 620px;
}

.quote-modal-content {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
}

.quote-modal-header {
  padding: 28px 30px 20px;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
  border-bottom: 1px solid #f0ebe1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.quote-modal-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #be8a28;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.quote-modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #162c1d;
  line-height: 1.25;
  margin: 0 0 6px;
}

.quote-modal-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: #667269;
  margin: 0;
  line-height: 1.4;
}

.quote-modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e8e2d5;
  background: #ffffff;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 15px;
  flex-shrink: 0;
  margin-left: 15px;
}

.quote-modal-close-btn:hover {
  background: #162c1d;
  color: #ffffff;
  border-color: #162c1d;
  transform: rotate(90deg);
}

.quote-modal-body {
  padding: 26px 30px 20px;
}

.quote-form-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #27342b;
  margin-bottom: 6px;
  display: block;
}

.quote-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.quote-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9c9588;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.quote-input-group .quote-form-control,
.quote-page-card input[type="text"].quote-form-control,
.quote-page-card input[type="email"].quote-form-control,
.quote-page-card input[type="tel"].quote-form-control,
.quote-modal-content input[type="text"].quote-form-control,
.quote-modal-content input[type="email"].quote-form-control,
.quote-modal-content input[type="tel"].quote-form-control,
input.quote-form-control {
  width: 100% !important;
  background: #ffffff !important;
  border: 1.5px solid #e4dfd5 !important;
  border-radius: 9px !important;
  height: 48px !important;
  line-height: normal !important;
  padding-left: 48px !important;
  padding-right: 16px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  color: #222222 !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.quote-form-control::placeholder {
  color: #9b9a95 !important;
  font-size: 13.5px !important;
}

.quote-input-group .quote-form-control:focus,
.quote-page-card input:focus.quote-form-control,
.quote-modal-content input:focus.quote-form-control {
  background: #ffffff !important;
  border-color: #caa03e !important;
  box-shadow: 0 0 0 3px rgba(202, 160, 62, 0.16) !important;
  outline: none !important;
}

.quote-input-group textarea.quote-form-control,
.quote-page-card textarea.quote-form-control,
.quote-modal-content textarea.quote-form-control,
textarea.quote-form-control {
  width: 100% !important;
  background: #ffffff !important;
  border: 1.5px solid #e4dfd5 !important;
  border-radius: 9px !important;
  height: auto !important;
  line-height: 1.5 !important;
  padding: 14px 16px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  color: #222222 !important;
  resize: vertical !important;
  min-height: 115px !important;
  box-sizing: border-box !important;
}

.quote-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--yash-gold);
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(143, 109, 40, 0.28);
}

.quote-submit-btn:hover {
  background-color: var(--yash-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(143, 109, 40, 0.38);
}

.quote-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.quote-submit-btn .btn-icon {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.quote-submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

.quote-modal-footer {
  padding: 12px 30px 22px;
  text-align: center;
}

.quote-footer-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  color: #8c938d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quote-footer-note i {
  color: #caa03e;
}

/* Alert Boxes */
.quote-alert-box {
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-alert-success {
  background-color: #eef7f0;
  color: #1e6b37;
  border: 1px solid #c2e5cb;
}

.quote-alert-error {
  background-color: #fdf2f2;
  color: #9c2b2b;
  border: 1px solid #f6caca;
}

@media (max-width: 575.98px) {
  .quote-modal-header,
  .quote-modal-body,
  .quote-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-modal-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   Get a Quote Standalone Page Styles
   ========================================================================== */
.get-quote-page-section {
  position: relative;
  padding: 60px 0 90px;
  background-color: #fcfbf8;
  overflow: hidden;
}

.quote-page-bg-leaf-left {
  position: absolute;
  top: 40px;
  left: -70px;
  width: 250px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
  transform: rotate(25deg);
}

.quote-page-bg-leaf-right {
  position: absolute;
  bottom: 40px;
  right: -70px;
  width: 260px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-35deg) scaleX(-1);
}

.quote-page-card-wrapper {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.quote-page-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.quote-page-header {
  padding: 38px 42px 24px;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
  border-bottom: 1px solid #f2ede4;
}

.quote-page-header .quote-modal-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #caa03e;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.quote-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #162c1d;
  line-height: 1.25;
  margin: 0 0 8px;
}

.quote-page-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #667269;
  margin: 0;
  line-height: 1.45;
}

.quote-page-body {
  padding: 34px 42px 24px;
}

.quote-page-footer {
  padding: 14px 42px 28px;
  text-align: center;
}

@media (max-width: 767.98px) {
  .get-quote-page-section {
    padding: 35px 0 60px;
  }
  .quote-page-header,
  .quote-page-body,
  .quote-page-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .quote-page-title {
    font-size: 24px;
  }
  .quote-page-header {
    padding-top: 28px;
    padding-bottom: 20px;
  }
  .quote-page-body {
    padding-top: 24px;
  }
}

/* ==========================================================================
   Floating WhatsApp Button (All Pages)
   ========================================================================== */
.yash-whatsapp-floating {
  position: fixed;
  right: 26px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42), 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 99999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.yash-whatsapp-floating:hover {
  background-color: #20ba59;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.18);
}

.yash-whatsapp-floating:active {
  transform: scale(0.95);
}

.yash-whatsapp-icon {
  width: 33px;
  height: 33px;
  object-fit: contain;
  display: block;
}

@media (max-width: 575.98px) {
  .yash-whatsapp-floating {
    right: 18px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  .yash-whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* ===================================================
   Hulled Sesame Seeds Hero Banner (Homepage Theme)
   =================================================== */
.hulled-hero-banner {
  position: relative;
  background: linear-gradient(135deg, #f7efe4 0%, #ecded0 100%);
  min-height: 440px;
  padding: 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hulled-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  max-width: 950px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hulled-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 12%, rgba(0, 0, 0, 0.85) 35%, black 60%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 12%, rgba(0, 0, 0, 0.85) 35%, black 60%);
}

.hulled-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hulled-hero-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
}

.hulled-hero-breadcrumb a {
  color: var(--yash-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hulled-hero-breadcrumb a:hover {
  color: var(--yash-gold);
}

.hulled-hero-breadcrumb .breadcrumb-sep {
  color: var(--yash-muted);
  font-size: 12px;
  user-select: none;
}

.hulled-hero-breadcrumb .breadcrumb-current {
  color: var(--yash-dark);
  font-weight: 600;
}

.hulled-hero-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--yash-dark);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  margin-top: 0;
}

.hulled-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--yash-body-text);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .hulled-hero-banner {
    min-height: 380px;
    padding: 100px 0 60px;
  }
  .hulled-hero-bg {
    width: 65%;
    opacity: 0.65;
  }
  .hulled-hero-title {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media (max-width: 767.98px) {
  .hulled-hero-banner {
    min-height: 330px;
    padding: 100px 0 45px;
  }
  .hulled-hero-bg {
    width: 100%;
    opacity: 0.3;
  }
  .hulled-hero-breadcrumb {
    font-size: 12.5px;
    gap: 6px;
    margin-top: 6px;
    margin-bottom: 14px;
  }
  .hulled-hero-title {
    font-size: 28px;
    line-height: 1.22;
  }
  .hulled-hero-subtitle {
    font-size: 14.5px;
  }
}

@media (max-width: 575.98px) {
  .hulled-hero-banner {
    padding: 110px 0 40px;
  }
  .hulled-hero-breadcrumb {
    margin-top: 8px;
    margin-bottom: 16px;
  }
}

/* ===================================================
   Product Detail Layout & Table (Homepage Theme)
   =================================================== */
.product-lead-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--yash-body-text);
}

.product-spec-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--yash-dark);
  line-height: 1.25;
  letter-spacing: -0.3px;
}

/* Specification Table */
.spec-nutrition-table-wrap {
  border: 1px solid var(--yash-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  background: #ffffff;
}

.table.spec-nutrition-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}

.table.spec-nutrition-table thead tr {
  background: var(--yash-gold) !important;
}

.table.spec-nutrition-table thead th {
  background: var(--yash-gold) !important;
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 22px !important;
  text-align: left !important;
  border: none !important;
  letter-spacing: 0.02em;
}

.table.spec-nutrition-table:not(.multi-col-table) thead th:first-child {
  width: 50%;
}

.table.spec-nutrition-table tbody tr {
  border-top: 1px solid var(--yash-border-light);
  transition: background-color 0.15s ease;
}

.table.spec-nutrition-table tbody tr:nth-child(odd) {
  background-color: #ffffff !important;
}

.table.spec-nutrition-table tbody tr:nth-child(even) {
  background-color: var(--yash-light-bg) !important;
}

.table.spec-nutrition-table tbody tr:hover,
.table.spec-nutrition-table tbody tr:hover > * {
  background-color: #faf6ee !important;
  transform: none !important;
  box-shadow: none !important;
}

.table.spec-nutrition-table tbody td {
  padding: 13px 22px !important;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--yash-body-text);
  text-align: left !important;
  border: none !important;
  background: transparent !important;
}

.table.spec-nutrition-table tbody td:first-child {
  font-weight: 600;
  color: var(--yash-dark);
}

/* Mobile Table Scroll Hint */
.table-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #8c6d1f;
  background: #fdf8ed;
  border: 1px solid #f1ddb6;
  border-radius: 20px;
  padding: 5px 12px;
}

/* Multi-Column Tables (Horizontal Scrollable) */
.spec-nutrition-table-wrap .table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #caa03e #f4ede0;
  padding-bottom: 3px;
}

.table.spec-nutrition-table.multi-col-table {
  min-width: 960px !important;
  width: max-content !important;
}

.table.spec-nutrition-table.multi-col-table thead th,
.table.spec-nutrition-table.multi-col-table tbody td {
  padding: 13px 18px !important;
  white-space: nowrap !important;
  font-size: 13.5px !important;
  text-align: center !important;
  vertical-align: middle !important;
}

.table.spec-nutrition-table.multi-col-table thead th:first-child,
.table.spec-nutrition-table.multi-col-table tbody td:first-child {
  text-align: left !important;
  padding-left: 20px !important;
}

.table.spec-nutrition-table.multi-col-table thead th:last-child,
.table.spec-nutrition-table.multi-col-table tbody td:last-child {
  padding-right: 20px !important;
}

/* Custom Visible Scrollbar for Spec Tables (Desktop) */
.spec-nutrition-table-wrap .table-responsive::-webkit-scrollbar,
.spec-nutrition-table-wrap::-webkit-scrollbar {
  height: 9px !important;
  display: block !important;
}

.spec-nutrition-table-wrap .table-responsive::-webkit-scrollbar-track,
.spec-nutrition-table-wrap::-webkit-scrollbar-track {
  background: #f4ede0 !important;
  border-radius: 6px;
  margin: 0 4px;
}

.spec-nutrition-table-wrap .table-responsive::-webkit-scrollbar-thumb,
.spec-nutrition-table-wrap::-webkit-scrollbar-thumb {
  background: #caa03e !important;
  border-radius: 6px;
}

.spec-nutrition-table-wrap .table-responsive::-webkit-scrollbar-thumb:hover,
.spec-nutrition-table-wrap::-webkit-scrollbar-thumb:hover {
  background: #9d7b29 !important;
}

/* Mobile Dedicated Visible Scrollbar (Only for small screens) */
.mobile-table-scrollbar-container {
  display: block;
  background: #fdfbf7;
  border-top: 1px solid #eedec4;
  padding: 10px 14px;
}

@media (min-width: 992px) {
  .mobile-table-scrollbar-container {
    display: none !important;
  }
}

.mobile-table-scrollbar-track {
  width: 100%;
  height: 8px;
  background: #ebe0cb;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  touch-action: none;
}

.mobile-table-scrollbar-thumb {
  height: 100%;
  background: linear-gradient(90deg, #caa03e, #b88a28);
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  position: absolute;
  top: 0;
  left: 0;
  cursor: grab;
  will-change: transform;
}

.mobile-table-scrollbar-thumb:active {
  cursor: grabbing;
  background: #9d7b29;
}

@media (max-width: 991.98px) {
  .spec-nutrition-table-wrap .table-responsive {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  .spec-nutrition-table-wrap .table-responsive::-webkit-scrollbar {
    display: none !important;
    height: 0 !important;
  }
}

/* Sidebar Styling (Homepage Theme) */
.product-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-products-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-products-menu a {
  padding: 12px 18px !important;
  background: #f7f5f0 !important;
  border-radius: 6px !important;
  color: var(--yash-dark) !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border: 1px solid var(--yash-border-light) !important;
  border-bottom: 1px solid var(--yash-border-light) !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  transition: all 0.25s ease !important;
}

.sidebar-products-menu a i {
  font-size: 12px;
  color: var(--yash-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.sidebar-products-menu a:hover {
  background: var(--yash-gold-light) !important;
  color: var(--yash-gold-hover) !important;
  border-color: var(--yash-gold) !important;
}

.sidebar-products-menu a:hover i {
  color: var(--yash-gold-hover);
  transform: translateX(3px);
}

.sidebar-products-menu a.active {
  background: var(--yash-gold) !important;
  color: #ffffff !important;
  border-color: var(--yash-gold) !important;
  box-shadow: 0 4px 14px rgba(143, 109, 40, 0.25) !important;
}

.sidebar-products-menu a.active i {
  color: #ffffff !important;
}

/* Need Bulk Quantity Card */
.sidebar-bulk-card {
  background: #ffffff;
  border: 1px solid var(--yash-border);
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bulk-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.bulk-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--yash-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.bulk-card-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--yash-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.sidebar-bulk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: var(--yash-gold);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  margin-top: 18px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(143, 109, 40, 0.2);
}

.sidebar-bulk-btn:hover {
  background-color: var(--yash-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(143, 109, 40, 0.3);
  color: #ffffff !important;
}

.sidebar-bulk-btn i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.sidebar-bulk-btn:hover i {
  transform: translateX(4px);
}

/* Benefits Check List & Detail Sections */
.benefits-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  padding-left: 0;
}

.benefits-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--yash-body-text);
  line-height: 1.65;
}

.benefits-check-list li i {
  color: var(--yash-gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.benefits-main-img {
  width: 100%;
  max-width: 440px;
  height: 290px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .border-start-lg {
    border-left: 1px solid var(--yash-border) !important;
  }
}

/* ==========================================================================
   Header Products Mega Menu (3 Columns: Sesame Seeds, Whole Spices, Pulses)
   ========================================================================== */
.vl-main-menu-5 ul > li.products-has-dropdown {
  position: relative;
}

.vl-main-menu-5 ul > li .sub-menu.products-mega-menu {
  width: 720px !important;
  left: -80px !important;
  padding: 24px 18px !important;
  background: #ffffff !important;
  border-radius: 10px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid rgba(202, 160, 62, 0.22) !important;
  display: flex !important;
  text-align: left !important;
  z-index: 9999;
}

.products-mega-menu .products-menu-col {
  padding: 0 10px;
}

.products-mega-menu .products-menu-heading {
  font-family: var(--font-serif, "Cinzel", serif) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--yash-gold, #caa03e) !important;
  padding: 0 10px 10px 10px !important;
  margin-bottom: 10px !important;
  border-bottom: 2px solid #f2e9db !important;
  text-align: left !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.products-mega-menu li {
  margin: 0 !important;
  display: block !important;
}

.products-mega-menu li a {
  padding: 7px 10px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #333333 !important;
  transition: all 0.2s ease !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  display: block !important;
  text-align: left !important;
}

.products-mega-menu li a:hover {
  color: var(--yash-gold, #caa03e) !important;
  background-color: #faf6ef !important;
  transform: translateX(4px);
}

/* ==========================================================================
   GOOGLE TRANSLATE WIDGET
   ========================================================================== */
.footer-translate-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid #dcd7cc;
  border-radius: 6px;
  padding: 3px 10px 3px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease-in-out;
  vertical-align: middle;
}

.footer-translate-box:hover {
  border-color: #2b5138;
  box-shadow: 0 2px 8px rgba(43, 81, 56, 0.12);
}

@media (max-width: 991.98px) {
  .footer-translate-box {
    margin: 6px auto !important;
  }
}

.footer-translate-icon {
  color: #2b5138;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

/* Hide default Google branding and text */
.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.goog-logo-link,
.goog-te-gadget .goog-logo-link {
  display: none !important;
}

.goog-te-gadget span {
  display: none !important;
}

/* Language dropdown styling */
.goog-te-gadget .goog-te-combo {
  color: #2b2b2b !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 5px 8px !important;
  border: none !important;
  border-radius: 4px !important;
  background-color: transparent !important;
  outline: none !important;
  cursor: pointer !important;
  margin: 0 !important;
  vertical-align: middle !important;
}

.goog-te-gadget .goog-te-combo:hover,
.goog-te-gadget .goog-te-combo:focus {
  color: #2b5138 !important;
  outline: none !important;
}

/* Hide Google top banner bar */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
.VIpgJd-ZVi9C-OR9Sk-sLqlda {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
  position: static !important;
}

/* Hide Google translation tooltip & highlight */
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}