/* ==========================================================================
   Gugan Global Venture - B2B Spice Exporter Stylesheet
   Exact Figma Export Specification Grounded Design System
   ========================================================================== */

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

:root {
  /* Exact Figma Brand Color Tokens */
  --color-primary-yellow: #F5C60E;
  --color-yellow-hover: #E5B600;
  --color-brand-red: #C22E1A;
  --color-brand-red-dark: #A82414;
  --color-text-dark: #222222;
  --color-text-body: #222222;
  --color-text-muted: #808080;
  --color-text-subtle: #4D4D4D;
  --color-accent-brown: #996600;
  --color-accent-orange: #CC7333;
  --color-bg-warm: #FCF8F1;
  --color-bg-white: #FFFFFF;
  --color-border-light: #E6E6E6;
  --color-border-subtle: #E0E0E0;
  --color-success-bg: #EBFAED;
  --color-success-green: #38A76E;
  --color-footer-text: #4D3300;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Alexandria', 'Inter', sans-serif;

  /* Layout Spacing & Radius */
  --max-width-container: 100%;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 20px;

  /* Transitions & Shadows */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0px 4px 4px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0px 8px 20px rgba(0, 0, 0, 0.15);
  --shadow-modal: 0px 20px 40px rgba(0, 0, 0, 0.25);
}

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

html, body {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--color-bg-white) !important;
  color: var(--color-text-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch !important;
}

/* Application Page Preloader Overlay */
.app-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #111111;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.app-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.preloader-logo {
  width: 140px;
  height: auto;
  animation: logoPulse 1.8s infinite ease-in-out;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

.preloader-spinner-ring {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--color-brand-red, #C22E1A);
  border-radius: 50%;
  animation: preloaderSpin 0.8s linear infinite;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* App Canvas Wrapper - 100% Full Screen Width */
.app-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--color-bg-white);
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-fast);
}

/* ==========================================================================
/* ==========================================================================
   Fixed Header Assembly (Top Bar + Main Navbar)
   ========================================================================== */
