@charset "UTF-8";
:root {
  --primary: #e31e25;
  --primary-hover: #b81419;
  --dark: #424242;
  --dark-light: #616161;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --border: #e0e0e0;
  --text: #333333;
  --success: #2e7d32;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GLOBAL RESETS & TYPOGRAPHY --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 0.5em;
}

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

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

.sg-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.sg-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sg-section {
    padding: 50px 0;
  }
}

.sg-bg-light {
  background-color: var(--light-bg);
}

.sg-bg-dark {
  background-color: var(--dark);
  color: var(--white);
}

.sg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(227, 30, 37, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sg-badge::before {
  content: "✦";
  font-size: 10px;
}

.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: var(--primary);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none !important;
}
.sg-btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 30, 37, 0.25);
}
.sg-btn--outline {
  background-color: transparent;
  color: var(--dark) !important;
  border-color: var(--dark);
}
.sg-btn--outline:hover {
  background-color: var(--dark);
  color: var(--white) !important;
  border-color: var(--dark);
  box-shadow: 0 6px 20px rgba(66, 66, 66, 0.15);
}
.sg-btn--white-outline {
  background-color: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}
.sg-btn--white-outline:hover {
  background-color: var(--white);
  color: var(--dark) !important;
  border-color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* --- SITE HEADER STYLES --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}
.site-header--transparent {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header--solid {
  background-color: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.site-header--home {
  position: relative !important;
  background-color: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  padding: 16px 0 !important;
}
.site-header--home .site-header__logo-link {
  color: var(--dark) !important;
}
.site-header--home .site-header__toggle {
  color: var(--dark) !important;
}
.site-header--home .site-header__toggle.is-active {
  color: var(--white) !important;
}
@media (min-width: 993px) {
  .site-header--home .site-header__menu a {
    color: rgba(34, 40, 37, 0.75) !important;
  }
  .site-header--home .site-header__menu a:hover {
    color: var(--primary) !important;
  }
}
.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__logo {
  flex-shrink: 0;
  max-width: 220px;
}
.site-header__logo img, .site-header__logo .custom-logo {
  max-height: 38px;
  width: auto;
  display: block;
}
.site-header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-decoration: none !important;
}
.site-header__logo-text span {
  color: var(--primary);
}
.site-header__logo-icon {
  color: var(--primary);
  font-size: 26px;
}
.site-header__nav {
  display: flex;
  align-items: center;
}
.site-header__menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.site-header__menu li {
  margin: 0;
}
.site-header__menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  text-decoration: none !important;
}
.site-header__menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}
.site-header__menu a:hover {
  color: var(--white);
}
.site-header__menu a:hover::after {
  width: 100%;
}
.site-header__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  transition: var(--transition);
}
.site-header__toggle:focus {
  outline: none;
}
.site-header__actions {
  display: flex;
  align-items: center;
}
.site-header__actions .sg-btn {
  padding: 10px 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .site-header {
    padding: 16px 0;
  }
  .site-header__toggle {
    display: block;
  }
  .site-header__menu-container {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--dark);
    z-index: 1050;
    padding: 90px 24px 40px 24px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
  }
  .site-header__menu-container.open {
    right: 0;
  }
  .site-header__menu {
    flex-direction: column;
    gap: 20px;
  }
  .site-header__menu a {
    font-size: 18px;
    display: block;
    padding: 4px 0;
  }
  .site-header__actions {
    display: none;
  }
}
/* --- HERO BANNER STYLES --- */
.hero {
  background-color: #222825;
  position: relative;
  overflow: hidden;
}
.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .hero__container {
    flex-direction: column;
    gap: 50px;
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
  }
}
.hero__content {
  flex: 1.2;
  max-width: 640px;
  color: var(--white);
}
@media (max-width: 992px) {
  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hero__badge {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-bottom: 24px;
}
.hero__badge::before {
  color: var(--primary);
}
.hero__title {
  font-size: 54px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
  }
}
.hero__description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .hero__btn-primary {
    width: 100%;
  }
}
.hero__btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  cursor: pointer;
}
.hero__btn-video:hover {
  color: var(--primary);
}
.hero__btn-video:hover .hero__play-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(227, 30, 37, 0.3);
}
.hero__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary);
  font-size: 14px;
  transition: var(--transition);
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  width: 100%;
}
@media (max-width: 992px) {
  .hero__trust {
    justify-content: center;
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .hero__trust {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.hero__avatars {
  display: flex;
  flex-shrink: 0;
}
.hero__avatar-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #222825;
  overflow: hidden;
  margin-right: -10px;
}
.hero__avatar-item:last-child {
  margin-right: 0;
}
.hero__avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}
.hero__image-wrap {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 440px;
}
@media (max-width: 992px) {
  .hero__image-wrap {
    max-width: 320px;
  }
}
.hero__image-bg {
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1;
}
.hero__image-badge {
  position: absolute;
  top: 10%;
  left: 0;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(227, 30, 37, 0.35);
  animation: pulseBadge 2.5s infinite;
}
.hero__image {
  position: relative;
  z-index: 2;
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
  animation: floatImg 6s ease-in-out infinite;
}
@media (max-width: 992px) {
  .hero__image {
    max-width: 240px;
  }
}
.hero {
  /* --- TICKER STYLES --- */
}
.hero__ticker {
  background-color: #fbebeb;
  color: var(--primary);
  padding: 18px 0;
  border-top: 1px solid rgba(227, 30, 37, 0.1);
  border-bottom: 1px solid rgba(227, 30, 37, 0.1);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.hero__ticker-wrap {
  display: flex;
  width: 100%;
}
.hero__ticker-content {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: scrollTicker 30s linear infinite;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__ticker-content span {
  display: inline-block;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes floatImg {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulseBadge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(227, 30, 37, 0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scrollTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
/* --- HERO BANNER SLIDER --- */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f1f5f9;
}

.hero-slider {
  margin: 0 !important;
  padding: 0;
  width: 100%;
}
.hero-slider__slide {
  position: relative;
  outline: none;
  width: 100%;
}
.hero-slider__link {
  display: block;
  width: 100%;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
.hero-slider__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/800;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero-slider__image-container {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 576px) {
  .hero-slider__image-container {
    aspect-ratio: 4/3;
  }
}
.hero-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slider .slick-prev,
.hero-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(34, 40, 37, 0.4);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
}
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
  background-color: var(--primary);
  box-shadow: 0 4px 15px rgba(227, 30, 37, 0.4);
}
.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
  display: none;
}
.hero-slider .slick-prev {
  left: 30px;
}
@media (max-width: 768px) {
  .hero-slider .slick-prev {
    left: 15px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.hero-slider .slick-next {
  right: 30px;
}
@media (max-width: 768px) {
  .hero-slider .slick-next {
    right: 15px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.hero-slider .slick-dots {
  position: absolute;
  bottom: 25px;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  justify-content: center !important;
  transform: none !important;
  z-index: 10;
  display: flex !important;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}
@media (max-width: 576px) {
  .hero-slider .slick-dots {
    bottom: 12px;
    gap: 6px;
  }
}
.hero-slider .slick-dots li {
  margin: 0;
  padding: 0;
  display: block;
}
.hero-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  text-indent: -9999px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.hero-slider .slick-dots li button:hover {
  background-color: #fff;
}
.hero-slider .slick-dots li.slick-active button {
  background-color: var(--primary);
  width: 24px;
  border-radius: 100px;
}

/* --- ABOUT US STYLES --- */
.about {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}
.about .sg-container {
  max-width: 1400px;
  transition: var(--transition);
}
.about__bg-watermark {
  position: absolute;
  right: -60px;
  bottom: -80px;
  font-size: 560px;
  color: rgba(227, 30, 37, 0.015);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transition: var(--transition);
}
@media (max-width: 1200px) {
  .about__bg-watermark {
    display: none;
  }
}
.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .about__container {
    flex-direction: column;
    gap: 60px;
  }
}
.about__collage {
  flex: 1.1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  row-gap: 20px;
  column-gap: 20px;
  position: relative;
  height: auto;
  max-width: 540px;
  width: 100%;
  transition: var(--transition);
}
@media (min-width: 1200px) {
  .about__collage {
    max-width: 580px;
  }
}
@media (min-width: 1400px) {
  .about__collage {
    max-width: 640px;
  }
}
@media (min-width: 1920px) {
  .about__collage {
    max-width: 720px;
  }
}
@media (max-width: 992px) {
  .about__collage {
    max-width: 480px;
  }
}
@media (max-width: 480px) {
  .about__collage {
    max-width: 100%;
  }
}
.about__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
}
.about__img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 70%);
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  z-index: 5;
  pointer-events: none;
}
.about__img-wrap:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 4 !important;
}
.about__img-wrap:hover::after {
  left: 150%;
}
.about__img-wrap--top {
  grid-column: 1/13;
  grid-row: 1;
  z-index: 2;
  aspect-ratio: 1.6;
}
.about__img-wrap--bottom {
  grid-column: 7/13;
  grid-row: 2;
  z-index: 2;
}
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__img:hover {
  transform: scale(1.05);
}
.about__rate-card {
  grid-column: 1/7;
  grid-row: 2;
  background-color: rgba(227, 30, 37, 0.025);
  border: 1px solid rgba(227, 30, 37, 0.08);
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about__rate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 70%);
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  z-index: 5;
  pointer-events: none;
}
.about__rate-card:hover {
  background-color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(227, 30, 37, 0.1);
}
.about__rate-card:hover::after {
  left: 150%;
}
.about__rate-icon {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 12px;
}
.about__rate-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 8px;
}
@media (min-width: 1400px) {
  .about__rate-number {
    font-size: 54px;
  }
}
.about__rate-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin: 0;
}
.about__floating-badge {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  z-index: 5;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateStamp 22s linear infinite;
  transition: var(--transition);
}
.about__floating-badge:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px) {
  .about__floating-badge {
    top: 57%;
    left: 50%;
  }
}
@media (max-width: 480px) {
  .about__floating-badge {
    width: 90px;
    height: 90px;
    top: 57%;
    left: 50%;
  }
}
.about__badge-center {
  position: absolute;
  font-size: 22px;
  color: var(--primary);
}
@media (max-width: 480px) {
  .about__badge-center {
    font-size: 18px;
  }
}
.about__svg-text {
  width: 100%;
  height: 100%;
}
.about__svg-text-content {
  font-size: 9.5px;
  font-weight: 800;
  fill: var(--primary);
  letter-spacing: 1.2px;
}
.about__content {
  flex: 0.9;
}
@media (max-width: 992px) {
  .about__content {
    width: 100%;
  }
}
.about__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
@media (min-width: 1200px) {
  .about__title {
    font-size: 42px;
  }
}
@media (min-width: 1400px) {
  .about__title {
    font-size: 48px;
  }
}
@media (min-width: 1920px) {
  .about__title {
    font-size: 54px;
  }
}
@media (max-width: 768px) {
  .about__title {
    font-size: 30px;
  }
}
.about__description {
  font-size: 16px;
  color: var(--dark-light);
  line-height: 1.7;
  margin-bottom: 40px;
}
@media (min-width: 1400px) {
  .about__description {
    font-size: 18px;
    margin-bottom: 48px;
  }
}
.about__feature {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  transition: var(--transition);
}
@media (min-width: 1400px) {
  .about__feature {
    margin-bottom: 40px;
    gap: 24px;
  }
}
.about__feature:last-child {
  margin-bottom: 0;
}
.about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
@media (min-width: 1400px) {
  .about__feature-icon {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }
}
.about__feature-details {
  flex-grow: 1;
}
.about__feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
@media (min-width: 1400px) {
  .about__feature-title {
    font-size: 19px;
  }
}
.about__feature-text {
  font-size: 14.5px;
  color: var(--dark-light);
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 1400px) {
  .about__feature-text {
    font-size: 15.5px;
  }
}
.about__feature:hover .about__feature-icon {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 15px rgba(227, 30, 37, 0.25);
}

