/*
Theme Name: SOVC Theme
Theme URI: https://sovc-eg.com
Description: Custom WordPress theme for Sword of Victory Chemicals (SOVC) based on exact Figma specs.
Version: 1.0.0
Author: DeepMind Antigravity
Text Domain: sovc-theme
*/

:root {
  --sovc-red: #AA161E;
  --sovc-red-hover: #8C0F15;
  --sovc-red-light: #FDF2F3;
  --sovc-dark: #161616;
  --sovc-dark-bg: #141414;
  --sovc-footer-bg: #141414;
  --sovc-bg-light: #F5F5F5;
  --sovc-card-bg: #FAFAFA;
  --sovc-text-main: #161616;
  --sovc-text-muted: #6B6B6B;
  --sovc-text-sub: #747474;
  --sovc-border: #F0F0F0;
  --sovc-border-card: #E5E5E5;
  --sovc-font-heading: 'Alexandria', sans-serif;
  --sovc-font-body: 'Inter', sans-serif;
  --sovc-radius-lg: 20px;
  --sovc-radius-md: 10px;
  --sovc-radius-sm: 8px;
  --sovc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--sovc-font-body);
  color: var(--sovc-text-main);
  background-color: #FFFFFF;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  color: var(--sovc-text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  height: 38px;
  border-radius: var(--sovc-radius-md);
  font-family: var(--sovc-font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
  transition: var(--sovc-transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--sovc-red);
  color: #FFFFFF;
  border: 1px solid var(--sovc-red);
  border-radius: 10px;
}

.btn-primary:hover {
  background-color: var(--sovc-red-hover);
  border-color: var(--sovc-red-hover);
  transform: translateY(-1px);
}

.btn-cart {
  background: #F0F0F0;
  color: var(--sovc-red);
  border-radius: 10px;
  padding: 0 12px;
  height: 38px;
  font-weight: 500;
}

.btn-cart:hover {
  background-color: #E2E2E2;
}

.btn-outline {
  background-color: #FFFFFF;
  color: var(--sovc-red);
  border-color: var(--sovc-border-card);
  height: 40px;
  padding: 0 16px;
}

.btn-outline:hover {
  border-color: var(--sovc-red);
  background-color: var(--sovc-red-light);
}

.btn-secondary {
  background-color: #F0F0F0;
  color: var(--sovc-red);
}

.btn-secondary:hover {
  background-color: #E2E2E2;
}

.btn-icon-right svg {
  transition: transform 0.2s ease;
}

.btn-icon-right:hover svg {
  transform: translateX(3px);
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  transition: var(--sovc-transition);
}

.header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 48px;
  gap: 24px;
  min-height: 58px;
  background: #FFFFFF;
  border-radius: 10px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Intro Section */
.intro-section {
  padding: 80px 0;
  text-align: center;
}

.intro-text-lines {
  max-width: 1148px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.intro-line {
  font-family: var(--sovc-font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  text-transform: capitalize;
  color: #B8B8B8;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 2px 0;
}

.intro-line:hover {
  color: #AC161D;
}

.site-logo img {
  width: 85.3px;
  height: 44px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 12px;
}

.main-nav a {
  font-family: var(--sovc-font-heading);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #141414;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--sovc-transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--sovc-red);
  background-color: var(--sovc-red-light);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.caret-icon {
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.nav-dropdown:hover .caret-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #FFFFFF;
  border-radius: var(--sovc-radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--sovc-border);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-menu a {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sovc-text-main);
  border-radius: 0;
  display: block;
  width: 100%;
}

.dropdown-menu a:hover {
  color: var(--sovc-red);
  background-color: var(--sovc-red-light);
}

.header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
}


.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--sovc-dark);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}

.mobile-toggle:hover {
  background-color: var(--sovc-bg-light);
}



.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--sovc-bg-light);
  border-radius: var(--sovc-radius-md);
  color: var(--sovc-red);
  font-weight: 500;
  font-size: 14px;
}

/* Hero Carousel Section */
.hero-carousel-container {
  position: relative;
  background: #AC161D url('assets/images/hero%20section.svg') center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(172, 22, 29, 0.08);
  min-height: 520px;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 64px 68px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  z-index: 1;
}

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

.hero-slide-content {
  max-width: 680px;
  z-index: 2;
}

.hero-slide-title {
  font-family: var(--sovc-font-heading);
  font-weight: 900;
  font-size: 54px;
  line-height: 1.06;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-transform: capitalize;
  text-shadow: none;
}

.hero-slide-desc {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 640px;
  text-shadow: none;
}

.btn-hero {
  background-color: #F0F0F0;
  color: var(--sovc-red);
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-weight: 500;
  border: none;
  box-shadow: none;
}

.btn-hero:hover {
  background-color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: none;
}

.hero-slide-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  max-height: 460px;
  z-index: 2;
}

.hero-slide-media img {
  max-height: 440px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  box-shadow: none !important;
}

/* Slide 1 Specific Image Layout - Anchored to Bottom, Shifted Right & Reduced Width */
.hero-slide-1 .hero-slide-content {
  max-width: 620px;
  position: relative;
  z-index: 3;
}

.hero-slide-1 .hero-slide-media {
  position: absolute;
  right: -30px;
  bottom: 0;
  top: 2px;
  width: 52%;
  max-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 2;
  pointer-events: none;
}

.hero-slide-1 .hero-slide-media img {
  max-height: 480px;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  filter: none !important;
}



/* Dots Pagination Under Slider - Exact Figma Spec (Frame 123) */
.hero-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 16px auto 40px;
  z-index: 10;
}

.hero-carousel-dots .dot {
  display: block;
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel-dots .dot.active {
  width: 28px;
  background: #AA161E;
}




/* Intro Section */
.intro-section {
  padding: 80px 20px;
  text-align: center;
}

.intro-text-lines {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.intro-line {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  color: #C5C5C5;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  transition: color 0.3s ease;
  cursor: default;
}

.intro-line:hover {
  color: #AA161E;
}




/* Feature Grid Section */
.features-section {
  background-color: var(--sovc-bg-light);
  border-radius: var(--sovc-radius-lg);
  padding: 80px 48px;
  margin: 40px auto;
}

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

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 600px;
  text-transform: capitalize;
}

.section-title span.highlight {
  color: var(--sovc-red);
}

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

.feature-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(172, 22, 29, 0.12);
}

.feature-card-img {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #F0F0F0;
  border-radius: 16px;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}


.feature-card:hover .feature-card-img img {
  transform: scale(1.05);
}

.feature-icon-badge {
  width: 44px;
  height: 44px;
  background-color: #AC161D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon-badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-card-body {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #FFFFFF;
  flex: 1;
  transition: background-color 0.3s ease;
}