.header-fixed-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.top-bar {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 40px;
  height: auto;
  background-color: var(--color-primary-yellow, #F5C029);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4%;
  font-size: 13px;
  font-weight: 500;
  color: #141414;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #141414;
  text-decoration: none;
}

.top-bar-mobile-extra {
  display: none;
}

.top-bar-item i {
  font-size: 14px;
  opacity: 0.8;
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid rgba(20, 20, 20, 0.2);
}

.top-bar-social-link {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.1);
  color: #141414;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.top-bar-social-link:hover {
  background: #141414;
  color: var(--color-primary-yellow, #F5C029);
  transform: translateY(-1px);
}

/* ==========================================================================
   Navigation Bar (Header, Height: 72px)
   ========================================================================== */
.navbar {
  width: 100%;
  height: 72px;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-wordmark {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand-wordmark {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(0.15);
  display: block !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  position: relative;
}

.nav-link-item {
  position: relative;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #222222;
  padding: 24px 0;
  display: inline-block;
  position: relative;
}

.nav-link:hover {
  color: var(--color-brand-red);
}

.nav-link.active {
  color: var(--color-brand-red);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-brand-red);
  border-radius: 3px 3px 0 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-cta-quote {
  padding: 0 20px;
  height: 40px;
  background-color: var(--color-primary-yellow, #F5C029);
  color: #111111;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(245, 192, 41, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-cta-quote:hover {
  background-color: #E5AF1B;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(245, 192, 41, 0.5);
}

/* ==========================================================================
   Filter Bar (Products View Header)
   ========================================================================== */
.filter-bar {
  width: 100%;
  height: 59px;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  padding: 0 4%;
  gap: 12px;
  overflow-x: auto;
  position: sticky;
  top: 116px;
  z-index: 90;
}

.filter-pill {
  padding: 8px 20px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dark);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover {
  border-color: var(--color-text-dark);
}

.filter-pill.active {
  background: var(--color-text-dark);
  color: var(--color-bg-white);
  border-color: var(--color-text-dark);
}

/* ==========================================================================
   Page View Switcher & Containers (Silky Smooth Transitions)
   ========================================================================== */
.page-view {
  display: none;
  width: 100%;
  padding-top: 112px;
  opacity: 0;
  transform: translateY(16px) scale(0.995);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.page-view.active-view {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Scroll Reveal Micro-Animations */
.reveal-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Hero Section (Height: 540px)
   ========================================================================== */
.hero-section {
  width: 100%;
  height: 540px;
  position: relative;
  background-color: #1A1A1A;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 4%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #FFFFFF;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary-yellow);
  margin-bottom: 12px;
}

.hero-h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 77px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero-h1 span.red-text {
  color: var(--color-brand-red);
}

.hero-desc {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 32px;
  max-width: 724px;
}

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

.btn-hero-primary {
  width: 200px;
  height: 52px;
  background: var(--color-primary-yellow);
  color: #222222;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(245, 198, 14, 0.3);
}

.btn-hero-primary:hover {
  background: var(--color-yellow-hover);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  width: 200px;
  height: 52px;
  background: #FFFFFF;
  border: 1.5px solid #4D4D4D;
  color: #222222;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-secondary:hover {
  background: #FAF8F5;
  border-color: var(--color-brand-red);
  color: var(--color-brand-red);
}

.hero-tagline {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  color: #FFFFFF;
}

.inquiry-watermark {
  font-size: 80px;
  font-weight: 900;
  color: rgba(245, 198, 14, 0.25);
  letter-spacing: 4px;
  margin-top: 10px;
}

/* ==========================================================================
   Product Range Section (Height: 1346px in Figma)
   ========================================================================== */
/* ==========================================================================
   Product Range Section (Height: 1346px in Figma)
   ========================================================================== */
.products-section {
  width: 100%;
  padding: 80px 4%;
  background: var(--color-bg-white);
  box-shadow: none;
}

.section-header {
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  color: var(--color-accent-brown);
  margin-bottom: 12px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  color: #222222;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  justify-content: center;
  width: 100%;
}

.product-card {
  width: 100%;
  height: auto;
  min-height: 480px;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(194, 46, 26, 0.16);
  border-color: rgba(194, 46, 26, 0.35);
}

.product-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Floating Card Badge Overlay */
.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 30px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.product-card-badge.red-pill {
  background: linear-gradient(135deg, rgba(194, 46, 26, 0.92) 0%, rgba(140, 20, 10, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card-badge.gold-pill {
  background: linear-gradient(135deg, rgba(212, 155, 0, 0.95) 0%, rgba(158, 110, 0, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card-badge.green-pill {
  background: linear-gradient(135deg, rgba(14, 130, 104, 0.92) 0%, rgba(8, 80, 64, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card-badge.dark-pill {
  background: linear-gradient(135deg, rgba(35, 35, 35, 0.92) 0%, rgba(15, 15, 15, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-info {
  padding: 24px 28px 24px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  background: #FFFFFF;
}

.product-meta-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-brand-red, #C22E1A);
  margin-bottom: 6px;
}

.product-name {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  color: #111111;
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 13.5px;
  line-height: 1.55;
  color: #666666;
  margin-bottom: 16px;
}

.product-spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-spec-chips .chip {
  background: #FAF8F5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #333333;
}

.product-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F0ECE6;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-brand-red, #C22E1A);
  transition: all 0.25s ease;
}

.product-card-action i {
  transition: transform 0.25s ease;
}

.product-card:hover .product-card-action i {
  transform: translateX(6px);
}

/* ==========================================================================
   Why Choose Us Section (Height: 567px in Figma)
   ========================================================================== */
.why-choose-us {
  width: 100%;
  padding: 70px 4%;
  background-color: var(--color-bg-warm, #FAF8F5);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.why-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 16px;
}

.why-content p {
  font-size: 17.5px;
  line-height: 1.72;
  font-weight: 400;
  color: #333333;
  margin-top: 16px;
}

.why-image-box {
  width: 100%;
  max-width: 440px;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
  justify-self: center;
  align-self: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.why-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   About Story Section (About Us Page - 3 Para Image Match & 100% Fullwidth)
   ========================================================================== */
.about-story-section {
  width: 100%;
  padding: 70px 4%;
  background: #FFFFFF;
}

.about-top-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
}

.about-story-paras p {
  font-size: 17.5px;
  line-height: 1.72;
  color: #333333;
  margin-bottom: 18px;
}

.about-story-paras p:last-child {
  margin-bottom: 0;
}

.about-side-image-box {
  width: 100%;
  height: 250px;
  max-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  align-self: center;
  justify-self: center;
}

.about-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-emblem-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 12px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.about-fullwidth-paras {
  width: 100%;
  margin-top: 10px;
}

.about-fullwidth-paras p {
  font-size: 17.5px;
  line-height: 1.72;
  color: #333333;
  margin-bottom: 20px;
  width: 100%;
}

.about-story-chapters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

.about-chapter {
  background: #FCF8F1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 28px 10px;
}

.about-chapter h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 14px;
  color: #222222;
}

.about-chapter p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 16px;
}

.about-tagline-band {
  background: #FCF8F1;
  text-align: center;
  padding: 64px 8% 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-tagline-band .section-subtitle {
  color: #C22E1A;
  margin-bottom: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

.about-tagline-band h2 {
  color: #1A1A1A;
  font-size: 40px;
  line-height: 1.25;
  margin: 0;
  font-weight: 700;
}

.about-tagline-band h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 3px;
  background: #F5C60E;
}

@media (max-width: 992px) {
  .why-choose-us, .about-top-grid, .about-story-chapters {
    grid-template-columns: 1fr;
  }
  .about-tagline-band h2 {
    font-size: 30px;
  }
  .why-image-box, .about-side-image-box {
    max-width: 100%;
  }
}

/* ==========================================================================
   Quality & Certifications Section (Height: 945px in Figma)
   ========================================================================== */
.quality-section {
  width: 100%;
  padding: 78px 4%;
  background: var(--color-bg-white);
}

.quality-section .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  color: #222222;
}

.quality-section p.sub-desc {
  font-size: 16px;
  line-height: 19px;
  color: #808080;
  max-width: 843px;
  margin-top: 16px;
}

.cert-grid-six {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin-top: 36px;
  width: 100%;
}

.cert-card-item {
  width: 100%;
  min-height: 110px;
  height: auto;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.cert-card-item:hover {
  transform: translateY(-5px);
  border-color: #38A76E;
  box-shadow: 0 14px 32px rgba(56, 167, 110, 0.14);
}

.cert-check-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #38A76E 0%, #20824E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(56, 167, 110, 0.3);
}

.cert-details h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: #222222;
  margin-bottom: 4px;
}

.cert-details p {
  font-size: 12px;
  line-height: 15px;
  color: #808080;
}

/* Infinite Auto-Scrolling Accreditation Seals Marquee Bar */
.seals-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-warm, #FCF8F1);
  border: 1px solid #E6E6E6;
  border-radius: 70px;
  padding: 16px 24px;
  position: relative;
  margin-top: 48px;
}

.seals-marquee-wrapper::before,
.seals-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.seals-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #FCF8F1 0%, rgba(252, 248, 241, 0) 100%);
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
}

.seals-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #FCF8F1 0%, rgba(252, 248, 241, 0) 100%);
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
}

.seals-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: sealsMarqueeScroll 48s linear infinite;
  will-change: transform;
}

.seals-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 36px;
  padding-right: 36px;
}

.seals-marquee-wrapper:hover .seals-marquee-track {
  animation-play-state: paused;
}

@keyframes sealsMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.seal-logo-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seal-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.seal-img {
  height: 52px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.seal-img-fieo {
  height: 58px;
  width: 58px;
  max-width: none;
  object-fit: contain;
}

.seal-logo-item span {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text-dark, #222222);
  white-space: nowrap;
}

/* ==========================================================================
   Packaging Section (Height: 306px in Figma)
   ========================================================================== */
.packaging-section {
  width: 100%;
  min-height: 306px;
  height: auto;
  padding: 40px 4%;
  background: #FCF8F1;
  text-align: center;
}

.packaging-section .section-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: #996600;
  line-height: 15px;
  margin-bottom: 6px;
}

.packaging-section .section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #1A1A1A;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
  width: 100%;
}

.packaging-card {
  width: 100%;
  min-height: 140px;
  height: auto;
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F5 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 32px 36px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.packaging-card:hover {
  border-color: var(--color-brand-red);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(194, 46, 26, 0.12);
}

.packaging-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.packaging-badge-icon.red-badge { background: linear-gradient(135deg, #C22E1A 0%, #9E1F0E 100%); box-shadow: 0 4px 14px rgba(194, 46, 26, 0.3); }
.packaging-badge-icon.gold-badge { background: linear-gradient(135deg, #D49B00 0%, #A87800 100%); box-shadow: 0 4px 14px rgba(212, 155, 0, 0.3); }
.packaging-badge-icon.dark-badge { background: linear-gradient(135deg, #2A2A2A 0%, #111111 100%); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); }
.packaging-badge-icon.green-badge { background: linear-gradient(135deg, #0E8268 0%, #085242 100%); box-shadow: 0 4px 14px rgba(14, 130, 104, 0.3); }

.packaging-card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.packaging-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
}

/* ==========================================================================
   Export Process Timeline & Steps
   ========================================================================== */
.timeline-step-bar {
  width: 100%;
  height: 52px;
  background: #111111;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 600;
}

.step-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}

.step-bar-item span {
  width: 22px;
  height: 22px;
  background: var(--color-primary-yellow);
  color: #111111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.process-section {
  padding: 60px 80px;
  background: var(--color-bg-white);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.process-step.reverse {
  grid-template-columns: 1fr 1fr;
}

.step-left-block {
  padding: 20px;
}

.step-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-brand-red);
  margin-bottom: 8px;
}

.step-left-block h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.step-left-block p {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.step-right-darkbox {
  background: #1A1A1A;
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px;
}

.step-right-darkbox h4 {
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}

.step-right-darkbox ul {
  list-style: none;
}

.step-right-darkbox li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-right-darkbox li i {
  color: #38A76E;
}

/* Incoterms Section */
.incoterms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.incoterm-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.incoterm-card h4 {
  font-size: 24px;
  color: var(--color-brand-red);
  margin-bottom: 4px;
}

.incoterm-card .sub-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.incoterm-card p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Product Specification Table Cards & Variety Panel (Products Page View)
   ========================================================================== */
.spec-card-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.spice-block {
  margin-bottom: 56px;
  scroll-margin-top: 145px;
}

.spec-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-product-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

@keyframes focusGlowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 46, 26, 0.5), 0 12px 36px rgba(194, 46, 26, 0.15);
    border-color: var(--color-brand-red);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(194, 46, 26, 0.25), 0 18px 46px rgba(194, 46, 26, 0.25);
    border-color: var(--color-brand-red);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
  }
}

.spec-product-card.section-focus-glow {
  animation: focusGlowPulse 1.8s ease-out forwards;
}

.spec-product-card.reverse {
  direction: ltr;
}

.spec-info-side {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: #FAF8F5;
  overflow: hidden;
}

.spec-info-side.has-panel-photo {
  background:
    linear-gradient(90deg, rgba(250, 248, 245, 0.96) 0%, rgba(250, 248, 245, 0.92) 46%, rgba(250, 248, 245, 0.4) 68%, rgba(250, 248, 245, 0) 84%),
    var(--panel-photo) center center / cover no-repeat;
}

.spec-info-side.has-panel-photo > *:not(.panel-photo-expand) {
  position: relative;
  z-index: 1;
}

.spec-info-side.has-panel-photo .spec-title {
  color: #161616;
}

.spec-info-side.has-panel-photo .spec-origin {
  color: #3a3a3a;
}

.spec-info-side.has-panel-photo .spec-desc {
  color: #1c1c1c;
  font-weight: 500;
  max-width: 36em;
}

.spec-info-side.has-panel-photo > .panel-photo-expand,
.panel-photo-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #161616;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.panel-photo-expand svg {
  width: 16px;
  height: 16px;
  display: block;
}

.panel-photo-expand:hover {
  background: #111111;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.panel-photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(8, 8, 8, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 32px;
}

.panel-photo-viewer[hidden] {
  display: none;
}

.panel-photo-viewer img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.panel-photo-viewer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #FFFFFF;
  color: #161616;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.view-varieties-btn {
  height: 38px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  background: #111111;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  width: fit-content;
  transition: var(--transition-fast);
}

.view-varieties-btn:hover {
  background: var(--color-brand-red);
}

.back-overview-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-brand-red);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.variety-panel {
  display: none;
  margin-top: 24px;
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.variety-panel.open,
.variety-panel:not([hidden]) {
  display: block !important;
}

.variety-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: 12px;
}

.variety-panel-head h3 {
  font-size: 20px;
  font-weight: 700;
}

.variety-panel-head span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.variety-tile {
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 20px 18px;
  background: #FFFFFF;
  text-align: left;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 172px;
  position: relative;
}

.variety-tile:hover {
  border-color: var(--color-brand-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(194, 46, 26, 0.12);
}

.variety-tile.active {
  border-color: var(--color-brand-red);
  background: #FFFDFB;
  box-shadow: 0 0 0 2px rgba(194, 46, 26, 0.22), 0 8px 22px rgba(194, 46, 26, 0.1);
}

.variety-tile.has-photo {
  background:
    linear-gradient(180deg, rgba(18, 6, 4, 0.18) 0%, rgba(18, 6, 4, 0.78) 100%),
    var(--tile-photo) center / cover no-repeat;
  border-color: transparent;
  overflow: hidden;
}

.variety-tile.has-photo h4,
.variety-tile.has-photo p,
.variety-tile.has-photo .metric {
  color: #FFFFFF;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.variety-tile.has-photo .variety-tile-footer {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.variety-tile.has-photo .btn-variety-details {
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-brand-red, #C22E1A);
  border-color: transparent;
}

.variety-tile.has-photo:hover,
.variety-tile.has-photo.active {
  border-color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(194, 46, 26, 0.9), 0 12px 28px rgba(0, 0, 0, 0.22);
}

.variety-tile.has-photo:hover .btn-variety-details,
.variety-tile.has-photo.active .btn-variety-details {
  background: #FFFFFF;
  color: var(--color-brand-red, #C22E1A);
  border-color: transparent;
}

.variety-tile-top {
  flex: 1;
}

.variety-tile h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--color-text-dark);
  line-height: 1.3;
}

.variety-tile p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

.variety-tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.variety-tile .metric {
  margin-top: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-brand-red);
  line-height: 1.2;
}

.btn-variety-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-brand-red, #C22E1A);
  background: rgba(194, 46, 26, 0.05);
  border: 1px solid rgba(194, 46, 26, 0.25);
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
  user-select: none;
}

.btn-variety-details i {
  font-size: 10.5px;
  transition: transform 0.2s ease;
}

.variety-tile:hover .btn-variety-details,
.variety-tile.active .btn-variety-details {
  background: var(--color-brand-red, #C22E1A);
  color: #FFFFFF;
  border-color: var(--color-brand-red, #C22E1A);
}

.variety-tile:hover .btn-variety-details i {
  transform: translateX(3px);
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.spec-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.spec-badge.red-pill { background: var(--color-brand-red); color: #FFF; }
.spec-badge.yellow-pill { background: var(--color-primary-yellow); color: #111; }
.spec-badge.green-pill { background: #116B4D; color: #FFF; }
.spec-badge.outline-pill { border: 1px solid var(--color-text-dark); color: var(--color-text-dark); background: transparent; }

.spec-title {
  font-size: 34px;
  margin-bottom: 4px;
}

.spec-origin {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.spec-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-subtle);
  margin-bottom: 20px;
}

.heat-level-indicator {
  font-size: 13px;
  color: var(--color-text-dark);
}

.uses-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.uses-tag {
  background: #EAEAEA;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.spec-table-side {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.spec-table-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.spec-table-side.red-bg { background: linear-gradient(135deg, #B52614 0%, #7A1206 100%); }
.spec-table-side.brown-bg { background: linear-gradient(135deg, #4F3503 0%, #2B1D00 100%); }
.spec-table-side.dark-bg { background: linear-gradient(135deg, #2A2A2A 0%, #111111 100%); }
.spec-table-side.green-bg { background: linear-gradient(135deg, #0B6B55 0%, #043A2C 100%); }

.spec-table-side h4 {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-table-side h4::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 14px;
  background: var(--color-primary-yellow, #F5C60E);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(245, 198, 14, 0.6);
}

.spec-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  column-gap: 14px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.spec-row:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  justify-self: center;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.spec-label {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.2px;
  text-align: left;
}

.spec-val {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   Mission & Vision Section (About Page View)
   ========================================================================== */
.mission-vision-section {
  width: 100%;
  background: #FCF8F1;
  padding: 28px 80px 76px;
  color: #1A1A1A;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-title {
  color: #1A1A1A;
  font-size: 26px;
  margin-bottom: 14px;
}

.mv-card {
  background: #FFFFFF;
  color: #333333;
  padding: 28px 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 3px solid #C22E1A;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  font-size: 16px;
  line-height: 1.7;
}

.mv-col:last-child .mv-card {
  border-top-color: #E0B000;
}

/* Cert Badges Pill on About Page */
.cert-pill-badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: #FFF;
}
.cert-pill-badge.blue { background: #1B5E20; }
.cert-pill-badge.green { background: #2E7D32; }
.cert-pill-badge.purple { background: #6A1B9A; }
.cert-pill-badge.red { background: #C22E1A; }

/* Core Values Section */
.core-values-section {
  width: 100%;
  background: var(--color-brand-red);
  padding: 80px 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px;
}

.val-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.val-icon.green-sprout { background: #E8F5E9; color: #2E7D32; }
.val-icon.green-check { background: #E8F5E9; color: #2E7D32; }
.val-icon.yellow-bowl { background: #FFF8E1; color: #F57F17; }
.val-icon.red-pin { background: #FFEBEE; color: #C22E1A; }

.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.team-card {
  background: #FCF9F2;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 24px;
}

.team-avatar-initial {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #FFF;
  flex-shrink: 0;
}

.team-avatar-initial.red { background: var(--color-brand-red); }
.team-avatar-initial.yellow { background: var(--color-accent-brown); }

.team-details h4 {
  font-size: 18px;
  margin-bottom: 2px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-brand-red);
  margin-bottom: 12px;
}

.team-details p {
  font-size: 13px;
  color: var(--color-text-subtle);
  line-height: 1.5;
}

/* ==========================================================================
   Contact Page View Components
   ========================================================================== */
.contact-page-section {
  padding: 60px 80px;
  background: var(--color-bg-white);
}

.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.c-info-card {
  background: #FAF8F5;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-icon {
  width: 36px;
  height: 36px;
  background: #FFF8E6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-red);
  font-size: 16px;
}

.c-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
}

.c-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.shipments-include-box {
  background: #FAF8F5;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.shipments-include-box h4 {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.shipments-include-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shipments-include-box li {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shipments-include-box li i.red { color: var(--color-brand-red); }

.inquiry-form-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.form-section-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

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

.btn-send-inquiry {
  width: 100%;
  height: 48px;
  background: var(--color-brand-red);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.btn-send-inquiry:hover {
  background: var(--color-brand-red-dark);
}

.btn-send-inquiry:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

.form-footer-note {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ==========================================================================
   Call To Action (CTA) Section (#C22E1A, Height: 352px in Figma)
   ========================================================================== */
.cta-section {
  width: 100%;
  min-height: 352px;
  height: auto;
  background-color: var(--color-brand-red);
  padding: 40px 4%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.cta-text-group {
  max-width: 620px;
  color: #FFFFFF;
}

.cta-h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 63px;
  color: #222222;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.btn-black-cta {
  width: 268px;
  height: 56px;
  background: #1A1A1A;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-black-cta:hover {
  background: #000000;
}

.cta-contact-card {
  width: 480px;
  max-width: 100%;
  height: auto;
  min-height: 300px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  color: #222222;
}

.cta-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 16px;
  color: #222222;
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.contact-item i {
  color: var(--color-brand-red);
  font-size: 16px;
}

.contact-item.phone {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--color-brand-red);
}

/* ==========================================================================
   Footer (#F5C60E, Height: 347px in Figma)
   ========================================================================== */
.footer {
  width: 100%;
  min-height: 347px;
  height: auto;
  background: var(--color-primary-yellow);
  padding: 48px 4% 24px 4%;
  color: var(--color-footer-text);
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
  width: 100%;
}

.footer-brand-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 16px;
}

.footer-logo-badge {
  width: 162px;
  height: 36px;
  background: #222222;
  color: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
}

.footer-desc {
  font-size: 13px;
  line-height: 16px;
  color: var(--color-footer-text);
}

.footer-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tag {
  background: #222222;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
  line-height: 13px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: var(--color-footer-text);
  margin-bottom: 16px;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu li a {
  font-size: 13px;
  line-height: 16px;
  color: #222222;
  font-weight: 400;
}

.footer-menu li a:hover {
  color: var(--color-brand-red);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #B38C00;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 15px;
  color: var(--color-footer-text);
  font-weight: 400;
}

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

.social-icon {
  width: 39px;
  height: 39px;
  background: #222222;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-brand-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-icon.social-wa:hover,
.social-icon[aria-label="WhatsApp"]:hover {
  background: #25D366;
}

.social-icon.social-li:hover,
.social-icon[aria-label="LinkedIn"]:hover {
  background: #0A66C2;
}

.social-icon.social-ig:hover,
.social-icon[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.social-em:hover,
.social-icon[aria-label="Email"]:hover {
  background: var(--color-brand-red);
}

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

/* ==========================================================================
   Modal Dialogs & Backdrops
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

.modal-card {
  width: 100%;
  max-width: 530px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: 28px 26px 36px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  font-size: 20px;
  color: var(--color-text-muted);
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-brand-red);
}

/* Form Validation Error Styles */
.form-input.is-invalid, 
.form-textarea.is-invalid, 
.form-select.is-invalid {
  border-color: #dc2626 !important;
  background-color: #fff8f8 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.b2b-multiselect.is-invalid .b2b-multiselect-trigger {
  border-color: #dc2626 !important;
  background-color: #fff8f8 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.form-field-error {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #dc2626;
  margin-top: 4px;
  line-height: 1.3;
  animation: formErrorFadeIn 0.2s ease-in-out;
}

@keyframes formErrorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-select optgroup {
  font-weight: 700;
  color: var(--color-brand-red, #C22E1A);
  background: #FAF8F5;
  padding: 6px 0;
}

.form-select option {
  font-weight: 500;
  color: #222222;
  background: #FFFFFF;
  padding: 6px 10px;
}

/* Custom B2B Dynamic Multi-Select Dropdown */
.b2b-multiselect {
  position: relative;
  width: 100%;
  font-family: var(--font-main);
}

.b2b-multiselect-trigger {
  width: 100%;
  min-height: 44px;
  padding: 6px 36px 6px 12px;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.2s ease;
}

.b2b-multiselect-trigger:focus,
.b2b-multiselect.open .b2b-multiselect-trigger {
  outline: none;
  border-color: var(--color-brand-red, #C22E1A);
  box-shadow: 0 0 0 3px rgba(194, 46, 26, 0.12);
}

.b2b-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  width: 100%;
}

.b2b-placeholder {
  color: #888888;
  font-size: 13.5px;
  user-select: none;
}

.b2b-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F4EBE1;
  color: #111111;
  border: 1px solid #E2D5C5;
  border-radius: 16px;
  padding: 3px 10px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.2s ease;
}

.b2b-chip .remove-chip {
  cursor: pointer;
  color: #777777;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: all 0.15s ease;
}

.b2b-chip .remove-chip:hover {
  background: var(--color-brand-red, #C22E1A);
  color: #FFFFFF;
}

.b2b-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666666;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.b2b-multiselect.open .b2b-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.b2b-multiselect.open {
  z-index: 1050;
}

.b2b-multiselect-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.05);
  max-height: 320px;
  overflow: hidden;
  z-index: 1100;
  display: none;
  flex-direction: column;
}

.b2b-multiselect.open .b2b-multiselect-dropdown {
  display: flex;
  animation: dropdownSlide 0.2s ease forwards;
}

.b2b-multiselect.open-upward .b2b-multiselect-dropdown {
  top: auto;
  bottom: calc(100% + 4px);
  box-shadow: 0 -16px 36px -4px rgba(15, 23, 42, 0.25);
}

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

/* Dropdown Search & Tabs Toolbar */
.b2b-dropdown-toolbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.var-tabs-row {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.var-tabs-row::-webkit-scrollbar {
  display: none;
}

.var-tab-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.var-tab-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.var-tab-btn.active {
  background: var(--color-brand-red, #C22E1A);
  color: #ffffff;
  border-color: var(--color-brand-red, #C22E1A);
}

.var-search-wrap {
  position: relative;
  width: 100%;
}

.var-search-wrap i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 12px;
  pointer-events: none;
}

.var-search-input {
  width: 100%;
  padding: 6px 10px 6px 28px;
  font-size: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.var-search-input:focus {
  border-color: var(--color-brand-red, #C22E1A);
}

.b2b-dropdown-items {
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 0;
}

.b2b-dropdown-footer {
  padding: 6px 12px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
}

.btn-clear-varieties {
  background: none;
  border: none;
  color: var(--color-brand-red, #C22E1A);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 4px;
}
.btn-clear-varieties:hover {
  text-decoration: underline;
}

.btn-select-all-varieties {
  background: none;
  border: none;
  color: #0f766e;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.15s ease;
}
.btn-select-all-varieties:hover {
  text-decoration: underline;
  color: #115e59;
}

/* Interlinked Dependent Locked State */
.b2b-multiselect.b2b-locked .b2b-multiselect-trigger {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  cursor: pointer;
  opacity: 0.9;
}

.b2b-locked-placeholder {
  color: #94a3b8 !important;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 5px;
}

.b2b-multiselect.b2b-locked .b2b-arrow {
  color: #94a3b8;
}

/* Category pulse highlight when user clicks variety before selecting product */
.b2b-multiselect.b2b-highlight-pulse .b2b-multiselect-trigger {
  animation: b2bPulsePrompt 1.2s ease;
  border-color: var(--color-brand-red, #C22E1A) !important;
  box-shadow: 0 0 0 4px rgba(194, 46, 26, 0.28) !important;
}

@keyframes b2bPulsePrompt {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(194, 46, 26, 0);
  }
  25% {
    transform: scale(1.02);
    box-shadow: 0 0 0 6px rgba(194, 46, 26, 0.35);
  }
  60% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(194, 46, 26, 0.2);
  }
}

/* Variety Dropdown Locked Notice */
.var-locked-notice {
  padding: 24px 18px;
  text-align: center;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Single Category Selected Variety Header Banner */
.var-single-cat-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdf6ee;
  border: 1px solid #fed7aa;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11.5px;
}

.var-single-cat-title {
  font-weight: 700;
  color: #9a3412;
}

.var-single-cat-count {
  font-size: 11px;
  color: #7c2d12;
  font-weight: 600;
}

.b2b-option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: 13.5px;
  color: #222222;
  cursor: pointer;
  transition: background 0.15s ease;
  user-select: none;
}

.b2b-option-item:hover {
  background: #F8F5EE;
}

.b2b-option-item.selected {
  background: #F3ECE1;
  font-weight: 600;
}

.b2b-option-item input[type="checkbox"] {
  accent-color: var(--color-brand-red, #C22E1A);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.b2b-option-item label {
  cursor: pointer;
  flex: 1;
  font-size: 13.5px;
  margin: 0;
}

.b2b-group-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-brand-red, #C22E1A);
  background: #FAF6EE;
  padding: 6px 14px;
  text-transform: uppercase;
  margin-top: 4px;
}

.btn-submit {
  width: 100%;
  height: 46px;
  background: var(--color-brand-red);
  color: var(--color-bg-white);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background: var(--color-brand-red-dark);
}

.btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: btnSpinnerAnim 0.75s linear infinite;
  vertical-align: middle;
  flex-shrink: 0;
}

@keyframes btnSpinnerAnim {
  to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-text-dark);
  color: var(--color-bg-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.toast-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card {
    width: 100%;
  }
  .cert-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-card-item {
    width: 100%;
  }
  .official-seals-bar {
    width: 100%;
    border-radius: var(--radius-lg);
  }
  .why-choose-us {
    grid-template-columns: 1fr;
    height: auto;
  }
  .why-image-box {
    width: 100%;
  }
  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packaging-card {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-view {
    padding-top: 64px !important;
  }
  .filter-bar {
    top: 64px !important;
  }
  .top-bar {
    display: none;
  }
  .navbar {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .hero-h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .cta-section {
    flex-direction: column;
    height: auto;
    gap: 32px;
  }
  .cta-contact-card {
    width: 100%;
  }
  .packaging-grid, .product-grid, .cert-grid-six, .incoterms-grid {
    grid-template-columns: 1fr;
  }
  .spec-product-card {
    grid-template-columns: 1fr;
  }
  .variety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer {
    height: auto;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .floating-contact-widget {
    bottom: 20px;
    right: 20px;
  }
  .floating-menu {
    width: 290px;
    max-width: calc(100vw - 32px);
  }
  .fab-label {
    display: none;
  }
}

/* ==========================================================================
   Floating Contact Widget (Fixed to Viewport)
   ========================================================================== */
.floating-contact-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: inherit;
}

.floating-fab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111111;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 10px 22px 10px 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-fab-btn:hover {
  background: var(--color-brand-red, #C22E1A);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(194, 46, 26, 0.4);
}

.fab-icon-box {
  width: 42px;
  height: 42px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.floating-contact-widget.active .fab-icon-box {
  background: #C22E1A;
}

.fab-icon-box .close-icon {
  display: none;
}

.floating-contact-widget.active .fab-icon-box .open-icon {
  display: none;
}

.floating-contact-widget.active .fab-icon-box .close-icon {
  display: block;
}

.fab-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.fab-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #25D366;
  border-radius: 50px;
  animation: fabPulse 2s infinite;
  pointer-events: none;
  opacity: 0;
}

@keyframes fabPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.floating-menu {
  width: 320px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  padding: 16px;
  margin-bottom: 14px;
  display: none;
  flex-direction: column;
  gap: 10px;
  transform-origin: bottom right;
  animation: menuPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.floating-contact-widget.active .floating-menu {
  display: flex;
}

@keyframes menuPopIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.floating-menu-header {
  padding: 4px 6px 10px 6px;
  border-bottom: 1px solid #F0ECE6;
}

.floating-menu-title {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

.floating-menu-subtitle {
  font-size: 12px;
  color: #777777;
  margin-top: 2px;
}

.floating-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  background: #FAF8F5;
  border: 1px solid transparent;
  color: #222222;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.floating-menu-item:hover {
  background: #FFFFFF;
  border-color: rgba(194, 46, 26, 0.2);
  transform: translateX(-3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.floating-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.whatsapp-bg { background: #25D366; }
.phone-bg { background: #111111; }
.email-bg { background: #0E8268; }
.quote-bg { background: var(--color-brand-red, #C22E1A); }

.floating-item-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
}

.item-sub {
  font-size: 11.5px;
  color: #666666;
  margin-top: 1px;
}

.arrow-icon {
  font-size: 12px;
  color: #AAAAAA;
  transition: transform 0.2s ease, color 0.2s ease;
}

.floating-menu-item:hover .arrow-icon {
  transform: translateX(3px);
  color: var(--color-brand-red, #C22E1A);
}

@media (max-width: 600px) {
  .variety-grid {
    grid-template-columns: 1fr;
  }
  .spec-info-side, .spec-table-side {
    padding: 24px 20px;
  }
  .spec-title {
    font-size: 26px;
  }
  .cert-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Compliance & Certifications Showcase (About Page)
   ========================================================================== */
.cert-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
  width: 100%;
}

.cert-showcase-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F5 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 30px 34px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cert-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(194, 46, 26, 0.12);
  border-color: rgba(194, 46, 26, 0.35);
}

.cert-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cert-agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cert-agency-badge.blue { background: linear-gradient(135deg, #1B4965 0%, #0B2545 100%); }
.cert-agency-badge.red { background: linear-gradient(135deg, #C22E1A 0%, #9E1F0E 100%); }
.cert-agency-badge.gold { background: linear-gradient(135deg, #D49B00 0%, #A87800 100%); }
.cert-agency-badge.green { background: linear-gradient(135deg, #0E8268 0%, #085242 100%); }
.cert-agency-badge.purple { background: linear-gradient(135deg, #6B2D5C 0%, #4A1A3F 100%); }
.cert-agency-badge.teal { background: linear-gradient(135deg, #0077B6 0%, #023E8A 100%); }

.cert-verified-seal {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #218350;
  background: #EBFAED;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(56, 167, 110, 0.3);
}

.cert-showcase-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1.35;
}

.cert-showcase-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 18px;
}

.cert-card-footer {
  padding-top: 14px;
  border-top: 1px solid #F0ECE6;
  font-size: 12px;
  font-weight: 700;
  color: #777777;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Navbar Dropdown Sub-Navigation
   ========================================================================== */
.nav-link-item.dropdown {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: -6px;
}

.nav-chevron {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.25s ease;
}

.nav-link-item.dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
  padding: 8px 0;
  margin-top: 2px;
  list-style: none;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s; /* 300ms delay so dropdown stays open when moving cursor! */
}

/* Invisible Hover Bridge to eliminate mouse gaps */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 16px;
  background: transparent;
}

.nav-link-item.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s; /* Opens immediately on hover */
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #FAF8F5;
  color: var(--color-brand-red, #C22E1A);
  padding-left: 22px;
}

/* ==========================================================================
   Simplified Compliance Section & Redirect Bar
   ========================================================================== */
.cert-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  width: 100%;
}

.cert-overview-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F5 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.cert-overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-brand-red, #C22E1A);
  box-shadow: 0 12px 30px rgba(194, 46, 26, 0.1);
}

.cert-badge-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.blue-bg { background: linear-gradient(135deg, #1B4965 0%, #0B2545 100%); }
.gold-bg { background: linear-gradient(135deg, #D49B00 0%, #A87800 100%); }
.green-bg { background: linear-gradient(135deg, #0E8268 0%, #085242 100%); }
.purple-bg { background: linear-gradient(135deg, #6B2D5C 0%, #4A1A3F 100%); }

.cert-overview-card h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 6px;
}

.cert-overview-card p {
  font-size: 13px;
  line-height: 1.5;
  color: #666666;
}

.cert-redirect-bar {
  margin-top: 36px;
  text-align: center;
}

.btn-cert-redirect {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111111;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cert-redirect:hover {
  background: var(--color-brand-red, #C22E1A);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(194, 46, 26, 0.35);
}

.btn-cert-redirect i {
  transition: transform 0.25s ease;
}

.btn-cert-redirect:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   Certificates Page View & Ornate Gold Frame Cards
   ========================================================================== */
.cert-hero-section {
  padding: 60px 4% 30px 4%;
  background: #FAF8F5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cert-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-bar {
  font-size: 13px;
  color: #888888;
  margin-bottom: 14px;
}

.breadcrumb-bar a {
  color: #444444;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-bar .sep {
  margin: 0 6px;
  color: #CCCCCC;
}

.breadcrumb-bar .current {
  color: var(--color-brand-red, #C22E1A);
  font-weight: 700;
}

.cert-page-title {
  font-size: 38px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.cert-page-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #666666;
  max-width: 900px;
}

.certificates-grid-section {
  padding: 50px 4% 80px 4%;
  background: #FFFFFF;
}

.cert-frame-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Gold Certificate Card Frame (Matching Reference Image) */
.cert-gold-card {
  background: #F4F1EA;
  border: 1px solid #E2DBCF;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cert-gold-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(184, 134, 11, 0.2);
  border-color: #B8860B;
}

.cert-inner-frame {
  border: 2px solid #C5A059;
  outline: 1px solid #C5A059;
  outline-offset: -6px;
  border-radius: 10px;
  background: #EFECE6;
  padding: 36px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.filigree-top, .filigree-bottom {
  font-size: 13px;
  color: #C5A059;
  letter-spacing: 4px;
  margin: 4px 0;
  opacity: 0.85;
}

.cert-title-text {
  font-size: 24px;
  font-weight: 900;
  color: #B8860B;
  letter-spacing: 1.5px;
  margin: 8px 0 4px 0;
  text-transform: uppercase;
  font-family: inherit;
}

.cert-sub-text {
  font-size: 11px;
  font-weight: 800;
  color: #8B6B23;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.cert-card-caption {
  padding: 16px 6px 4px 6px;
  text-align: left;
}

.cert-card-caption h4 {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 2px;
}

.cert-card-caption p {
  font-size: 12px;
  color: #777777;
}

@media (max-width: 992px) {
  .cert-frame-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cert-frame-grid {
    grid-template-columns: 1fr;
  }
  .cert-overview-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Back to Top Floating Button (Visible after >50% scroll)
   ========================================================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 106px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-brand-red, #C22E1A);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 24px rgba(194, 46, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: #a42312;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(194, 46, 26, 0.45);
}

@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 90px;
    right: 20px;
  }
}

/* Small FAQ Redirect Banner for non-Contact Pages */
.faq-redirect-banner {
  width: 100%;
  max-width: 1100px;
  margin: 36px auto 10px auto;
  padding: 16px 24px;
  background: #FAF8F5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-redirect-banner span {
  font-size: 14.5px;
  font-weight: 600;
  color: #333333;
}

.btn-faq-redirect {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-brand-red, #C22E1A);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(194, 46, 26, 0.2);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-faq-redirect:hover {
  background: #a42312;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(194, 46, 26, 0.35);
}

/* ==========================================================================
   B2B Export FAQ Accordion Section (AEO / SEO / GEO Optimized)
   ========================================================================== */
.faq-section {
  width: 100%;
  padding: 80px 4%;
  background-color: #FAF8F5;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--color-brand-red, #C22E1A);
  box-shadow: 0 8px 24px rgba(194, 46, 26, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-brand-red, #C22E1A);
}

.faq-chevron {
  font-size: 14px;
  color: #888888;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-brand-red, #C22E1A);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
  color: #444444;
  font-size: 15.5px;
  line-height: 1.68;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px 24px;
}

.faq-answer ul {
  margin-top: 10px;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 6px;
}

.btn-text-link {
  background: none;
  border: none;
  color: var(--color-brand-red, #C22E1A);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}

/* ==========================================================================
   Comprehensive Mobile Screen Optimization (@media max-width: 768px & 480px)
   ========================================================================== */

/* Hamburger Button Styling */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 6px;
  margin-left: 10px;
}

.hamburger-btn .close-icon {
  display: none;
}

.hamburger-btn.active .open-icon {
  display: none;
}

.hamburger-btn.active .close-icon {
  display: inline-block;
}

/* Mobile Drawer Overlay & Container */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active {
  transform: translateX(-320px);
}

.mobile-drawer-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #555555;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-item i {
  font-size: 16px;
  color: var(--color-brand-red, #C22E1A);
  width: 20px;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  background: #FAF8F5;
  color: var(--color-brand-red, #C22E1A);
}

.mobile-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-mobile-quote {
  width: 100%;
  height: 48px;
  background: var(--color-brand-red, #C22E1A);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.mobile-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-contact-links a {
  font-size: 13px;
  color: #555555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Breakpoint 768px Mobile Rules */
@media (max-width: 768px) {
  /* Header & Navigation Assembly */
  .top-bar {
    min-height: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
  }
  .top-bar-right {
    display: none !important;
  }
  .top-bar-left {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    width: auto !important;
    gap: 32px !important;
    padding-left: 100% !important;
    animation: topBarMarquee 15s linear infinite !important;
    will-change: transform;
  }
  .top-bar:hover .top-bar-left,
  .top-bar:active .top-bar-left {
    animation-play-state: paused !important;
  }
  .top-bar-mobile-extra {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .navbar {
    height: 60px !important;
    padding: 0 4% !important;
  }
  .hamburger-btn {
    display: inline-flex;
  }
  .nav-links {
    display: none;
  }
  .brand-logo {
    height: 34px !important;
  }
  .brand-wordmark {
    height: 26px !important;
    max-width: 130px !important;
  }
  .brand-title {
    font-size: 16px !important;
  }
  .brand-subtitle {
    font-size: 9.5px !important;
  }
  .btn-cta-quote {
    height: 34px !important;
    padding: 0 14px !important;
    font-size: 11.5px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  /* Page View Containers (Header height: 34px top-bar + 60px navbar = 94px) */
  .page-view {
    padding-top: 94px !important;
  }
  .filter-bar {
    top: 94px !important;
  }

@keyframes topBarMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

  /* Hero Section Typography & Buttons */
  .hero-section {
    min-height: 360px !important;
    padding: 28px 5% 36px 5% !important;
    margin-top: 0 !important;
    background-position: center !important;
  }
  .hero-h1 {
    font-size: 26px !important;
    line-height: 34px !important;
    margin-bottom: 12px !important;
  }
  .hero-h1 span {
    font-size: 22px !important;
  }
  .hero-desc {
    font-size: 13.5px !important;
    line-height: 20px !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }
  .hero-btn-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100% !important;
    justify-content: center !important;
    height: 48px !important;
    font-size: 14px !important;
  }

  /* Section Titles & Headers */
  .section-header {
    margin-bottom: 24px !important;
  }
  .section-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .section-subtitle {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 8px !important;
  }
  .cta-h2 {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  /* ==========================================
     EXCLUSIVE: EXPORT PROCESS PAGE OPTIMIZATION
     ========================================== */
  .timeline-step-bar {
    display: flex !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    padding: 0 16px !important;
    gap: 16px !important;
    height: 48px !important;
    -webkit-overflow-scrolling: touch;
  }
  .step-bar-item {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 11.5px !important;
  }
  .process-section {
    padding: 32px 5% !important;
  }
  .process-timeline {
    gap: 28px !important;
    margin-top: 10px !important;
  }
  .process-step {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .process-step.reverse {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 16px !important;
  }
  .step-left-block {
    padding: 0 !important;
  }
  .step-num {
    font-size: 28px !important;
    margin-bottom: 4px !important;
  }
  .step-left-block h3 {
    font-size: 20px !important;
    line-height: 26px !important;
    margin-bottom: 8px !important;
  }
  .step-left-block p {
    font-size: 13.5px !important;
    line-height: 20px !important;
  }
  .step-right-darkbox {
    padding: 20px 16px !important;
    border-radius: 12px !important;
  }
  .step-right-darkbox h4 {
    font-size: 11px !important;
    margin-bottom: 12px !important;
  }
  .step-right-darkbox li {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  .incoterms-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .incoterm-card {
    padding: 18px 16px !important;
    border-radius: 12px !important;
  }

  /* ==========================================
     EXCLUSIVE: ABOUT US PAGE OPTIMIZATION
     ========================================== */
  .about-story-section {
    padding: 32px 5% !important;
  }
  .about-top-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 16px !important;
  }
  .about-story-paras p, .about-fullwidth-paras p, .about-chapter p {
    font-size: 14px !important;
    line-height: 21px !important;
    margin-bottom: 14px !important;
  }
  .about-story-chapters {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 18px !important;
  }
  .about-chapter {
    padding: 18px 16px 6px !important;
  }
  .about-chapter h3 {
    font-size: 18px !important;
  }
  .about-tagline-band {
    padding: 36px 6% 8px !important;
  }
  .about-tagline-band h2 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }
  .about-side-image-box {
    width: 100% !important;
    height: 220px !important;
    border-radius: 14px !important;
    margin-top: 10px !important;
  }
  .about-emblem-badge {
    font-size: 10px !important;
    padding: 6px 10px !important;
    bottom: 10px !important;
    left: 10px !important;
  }
  .mission-vision-section {
    padding: 12px 5% 36px !important;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .mv-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
  .mv-card {
    padding: 18px 16px !important;
    font-size: 13.5px !important;
    line-height: 21px !important;
    border-radius: 12px !important;
  }
  .core-values-section {
    padding: 36px 5% !important;
  }
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .value-card {
    padding: 18px 16px !important;
    border-radius: 12px !important;
  }
  .cert-overview-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .cert-overview-card {
    padding: 18px 16px !important;
    border-radius: 12px !important;
  }
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .team-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 18px 16px !important;
    border-radius: 14px !important;
    text-align: left !important;
  }
  .team-avatar-initial {
    width: 46px !important;
    height: 46px !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
  }
  .team-details h4 {
    font-size: 17px !important;
  }
  .team-details p {
    font-size: 13px !important;
    line-height: 19px !important;
  }

  /* ==========================================
     EXCLUSIVE: CONTACT PAGE OPTIMIZATION
     ========================================== */
  .contact-page-section {
    padding: 32px 5% !important;
  }
  .contact-two-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }
  .contact-details-side, .contact-form-side {
    width: 100% !important;
  }
  .contact-info-cards {
    gap: 12px !important;
  }
  .c-info-card {
    padding: 16px 14px !important;
    border-radius: 12px !important;
    gap: 14px !important;
  }
  .c-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
  }
  .c-label {
    font-size: 10.5px !important;
    margin-bottom: 2px !important;
  }
  .c-val {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }
  .shipments-include-box {
    padding: 18px 16px !important;
    border-radius: 12px !important;
    margin-top: 20px !important;
  }
  .shipments-include-box h4 {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }
  .shipments-include-box li {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  .inquiry-form-card {
    padding: 22px 16px !important;
    border-radius: 14px !important;
  }
  .form-title {
    font-size: 20px !important;
    margin-bottom: 14px !important;
  }
  .form-row-2, .form-row-3 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .form-group label {
    font-size: 12.5px !important;
    margin-bottom: 6px !important;
  }
  .form-input, .form-select, .form-textarea {
    font-size: 16px !important; /* Prevents unwanted iOS Safari viewport auto-zoom */
    height: 48px !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    -webkit-appearance: none;
  }
  .form-textarea {
    height: 110px !important;
  }
  .btn-submit {
    height: 52px !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    touch-action: manipulation;
  }

  /* Grid Conversions & General Cards */
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .product-card {
    border-radius: 14px !important;
  }
  .product-img-wrapper {
    height: 220px !important;
  }
  .product-info {
    padding: 20px !important;
  }
  .spec-product-card {
    grid-template-columns: 1fr !important;
    border-radius: 14px !important;
  }
  .spec-info-side, .spec-table-side {
    padding: 22px 18px !important;
  }
  .spec-info-side.has-panel-photo {
    min-height: 300px;
    padding: 44px 18px 24px !important;
    background:
      linear-gradient(180deg, rgba(250, 248, 245, 0.88) 0%, rgba(250, 248, 245, 0.72) 38%, rgba(250, 248, 245, 0.22) 74%, rgba(250, 248, 245, 0.02) 100%),
      var(--panel-photo) center center / cover no-repeat !important;
  }
  .spec-info-side.has-panel-photo .badge-row {
    margin-bottom: 8px !important;
  }
  .spec-info-side.has-panel-photo .meta-note {
    color: #3b1d11 !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
  }
  .spec-info-side.has-panel-photo .spec-title {
    font-size: 27px !important;
    font-weight: 800 !important;
    color: #0d0d0d !important;
    line-height: 1.2 !important;
    padding-right: 44px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95), 0 0 12px rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 4px !important;
  }
  .spec-info-side.has-panel-photo .spec-origin {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #2b231c !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 10px !important;
  }
  .spec-info-side.has-panel-photo .spec-desc {
    max-width: none;
    font-size: 14px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    color: #161616 !important;
    background: rgba(255, 255, 255, 0.68) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 10px 14px !important;
    border-radius: 9px !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 14px !important;
  }
  .spec-info-side.has-panel-photo .view-varieties-btn {
    margin-top: 6px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  }
  .spec-info-side.has-panel-photo .back-overview-btn {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: var(--color-brand-red) !important;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 5px 12px !important;
    border-radius: 6px !important;
    display: inline-flex;
    margin-bottom: 10px !important;
    width: fit-content !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important;
  }
  .spec-info-side.has-panel-photo .back-overview-btn[hidden],
  .spec-info-side.has-panel-photo .back-overview-btn[style*="display:none"],
  .spec-info-side.has-panel-photo .back-overview-btn[style*="display: none"] {
    display: none !important;
  }
  .spec-info-side.has-panel-photo p[style*="Forms Available"] {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 7px 12px !important;
    border-radius: 7px !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    margin-top: 8px !important;
    margin-bottom: 12px !important;
  }
  .spec-info-side.has-panel-photo > .panel-photo-expand,
  .panel-photo-expand {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
  .panel-photo-viewer {
    padding: 72px 14px 24px;
  }
  .panel-photo-viewer img {
    max-width: 100%;
    max-height: 74vh;
    border-radius: 10px;
  }
  .panel-photo-viewer-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
  .spec-row {
    font-size: 13px !important;
    padding: 8px 0 !important;
  }
  .variety-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .variety-tile {
    padding: 18px 16px 15px !important;
    min-height: auto !important;
    border-radius: 12px !important;
    text-align: left !important;
    -webkit-tap-highlight-color: transparent;
  }
  .variety-tile.has-photo {
    min-height: 168px !important;
    background:
      linear-gradient(180deg, rgba(18, 6, 4, 0.25) 0%, rgba(18, 6, 4, 0.78) 100%),
      var(--tile-photo) center / cover no-repeat !important;
  }
  .variety-tile:active {
    transform: scale(0.985) !important;
    border-color: var(--color-brand-red) !important;
  }
  .variety-tile h4 {
    font-size: 15.5px !important;
    margin-bottom: 5px !important;
  }
  .variety-tile p {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }
  .variety-tile-footer {
    margin-top: 14px !important;
    padding-top: 11px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .variety-tile .metric {
    font-size: 12px !important;
    font-weight: 700 !important;
  }
  .btn-variety-details {
    padding: 7px 13px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    touch-action: manipulation;
  }
  .variety-tile:active .btn-variety-details {
    background: var(--color-brand-red, #C22E1A) !important;
    color: #FFFFFF !important;
  }

  /* Mobile Optimization for B2B Dual Multi-Select */
  .b2b-multiselect-trigger {
    min-height: 48px !important;
    padding: 8px 36px 8px 12px !important;
    -webkit-tap-highlight-color: transparent;
  }
  .b2b-multiselect-dropdown {
    max-height: 280px !important;
    border-radius: 12px !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.28) !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .b2b-dropdown-toolbar {
    padding: 8px !important;
    gap: 6px !important;
  }
  .var-tabs-row {
    padding-bottom: 4px !important;
    gap: 6px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .var-tab-btn {
    padding: 6px 12px !important;
    font-size: 11.5px !important;
    min-height: 30px !important;
    touch-action: manipulation;
  }
  .var-single-cat-banner {
    padding: 7px 10px !important;
    font-size: 11.5px !important;
  }
  .var-search-wrap i {
    font-size: 13px !important;
    left: 10px !important;
  }
  .var-search-input {
    font-size: 16px !important; /* Critical: Stops iOS Safari auto-zoom */
    height: 42px !important;
    padding: 8px 10px 8px 32px !important;
    border-radius: 8px !important;
  }
  .b2b-dropdown-items {
    max-height: 150px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .b2b-option-item {
    padding: 10px 14px !important;
    min-height: 42px !important;
    font-size: 13px !important;
    -webkit-tap-highlight-color: transparent;
  }
  .b2b-option-item input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
  }
  .b2b-dropdown-footer {
    padding: 8px 12px !important;
    font-size: 11.5px !important;
  }
  .btn-select-all-varieties,
  .btn-clear-varieties {
    font-size: 12px !important;
    padding: 4px 6px !important;
    touch-action: manipulation;
  }
  .cert-grid-six, .packaging-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Footer Brand & Logos */
  .footer-brand-wordmark {
    height: 48px !important;
  }

  /* Infinite Accreditation Seals Marquee on Mobile */
  .seals-marquee-wrapper {
    border-radius: 36px !important;
    padding: 10px 14px !important;
    margin-top: 24px !important;
  }
  .seals-marquee-wrapper::before,
  .seals-marquee-wrapper::after {
    width: 40px !important;
  }
  .seals-marquee-track {
    animation-duration: 36s !important;
  }
  .seals-marquee-group {
    gap: 16px !important;
    padding-right: 16px !important;
  }
  .seal-logo-item {
    padding: 6px 14px !important;
    gap: 10px !important;
    margin-right: 0 !important;
    border-radius: 20px !important;
  }
  .seal-img {
    height: 38px !important;
    max-width: 55px !important;
  }
  .seal-img-fieo {
    height: 46px !important;
    width: 46px !important;
    max-width: none !important;
  }
  .seal-logo-item span {
    font-size: 11.5px !important;
  }

  /* CTA Section & Banners */
  .cta-section {
    flex-direction: column !important;
    padding: 32px 5% !important;
    align-items: flex-start !important;
  }
  .cta-text-group {
    max-width: 100% !important;
  }
  .cta-contact-card {
    width: 100% !important;
    padding: 24px 20px !important;
  }
  .btn-black-cta {
    width: 100% !important;
    justify-content: center !important;
    height: 50px !important;
  }
  .faq-redirect-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 16px 20px !important;
  }
  .btn-faq-redirect {
    width: 100% !important;
    justify-content: center !important;
    height: 42px !important;
  }

  /* Footer Sizing */
  .footer {
    padding: 40px 5% 24px 5% !important;
  }
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .social-links, .footer-legal-links {
    justify-content: center !important;
  }

  /* Modals */
  .modal-card {
    width: 94% !important;
    max-height: 90vh !important;
    padding: 22px 18px !important;
    overflow-y: auto !important;
  }
  .modal-title {
    font-size: 20px !important;
  }

  /* Floating Contact FAB Widget */
  .floating-contact-widget {
    bottom: 16px !important;
    right: 16px !important;
  }
  .floating-fab-btn {
    width: 54px !important;
    height: 54px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25D366 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45) !important;
  }
  .floating-fab-btn:hover {
    transform: scale(1.05) !important;
  }
  .floating-contact-widget.active .floating-fab-btn,
  .floating-fab-btn.active {
    background: #C22E1A !important;
    box-shadow: 0 8px 24px rgba(194, 46, 26, 0.45) !important;
  }
  .fab-icon-box {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
  }
  .floating-contact-widget.active .fab-icon-box {
    background: transparent !important;
  }
  .fab-label {
    display: none !important;
  }
  .fab-pulse-ring {
    border-radius: 50% !important;
    top: -4px !important;
    left: -4px !important;
    right: -4px !important;
    bottom: -4px !important;
    border: 2px solid #25D366 !important;
  }
  .floating-contact-widget.active .fab-pulse-ring {
    border-color: #C22E1A !important;
  }
  .floating-menu {
    width: 290px !important;
    max-width: calc(100vw - 32px) !important;
    right: 0 !important;
    margin-bottom: 12px !important;
  }
  .back-to-top-btn {
    bottom: 82px !important;
    right: 18px !important;
    width: 44px !important;
    height: 44px !important;
  }
}

/* Breakpoint 480px Small Mobile Phones */
@media (max-width: 480px) {
  .page-view {
    padding-top: 94px !important;
  }
  .filter-bar {
    top: 94px !important;
  }
  .brand-logo {
    height: 32px !important;
  }
  .brand-wordmark {
    height: 24px !important;
    max-width: 110px !important;
  }
  .hero-h1 {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .hero-h1 span,
  .hero-h1 span.red-text,
  .hero-h1 span[style*="font-size"] {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .hero-desc {
    font-size: 13px !important;
    line-height: 19px !important;
  }
  .breadcrumb-bar {
    font-size: 11.5px !important;
  }
  .preloader-logo {
    width: 100px !important;
  }
  .preloader-spinner-ring {
    width: 30px !important;
    height: 30px !important;
  }
  .preloader-text {
    font-size: 11.5px !important;
  }
  .section-title {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .section-subtitle {
    font-size: 16px !important;
  }
  .cta-h2 {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .faq-question {
    font-size: 14.5px !important;
    padding: 15px 16px !important;
  }
  .faq-answer {
    font-size: 13.5px !important;
  }
  .cert-inner-frame {
    padding: 20px 14px !important;
  }
  .cert-title-text {
    font-size: 18px !important;
  }
}

/* ==========================================================================
   Gugan Submission Loading Overlay (Touch Blocker & Animated Brand Loader)
   ========================================================================== */
.submission-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000005;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.submission-loader-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all; /* Completely blocks 100% of unwanted touches & clicks */
}

.submission-loader-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(245, 198, 14, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.9) translateY(15px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submission-loader-overlay.active .submission-loader-card {
  transform: scale(1) translateY(0);
}

.submission-logo-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.submission-loader-logo {
  width: 82px;
  height: auto;
  object-fit: contain;
  animation: guganLogoPulse 1.8s infinite ease-in-out;
  position: relative;
  z-index: 2;
}

@keyframes guganLogoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 8px 16px rgba(194, 46, 26, 0.3)); }
}

.submission-spinner-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3.5px solid rgba(245, 198, 14, 0.2);
  border-top-color: var(--color-brand-red, #C22E1A);
  border-right-color: var(--color-primary-yellow, #F5C60E);
  animation: guganSpinRing 0.9s linear infinite;
  z-index: 1;
}

@keyframes guganSpinRing {
  to { transform: rotate(360deg); }
}

.submission-loader-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin: 0;
}

.submission-loader-sub {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
}

.submission-progress-bar {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}

.submission-progress-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, #F5C60E, #C22E1A, #F5C60E);
  background-size: 200% 100%;
  border-radius: 999px;
  animation: guganProgressFill 1.4s infinite ease-in-out;
}

@keyframes guganProgressFill {
  0% { transform: translateX(-100%); width: 30%; }
  50% { transform: translateX(80%); width: 65%; }
  100% { transform: translateX(250%); width: 30%; }
}

/* Success state inside overlay */
.submission-loader-card.success .submission-spinner-ring {
  border-color: #22c55e;
  animation: none;
}

.submission-loader-card.success .submission-loader-logo {
  animation: none;
  transform: scale(1.05);
}

.submission-loader-card.success .submission-loader-title {
  color: #15803d;
}

.submission-loader-card.success .submission-progress-fill {
  width: 100% !important;
  background: #22c55e !important;
  animation: none !important;
  transform: none !important;
}

/* ==========================================================================
   Enterprise Thank You Confirmation Modal Card
   ========================================================================== */
.thankyou-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
}

.thankyou-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ==========================================================================
   Simple, Elegant & Professional Thank You Confirmation Card
   ========================================================================== */
.thankyou-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.thankyou-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.thankyou-modal-card {
  background: #ffffff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 94vh;
  overflow-y: auto;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.thankyou-modal-overlay.active .thankyou-modal-card {
  transform: scale(1) translateY(0);
}

/* Subtle Top Accent Line */
.thankyou-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F5C60E, #C22E1A);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* Minimalist Close Button */
.thankyou-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.thankyou-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Refined Header */
.thankyou-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thankyou-emblem {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #16a34a;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.thankyou-kicker {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-brand-red, #C22E1A);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.thankyou-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.thankyou-sub {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  max-width: 420px;
}

/* Subtle Reference & SLA Ribbon */
.thankyou-ref-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 16px;
  gap: 12px;
}

.thankyou-ref-ribbon .ribbon-divider {
  width: 1px;
  height: 24px;
  background: #e2e8f0;
}

.thankyou-ref-ribbon .ribbon-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thankyou-ref-ribbon .ribbon-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.6px;
}

.thankyou-ref-ribbon .ribbon-val {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Clean Specification Summary Card */
.thankyou-summary-card {
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}

.summary-row.full-span {
  flex-direction: column;
  gap: 4px;
  padding-top: 6px;
  border-top: 1px dashed #e2e8f0;
}

.row-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #78716c;
  flex-shrink: 0;
}

.row-value {
  font-size: 13px;
  font-weight: 600;
  color: #1c1917;
  text-align: right;
  word-break: break-word;
}

.summary-row.full-span .row-value {
  text-align: left;
}

.row-value.spice-highlight {
  color: #996600;
  line-height: 1.4;
  font-size: 12.5px;
}

/* Professional Action Row */
.thankyou-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.btn-thankyou-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #16a34a;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.2);
}

.btn-thankyou-wa:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
}

.btn-thankyou-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #334155;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-thankyou-return:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Understated Trust Hallmark */
.thankyou-hallmark {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
}

@media (max-width: 540px) {
  .thankyou-modal-overlay {
    padding: 16px 12px !important;
  }
  .thankyou-modal-card {
    width: 100% !important;
    max-width: 440px !important;
    max-height: 92vh !important;
    padding: 26px 18px 20px !important;
    border-radius: 14px !important;
    gap: 14px !important;
    -webkit-overflow-scrolling: touch;
  }
  .thankyou-emblem {
    width: 46px !important;
    height: 46px !important;
    font-size: 19px !important;
    margin-bottom: 8px !important;
  }
  .thankyou-kicker {
    font-size: 9.5px !important;
    letter-spacing: 1px !important;
  }
  .thankyou-title {
    font-size: 19px !important;
    margin-bottom: 4px !important;
  }
  .thankyou-sub {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }
  .thankyou-ref-ribbon {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 7px !important;
    padding: 9px 12px !important;
    border-radius: 8px !important;
  }
  .thankyou-ref-ribbon .ribbon-divider {
    display: none !important;
  }
  .thankyou-ref-ribbon .ribbon-label {
    font-size: 9px !important;
  }
  .thankyou-ref-ribbon .ribbon-val {
    font-size: 12.5px !important;
  }
  .thankyou-summary-card {
    padding: 12px 14px !important;
    border-radius: 10px !important;
    gap: 8px !important;
  }
  .summary-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
  }
  .row-label {
    font-size: 11px !important;
  }
  .row-value {
    text-align: left !important;
    font-size: 12.5px !important;
  }
  .thankyou-actions {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .btn-thankyou-wa {
    padding: 13px 16px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    justify-content: center !important;
    touch-action: manipulation;
  }
  .btn-thankyou-return {
    padding: 11px 16px !important;
    font-size: 13.5px !important;
    border-radius: 8px !important;
    justify-content: center !important;
    touch-action: manipulation;
  }
  .thankyou-hallmark {
    font-size: 10px !important;
    line-height: 1.35 !important;
    padding: 0 6px !important;
  }

  /* Submission Loader Mobile Optimization */
  .submission-loader-card {
    padding: 28px 20px !important;
    max-width: 90% !important;
    border-radius: 16px !important;
    gap: 12px !important;
  }
  .submission-logo-wrapper {
    width: 90px !important;
    height: 90px !important;
  }
  .submission-loader-logo {
    width: 62px !important;
  }
  .submission-loader-title {
    font-size: 17px !important;
  }
  .submission-loader-sub {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }
}

/* Extra Small Mobile Screens (≤ 380px like iPhone SE) */
@media (max-width: 380px) {
  .variety-tile-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  .btn-variety-details {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .modal-card {
    padding: 18px 14px !important;
  }
}