/* --- BADGE KEYFRAME --- */
@keyframes rotateStamp {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* --- SHOP PRODUCTS STYLES --- */
.products {
  background-color: var(--light-bg);
}
.products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .products__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
.products__header-left {
  max-width: 680px;
  text-align: left;
}
@media (max-width: 768px) {
  .products__header-left {
    text-align: center;
  }
}
.products__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .products__title {
    font-size: 30px;
  }
}
.products__arrows-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .products__arrows-wrap {
    margin-bottom: 0;
  }
}
.products__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  outline: none;
}
.products__arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(227, 30, 37, 0.25);
  transform: translateY(-2px);
}
.products__arrow:active {
  transform: translateY(0);
}
.products__arrow i {
  font-size: 14px;
}
.products__slider-container {
  position: relative;
  margin: 0 -15px 54px -15px;
}
.products__slider-container .slick-prev,
.products__slider-container .slick-next {
  display: none !important;
}
.products__slider-container {
  /* --- SLICK SLIDER OVERRIDES FOR WIDE DOTS --- */
}
.products__slider-container .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  width: 100%;
}
.products__slider-container .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}
.products__slider-container .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0;
}
.products__slider-container .slick-dots li button::before {
  display: none;
}
.products__slider-container .slick-dots li.slick-active button {
  width: 24px;
  border-radius: 5px;
  background-color: var(--primary);
}
.products__slider {
  margin: 0;
  padding: 0;
  list-style: none;
}
.products__slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}
.products__slider .slick-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
}
.products__slide-item {
  padding: 10px 15px 30px 15px;
  outline: none;
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
}
.products__slide-item .sg-product-card {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
  height: 100% !important;
}
.products__slide-item .sg-product-card .sg-product-card__inner {
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
  height: 100% !important;
}
.products__slide-item .sg-product-card .sg-product-card__body {
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
}
.products__slide-item .sg-product-card .sg-product-card__footer {
  margin-top: auto !important;
}
.products__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .products__footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.products__footer-badge {
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(227, 30, 37, 0.2);
}
.products__footer-text {
  font-size: 14px;
  color: var(--dark-light);
  font-weight: 600;
  margin: 0;
}
.products__footer-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}
.products__footer-link:hover {
  color: var(--primary-hover);
}
.products__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  font-weight: 600;
  color: var(--dark-light);
  background-color: var(--white);
  border: 1px dashed var(--border);
  border-radius: 8px;
}

.price,
.products__price,
.sg-product-card__price,
.woocommerce-Price-amount {
  display: none !important;
}

/* --- WHY CHOOSE US STYLES --- */
.why-us {
  background-color: var(--white);
}
.why-us__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .why-us__grid {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 50px;
  }
}
.why-us__left {
  flex: 1.1;
  max-width: 620px;
}
@media (max-width: 992px) {
  .why-us__left {
    max-width: 100%;
  }
}
.why-us__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .why-us__title {
    font-size: 30px;
  }
}
.why-us__description {
  font-size: 15px;
  color: var(--dark-light);
  line-height: 1.65;
  margin-bottom: 30px;
}
.why-us__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 36px;
}
.why-us__check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-us__check-icon {
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
}
.why-us__check-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.why-us__bullets-box {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .why-us__bullets-box {
    flex-direction: column;
    gap: 24px;
  }
}
.why-us__exp-card {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  width: 170px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(227, 30, 37, 0.2);
  transition: var(--transition);
}
.why-us__exp-card:hover {
  background-color: var(--primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(227, 30, 37, 0.35);
}
@media (max-width: 576px) {
  .why-us__exp-card {
    width: 100%;
    padding: 24px;
  }
}
.why-us__exp-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.why-us__exp-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0;
}
.why-us__bullets-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-us__bullet-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.why-us__bullet-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.why-us__bullet-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-us__bullet-text {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.5;
  margin: 0;
}
.why-us__right {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.why-us__visual {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .why-us__visual {
    width: 380px;
    height: 380px;
  }
}
@media (max-width: 480px) {
  .why-us__visual {
    width: 300px;
    height: 300px;
  }
}
.why-us__circle-main {
  position: absolute;
  width: 85%;
  height: 85%;
  background-color: rgba(227, 30, 37, 0.03);
  border: 1px solid rgba(227, 30, 37, 0.05);
  border-radius: 50%;
  z-index: 1;
}
.why-us__pack-wrap {
  position: absolute;
  z-index: 2;
  transition: var(--transition);
}
.why-us__pack-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}
.why-us__pack-wrap--1 {
  width: 50%;
  left: 10%;
  top: 15%;
  transform: rotate(-10deg);
}
.why-us__pack-wrap--1:hover {
  transform: rotate(-5deg) scale(1.05);
  z-index: 3;
}
.why-us__pack-wrap--2 {
  width: 50%;
  right: 12%;
  top: 20%;
  transform: rotate(10deg);
}
.why-us__pack-wrap--2:hover {
  transform: rotate(5deg) scale(1.05);
  z-index: 3;
}
.why-us__circle-sub {
  position: absolute;
  width: 44%;
  height: 44%;
  right: 4%;
  bottom: 4%;
  border-radius: 50%;
  border: 6px solid var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 4;
  transition: var(--transition);
}
.why-us__circle-sub:hover {
  transform: scale(1.06);
}
.why-us__sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us {
  /* --- STATISTICS ROW --- */
}
.why-us__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .why-us__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
.why-us__stat-item {
  text-align: center;
}
.why-us__stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .why-us__stat-number {
    font-size: 34px;
  }
}
.why-us__stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* --- WHAT WE OFFER STYLES --- */
.offer {
  background-color: var(--light-bg);
}
.offer__header {
  text-align: center;
  margin-bottom: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .offer__title {
    font-size: 30px;
  }
}
.offer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .offer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 30px;
  }
}
@media (max-width: 576px) {
  .offer__grid {
    grid-template-columns: 1fr;
    gap: 90px 0;
  }
}
.offer__card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 85px 24px 30px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.offer__card:hover .offer__img {
  transform: scale(1.06);
}
.offer__img-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 5px solid var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: #f1f4f2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.offer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.offer__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.offer__card-text {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}
.offer__card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.offer__card-link:hover {
  color: var(--primary-hover);
}
.offer__footer {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .offer__footer {
    margin-top: 30px;
  }
}
.offer__footer-text {
  font-size: 14px;
  color: var(--dark-light);
  font-weight: 600;
  margin: 0;
}
.offer__footer-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}
.offer__footer-link:hover {
  color: var(--primary-hover);
}

/* --- OUR BENEFITS STYLES --- */
.benefits {
  background-color: var(--white);
}
.benefits__header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .benefits__title {
    font-size: 30px;
  }
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.benefits__col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.benefits__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.benefits__item:hover .benefits__icon {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
}
.benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(227, 30, 37, 0.04);
  border: 1px solid rgba(227, 30, 37, 0.1);
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}
.benefits__details {
  flex-grow: 1;
}
.benefits__item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.benefits__item-text {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.5;
  margin: 0;
}
.benefits__center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .benefits__center {
    order: -1;
  }
}
.benefits__visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits__visual-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f1f4f2;
  z-index: 1;
}
.benefits__visual-img {
  position: absolute;
  z-index: 2;
  height: 75%;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}
.benefits__visual-img--1 {
  left: 10%;
  top: 10%;
  transform: rotate(-12deg);
}
.benefits__visual-img--1:hover {
  transform: rotate(-6deg) scale(1.05);
  z-index: 3;
}
.benefits__visual-img--2 {
  right: 10%;
  bottom: 10%;
  transform: rotate(12deg);
}
.benefits__visual-img--2:hover {
  transform: rotate(6deg) scale(1.05);
  z-index: 3;
}
.benefits__footer {
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.benefits__footer-text {
  font-size: 14px;
  color: var(--dark-light);
  font-weight: 600;
  margin: 0;
}
.benefits__footer-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}
.benefits__footer-link:hover {
  color: var(--primary-hover);
}