.feature-card-title {
  font-family: var(--sovc-font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #161616;
  margin: 0;
  transition: color 0.3s ease;
}

.feature-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #AC161D;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Hover State - Exact Figma Match (Red Bottom Box + White Rounded Arrow Button) */
.feature-card:hover .feature-card-body {
  background-color: #AC161D;
}

.feature-card:hover {
  background-color: #AC161D;
}

.feature-card:hover .feature-card-title {
  color: #FFFFFF;
}

.feature-card:hover .feature-card-arrow {
  background-color: #FFFFFF;
  color: #AC161D;
  transform: scale(1.05);
}



/* Industries Section - Teardrop Water Drop Pins Layout */
.industries-section {
  padding: 80px 0 100px;
  text-align: center;
}

.industries-header {
  max-width: 752px;
  margin: 0 auto 54px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.industries-header .section-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  color: #161616;
  margin: 0 auto 12px;
  text-align: center;
  max-width: 100%;
}

.industries-header .section-title span.highlight {
  color: #AC161D;
}

.industries-subtitle {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #666666;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.teardrop-grid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.teardrop-row-top {
  display: flex;
  justify-content: center;
  gap: 24px;
  z-index: 1;
}

.teardrop-row-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -110px;
  /* Interlocking overlap with top row */
  z-index: 2;
}

/* Top Row Water Drop Card Pin - Pointing DOWN */
.teardrop-row-top .teardrop-card-pin {
  width: 270px;
  height: 360px;
  position: relative;
  clip-path: path('M 135 0 C 209 0 270 60 270 135 C 270 219 135 360 135 360 C 135 360 0 219 0 135 C 0 60 61 0 135 0 Z');
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Bottom Row Water Drop Card Pin - Pointing UP (Reversed) */
.teardrop-row-bottom .teardrop-card-pin {
  width: 270px;
  height: 360px;
  position: relative;
  clip-path: path('M 135 0 C 135 0 270 141 270 225 C 270 299 209 360 135 360 C 61 360 0 299 0 225 C 0 141 135 0 135 0 Z');
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.teardrop-card-pin:hover {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 12px 24px rgba(172, 22, 29, 0.25));
}

.teardrop-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.teardrop-card-pin:hover .teardrop-bg-img {
  transform: scale(1.08);
}

.teardrop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
}

.teardrop-row-top .teardrop-overlay {
  padding: 0 20px 130px;
}

.teardrop-row-bottom .teardrop-overlay {
  padding: 0 20px 40px;
}



.teardrop-pin-title {
  font-family: var(--sovc-font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #FFFFFF;
  margin: 0;
  max-width: 210px;
}





/* Section 5 - Standards Banner with Full-Width Staircase Floating Pills */
.standards-section-wrap {
  margin: 40px auto 80px;
}

.standards-banner {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 66px 68px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.standards-inner-canvas {
  position: relative;
  max-width: 1148px;
  height: 356px;
  margin: 0 auto;
}

.standards-left-content {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 480px;
  z-index: 1;
}

.standards-left-content .section-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  color: #161616;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.standards-left-content .section-title span.highlight {
  color: #AA161E;
}

.standards-desc {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: #6B6B6B;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  max-width: 440px;
}

.standards-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sovc-font-heading);
  font-weight: 500;
  font-size: 14px;
  color: #AA161E;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.standards-link:hover {
  color: #AC161D;
  transform: translateX(3px);
}

/* Full-Width Staircase Layer spanning across inner canvas */
.standards-staircase-layer {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 356px;
  z-index: 2;
  pointer-events: none;
}

.standard-pill-card {
  position: absolute;
  height: 44px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  white-space: nowrap;
  pointer-events: auto;
}

/* Exact Full-Width Staircase Diagonal Positions matching Figma Frame 326 */
.pill-pos-1 {
  top: 0px;
  left: 820px;
}

/* Uncompromising Quality Assurance (Top Right) */
.pill-pos-2 {
  top: 52px;
  left: 660px;
}

/* Global Standards & Compliance */
.pill-pos-3 {
  top: 104px;
  left: 490px;
}

/* Advanced Protective Packaging */
.pill-pos-4 {
  top: 156px;
  left: 365px;
}

/* Optimized Cost-Efficiency */
.pill-pos-5 {
  top: 208px;
  left: 190px;
}

/* Agile Supply Chain & Logistics */
.pill-pos-6 {
  top: 260px;
  left: 0px;
}

/* Dedicated Technical Partnership (Bottom Left under link) */


/* Vector Red Dot Icon */
.pill-dot-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C1272D;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.pill-text-wrapper {
  display: inline-grid;
  place-items: center left;
  position: relative;
}

.pill-default-text,
.pill-hover-text {
  grid-area: 1 / 1;
  transition: opacity 0.25s ease;
}

.pill-default-text {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.25;
  color: #141414;
  letter-spacing: -0.01em;
  opacity: 1;
}

.pill-hover-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sovc-font-heading);
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  width: 100%;
}

/* HOVER STATE - Fixed original width, transition colors to solid red and white text */
.standard-pill-card:hover {
  background-color: #AC161D;
  border-color: #AC161D;
  box-shadow: 0 8px 22px rgba(172, 22, 29, 0.3);
  transform: translateY(-2px);
}

.standard-pill-card:hover .pill-dot-icon {
  color: #FFFFFF;
}

.standard-pill-card:hover .pill-default-text {
  opacity: 0;
}

.standard-pill-card:hover .pill-hover-text {
  opacity: 1;
}



/* FAQ Section */
.faq-section {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}

.faq-header {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sovc-font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #AA161E;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.faq-contact-link:hover {
  color: #AC161D;
  transform: translateX(3px);
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FAFAFA;
  border: 1px solid #F5F5F5;
  border-radius: var(--sovc-radius-md);
  overflow: hidden;
  transition: var(--sovc-transition);
}