/* --- CTA CONVERSION BANNER --- */
.cta-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cta-banner__container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
.cta-banner__content {
  flex: 1.3;
  max-width: 680px;
}
@media (max-width: 992px) {
  .cta-banner__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.cta-banner__badge {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-banner__badge::before {
  color: var(--primary);
}
.cta-banner__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cta-banner__title {
    font-size: 30px;
  }
}
.cta-banner__description {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}
.cta-banner__actions {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 300px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .cta-banner__actions {
    align-items: center;
    max-width: 320px;
  }
}
.cta-banner__btn-primary, .cta-banner__btn-secondary {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* --- ACTIVE INGREDIENTS STYLES --- */
.ingredients {
  background-color: var(--white);
}
.ingredients__main-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .ingredients__main-grid {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
  }
}
.ingredients__left-col {
  flex: 1.1;
  max-width: 580px;
}
@media (max-width: 992px) {
  .ingredients__left-col {
    max-width: 100%;
  }
}
.ingredients__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .ingredients__title {
    font-size: 30px;
  }
}
.ingredients__bullet-divider {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-bottom: 20px;
}
.ingredients__description {
  font-size: 15px;
  color: var(--dark-light);
  line-height: 1.65;
  margin-bottom: 30px;
}
.ingredients__assurance-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.ingredients__assurance-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  padding: 24px;
  background-color: rgba(227, 30, 37, 0.03);
  border: 1px solid rgba(227, 30, 37, 0.08);
  border-radius: 8px;
}
@media (max-width: 480px) {
  .ingredients__assurance-box {
    grid-template-columns: 1fr;
  }
}
.ingredients__assurance-item {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ingredients__assurance-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
}
.ingredients__right-col {
  flex: 0.9;
  width: 100%;
  display: flex;
  justify-content: center;
}
.ingredients__collage {
  position: relative;
  width: 80%;
  height: 420px;
}
@media (max-width: 992px) {
  .ingredients__collage {
    width: 100%;
    max-width: 540px;
    height: 450px;
  }
}
@media (max-width: 576px) {
  .ingredients__collage {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.ingredients__collage-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 90%;
  background-color: rgba(227, 30, 37, 0.04);
  border: 1px solid rgba(227, 30, 37, 0.08);
  border-radius: 12px;
  z-index: 1;
}
@media (max-width: 576px) {
  .ingredients__collage-bg {
    display: none;
  }
}
.ingredients__image-container {
  position: absolute;
  left: 4%;
  top: 4%;
  width: 65%;
  height: 90%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 2;
}
@media (max-width: 576px) {
  .ingredients__image-container {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 260px;
    box-shadow: var(--shadow);
  }
}
.ingredients__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.ingredients__main-img:hover {
  transform: scale(1.03);
}
.ingredients__overlap-card {
  position: absolute;
  right: 0;
  top: 10%;
  width: 55%;
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-hover);
  z-index: 3;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.ingredients__overlap-card:hover {
  transform: translateY(-4px);
}
@media (max-width: 576px) {
  .ingredients__overlap-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 20px;
    box-shadow: var(--shadow);
    transform: none !important;
  }
}
.ingredients__list-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.ingredients__list-item:last-child {
  margin-bottom: 0;
}
.ingredients__list-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(227, 30, 37, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ingredients__list-content {
  flex-grow: 1;
}
.ingredients__list-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.ingredients__list-text {
  font-size: 11px;
  color: var(--dark-light);
  line-height: 1.4;
  margin: 0;
}
.ingredients {
  /* --- BOTTOM HIGHLIGHTS ROW --- */
}
.ingredients__bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
@media (max-width: 992px) {
  .ingredients__bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    padding-top: 50px;
  }
}
@media (max-width: 576px) {
  .ingredients__bottom-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.ingredients__bottom-col {
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.ingredients__bottom-col:hover .ingredients__bottom-icon {
  color: var(--primary-hover);
  transform: translateY(-2px);
}
.ingredients__bottom-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  transition: var(--transition);
  display: inline-block;
}
.ingredients__bottom-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.ingredients__bottom-text {
  font-size: 13px;
  color: var(--dark-light);
  line-height: 1.5;
  margin: 0;
}

/* --- DEAL OF THE WEEK STYLES --- */
.deal {
  background-color: #222825;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deal__container {
  position: relative;
  z-index: 3;
}
.deal__content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.deal__badge {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-bottom: 24px;
}
.deal__badge::before {
  color: var(--primary);
}
.deal__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .deal__title {
    font-size: 30px;
  }
}
.deal__subtitle {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 660px;
}
.deal__timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 576px) {
  .deal__timer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 320px;
  }
}
.deal__timer-box {
  background-color: var(--white);
  border-radius: 12px;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}
.deal__timer-box:hover {
  transform: translateY(-4px);
}
@media (max-width: 576px) {
  .deal__timer-box {
    width: 100%;
    height: 100px;
  }
}
.deal__timer-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.deal__timer-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.deal__img-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 300px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .deal__img-wrap {
    width: 180px;
  }
}
@media (max-width: 992px) {
  .deal__img-wrap {
    display: none;
  }
}
.deal__img-wrap--left {
  left: 4%;
}
.deal__img-wrap--right {
  right: 4%;
}
.deal__img {
  position: absolute;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}
.deal__img--left-1 {
  left: 0;
  bottom: 0;
  width: 75%;
  transform: rotate(-15deg);
}
.deal__img--left-2 {
  left: 40px;
  bottom: -50px;
  width: 80%;
  transform: rotate(5deg);
  z-index: 3;
}
.deal__img--right-1 {
  right: 0;
  bottom: 0;
  width: 75%;
  transform: rotate(15deg);
}
.deal__img--right-2 {
  right: 40px;
  bottom: -50px;
  width: 80%;
  transform: rotate(-5deg);
  z-index: 3;
}

/* --- TESTIMONIALS SLIDER STYLES --- */
.testimonials {
  background-color: var(--white);
}
.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 680px;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 30px;
  }
}
.testimonials__slider {
  margin: 0 -15px;
  position: relative;
}
.testimonials__slide {
  padding: 24px 15px;
  height: auto;
}
.testimonials__card {
  background-color: rgba(227, 30, 37, 0.02);
  border: 1px solid rgba(227, 30, 37, 0.05);
  border-radius: 12px;
  padding: 40px 30px 30px 30px;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonials__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(227, 30, 37, 0.15);
}
@media (max-width: 480px) {
  .testimonials__card {
    padding: 35px 20px 24px 20px;
  }
}
.testimonials__quote {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(227, 30, 37, 0.25);
}
.testimonials__stars {
  color: #ffb300;
  font-size: 13px;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}
.testimonials__text {
  font-size: 14.5px;
  color: var(--dark-light);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}
.testimonials__user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(227, 30, 37, 0.05);
  padding-top: 20px;
}
.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonials__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials__meta {
  display: flex;
  flex-direction: column;
}
.testimonials__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.testimonials__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-light);
  margin: 0;
}
.testimonials {
  /* --- SLICK SLIDER OVERRIDES FOR WIDE DOTS --- */
}
.testimonials .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  width: 100%;
}
.testimonials .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}
.testimonials .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0;
}
.testimonials .slick-dots li button::before {
  display: none;
}
.testimonials .slick-dots li.slick-active button {
  width: 24px;
  border-radius: 5px;
  background-color: var(--primary);
}

/* --- FAQS ACCORDION STYLES --- */
.faqs {
  background-color: #f6f7f2;
}
.faqs__grid {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .faqs__grid {
    flex-direction: column;
    gap: 60px;
  }
}
.faqs__left {
  flex: 1.1;
}
.faqs__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .faqs__title {
    font-size: 28px;
  }
}
.faqs__bullet-divider {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-bottom: 28px;
}
.faqs {
  /* --- ACCORDION --- */
}
.faqs__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faqs__item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: var(--white);
  transition: var(--transition);
}
.faqs__item--active {
  border-color: rgba(227, 30, 37, 0.2);
}
.faqs__item--active .faqs__question {
  background-color: var(--primary);
  color: var(--white);
}
.faqs__item--active .faqs__question:hover {
  color: var(--white);
}
.faqs__item--active .faqs__question .faqs__icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.faqs__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}
.faqs__question:hover {
  color: var(--primary);
}
.faqs__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(227, 30, 37, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faqs__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faqs__answer p {
  font-size: 14px;
  color: var(--dark-light);
  line-height: 1.7;
  padding: 20px;
  margin: 0;
}
.faqs__answer--open {
  max-height: 300px;
}
.faqs {
  /* --- RIGHT IMAGE COLLAGE --- */
}
.faqs__right {
  flex: 0.9;
  position: relative;
}
.faqs__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
@media (max-width: 992px) {
  .faqs__img-wrap {
    max-width: 560px;
  }
}
.faqs__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .faqs__img {
    height: 360px;
  }
}
.faqs__trust-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background-color: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-hover);
}
.faqs__trust-avatars {
  display: flex;
}
.faqs__trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  margin-left: -8px;
}
.faqs__trust-avatar:first-child {
  margin-left: 0;
  background-color: #222825;
}
.faqs__trust-avatar:nth-child(2) {
  background-color: #666;
}
.faqs__trust-avatar:nth-child(3) {
  background-color: #999;
}
.faqs__trust-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}
.faqs__trust-text strong {
  color: var(--primary);
}

/* --- BLOGS SECTION STYLES --- */
.blogs {
  background-color: var(--white);
}
.blogs__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .blogs__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.blogs__header-left {
  flex: 1;
  max-width: 520px;
}
.blogs__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .blogs__title {
    font-size: 28px;
  }
}
.blogs__header-right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.blogs__subtitle {
  font-size: 14.5px;
  color: var(--dark-light);
  line-height: 1.65;
  margin: 0;
}
.blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .blogs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blogs__grid {
    grid-template-columns: 1fr;
  }
}
.blogs__card {
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blogs__card:hover .blogs__card-img {
  transform: scale(1.04);
}
.blogs__card:hover .blogs__card-link {
  color: var(--primary-hover);
  gap: 8px;
}
.blogs__card-img-link {
  display: block;
  text-decoration: none;
}
.blogs__card-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 220px;
  background-color: #f1f4f2;
}
.blogs__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.blogs__card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(227, 30, 37, 0.06), rgba(34, 40, 37, 0.04));
}
.blogs__card-img-placeholder i {
  font-size: 48px;
  color: var(--primary);
  opacity: 0.5;
}
.blogs__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 4px;
}
.blogs__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}
.blogs__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blogs__card-title a:hover {
  color: var(--primary);
}
.blogs__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.blogs__card-link i {
  font-size: 11px;
}

/* --- PREMIUM ARCHIVE & EDITORIAL BLOG CARD STYLING --- */
.blog-categories-nav {
  background-color: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-bottom: 40px;
}
.blog-categories-nav__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.blog-categories-nav__tab {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-categories-nav__tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.blog-categories-nav__tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(227, 30, 37, 0.2);
}
.blog-categories-nav__tab.active .blog-categories-nav__count {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.blog-categories-nav__count {
  background-color: var(--light-bg);
  color: var(--dark-light);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  transition: var(--transition);
}

.blog-grid-container {
  position: relative;
  min-height: 250px;
}

.blog-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.blog-premium-grid.loading {
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 992px) {
  .blog-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .blog-premium-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Premium Blog Card Component */
.blog-card-premium {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.blog-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(227, 30, 37, 0.15);
}
.blog-card-premium:hover .blog-card-premium__image {
  transform: scale(1.06);
}
.blog-card-premium:hover .blog-card-premium__btn {
  color: var(--primary-hover);
  gap: 12px;
}
.blog-card-premium__image-link {
  display: block;
  overflow: hidden;
  position: relative;
}
.blog-card-premium__image-wrap {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background-color: #f1f4f2;
}
.blog-card-premium__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card-premium__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(227, 30, 37, 0.06), rgba(34, 40, 37, 0.04));
}
.blog-card-premium__image-placeholder i {
  font-size: 56px;
  color: var(--primary);
  opacity: 0.3;
}
.blog-card-premium__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--white);
  color: var(--dark);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.blog-card-premium__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-premium__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--dark-light);
  margin-bottom: 12px;
}
.blog-card-premium__meta i {
  color: var(--primary);
  opacity: 0.8;
}
.blog-card-premium__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 54px;
}
.blog-card-premium__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card-premium__title a:hover {
  color: var(--primary);
}
.blog-card-premium__excerpt {
  font-size: 14.5px;
  color: var(--dark-light);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.blog-card-premium__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
  margin-top: auto;
}
.blog-card-premium__btn i {
  font-size: 12px;
}

/* AJAX Spinner */
.blog-grid-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.blog-grid-loader__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* AJAX Pagination Custom Layout */
.blog-pagination-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.blog-pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-pagination__item {
  margin: 0;
  padding: 0;
}
.blog-pagination__item.active .blog-pagination__link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(227, 30, 37, 0.2);
}
.blog-pagination__link {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--dark);
  font-size: 14.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.blog-pagination__link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--light-bg);
}
.blog-pagination__link--prev, .blog-pagination__link--next {
  width: auto;
  padding: 0 16px;
  gap: 8px;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Empty State Card */
.blog-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 40px;
  background-color: var(--light-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 40px auto;
}
.blog-empty-state__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(227, 30, 37, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px auto;
}
.blog-empty-state__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.blog-empty-state__description {
  font-size: 14.5px;
  color: var(--dark-light);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.blog-cta-section {
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.blog-cta-section__content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-cta-section__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .blog-cta-section__title {
    font-size: 30px;
  }
}
.blog-cta-section__description {
  font-size: 16px;
  color: var(--dark-light);
  line-height: 1.65;
  margin-bottom: 36px;
}
.blog-cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .blog-cta-section__actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .blog-cta-section__actions .sg-btn {
    width: 100%;
  }
}

/* --- FOOTER STYLES --- */
.sg-footer {
  background-color: #222825;
  color: rgba(255, 255, 255, 0.75);
}
.sg-footer__body {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .sg-footer__body {
    padding: 60px 0 40px;
  }
}
.sg-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}
@media (max-width: 1200px) {
  .sg-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .sg-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.sg-footer {
  /* --- BRAND COL --- */
}
.sg-footer__brand {
  display: flex;
  flex-direction: column;
}
.sg-footer__logo {
  margin-bottom: 20px;
}
.sg-footer__logo-img {
  max-height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}
.sg-footer__logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.sg-footer__brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}
.sg-footer__social-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sg-footer__socials {
  display: flex;
  gap: 10px;
}
.sg-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}
.sg-footer__social-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.sg-footer {
  /* --- NAV COLUMNS --- */
}
.sg-footer__col {
  display: flex;
  flex-direction: column;
}
.sg-footer__col-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.sg-footer__col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}
.sg-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sg-footer__links li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sg-footer__links li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}
.sg-footer__links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sg-footer__links li a:hover {
  color: var(--white);
}
.sg-footer {
  /* --- CONTACT COL --- */
}
.sg-footer__contact-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}
.sg-footer__contact-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}
.sg-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sg-footer__contact-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sg-footer__contact-item a:hover {
  color: var(--white);
}
.sg-footer__contact-icon {
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
}
.sg-footer {
  /* --- BOTTOM BAR --- */
}
.sg-footer__bottom {
  padding: 20px 0;
}
.sg-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 576px) {
  .sg-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
.sg-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.sg-footer__legal {
  display: flex;
  gap: 24px;
}
.sg-footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sg-footer__legal a:hover {
  color: var(--white);
}

/* ============================================================
   SINGLE PRODUCT PAGE (PDP) CUSTOMIZATIONS
   ============================================================ */
/* --- Visual Hierarchy & Typography Spacing --- */
.sg-single-product-info {
  /* Category Label styled as a premium clinical badge */
}
.sg-single-product-info .product-category-label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: rgba(227, 30, 37, 0.06);
  color: var(--primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.sg-single-product-info .product_title {
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
  line-height: 1.25;
}
.sg-single-product-info .woocommerce-product-rating {
  margin-bottom: 12px;
}
.sg-single-product-info .price {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.sg-single-product-info .woocommerce-product-details__short-description {
  margin-top: 20px;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 15px;
  color: var(--dark-light);
}

/* Hide default category label in metadata block to prevent duplication */
.sg-single-product-info .product_meta .posted_in {
  display: none !important;
}

/* --- Restructured Catalogue CTA Actions --- */
.sg-catalogue-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 35px;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 30px 0;
}

/* Row 1: Primary Action Button */
.sg-catalogue-actions__primary {
  width: 100%;
}
.sg-catalogue-actions__primary .sg-btn--amazon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 14px rgba(255, 153, 0, 0.18);
  transition: all 0.25s ease;
}
.sg-catalogue-actions__primary .sg-btn--amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 153, 0, 0.32);
}

/* Row 2: Secondary Actions Buttons Grid */
.sg-catalogue-actions__secondary {
  display: flex;
  gap: 12px;
  width: 100%;
}
.sg-catalogue-actions__secondary .sg-btn {
  flex: 1; /* Make equal width */
  min-width: 0; /* Allow scaling down without breaking */
  padding: 14px 20px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
  text-align: center;
  transition: all 0.25s ease;
}

/* PDF Download outline styling */
.sg-btn--pdf-download {
  background-color: var(--white) !important;
  color: var(--dark) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow);
}
.sg-btn--pdf-download:hover {
  background-color: var(--dark) !important;
  color: var(--white) !important;
  border-color: var(--dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 40, 37, 0.12);
}

/* --- Redesigned Trust Cards Section --- */
.sg-pdp-trust-section {
  margin: 40px 0 80px;
  width: 100%;
}

.sg-pdp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.sg-pdp-trust-card {
  background-color: var(--white);
  border: 1px solid #eef0eb;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 4px 20px rgba(34, 40, 37, 0.02);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.sg-pdp-trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 37, 0.2);
  box-shadow: 0 12px 30px rgba(34, 40, 37, 0.07);
}
.sg-pdp-trust-card:hover .sg-pdp-trust-icon {
  background-color: var(--primary);
  color: var(--white);
  border-style: solid;
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Dashed circular icon layout */
.sg-pdp-trust-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #f6f7f2;
  border: 1.5px dashed rgba(227, 30, 37, 0.18);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.sg-pdp-trust-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.sg-pdp-trust-card-desc {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.55;
  margin: 0;
}

/* --- FAQs Section overrides --- */
.faqs--pdp {
  background-color: #f6f7f2;
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.faqs--pdp .faqs__grid {
  display: block;
}
.faqs--pdp .faqs__left {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.faqs--pdp .faqs__title {
  text-align: center;
  margin-bottom: 40px;
}
.faqs--pdp .sg-badge {
  display: table;
  margin: 0 auto 16px auto;
}

/* --- Mobile Sticky CTA Bar --- */
.sg-mobile-sticky-cta {
  display: none;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
  .sg-pdp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sg-pdp-trust-section {
    margin: 20px 0 60px;
  }
}
@media (max-width: 768px) {
  .sg-mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 12px));
    z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .sg-mobile-sticky-cta__inner {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  .sg-mobile-sticky-cta__inner .sg-btn {
    flex: 1;
    height: 48px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    padding: 0 10px !important; /* Override large default desktop button padding */
    white-space: nowrap !important; /* Force text to remain on a single line */
  }
  body.single-product {
    padding-bottom: 80px; /* Offset space so content is not blocked */
  }
}
@media (max-width: 576px) {
  .sg-catalogue-actions__secondary {
    flex-direction: column;
    gap: 10px;
  }
  .sg-catalogue-actions__secondary .sg-btn {
    width: 100%;
    flex: none;
  }
  .sg-pdp-trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ============================================================
   B2B WHOLESALE LANDING PAGE STYLES
   ============================================================ */
/* --- Common Section Headers --- */
.wholesale-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.wholesale-section-header .sg-badge {
  display: table;
  margin: 0 auto 16px auto;
}
.wholesale-section-header .wholesale-section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.wholesale-section-header .wholesale-section-subtitle {
  font-size: 15px;
  color: var(--dark-light);
  line-height: 1.65;
  margin: 0;
}

/* --- 1. Hero Section Actions --- */
.wholesale-hero .wholesale-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.wholesale-hero .wholesale-hero__actions .sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 8px;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.25s ease;
}
.wholesale-hero .wholesale-hero__actions .sg-btn--primary {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border: none;
  box-shadow: 0 4px 14px rgba(227, 30, 37, 0.18);
}
.wholesale-hero .wholesale-hero__actions .sg-btn--primary:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 30, 37, 0.32);
}
.wholesale-hero .wholesale-hero__actions .sg-btn--outline {
  background-color: transparent !important;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}