.faq-item.active {
  background: #FFFFFF;
  border-color: var(--sovc-border-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-question {
  padding: 15px 20px;
  font-family: var(--sovc-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--sovc-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--sovc-text-sub);
  line-height: 1.6;
  padding: 0 24px;
}

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

/* CTA Banner Section */
.cta-banner-wrap {
  position: relative;
  bottom: -20px;
}

.cta-banner-card {
  background: #F0F0F0;
  border-radius: 20px 20px 0px 0px;
  padding: 72px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  box-sizing: border-box;
}

.cta-banner-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  color: #161616;
  text-transform: capitalize;
  margin: 0;
}

.cta-banner-desc {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #666666;
  max-width: 590px;
  margin: 0 auto 8px;
  letter-spacing: -0.01em;
}

.btn-cta-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: #AA161E;
  border: 1px solid #AA161E;
  border-radius: 10px;
  font-family: var(--sovc-font-heading);
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta-red:hover {
  background: #8E1017;
  border-color: #8E1017;
  transform: translateY(-2px);
}

/* Footer Section */
.site-footer {
  background: transparent;
  padding: 0 0 40px;
  position: relative;
  z-index: 5;

}

@media (max-width: 768px) {
  .site-footer {
    padding: 0 15px;
  }
}

.footer-dark-banner {
  background: #161616;
  border-radius: 20px;
  padding: 80px 56px 30px;
  color: #FFFFFF;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 5-Column Grid */
.footer-5col-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.15fr 1fr 1.25fr;
  gap: 53px;
  margin-bottom: 60px;
}

.footer-col-contact-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-site-logo img {
  height: 100px;
  width: auto;
  max-width: 171px;
}

.footer-brand-desc {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #A6A6A6;
  margin: 0;
}

.footer-brand-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-footer-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 38px;
  background: #AA161E;
  border: 1px solid #AA161E;
  border-radius: 10px;
  font-family: var(--sovc-font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-footer-red:hover {
  background: #8E1017;
}

.btn-footer-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 38px;
  background: #F0F0F0;
  border-radius: 10px;
  font-family: var(--sovc-font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #AA161E;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-footer-cart:hover {
  background: #E4E4E4;
}

.footer-acc-icon {
  display: none;
}

.footer-col-heading {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.footer-nav-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a,
.footer-contact-list a {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #BFBFBF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-list a:hover,
.footer-contact-list a:hover {
  color: #FFFFFF;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-list img.footer-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}


.footer-location-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.location-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  display: block;
}


.location-item strong {
  display: block;
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #EEEEEE;
  margin-bottom: 2px;
}

.location-item p {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #BFBFBF;
  margin: 0;
}

/* Footer Bottom Bar */
.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-text {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
}

.footer-social-circle-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
}



.social-circle-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}




/* Mobile responsive styling (Desktop layout remains 100% untouched above 1024px) */
.btn,
.btn-secondary,
.btn-outline,
.standards-link,
.faq-contact-link {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .site-header {
    position: relative !important;
    top: auto !important;
  }

  .faq-header {
    position: static !important;
    top: auto !important;
    height: auto !important;
    margin-bottom: 24px !important;
    padding: 0 15px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-carousel-container {
    min-height: 460px;
  }

  .hero-slides {
    min-height: 460px;
  }

  .hero-slide {
    padding: 44px 36px;
    min-height: 460px;
    gap: 24px;
  }

  .hero-slide-title {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .hero-slide-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-slide-media img {
    max-height: 380px;
  }

  .hero-slide-1 .hero-slide-media img {
    max-height: 420px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section 4 Teardrop Pins Mobile Scroll */
  .teardrop-grid-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
    width: 100%;
  }

  .teardrop-row-top .teardrop-card-pin {
    width: 200px;
    height: 268px;
    clip-path: path('M 100 0 C 155 0 200 45 200 100 C 200 162 100 268 100 268 C 100 268 0 162 0 100 C 0 45 45 0 100 0 Z');
  }

  .teardrop-row-bottom .teardrop-card-pin {
    width: 200px;
    height: 268px;
    clip-path: path('M 100 0 C 100 0 200 105 200 168 C 200 223 155 268 100 268 C 45 268 0 223 0 168 C 0 105 100 0 100 0 Z');
  }

  .teardrop-row-bottom {
    margin-top: -90px;
    gap: 14px;
  }

  .teardrop-row-top {
    gap: 16px;
  }

  .teardrop-pin-title {
    font-size: 14.5px;
  }

  /* Section 5 Staircase Floating Pills Mobile Stack - Completely un-stacked to prevent overlapping */
  .standards-banner {
    padding: 36px 20px !important;
    position: relative !important;
  }

  .standards-inner-canvas {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    max-width: 100% !important;
    gap: 24px !important;
  }

  .standards-left-content {
    position: static !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .standards-left-content .section-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }

  .standards-desc {
    font-size: 14px !important;
    line-height: 1.45 !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }

  .standards-link {
    justify-content: center !important;
  }

  .standards-staircase-layer {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    pointer-events: auto !important;
  }

  .standard-pill-card {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    height: auto !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
    justify-content: flex-start !important;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-dark-banner {
    padding: 56px 32px 24px;
  }

  .footer-5col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 992px) {
  .header-inner {
    padding: 12px 20px;
    position: relative;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    display: none;
    z-index: 999;
    border: 1px solid var(--sovc-border);
  }

  .main-nav.active-mobile {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    display: none;
    width: 100%;
    background: var(--sovc-bg-light);
    border-radius: 6px;
    margin-top: 4px;
  }

  .nav-dropdown.active-mobile-dropdown .dropdown-menu {
    display: flex;
  }

  .btn-cart span {
    display: none;
  }

  .btn-cart {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: relative !important;
    top: auto !important;
  }

  .faq-header {
    position: static !important;
    top: auto !important;
    height: auto !important;
    margin-bottom: 20px !important;
  }

  .container {
    padding: 0 16px;
  }

  .hero-carousel-container,
  .hero-slides {
    min-height: 460px !important;
    height: 460px !important;
    margin: 20px auto 20px !important;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 460px !important;
    padding: 28px 18px 20px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }

  .hero-slide-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-slide-title {
    font-size: 22px !important;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: 0;
  }

  .hero-slide-desc {
    font-size: 13px !important;
    line-height: 1.4;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .btn-hero {
    margin: 0 auto;
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-slide-media {
    width: 100%;
    max-height: 180px !important;
    height: 180px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    margin-top: 8px;
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
  }

  .hero-slide-media img {
    max-height: 170px !important;
    width: auto !important;
    margin: 0 auto;
    object-fit: contain;
  }

  .hero-slide-1 .hero-slide-media {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    width: 100%;
    max-height: 180px !important;
    height: 180px !important;
    justify-content: center !important;
  }

  .hero-slide-1 .hero-slide-media img {
    max-height: 170px !important;
    height: auto;
    object-position: center;
  }

  .intro-section {
    padding: 48px 16px !important;
  }

  .intro-line {
    font-size: 20px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    color: #C5C5C5 !important;
    transition: color 0.3s ease !important;
  }

  .intro-line:hover {
    color: #AA161E !important;
  }

  .features-section {
    padding: 36px 20px !important;
    border-radius: 20px !important;
    margin: 24px auto !important;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-header .section-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
    max-width: 100% !important;
  }

  .section-header .btn {
    white-space: nowrap !important;
    font-size: 13px !important;
    padding: 0 16px !important;
    height: 38px !important;
  }

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

  /* Uniform Mobile Heading Titles across all sections */
  .hero-slide-title,
  .section-title,
  .standards-left-content .section-title,
  .faq-title,
  .cta-banner-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
  }

  .cta-banner-card {
    padding: 40px 16px;
    gap: 12px;
  }

  .cta-banner-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .cta-banner-desc {
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-dark-banner {
    padding: 40px 20px 20px;
    border-radius: 16px;
  }

  /* Mobile Accordion Footer Styling */
  .footer-5col-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
    text-align: left;
  }

  .footer-col-brand {
    align-items: center;
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-brand-desc {
    text-align: center;
  }

  .footer-brand-btns {
    justify-content: center;
  }

  .footer-col-contact-group {
    display: contents !important;
  }

  .footer-col {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-col:last-child {
    border-bottom: none !important;
  }

  .footer-col-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    user-select: none;
  }

  .footer-col-heading.footer-subheading {
    cursor: default;
    border: none;
    padding-top: 12px;
  }

  .footer-acc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: #AA161E;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
  }

  .footer-col.active .footer-acc-icon {
    transform: rotate(45deg);
  }

  .footer-col .footer-nav-list,
  .footer-col .footer-contact-list,
  .footer-col .footer-location-block {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease, padding 0.3s ease;
    padding: 0;
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }

  .footer-col.active .footer-nav-list,
  .footer-col.active .footer-contact-list,
  .footer-col.active .footer-location-block {
    max-height: 600px;
    opacity: 1;
    padding: 8px 0 20px;
  }

  .footer-nav-list a,
  .footer-contact-list a {
    text-align: left;
  }

  .location-item {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }
}

/* Section 4 Teardrop Pins - horizontal scroll anchored to the left edge.
   Below ~900px the 4-drop bottom row (842px) no longer fits, so the rows are
   left-aligned instead of centered (centered flex overflow clips the left side
   and makes the first drops unreachable). The top row keeps its half-step
   offset so the interlocking pattern is preserved while scrolling. */
@media (max-width: 900px) {
  .teardrop-grid-container {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding-left: 20px;
  }

  .teardrop-row-top,
  .teardrop-row-bottom {
    justify-content: flex-start;
    width: max-content;
    flex: 0 0 auto;
  }

  .teardrop-row-top {
    /* half the width difference between the 4-drop and 3-drop rows */
    margin-left: 105px;
  }

  .teardrop-card-pin {
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-slide-title {
    font-size: 22px;
  }

  .btn-footer-red,
  .btn-footer-cart {
    padding: 0 10px;
    font-size: 13px;
  }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

.about-page-main {
  padding-bottom: 40px;
}

/* 1. About Hero Banner */
.about-hero-banner {
  position: relative;
  border-radius: var(--sovc-radius-lg);
  padding: 100px 60px 48px 60px;
  margin-top: 20px;
  margin-bottom: 60px;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 310px;
}

.about-hero-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.1;
  color: #FFFFFF;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  margin: 0;
}

/* 2. Story / History Intro Paragraphs */
.about-story-section {
  margin-bottom: 70px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about-story-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-story-p {
  font-family: var(--sovc-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #444444;
}

.about-story-p strong {
  font-weight: 700;
  color: var(--sovc-text-main);
}

.about-story-p strong.brand-highlight,
.about-story-p span.brand-highlight,
.brand-highlight {
  color: var(--sovc-red) !important;
  font-weight: 700;
}

/* 3. Big Central Headline Statement */
.about-statement-section {
  padding: 30px 0 70px;
  text-align: center;
}

.about-statement-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.25;
  color: var(--sovc-text-main);
  max-width: 960px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.about-statement-title .highlight {
  color: var(--sovc-red);
}

/* 4. Vision & Mission Grid */
.about-vision-section {
  margin-bottom: 80px;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.about-vision-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-card.red-card {
  background-color: var(--sovc-red);
  border-radius: var(--sovc-radius-lg);
  color: #FFFFFF;
}

.future-card {
  padding: 36px 30px;
  flex: 1;
}

.quote-card {
  padding: 28px 30px;
}

.quote-icon {
  margin-bottom: 16px;
}

.quote-icon img {
  display: block;
  width: 40px;
  height: auto;
}

.quote-text {
  font-family: var(--sovc-font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.about-media-card {
  border-radius: var(--sovc-radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 460px;
}

.about-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--sovc-radius-lg);
  display: block;
}

.work-card {
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.about-card-title {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.about-card-desc {
  font-family: var(--sovc-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--sovc-red);
  border-radius: var(--sovc-radius-md);
  padding: 0 20px;
  height: 40px;
  font-family: var(--sovc-font-heading);
  font-weight: 600;
  font-size: 14px;
  transition: var(--sovc-transition);
  width: fit-content;
  text-decoration: none;
}

.btn-white-pill:hover {
  background-color: #F0F0F0;
  color: var(--sovc-red-hover);
  transform: translateY(-2px);
}

/* 5. Client & Partner Logos Infinite Scroll Marquee (Full Width & Larger Logos) */
.about-partners-section.full-width-partners {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 30px 0 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.logo-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 10px 0;
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  will-change: transform;
}

.logo-marquee-track.track-left {
  animation: marqueeScrollLeft 32s linear infinite;
}

.logo-marquee-track.track-right {
  animation: marqueeScrollRight 32s linear infinite;
}

.partner-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  min-width: 160px;
  padding: 0 16px;
}

.partner-logo-item img {
  max-height: 85px;
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.98;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo-item img:hover {
  opacity: 1;
  transform: scale(1.06);
}

@keyframes marqueeScrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes marqueeScrollRight {
  0% {
    transform: translateX(-33.333%);
  }

  100% {
    transform: translateX(0);
  }
}

/* 6. Core Values Section (I C A R E) */
.core-values-section {
  margin-bottom: 90px;
}

.values-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.values-header .section-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  color: #161616;
  text-transform: capitalize;
  text-align: center;
  margin: 0 auto;
}

.values-subtitle {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
  margin: 16px auto 0 auto;
  text-align: center;
  letter-spacing: -0.01em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: flex-start;
  min-height: 494px;
}

.value-card-wrap {
  position: relative;
  width: 100%;
  height: 494px;
  display: flex;
  flex-direction: column;
}

.value-card-box {
  width: 100%;
  height: 374px;
  background: #F5F5F5;
  border-radius: 24px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  transition: var(--sovc-transition);
}

.value-card-wrap.value-card-featured .value-card-box {
  height: 492px;
  background: #AC161D;
}

.value-title {
  font-family: var(--sovc-font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: #AA161E;
  margin-bottom: 12px;
}

.value-card-featured .value-title {
  color: #FFFFFF;
}

.value-desc {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #666666;
}

.value-card-featured .value-desc {
  color: rgba(255, 255, 255, 0.85);
}

.value-giant-letter {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 195px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: #AA161E;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.value-card-featured .value-giant-letter {
  color: #E6E6E6;
  bottom: 0px;
}

/* 7. Why Industries Trust SOVC */
.trust-sovc-section {
  margin-bottom: 90px;
}

.trust-sovc-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.trust-sovc-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.trust-sovc-desc {
  font-family: var(--sovc-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--sovc-text-muted);
}

.btn-contact-trust {
  margin-top: 8px;
  width: fit-content;
}

.trust-sovc-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-static-card {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--sovc-transition);
}

.trust-static-card:hover {
  transform: translateY(-2px);
  background: #EFEFEF;
}

.trust-static-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trust-static-title {
  font-family: var(--sovc-font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #161616;
  margin: 0;
}

.trust-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.trust-static-desc {
  font-family: var(--sovc-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* ==========================================================================
   ABOUT US RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1200px) {
  .about-vision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-vision-col.center-col {
    grid-column: span 2;
    order: -1;
  }

  .about-media-card {
    min-height: 340px;
    max-height: 400px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .about-hero-title {
    font-size: 38px;
  }

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

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-sovc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-sovc-left {
    position: static;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-banner {
    padding: 60px 24px 32px 24px;
    min-height: 180px;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
  }

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

  .about-statement-title {
    font-size: 24px;
  }

  .about-vision-grid {
    grid-template-columns: 1fr;
  }

  .about-vision-col.center-col {
    grid-column: span 1;
  }

  /* Logos Marquee Mobile Optimization */
  .about-partners-section.full-width-partners {
    padding: 24px 0 36px;
    margin-bottom: 40px;
  }

  .logo-marquee-container {
    gap: 16px;
    padding: 20px 0;
  }

  .logo-marquee-track {
    gap: 28px;
  }

  .partner-logo-item {
    height: 52px;
    min-width: 100px;
    padding: 0 4px;
  }

  .partner-logo-item img {
    max-height: 46px;
    max-width: 130px;
  }

  /* Core Values Mobile Optimization */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-height: auto;
  }

  .value-card-wrap {
    height: 330px;
  }

  .value-card-box {
    height: 240px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .value-card-wrap.value-card-featured .value-card-box {
    height: 328px;
    border-radius: 18px;
  }

  .value-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .value-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .value-giant-letter {
    font-size: 130px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card-wrap {
    height: 290px;
  }

  .value-card-box {
    height: 205px;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .value-card-wrap.value-card-featured .value-card-box {
    height: 288px;
    border-radius: 16px;
  }

  .value-title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6px;
  }

  .value-desc {
    font-size: 13px;
    line-height: 1.45;
  }

  .value-giant-letter {
    font-size: 115px;
    bottom: -8px;
  }
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */

.contact-page-main {
  padding-bottom: 80px;
}

.contact-main-section {
  margin-top: 50px;
  margin-bottom: 80px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-brand-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-company-title {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #1F1F1F;
  margin: 0;
}

.contact-company-desc {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}

/* Contact Meta List */
.contact-meta-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-meta-text {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-meta-text:hover {
  color: var(--sovc-red);
}

/* Locations Block */
.contact-locations-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.locations-heading {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #161616;
  margin: 0;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-title {
  font-family: var(--sovc-font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: #161616;
  margin: 0;
}

.location-address {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  color: #666666;
  margin: 0;
}

.location-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  color: #141414;
  text-decoration: underline;
  transition: color 0.3s ease;
  width: fit-content;
}

.location-more-link:hover {
  color: var(--sovc-red);
}

/* Right Column: Form Box */
.contact-form-box {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sovc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-row.full-width {
  display: flex;
  flex-direction: column;
}

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

.form-label {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #141414;
}

.form-label .required {
  color: #D9454D;
  margin-left: 2px;
}

.form-label .optional {
  color: #8C8C8C;
  font-weight: 400;
  font-size: 13px;
  margin-left: 4px;
}

.form-control {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  font-family: var(--sovc-font-body);
  font-size: 14px;
  color: #141414;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-control::placeholder {
  color: #C7C7C7;
}

.form-control:focus {
  border-color: var(--sovc-red);
  box-shadow: 0 0 0 3px rgba(170, 22, 30, 0.1);
}

.form-textarea {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.btn-submit {
  min-width: 140px;
  height: 44px;
  border-radius: 22px;
  background-color: var(--sovc-red);
  color: #FFFFFF;
  font-family: var(--sovc-font-heading);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--sovc-transition);
}

.btn-submit:hover {
  background-color: var(--sovc-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(170, 22, 30, 0.25);
}

/* 3. Bottom CTA Section */
.contact-cta-section {
  margin-bottom: 80px;
}

.contact-cta-card {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-card-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.25;
  color: #161616;
  margin: 0;
}

.cta-card-subtitle {
  font-family: var(--sovc-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  max-width: 680px;
  margin: 0 auto 8px auto;
}

.btn-cta-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Contact Responsive Breakpoints */
@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .form-row.two-cols {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 24px 16px;
  }

  .contact-cta-card {
    padding: 36px 20px;
  }

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

/* ==========================================================================
   NEWS / BLOGS PAGE STYLES
   ========================================================================== */

.news-page-main {
  padding-bottom: 80px;
}

.news-grid-section {
  margin-top: 60px;
  margin-bottom: 90px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}

.news-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.news-card-media {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  background: #F5F5F5;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.04);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 4px 6px 6px 6px;
  flex-grow: 1;
  box-sizing: border-box;
}

.news-card-title {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #141414;
  margin: 0 0 8px 0;
  text-transform: capitalize;
}

.news-card-title a {
  color: #141414;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-card-title a:hover {
  color: var(--sovc-red);
}

.news-card-excerpt {
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  margin: 0 0 16px 0;
}

.news-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.news-read-more {
  font-family: var(--sovc-font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #AA161E;
  text-decoration: none;
  text-align: right;
  transition: color 0.3s ease;
}

.news-read-more:hover {
  color: var(--sovc-red-hover);
  text-decoration: underline;
}

/* News Responsive Breakpoints */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-card-media {
    height: 220px;
  }
}

/* ==========================================================================
   SINGLE BLOG POST STYLES
   ========================================================================== */

.single-post-main {
  padding-bottom: 80px;
}

.single-post-hero {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-post-hero-title {
  font-size: 38px;
  line-height: 1.25;
  max-width: 900px;
  text-align: center;
}

.single-post-container {
  max-width: 900px;
  margin-top: 50px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
}

.single-article-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.25;
  color: #141414;
  margin: 0 0 12px 0;
  text-transform: capitalize;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sovc-font-body);
  font-size: 14px;
  color: #8C8C8C;
  margin-bottom: 24px;
}

.single-post-meta a {
  color: var(--sovc-red);
  text-decoration: none;
  font-weight: 500;
}

.single-post-featured-media {
  width: 100%;
  max-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #F5F5F5;
}

.single-post-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.single-post-content {
  font-family: var(--sovc-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: #333333;
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  color: #141414;
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.single-post-content h2 {
  font-size: 26px;
}

.single-post-content h3 {
  font-size: 22px;
}

.single-post-content p {
  margin-bottom: 20px;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.single-post-content li {
  margin-bottom: 8px;
}

.single-post-content blockquote {
  border-left: 4px solid var(--sovc-red);
  padding: 16px 24px;
  margin: 32px 0;
  background: #FDF4F5;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.single-post-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #E6E6E6;
}

.btn-back-news {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  border-radius: 22px;
  text-decoration: none;
}

/* ==========================================================================
   SERVICE & SUPPORT / PERIODIC TABLE / SAFETY & PRECAUTIONS PAGE STYLES
   ========================================================================== */

.service-page-main {
  padding-bottom: 80px;
}

.service-direct-image-section {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-direct-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* ==========================================================================
   HAZARD SYMBOLS & CLASS PAGE STYLES
   ========================================================================== */

.hazard-page-main {
  padding-bottom: 80px;
}

.hazard-grid-section {
  margin-top: 50px;
  margin-bottom: 80px;
}

.hazard-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.hazard-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hazard-card {
  background: #F8F8F8;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hazard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.hazard-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ghs-icon-diamond {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ghs-icon-diamond img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hazard-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #161616;
  text-transform: uppercase;
  margin: 0;
}

.hazard-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hazard-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #4D4D4D;
  padding-left: 0;
}

.hazard-bullet-list li::before {
  display: none;
}

.hazard-bullet-icon {
  width: 22px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .hazard-2col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   LABEL SPECIMEN PAGE STYLES
   ========================================================================== */

.specimen-page-main {
  padding-bottom: 80px;
}

.specimen-graphic-section {
  margin-top: 50px;
  margin-bottom: 60px;
}

.specimen-image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.specimen-index-section {
  margin-bottom: 70px;
}

.specimen-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
}

.specimen-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8F8F8;
  border-radius: 12px;
  padding: 10px 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.specimen-badge-item:hover {
  background: #F0F0F0;
  transform: translateY(-1px);
}

.sovc-num-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.sovc-num-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.badge-num {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 11px;
  color: #FFFFFF;
  line-height: 1;
}

.badge-title {
  font-family: var(--sovc-font-heading);
  font-weight: 600;
  font-size: 14px;
  color: #161616;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.specimen-guide-section {
  background: #F8F8F8;
  border-radius: 24px;
  padding: 48px 40px;
}

.specimen-guide-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  color: #161616;
  text-align: center;
  margin: 0 0 40px 0;
}

.specimen-guide-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.specimen-guide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 16px 24px;
  border: 1px solid #EAEAEA;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.specimen-guide-row:hover {
  border-color: #AA161E;
  box-shadow: 0 4px 16px rgba(170, 22, 30, 0.06);
}

.guide-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 38%;
  flex-shrink: 0;
}

.guide-row-right {
  width: 60%;
}

.guide-title {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #161616;
}

.guide-desc {
  font-family: var(--sovc-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #555555;
  margin: 0;
}

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

  .specimen-guide-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .guide-row-left,
  .guide-row-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .specimen-3col-grid {
    grid-template-columns: 1fr;
  }

  .specimen-guide-section {
    padding: 28px 18px;
  }

  .specimen-guide-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   SAFETY & PRECAUTIONS PAGE STYLES
   ========================================================================== */

.safety-page-main {
  padding-bottom: 90px;
}

.safety-section {
  margin-top: 60px;
  margin-bottom: 80px;
}

.safety-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.safety-col-content {
  flex: 1;
  max-width: 58%;
}

.safety-col-media {
  width: 38%;
  flex-shrink: 0;
}

.safety-heading {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.15;
  color: #161616;
  margin: 0 0 20px 0;
}

.safety-heading span,
.text-red {
  color: #AA161E;
}

.safety-intro-text {
  font-family: var(--sovc-font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 32px 0;
}

/* Accordion Component */
.safety-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.safety-acc-item {
  background: #F8F8F8;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #EEEEEE;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.safety-acc-item.active {
  background: #FAFAFA;
  border-color: #E2E2E2;
}

.safety-acc-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #161616;
  cursor: pointer;
  text-align: left;
}

.safety-acc-toggle {
  font-size: 22px;
  font-weight: 400;
  color: #161616;
  line-height: 1;
  flex-shrink: 0;
}

.safety-acc-body {
  display: none;
  padding: 0 24px 24px 24px;
  border-top: 1px solid #EAEAEA;
}

.safety-acc-item.active .safety-acc-body {
  display: block;
}

.safety-acc-body p {
  font-family: var(--sovc-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin: 16px 0 12px 0;
}

.acc-subheading {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #161616;
  margin: 16px 0 8px 0;
}

.safety-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.safety-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  font-family: var(--sovc-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #444444;
}

.sovc-bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

.sovc-bullet-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Media Gallery Card */
.safety-gallery-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-main-frame {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: #F0F0F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.gallery-thumbs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  position: relative;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: #EAEAEA;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
}

.gallery-thumb.active {
  border-color: #AA161E;
}

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

.gallery-thumb.thumb-overlay .overlay-text {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #FFFFFF;
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .safety-row {
    flex-direction: column;
    gap: 36px;
  }

  .safety-col-content,
  .safety-col-media {
    width: 100%;
    max-width: 100%;
  }

  .safety-row.reverse-mobile {
    flex-direction: column-reverse;
  }

  .safety-heading {
    font-size: 28px;
  }
}

/* ==========================================================================
   HAZARDS PRECAUTIONARY STATEMENTS PAGE STYLES
   ========================================================================== */

.precautionary-page-main {
  padding-bottom: 90px;
}

.precautionary-section {
  margin-top: 60px;
  margin-bottom: 80px;
}

.precautionary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.precautionary-col-media {
  width: 44%;
  flex-shrink: 0;
}

.precautionary-col-content {
  flex: 1;
  max-width: 52%;
}

.precautionary-image-frame {
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: #F0F0F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.precautionary-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .precautionary-row {
    flex-direction: column;
    gap: 36px;
  }

  .precautionary-col-media,
  .precautionary-col-content {
    width: 100%;
    max-width: 100%;
  }

  .precautionary-image-frame {
    height: 380px;
  }
}

/* ==========================================================================
   WOOCOMMERCE & CHEMICAL STORE STYLES (MATCHING FIGMA DESIGNS)
   ========================================================================== */

/* Hero Red Header Banner */
.sovc-wc-hero {
  padding: 24px 0;
}

.sovc-wc-hero .hero-card-red {
  position: relative;
  background: linear-gradient(135deg, #AA161E 0%, #8C0F15 100%);
  border-radius: 20px;
  padding: 48px 48px;
  color: #FFFFFF;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sovc-wc-hero .hero-card-red::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.sovc-wc-hero .hero-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.hero-breadcrumbs {
  font-family: var(--sovc-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.hero-breadcrumbs a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.hero-breadcrumbs .sep {
  opacity: 0.6;
}

.hero-breadcrumbs .current {
  color: #FFFFFF;
  font-weight: 600;
}

/* Category Overview Cards List (Image 1) */
.sovc-category-overview-section {
  margin: 32px 0;
}

.category-cards-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.sovc-cat-row-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 8px 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.sovc-cat-row-card:hover {
  transform: translateX(4px);
}

.cat-card-thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.sovc-cat-row-card:hover .cat-card-thumb {
  border-color: #AA161E;
}

.cat-thumb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.cat-card-content {
  flex-grow: 1;
}

.cat-card-title {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  color: #161616;
  transition: color 0.2s ease;
}

.sovc-cat-row-card:hover .cat-card-title {
  color: #AA161E;
}

.cat-card-desc {
  font-family: var(--sovc-font-body);
  font-size: 13px;
  color: #8E8E93;
  line-height: 1.4;
}

/* Search & Filter Controls Bar (Image 2) */
.sovc-filter-bar {
  margin: 24px 0 20px 0;
}

.sovc-filter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-search-wrap {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.filter-search-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.filter-search-input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 42px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--sovc-font-body);
  outline: none;
  transition: border-color 0.2s ease;
  background: #FFFFFF;
}

.filter-search-input:focus {
  border-color: #AA161E;
}

.filter-select-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-select-group label {
  font-size: 13px;
  font-weight: 600;
  color: #161616;
  white-space: nowrap;
}

.filter-select-control {
  height: 42px;
  padding: 0 32px 0 14px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--sovc-font-body);
  background: #FFFFFF url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%236B6B6B%22%20stroke-width%3D%222%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E") no-repeat right 12px center;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.filter-select-control:focus {
  border-color: #AA161E;
}

/* Product Table Styling (Image 2) */
.sovc-table-responsive {
  width: 100%;
  overflow-x: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  margin-bottom: 24px;
}

.sovc-product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  font-family: var(--sovc-font-body);
}

.sovc-product-table th {
  background: #EFEFEF;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  color: #161616;
  border: none;
}

.sovc-product-table th:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.sovc-product-table th:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.sovc-product-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #F0F0F0;
  border-top: none;
  font-size: 14px;
  vertical-align: middle;
}

.sovc-product-table tbody tr:last-child td {
  border-bottom: none;
}

.sovc-product-table tbody tr:hover {
  background: #FAFAFA;
}

.item-desc-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.chemical-molecule-icon img {
  display: block;
  width: 26px;
  height: 15px;
  object-fit: contain;
}

.product-table-link {
  font-weight: 500;
  color: #161616;
  transition: color 0.2s ease;
}

.product-table-link:hover {
  color: #AA161E;
}

.cas-number-val {
  font-family: monospace, sans-serif;
  font-size: 13px;
  color: #444444;
}

.doc-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.doc-icon-btn:hover {
  background: #F0F0F0;
}

.no-products-found {
  text-align: center;
  padding: 40px !important;
  color: #6B6B6B;
}

/* Pagination Bar (Matching Design Screenshots) */
.sovc-pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6B6B6B;
}

.pagination-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.per-page-select {
  padding: 6px 28px 6px 12px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 13px;
  color: #161616;
  background: #FFFFFF url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%238E8E93%22%20stroke-width%3D%222%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E") no-repeat right 10px center;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  margin: 0 2px;
  color: #161616;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-numbers .page-numbers.current {
  background: #FFFFFF;
  border-color: #AA161E;
  color: #AA161E;
  font-weight: 600;
}

.pagination-numbers a.page-numbers:hover {
  color: #AA161E;
}

.pagination-numbers .prev,
.pagination-numbers .next {
  color: #C7C7CC;
  font-weight: 400;
}

/* Single Product Detail Page (Images 3 & 4) */
.single-product-container {
  margin-top: 32px;
  margin-bottom: 60px;
}

.sovc-single-product-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .sovc-single-product-grid {
    grid-template-columns: 1fr;
  }
}

.single-product-title {
  font-family: var(--sovc-font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  color: #161616;
  margin-bottom: 12px;
}

.single-product-desc {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 12px;
}

.single-product-synonyms {
  font-size: 13px;
  color: #6B6B6B;
  margin-bottom: 28px;
}

/* Specs Table & Boxes */
.sovc-specs-box,
.sovc-tech-docs-box,
.sovc-safety-box {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.specs-box-title,
.tech-docs-title,
.safety-box-title {
  font-family: var(--sovc-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #161616;
  margin-bottom: 16px;
}

.specs-table,
.safety-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.specs-table td,
.safety-table td {
  padding: 10px 0;
  border-bottom: 1px solid #F5F5F5;
}

.specs-table tr:last-child td,
.safety-table tr:last-child td {
  border-bottom: none;
}

.spec-label {
  width: 200px;
  color: #666666;
  font-weight: 500;
}

.spec-value {
  color: #141414;
  font-weight: 500;
}

.signal-danger {
  color: #AA161E;
}

/* Tech Docs Cards Grid */
.tech-docs-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tech-doc-card {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  color: #141414;
  background: #FFFFFF;
  transition: all 0.2s ease;
}

.tech-doc-card svg {
  stroke: #141414;
}

.tech-doc-card:hover {
  border-color: #AA161E;
  background: #FDF2F3;
  color: #AA161E;
}

.tech-doc-card:hover svg {
  stroke: #AA161E;
}

/* Safety & Hazard Box & GHS Diamonds */
.safety-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.ghs-badges-row {
  display: flex;
  gap: 8px;
}

.ghs-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right Column Purchase Sticky Sidebar */
.sovc-sticky-order-box {
  position: sticky;
  top: 90px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.product-main-image-wrap {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.product-featured-img {
  max-height: 100%;
  object-fit: contain;
}

.package-size-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.select-one-hint {
  font-size: 11px;
  color: #8E8E93;
  font-weight: 400;
}

.package-swatches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.package-swatch-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1.5px solid #E5E5E5;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

.package-swatch-btn .swatch-label {
  font-weight: 700;
  font-size: 13px;
  color: #161616;
}

.package-swatch-btn .swatch-price {
  font-size: 11px;
  color: #6B6B6B;
  margin-top: 2px;
}

.package-swatch-btn.active,
.package-swatch-btn:hover {
  border-color: #AA161E;
  background: #FDF2F3;
}

.package-swatch-btn.active .swatch-label {
  color: #AA161E;
}

/* Quantity Counter Selector */
.quantity-counter-section {
  margin-bottom: 20px;
}

.qty-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.qty-counter-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
  height: 38px;
}

.qty-btn {
  width: 38px;
  height: 100%;
  background: #F5F5F5;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: #E5E5E5;
}

.qty-input {
  width: 48px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

/* Price Breakdown Summary Box */
.price-breakdown-box {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #6B6B6B;
  margin-bottom: 6px;
}

.price-row.subtotal-row {
  font-size: 15px;
  font-weight: 800;
  color: #161616;
  border-top: 1px solid #E5E5E5;
  padding-top: 8px;
  margin-top: 8px;
  margin-bottom: 10px;
}

.pricing-disclaimer-note {
  font-size: 11px;
  color: #8E8E93;
  line-height: 1.35;
}

.action-buttons-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.btn-add-cart-solid {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  background: #AA161E;
  border: 1px solid #AA161E;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-cart-solid:hover {
  background: #8E1017;
  border-color: #8E1017;
  color: #FFFFFF;
}

.btn-place-order-out {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1.5px solid #AA161E;
  color: #AA161E;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-place-order-out:hover {
  background: #FDF2F3;
  color: #AA161E;
  border-color: #AA161E;
}

@media (max-width: 480px) {
  .action-buttons-group {
    grid-template-columns: 1fr;
  }
}

/* Custom Checkout & My Cart Page Styles */
.wc-checkout-page {
  padding-bottom: 60px;
}

.checkout-container {
  margin-top: 32px;
  margin-bottom: 60px;
}

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

@media (max-width: 992px) {
  .sovc-checkout-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-section-title {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #0F172B;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.checkout-table-responsive {
  overflow-x: auto;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E6E6E6;
}

.sovc-checkout-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sovc-checkout-table thead th {
  background: #F0F0F0;
  padding: 14px 16px;
  font-weight: 600;
  color: #141414;
  text-align: left;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid #E6E6E6;
}

.sovc-checkout-table tbody td {
  padding: 16px;
  border-bottom: 1px solid #E6E6E6;
  color: #141414;
  vertical-align: middle;
}

.sovc-checkout-table tbody tr:last-child td {
  border-bottom: none;
}

.checkout-product-title {
  color: #141414;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.checkout-product-title:hover {
  color: #AA161E;
}

.unit-size-badge {
  color: #141414;
  font-weight: 400;
  white-space: nowrap;
}

.unit-price-text {
  color: #141414;
  font-weight: 500;
  white-space: nowrap;
}

.checkout-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.co-qty-btn {
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #141414;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.co-qty-btn:hover {
  background: #F5F5F5;
  border-color: #AA161E;
  color: #AA161E;
}

.co-qty-input {
  width: 44px;
  height: 32px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #141414;
  outline: none;
}

.item-total-text {
  font-weight: 600;
  color: #141414;
  white-space: nowrap;
}

/* Contact Details Form Box */
.checkout-contact-card {
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 24px;
  background: #FFFFFF;
}

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

@media (max-width: 600px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field-group {
  display: flex;
  flex-direction: column;
}

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

.form-field-group label {
  font-size: 14px;
  font-weight: 500;
  color: #141414;
  margin-bottom: 6px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.form-field-group label .req {
  color: #D9454D;
}

.form-field-group label .opt {
  color: #8C8C8C;
  font-size: 12px;
}

.form-field-group input,
.form-field-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  font-size: 14px;
  color: #141414;
  background: #FFFFFF;
  outline: none;
  font-family: var(--sovc-font-body);
  transition: border-color 0.2s ease;
}

.form-field-group input:focus,
.form-field-group textarea:focus {
  border-color: #AA161E;
}

.field-help-note {
  font-size: 12px;
  color: #8C8C8C;
  margin-top: 6px;
}

/* Right Order Summary Sidebar */
.sovc-sticky-order-summary {
  position: sticky;
  top: 100px;
}

.summary-card-title {
  font-family: var(--sovc-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 16px;
}

.summary-card-body {
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 24px;
  background: #FFFFFF;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
}

.summary-val {
  color: #141414;
  font-weight: 500;
}

.summary-row.total-row {
  font-size: 16px;
  font-weight: 700;
  color: #0F172B;
  border-top: 1px solid #E6E6E6;
  padding-top: 14px;
  margin-top: 14px;
  margin-bottom: 18px;
}

.summary-total-val {
  font-size: 18px;
  font-weight: 800;
  color: #0F172B;
}

.promo-code-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.promo-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  font-size: 13px;
  outline: none;
}

.promo-input:focus {
  border-color: #AA161E;
}

.btn-apply-promo {
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1px solid #AA161E;
  border-radius: 10px;
  color: #AA161E;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-apply-promo:hover {
  background: #FDF2F3;
}

.btn-submit-order-req {
  width: 100%;
  height: 48px;
  background: #AA161E;
  border: 1px solid #AA161E;
  border-radius: 12px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

.btn-submit-order-req:hover {
  background: #8E1017;
  border-color: #8E1017;
}

.summary-disclaimer-box {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 11px;
  color: #666666;
  line-height: 1.5;
}

.summary-disclaimer-box ul {
  margin: 0;
  padding-left: 16px;
}

.summary-disclaimer-box li:last-child {
  margin-bottom: 0;
}

/* Downloads Page Custom Styles */
.downloads-page {
  padding-bottom: 60px;
}

.downloads-search-bar-wrap {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
}

.downloads-search-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

@media (max-width: 600px) {
  .downloads-search-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

.search-label-text {
  font-family: var(--sovc-font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #141414;
  white-space: nowrap;
}

.search-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  padding: 0 14px;
  height: 42px;
  gap: 10px;
  transition: border-color 0.2s ease;
}

.search-input-box:focus-within {
  border-color: #AA161E;
}

.coa-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #141414;
  font-family: var(--sovc-font-body);
}

.downloads-list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 12px;
  padding: 16px 24px;
  transition: all 0.2s ease;
}

.download-item-card:hover {
  border-color: #AA161E;
  box-shadow: 0 4px 16px rgba(170, 22, 30, 0.06);
}

@media (max-width: 768px) {
  .download-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .card-right-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.card-left-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-thumb-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid #F0F0F0;
  flex-shrink: 0;
}

.download-thumb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.download-product-title {
  font-family: var(--sovc-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #141414;
  margin: 0 0 4px 0;
}

.download-patch-no {
  font-size: 13px;
  color: #8E8E93;
  margin: 0;
}

.card-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-doc-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  background: #FFFFFF;
  color: #141414;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--sovc-font-body);
}

.btn-doc-action:hover {
  border-color: #AA161E;
  color: #AA161E;
  background: #FDF2F3;
}

.btn-doc-action.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  background: #F9F9F9;
  border-color: #F0F0F0;
}

.summary-disclaimer-box li:last-child {
  margin-bottom: 0;
}