.wholesale-hero .wholesale-hero__actions .sg-btn--outline:hover {
  background-color: var(--white) !important;
  color: var(--dark) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* --- 2. Benefits Grid Section --- */
.wholesale-benefits {
  background-color: #ffffff;
}

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

.wholesale-benefits__card {
  background-color: var(--white);
  border: 1px solid #eef0eb;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 4px 20px rgba(34, 40, 37, 0.02);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.wholesale-benefits__card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 37, 0.2);
  box-shadow: 0 12px 30px rgba(34, 40, 37, 0.07);
}
.wholesale-benefits__card:hover .wholesale-benefits__icon {
  background-color: var(--primary);
  color: var(--white);
  border-style: solid;
  border-color: var(--primary);
  transform: scale(1.05);
}
.wholesale-benefits__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.wholesale-benefits__card p {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.55;
  margin: 0;
}

.wholesale-benefits__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #f6f7f2;
  border: 1.5px dashed rgba(227, 30, 37, 0.18);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

/* --- 3. Target Partners Section --- */
.wholesale-audiences {
  background-color: #f6f7f2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.wholesale-audiences__card {
  background-color: var(--white);
  border: 1px solid rgba(34, 40, 37, 0.05);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}
.wholesale-audiences__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(227, 30, 37, 0.1);
}
.wholesale-audiences__card:hover .wholesale-audiences__icon {
  background-color: rgba(227, 30, 37, 0.08);
  color: var(--primary);
}
.wholesale-audiences__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.wholesale-audiences__card p {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.55;
  margin: 0;
}

.wholesale-audiences__icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: rgba(34, 40, 37, 0.03);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

/* --- 4. Process Ordering Timeline --- */
.wholesale-process {
  background-color: #ffffff;
}

.wholesale-process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  padding-top: 20px;
  /* Horizontal connection line on desktop */
}
.wholesale-process__timeline::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
}

.wholesale-process__step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.wholesale-process__step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.wholesale-process__step p {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.55;
  margin: 0;
  padding: 0 10px;
}

.wholesale-process__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--border);
  color: var(--dark-light);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.wholesale-process__number span {
  position: relative;
  top: -1px;
}

.wholesale-process__step:hover .wholesale-process__number {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(227, 30, 37, 0.22);
}

/* --- 5. Terms Grid Section --- */
.wholesale-terms {
  background-color: #ffffff;
  border-top: 1px solid var(--border);
}

.wholesale-terms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.wholesale-terms__card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}
.wholesale-terms__card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.wholesale-terms__card:hover .wholesale-terms__icon {
  color: var(--primary);
  background-color: rgba(227, 30, 37, 0.06);
}
.wholesale-terms__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px 0;
  line-height: 1.35;
}
.wholesale-terms__card p {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.6;
  margin: 0;
}

.wholesale-terms__icon {
  font-size: 24px;
  color: var(--dark-light);
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background-color: #f6f7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

/* --- 6. FAQs Page Overrides --- */
.faqs--wholesale {
  background-color: #f6f7f2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 0 !important;
}

/* --- 7. Final Conversion CTA Section --- */
.wholesale-cta {
  padding: 80px 0 100px 0;
  background-color: #ffffff;
}

.wholesale-cta__card {
  background: linear-gradient(135deg, #1e2421 0%, #29312c 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.wholesale-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.wholesale-cta__card h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}
.wholesale-cta__card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}
.wholesale-cta__card .sg-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 8px;
  border: none;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(227, 30, 37, 0.28);
  transition: all 0.25s ease;
}
.wholesale-cta__card .sg-btn:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 30, 37, 0.45);
}

/* ============================================================
   RESPONSIVE MEDIA OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .wholesale-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .wholesale-section-header .wholesale-section-title {
    font-size: 28px;
  }
  .wholesale-audiences__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wholesale-process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .wholesale-process__timeline::before {
    display: none; /* Hide timeline connector line */
  }
  .wholesale-cta__card {
    padding: 50px 30px;
  }
  .wholesale-cta__card h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .wholesale-terms__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .wholesale-hero .wholesale-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .wholesale-hero .wholesale-hero__actions .sg-btn {
    width: 100%;
    padding: 14px 20px;
  }
  .wholesale-benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wholesale-audiences__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wholesale-audiences__card {
    padding: 24px 20px;
  }
  .wholesale-process__timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .wholesale-terms__card {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
  .wholesale-cta__card {
    padding: 40px 20px;
  }
  .wholesale-cta__card h2 {
    font-size: 24px;
  }
  .wholesale-cta__card p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
/* ============================================================
   INVOICE SEARCH FRONTEND PAGE STYLES
   ============================================================ */
/* --- Decorator Icon Above Lookup --- */
.invoice-search__decor {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.invoice-search__decor .invoice-search__decor-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #f6f7f2;
  border: 1.5px dashed rgba(227, 30, 37, 0.22);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(34, 40, 37, 0.02);
}

/* --- Shortcode Overrides for Premium Lookup Card --- */
.invoice-search-sec {
  background-color: #ffffff;
  padding-bottom: 60px;
}
.invoice-search-sec .invoice-search__container-inner {
  max-width: 640px;
  margin: 0 auto;
}
.invoice-search-sec {
  /* Target the plugin shortcode container */
}
.invoice-search-sec .im-search-container {
  max-width: 100% !important;
  margin: 0 !important;
  background: var(--white) !important;
  border: 1px solid #eef0eb !important;
  border-radius: 16px !important;
  padding: 40px 32px !important;
  box-shadow: 0 10px 30px rgba(34, 40, 37, 0.05) !important;
  text-align: center;
  position: relative;
}
.invoice-search-sec .im-search-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
  letter-spacing: -0.3px !important;
}
.invoice-search-sec .im-search-desc {
  font-size: 14px !important;
  color: var(--dark-light) !important;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
}
.invoice-search-sec {
  /* Form Fields */
}
.invoice-search-sec .im-search-field-group {
  display: flex;
  gap: 12px;
  position: relative;
}
.invoice-search-sec .im-search-input {
  flex: 1;
  height: 52px;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 12px 18px 12px 42px !important; /* Extra padding left for search icon */
  font-size: 14.5px !important;
  color: var(--dark) !important;
  outline: none;
  background-color: var(--white) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%238c9290'%3E%3Cpath d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 15px;
  transition: all 0.25s ease !important;
}
.invoice-search-sec .im-search-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.08) !important;
}
.invoice-search-sec .im-search-button {
  height: 52px;
  padding: 0 28px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  border-radius: 8px !important;
  border: none !important;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(227, 30, 37, 0.15) !important;
  transition: all 0.25s ease !important;
}
.invoice-search-sec .im-search-button:hover:not(:disabled) {
  background-color: var(--primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(227, 30, 37, 0.25) !important;
}
.invoice-search-sec .im-search-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.invoice-search-sec {
  /* AJAX Result Box Overrides */
}
.invoice-search-sec .im-results-wrap {
  margin-top: 28px !important;
  padding: 24px !important;
  border-radius: 12px !important;
  display: flex !important;
  gap: 16px !important;
  text-align: left !important;
  align-items: flex-start !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}
.invoice-search-sec .im-result-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
}
.invoice-search-sec .im-results-success {
  background-color: #f4faf6 !important;
  border: 1px solid #c2ebd1 !important;
}
.invoice-search-sec .im-results-success .im-result-icon {
  background-color: #d8f3e3 !important;
  color: #178a48 !important;
}
.invoice-search-sec .im-results-error {
  background-color: #fdf5f5 !important;
  border: 1px solid #f9d4d4 !important;
}
.invoice-search-sec .im-results-error .im-result-icon {
  background-color: #f7e0e0 !important;
  color: #c92c2c !important;
}
.invoice-search-sec .im-result-msg {
  font-size: 14px !important;
  color: var(--dark) !important;
  line-height: 1.55 !important;
  margin: 0 0 14px 0 !important;
}
.invoice-search-sec .im-result-details {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 24px !important;
  margin-bottom: 18px !important;
  font-size: 13.5px !important;
  color: var(--dark-light) !important;
  border-bottom: 1px solid rgba(34, 40, 37, 0.06) !important;
  padding-bottom: 14px !important;
}
.invoice-search-sec .im-detail-item strong {
  color: var(--dark) !important;
}
.invoice-search-sec .im-download-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  border-radius: 6px !important;
  background-color: var(--dark) !important;
  color: var(--white) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(34, 40, 37, 0.12) !important;
  transition: all 0.25s ease !important;
}
.invoice-search-sec .im-download-btn:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(227, 30, 37, 0.22) !important;
}

/* --- 3. Help Information Section --- */
.invoice-help-sec {
  background-color: #f6f7f2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

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

.invoice-help__card {
  background-color: var(--white);
  border: 1px solid rgba(34, 40, 37, 0.05);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}
.invoice-help__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(227, 30, 37, 0.1);
}
.invoice-help__card:hover .invoice-help__icon {
  background-color: rgba(227, 30, 37, 0.08);
  color: var(--primary);
}
.invoice-help__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px 0;
  line-height: 1.35;
}
.invoice-help__card p {
  font-size: 13.5px;
  color: var(--dark-light);
  line-height: 1.55;
  margin: 0;
}

.invoice-help__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #f6f7f2;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
  transition: all 0.25s ease;
}

/* --- 4. FAQs Page Overrides --- */
.faqs--invoice-search {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
  margin-top: 0 !important;
}

/* --- 5. Support conversion CTA Section --- */
.invoice-support-cta {
  padding: 80px 0 100px 0;
  background-color: #ffffff;
}

.invoice-support-cta__card {
  background: linear-gradient(135deg, #1e2421 0%, #29312c 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.invoice-support-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.invoice-support-cta__card h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}
.invoice-support-cta__card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}
.invoice-support-cta__card .sg-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 8px;
  border: none;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(227, 30, 37, 0.28);
  transition: all 0.25s ease;
}
.invoice-support-cta__card .sg-btn:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 30, 37, 0.45);
}

/* ============================================================
   RESPONSIVE MEDIA OVERRIDES
   ============================================================ */
@media (max-width: 992px) {
  .invoice-help__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .invoice-support-cta__card {
    padding: 50px 30px;
  }
  .invoice-support-cta__card h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .invoice-search-sec .im-search-container {
    padding: 30px 20px !important;
  }
  .invoice-search-sec .im-search-field-group {
    flex-direction: column;
    gap: 10px;
  }
  .invoice-search-sec .im-search-input {
    width: 100% !important;
    background-position: 12px center;
    padding: 12px 14px 12px 36px !important;
  }
  .invoice-search-sec .im-search-button {
    width: 100% !important;
  }
  .invoice-search-sec .im-results-wrap {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .invoice-search-sec .im-result-details {
    justify-content: center !important;
    gap: 6px 16px !important;
  }
  .invoice-search-sec .im-download-btn {
    width: 100% !important;
  }
  .invoice-support-cta__card {
    padding: 40px 20px;
  }
  .invoice-support-cta__card h2 {
    font-size: 24px;
  }
  .invoice-support-cta__card p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.shop-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1f1c 0%, #222825 50%, #2a1a1b 100%);
  padding: 190px 0 70px;
  overflow: hidden;
}

/* Decorative dot-grid pattern */
.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

/* Red glow accent — top-right */
.shop-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 37, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.shop-hero .sg-container {
  position: relative;
  z-index: 2;
}

.shop-hero__content {
  max-width: 700px;
}

.shop-hero__content .sg-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  margin-bottom: 20px;
}

.shop-hero__title {
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .shop-hero__title {
    font-size: 36px;
  }
}
.shop-hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 560px;
}

.shop-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.shop-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.shop-hero__breadcrumb a:hover {
  color: var(--white);
}

.shop-hero__breadcrumb i {
  font-size: 10px;
  color: var(--primary);
}

.shop-hero__breadcrumb span:last-child {
  color: var(--white);
  font-weight: 600;
}

/* --- Shop Layout --- */
.shop-layout {
  padding: 60px 0 80px;
}

/* --- Shop Toolbar --- */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding: 14px 20px;
  background-color: #f6f7f2;
  border-radius: 8px;
  border: 1px solid var(--border);
}

@media (max-width: 576px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* WooCommerce result count text */
.woocommerce-result-count {
  font-size: 14px;
  color: var(--dark-light);
  margin: 0;
}

/* WooCommerce ordering select */
.woocommerce-ordering {
  margin: 0;
}

.woocommerce-ordering select {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 32px 8px 14px;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.woocommerce-ordering select:focus,
.woocommerce-ordering select:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.08);
}

/* --- Product Grid --- */
.sg-product-grid {
  display: grid !important;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 28px;
  float: none !important;
}

.sg-product-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.sg-product-grid.columns-1 {
  grid-template-columns: 1fr;
}

@media (max-width: 1200px) {
  .sg-product-grid.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .sg-product-grid.columns-4,
  .sg-product-grid.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .sg-product-grid.columns-4,
  .sg-product-grid.columns-3,
  .sg-product-grid.columns-2 {
    grid-template-columns: 1fr;
  }
}
/* --- Product Card --- */
.sg-product-card {
  list-style: none;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.sg-product-card__inner {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sg-product-card__inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(227, 30, 37, 0.15);
}

/* Image Wrapper */
.sg-product-card__img-wrap {
  position: relative;
  background-color: #f6f7f2;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.sg-product-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.sg-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
  padding: 20px;
}

.sg-product-card__inner:hover .sg-product-card__img {
  transform: scale(1.06);
}

/* Badges */
.sg-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1;
}

.sg-product-card__badge--sale {
  background-color: var(--primary);
  color: var(--white);
}

.sg-product-card__badge--oos {
  background-color: #666;
  color: var(--white);
}

/* Hover Overlay with Add-to-Cart */
.sg-product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 40, 37, 0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

.sg-product-card__inner:hover .sg-product-card__overlay {
  opacity: 1;
}

.sg-product-card__overlay .button,
.sg-product-card__overlay .add_to_cart_button {
  background-color: var(--white) !important;
  color: var(--primary) !important;
  border: 2px solid var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  white-space: nowrap !important;
}

.sg-product-card__overlay .button:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
}

/* Card Body */
.sg-product-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.sg-product-card__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sg-product-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 4px 0 6px;
}

.sg-product-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sg-product-card__title a:hover {
  color: var(--primary);
}

/* Star Rating */
.sg-product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.sg-product-card__rating .star-rating {
  color: #ffb300;
}

.sg-product-card__rating-count {
  font-size: 11px;
  color: var(--dark-light);
}

/* Price */
.sg-product-card__price {
  margin-bottom: 4px;
}

.sg-product-card__price .price {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
}

.sg-product-card__price .price del {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark-light);
  margin-right: 4px;
}

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

/* Card Footer: ATC + Arrow link */
.sg-product-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.sg-product-card__footer .button,
.sg-product-card__footer .add_to_cart_button {
  flex: 1;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 16px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
}

.sg-product-card__footer .button:hover,
.sg-product-card__footer .add_to_cart_button:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-1px);
}

.sg-product-card__details-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background-color: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}

.sg-product-card__details-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Added-to-cart state */
.sg-product-card__footer .added_to_cart {
  display: none;
}

/* --- WooCommerce Pagination --- */
.woocommerce-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.woocommerce-pagination ul.page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}

.woocommerce-pagination ul.page-numbers li {
  margin: 0;
}

.woocommerce-pagination ul.page-numbers li a.page-numbers,
.woocommerce-pagination ul.page-numbers li span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
  background-color: var(--white);
}

.woocommerce-pagination ul.page-numbers li a.page-numbers:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(227, 30, 37, 0.04);
}

.woocommerce-pagination ul.page-numbers li span.page-numbers.current {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.woocommerce-pagination ul.page-numbers li a.next,
.woocommerce-pagination ul.page-numbers li a.prev {
  width: auto;
  padding: 0 18px;
  gap: 6px;
  font-size: 13px;
}

/* --- Notices on Shop Page --- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.woocommerce-message {
  background-color: rgba(15, 131, 77, 0.08) !important;
  border-left: 4px solid #0f834d;
  color: #0f834d;
}

.woocommerce-info {
  background-color: rgba(61, 156, 210, 0.08) !important;
  border-left: 4px solid #3d9cd2;
  color: #3d9cd2;
}

.woocommerce-error {
  background-color: rgba(227, 30, 37, 0.06) !important;
  border-left: 4px solid var(--primary);
  color: var(--primary);
}

/* No products found */
.woocommerce-no-products-found,
.woocommerce-info.woocommerce-no-products-found {
  text-align: center;
  padding: 60px 20px;
  background-color: #f6f7f2 !important;
  border: none;
  border-radius: 12px;
  color: var(--dark-light);
  font-size: 16px;
}

/* ============================================================
   SINGLE PRODUCT PAGE STYLES — Stride Guard
   ============================================================ */
/* Compact Shop Hero for Product Page */
.shop-hero--compact {
  padding: 120px 0 35px;
}

.shop-hero--compact .shop-hero__content {
  display: flex;
  justify-content: flex-start;
}

/* Single Product Wrapper */
.sg-single-product-wrapper {
  background-color: #fbfbfb;
  padding: 60px 0 100px;
}

/* Main Grid Layout */
.sg-single-product-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

@media (max-width: 992px) {
  .sg-single-product-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 0;
  }
  .woocommerce-tabs {
    margin-bottom: 0 !important;
  }
}
/* ============================================================
   PRODUCT DETAIL GALLERY — Slick Slider
   ============================================================ */
/* Gallery column wrapper */
.sg-single-product-gallery {
  position: relative;
  min-width: 0;
  /* prevent grid-item overflow */
}

/* Sale badge */
.sg-pdp-sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 20;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  line-height: 1;
  pointer-events: none;
}

/* ── Main Image Slider ──────────────────────────────────────── */
.sg-pdp-gallery__main {
  background-color: #f6f7f2;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  position: relative;
}

/* Each slide */
.sg-pdp-gallery__slide {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #f6f7f2;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* The image itself */
.sg-pdp-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  mix-blend-mode: multiply;
  display: block;
  transition: transform 0.35s ease;
}

.sg-pdp-gallery__slide:hover img {
  transform: scale(1.04);
}

/* Zoom-click wrapper */
.sg-pdp-gallery__zoom {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

/* Zoom icon overlay on hover */
.sg-pdp-gallery__zoom-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 13px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow);
  pointer-events: none;
}

.sg-pdp-gallery__slide:hover .sg-pdp-gallery__zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── Slick Navigation Arrows ────────────────────────────────── */
.sg-pdp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  outline: none;
}

.sg-pdp-arrow--prev {
  left: 14px;
}

.sg-pdp-arrow--next {
  right: 14px;
}

.sg-pdp-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(227, 30, 37, 0.25);
}

/* ── Thumbnail Nav Slider ───────────────────────────────────── */
.sg-pdp-gallery__thumbs {
  margin-top: 4px;
}

.sg-pdp-gallery__thumbs .slick-track {
  display: flex;
  gap: 0;
  /* gap handled via padding */
}

.sg-pdp-gallery__thumb-item {
  aspect-ratio: 1/1;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background-color: #f6f7f2;
  margin: 0 6px 0 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sg-pdp-gallery__thumb-item:hover {
  border-color: rgba(227, 30, 37, 0.4);
}

.sg-pdp-gallery__thumb-item.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(227, 30, 37, 0.18);
}

.sg-pdp-gallery__thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  mix-blend-mode: multiply;
  display: block;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.sg-pdp-gallery__thumb-item:hover img,
.sg-pdp-gallery__thumb-item.is-active img {
  opacity: 1;
}

/* Slick cloned slides — keep last thumb from having gap */
.sg-pdp-gallery__thumbs .slick-slide:last-child .sg-pdp-gallery__thumb-item {
  margin-right: 0;
}

/* ── Slick core overrides for product gallery ───────────────── */
#sg-pdp-main-slider.slick-initialized,
#sg-pdp-thumb-slider.slick-initialized {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Hide before slick inits (prevents raw images stacking) */
#sg-pdp-main-slider:not(.slick-initialized) .sg-pdp-gallery__slide:not(:first-child),
#sg-pdp-thumb-slider:not(.slick-initialized) .sg-pdp-gallery__thumb-item:not(:first-child) {
  display: none;
}

/* --- Right Column: Product Info --- */
.sg-single-product-info {
  display: flex;
  flex-direction: column;
}

/* Category Label in Details */
.sg-single-product-info .product-category-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Title */
.sg-single-product-info .product_title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin: 0 0 14px;
}

@media (max-width: 768px) {
  .sg-single-product-info .product_title {
    font-size: 28px;
  }
}
/* Rating stars */
.sg-single-product-info .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.sg-single-product-info .woocommerce-product-rating .star-rating {
  color: #ffb300;
  font-size: 15px;
}

.sg-single-product-info .woocommerce-product-rating .woocommerce-review-link {
  font-size: 13.5px;
  color: var(--dark-light);
  text-decoration: none;
  font-weight: 600;
}

.sg-single-product-info .woocommerce-product-rating .woocommerce-review-link:hover {
  color: var(--primary);
}

/* Price */
.sg-single-product-info .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
  display: block;
}

.sg-single-product-info .price del {
  font-size: 18px;
  color: var(--dark-light);
  font-weight: 500;
  margin-right: 8px;
}

.sg-single-product-info .price ins {
  text-decoration: none;
}

/* Excerpt Description */
.sg-single-product-info .woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-light);
  margin-bottom: 30px;
}

.sg-single-product-info .woocommerce-product-details__short-description p {
  margin: 0 0 16px;
}

.sg-single-product-info .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

/* --- Add to Cart Form --- */
.sg-single-product-info .cart {
  margin-bottom: 24px;
  border: none !important;
  padding: 0 !important;
}

/* Variations Table (Attributes selection) */
.sg-single-product-info .variations {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
}

.sg-single-product-info .variations td,
.sg-single-product-info .variations th {
  padding: 8px 0;
  border: none;
  background: transparent;
  vertical-align: middle;
}

.sg-single-product-info .variations td.label,
.sg-single-product-info .variations th.label {
  width: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.sg-single-product-info .variations td.value,
.sg-single-product-info .variations th.value {
  position: relative;
}

.sg-single-product-info .variations td.value select,
.sg-single-product-info .variations th.value select {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 36px 10px 14px;
  width: 100%;
  max-width: 320px;
  outline: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: var(--transition);
}

.sg-single-product-info .variations td.value select:focus,
.sg-single-product-info .variations th.value select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.08);
}

.sg-single-product-info .variations a.reset_variations {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-left: 12px;
  display: inline-block;
}

@media (max-width: 576px) {
  .sg-single-product-info .variations,
  .sg-single-product-info .variations tbody,
  .sg-single-product-info .variations tr,
  .sg-single-product-info .variations td,
  .sg-single-product-info .variations th {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .sg-single-product-info .variations td.label,
  .sg-single-product-info .variations th.label {
    width: 100% !important;
    padding-top: 8px !important;
    padding-bottom: 4px !important;
  }
  .sg-single-product-info .variations td.value,
  .sg-single-product-info .variations th.value {
    padding-top: 0 !important;
    padding-bottom: 12px !important;
  }
  .sg-single-product-info .variations td.value select,
  .sg-single-product-info .variations th.value select {
    max-width: 100% !important;
  }
  .sg-single-product-info .variations a.reset_variations {
    margin-left: 0;
    margin-top: 6px;
  }
}
/* --- Hide Purchase Elements --- */
.sg-single-product-info .quantity,
.sg-single-product-info .single_add_to_cart_button,
.sg-single-product-info .woocommerce-variation-add-to-cart {
  display: none !important;
}

/* --- Catalog Actions --- */
.sg-catalogue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 35px;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 30px 0;
}

.sg-catalogue-actions .sg-btn {
  flex: 1;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

/* Amazon Buy Button */
.sg-btn--amazon {
  background-color: #FF9900 !important;
  color: #111 !important;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.15);
}

.sg-btn--amazon:hover {
  background-color: #e68a00 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 153, 0, 0.28);
}

/* Wholesale enquiry button */
.sg-btn--wholesale {
  background-color: var(--white) !important;
  color: var(--dark) !important;
  border-color: var(--border) !important;
  box-shadow: var(--shadow);
}

.sg-btn--wholesale:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(227, 30, 37, 0.22);
}

@media (max-width: 576px) {
  .sg-catalogue-actions .sg-btn {
    width: 100%;
    flex: none;
  }
}
/* --- Accessible Modal Overlay and Container --- */
.sg-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sg-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.sg-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 27, 25, 0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.sg-modal__container {
  position: relative;
  background-color: #1e2421;
  /* Rich carbon dark background */
  color: #ffffff;
  width: 92%;
  max-width: 650px;
  max-height: 90vh;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  overflow: hidden;
}

.sg-modal.is-open .sg-modal__container {
  transform: translateY(0) scale(1);
}

.sg-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #161b19;
}

.sg-modal__title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

.sg-modal__close {
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.sg-modal__close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.sg-modal__content {
  padding: 35px;
  overflow-y: auto;
  flex-grow: 1;
}

.sg-modal__intro {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.sg-modal__intro strong {
  color: var(--primary);
}

/* Form layout inside modal */
.sg-modal__content .wpcf7-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.sg-modal__content .wpcf7-form .form-group {
  width: calc(50% - 10px);
  margin-bottom: 0;
}

.sg-modal__content .wpcf7-form .form-group.w-full {
  width: 100%;
}

.sg-modal__content .wpcf7-form .form-group span {
  display: block;
  width: 100%;
}

/* Text & input elements inside modal */
.sg-modal__content .wpcf7-form input[type=text],
.sg-modal__content .wpcf7-form input[type=email],
.sg-modal__content .wpcf7-form textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  padding: 16px 20px;
  width: 100%;
  height: 56px;
  border-radius: 10px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}

.sg-modal__content .wpcf7-form textarea {
  height: 120px;
  resize: none;
}

.sg-modal__content .wpcf7-form input[type=text]:focus,
.sg-modal__content .wpcf7-form input[type=email]:focus,
.sg-modal__content .wpcf7-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.25);
}

/* Submit button styling */
.sg-modal__content .wpcf7-form input[type=submit] {
  width: 100%;
  margin-top: 24px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  font-family: inherit;
  padding: 16px 20px;
  border-radius: 30px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(227, 30, 37, 0.25);
}

.sg-modal__content .wpcf7-form input[type=submit]:hover {
  background-color: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* Modal responsive sizing */
@media (max-width: 768px) {
  .sg-modal__content .wpcf7-form .form-group {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .sg-modal__container {
    width: 95%;
    border-radius: 16px;
  }
  .sg-modal__header {
    padding: 20px 24px;
  }
  .sg-modal__content {
    padding: 24px;
  }
}
/* WooCommerce Product Meta (SKU, Categories, Tags) */
.sg-single-product-info .product_meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--dark-light);
}

.sg-single-product-info .product_meta span {
  font-weight: 600;
}

.sg-single-product-info .product_meta a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.sg-single-product-info .product_meta a:hover {
  color: var(--primary);
}

/* --- Bottom Section: Tabs/Description --- */
.sg-single-product-bottom {
  margin-top: 40px;
}

.woocommerce-tabs {
  margin-bottom: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Tabs list */
.woocommerce-tabs ul.tabs {
  list-style: none;
  display: flex !important;
  border-bottom: 1.5px solid var(--border);
  background-color: #f6f7f2;
  margin: 0;
  padding: 0;
}

.woocommerce-tabs ul.tabs li {
  display: block !important;
  margin: 0;
  float: none !important;
  border: none;
  background: transparent;
  position: static !important;
}

.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 20px 30px !important;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-right: 1.5px solid var(--border);
  border-bottom: 2px solid transparent;
}

.woocommerce-tabs ul.tabs li:hover a {
  color: var(--primary);
  background-color: rgba(227, 30, 37, 0.02);
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--primary);
  background-color: var(--white);
  border-bottom-color: var(--primary);
  font-weight: 800;
}

@media (max-width: 768px) {
  .woocommerce-tabs ul.tabs {
    flex-direction: column !important;
  }
  .woocommerce-tabs ul.tabs li a {
    border-right: none !important;
    border-bottom: 1.5px solid var(--border) !important;
    padding: 15px 20px !important;
  }
  .woocommerce-tabs ul.tabs li:last-child a {
    border-bottom: none !important;
  }
  .woocommerce-tabs ul.tabs li.active a {
    border-left: 3px solid var(--primary) !important;
    border-bottom-color: var(--border) !important;
  }
}
/* Tab Panels */
.woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 40px 48px;
  display: none;
}

.woocommerce-tabs .woocommerce-Tabs-panel.active {
  display: block;
}

@media (max-width: 768px) {
  .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 30px 24px;
  }
  .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .woocommerce-tabs .woocommerce-Tabs-panel p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}
.woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.woocommerce-tabs .woocommerce-Tabs-panel p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-light);
  margin: 0 0 20px;
}

.woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
  margin-bottom: 0;
}

/* Additional Info Table */
.woocommerce-tabs table.shop_attributes {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.woocommerce-tabs table.shop_attributes th,
.woocommerce-tabs table.shop_attributes td {
  padding: 14px 20px;
  border-bottom: 1.5px solid var(--border);
  font-size: 14px;
  line-height: 1.5;
}

.woocommerce-tabs table.shop_attributes th {
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  width: 200px;
  background-color: #f6f7f2;
}

.woocommerce-tabs table.shop_attributes td {
  color: var(--dark-light);
}

.woocommerce-tabs table.shop_attributes tr:last-child th,
.woocommerce-tabs table.shop_attributes tr:last-child td {
  border-bottom: none;
}

@media (max-width: 576px) {
  .woocommerce-tabs table.shop_attributes,
  .woocommerce-tabs table.shop_attributes tbody,
  .woocommerce-tabs table.shop_attributes tr,
  .woocommerce-tabs table.shop_attributes th,
  .woocommerce-tabs table.shop_attributes td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .woocommerce-tabs table.shop_attributes th {
    width: 100% !important;
    background-color: transparent !important;
    padding: 12px 0 4px !important;
    border-bottom: none !important;
  }
  .woocommerce-tabs table.shop_attributes td {
    padding: 0 0 12px !important;
    border-bottom: 1.5px solid var(--border) !important;
  }
  .woocommerce-tabs table.shop_attributes tr:last-child td {
    border-bottom: none !important;
  }
}
/* Reviews List */
#reviews #comments {
  margin-bottom: 40px;
}

#reviews #comments h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.commentlist li.review {
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 24px;
}

.commentlist li.review:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.commentlist li .comment_container {
  display: flex;
  gap: 20px;
}

@media (max-width: 576px) {
  .commentlist li .comment_container {
    flex-direction: column;
    gap: 12px;
  }
}
.commentlist li img.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0f0f0;
  flex-shrink: 0;
}

.commentlist li .comment-text {
  flex-grow: 1;
}

.commentlist li .comment-text .meta {
  font-size: 13px;
  color: var(--dark-light);
  margin-bottom: 8px;
}

.commentlist li .comment-text .meta strong {
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
}

.commentlist li .comment-text .meta span {
  font-weight: 400;
  color: #999;
}

.commentlist li .comment-text .star-rating {
  float: right;
  color: #ffb300;
  font-size: 13px;
}

@media (max-width: 576px) {
  .commentlist li .comment-text .star-rating {
    float: none !important;
    margin-bottom: 10px;
    display: block;
  }
}
.commentlist li .comment-text .description {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--dark-light);
}

/* Review Form */
#review_form_wrapper {
  background-color: #f6f7f2;
  border-radius: 10px;
  padding: 30px 40px;
  border: 1px solid var(--border);
}

@media (max-width: 576px) {
  #review_form_wrapper {
    padding: 20px 20px;
  }
}
#review_form_wrapper .comment-reply-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  display: block;
}

#review_form_wrapper label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}

#review_form_wrapper select,
#review_form_wrapper input[type=text],
#review_form_wrapper input[type=email],
#review_form_wrapper textarea {
  font-family: inherit;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  background-color: var(--white);
  transition: var(--transition);
}

#review_form_wrapper select:focus,
#review_form_wrapper input[type=text]:focus,
#review_form_wrapper input[type=email]:focus,
#review_form_wrapper textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.08);
}

.comment-form-rating {
  margin-bottom: 20px;
}

.comment-form-rating select {
  max-width: 200px;
}

.comment-form-comment {
  margin-bottom: 20px;
}

.comment-form-author,
.comment-form-email {
  display: inline-block;
  width: calc(50% - 10px);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .comment-form-author,
  .comment-form-email {
    display: block;
    width: 100%;
  }
}
.comment-form-author {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .comment-form-author {
    margin-right: 0 !important;
  }
}
#review_form_wrapper input[type=submit] {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  padding: 14px 30px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 12px rgba(227, 30, 37, 0.12);
}

#review_form_wrapper input[type=submit]:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(227, 30, 37, 0.22);
}

@media (max-width: 480px) {
  #review_form_wrapper input[type=submit] {
    width: 100% !important;
    text-align: center;
  }
}
/* Related Products Section */
.related {
  margin-top: 60px;
  border-top: 1.5px solid var(--border);
  padding-top: 60px;
}

.related h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 30px;
  text-align: center;
}

.sg-badge-container {
  display: none !important;
}

/* ============================================================
   GLOBAL FIXES — Override woocommerce.css float-based layouts
   ============================================================ */
/* Fix 1: Gallery opacity — WooCommerce Flexslider JS sets opacity:0 inline;
   force it visible. The JS will still animate it if it loads. */
.woocommerce-product-gallery {
  opacity: 1 !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Fix 2: Override woocommerce.css float layout for ALL ul.products,
   including related products, upsells, and the main shop grid.
   This replaces the percentage-width float system with CSS Grid. */
ul.products {
  display: grid !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 28px !important;
  float: none !important;
  /* Default: 4 columns */
  grid-template-columns: repeat(4, 1fr) !important;
}

ul.products.columns-1 {
  grid-template-columns: 1fr !important;
}

ul.products.columns-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

ul.products.columns-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

ul.products.columns-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

ul.products.columns-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}

ul.products.columns-6 {
  grid-template-columns: repeat(6, 1fr) !important;
}

/* Fix float on individual li.product items (woocommerce.css sets float:left + width%) */
ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  clear: none !important;
}

/* Responsive breakpoints for the global ul.products grid */
@media (max-width: 1200px) {
  ul.products.columns-4,
  ul.products.columns-5,
  ul.products.columns-6 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 992px) {
  ul.products.columns-3,
  ul.products.columns-4,
  ul.products.columns-5,
  ul.products.columns-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .contact-grid {
    max-width: 100%;
  }
  .contact-grid-sec {
    padding: 50px 0 20px;
  }
  .contact-map-section {
    padding: 20px 0 50px;
  }
  .map-col {
    width: 100%;
  }
  .contact-map iframe {
    height: 260px;
  }
}
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form h3 {
    font-size: 26px;
  }
  .contact-form .row .form-group {
    width: 100%;
  }
}
@media (max-width: 576px) {
  ul.products,
  ul.products[class*=columns-] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}
@media (max-width: 400px) {
  ul.products,
  ul.products[class*=columns-] {
    grid-template-columns: 1fr !important;
  }
}
/* Fix 3: Related products section — ensure heading and grid look right */
.related.products {
  margin-top: 60px;
  border-top: 1.5px solid var(--border);
  padding-top: 60px;
}

.related.products > h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 30px;
  text-align: center;
}

.related.products ul.products {
  /* For related products, default to 4 cols */
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 992px) {
  .related.products ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 576px) {
  .related.products ul.products {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
/* Fix 4: Flex-control-thumbs float override from woocommerce.css */
.sg-single-product-gallery .flex-control-thumbs li {
  float: none !important;
  width: calc(25% - 9px) !important;
  clear: none !important;
}

/* Fix 5: Ensure .single-product div.product doesn't break grid context */
.single-product div.product {
  position: relative;
}

/* Fix 6: Clear WooCommerce's clearfix after floats in the grid parent */
.sg-single-product-main::after {
  content: "";
  display: table;
  clear: both;
}

.contact-grid {
  max-width: 65%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-grid-sec {
  padding: 80px 0 40px;
}

.contact-box-inner {
  background-color: rgba(227, 30, 37, 0.08);
  padding: 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-box-inner .contact-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  z-index: 1;
  position: relative;
}

.contact-box-inner .contact-card-icon svg {
  color: #fff;
}

.contact-box-inner .contact-card-meta h3 {
  color: var(--primary);
}

.contact-box-inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 100%;
  width: 100%;
  background-size: 101% 101%;
  border-radius: 999px 999px 0 0;
  background-color: var(--primary);
  transition: all 0.4s ease-in-out !important;
  z-index: 0;
}

.contact-box-inner:hover:before {
  top: 0;
  border-radius: 0;
}

.contact-box-inner:hover h3,
.contact-box-inner:hover p {
  color: #fff;
}

.contact-card-meta {
  position: relative;
  z-index: 1;
}

.contact-map-section {
  padding: 40px 0 80px;
}

.map-row {
  max-width: 1300px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
}

.map-col {
  width: 50%;
}

.contact-map {
  width: 100%;
  height: 100%;
}

.contact-map iframe {
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  height: 100%;
  width: 100%;
  border: none;
}

.contact-form {
  background-color: #222825;
  padding: 40px;
}

.contact-form .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form .row .form-group {
  width: calc(50% - 15px);
}

.contact-form .row .form-group span {
  display: block;
  width: 100%;
}

.contact-form .row .form-group span input,
.contact-form .row .form-group span textarea {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  max-width: 100%;
  padding: 18px 20px 18px 20px;
  width: 100%;
  height: 60px;
  border-radius: 10px 10px 10px 10px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1019607843);
  border: none;
  font-family: inherit;
}

.contact-form .row .form-group span textarea {
  height: 100px;
  resize: none;
}

.contact-form .row .form-group.w-full {
  width: 100%;
}

.contact-form .row .form-group span input:focus,
.contact-form .row .form-group span textarea:focus {
  outline: none;
  border: none;
}

.contact-form input[type=submit] {
  width: 100%;
  margin-top: 24px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  font-family: inherit;
  padding: 17px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.contact-form input[type=submit]:hover {
  background-color: #fff;
  color: var(--primary);
}

.contact-form h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
}

.contact-form .row + p {
  margin-bottom: 0;
}
