@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&family=Poppins:wght@300;400;500;600&display=swap");
:root {
  --charcoal: #36454f;
  --teal: #008080;
  --metallic-gold: #d4af37;
  --white: #ffffff;
  --champagne: #fff9f0;
  --neutral-050: #f8f8f8;
  --neutral-100: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-600: #616161;
  --neutral-900: #212121;
  --text-primary: #36454f;
  --background-primary: #ffffff;
  --background-secondary: #fff9f0;
  --accent-primary: #d4af37;
  --accent-secondary: #008080;
  --font-sans: Poppins, sans-serif;
  --font-serif: Merriweather, serif;
  --font-heading: Merriweather, serif;
  --font-main: Poppins, sans-serif;
  --border-subtle: rgba(54, 69, 79, 0.15);
  --border-default: 1px solid rgba(54, 69, 79, 0.15);
  --border: 1px solid rgba(54, 69, 79, 0.15);
  --shadow-soft: 0 16px 40px rgba(54, 69, 79, 0.08);
  --shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  --shadow-dropdown: 0 16px 40px rgba(54, 69, 79, 0.12);
  --radius-lg: 20px;
  --radius-md: 4px;
  --radius-card: 20px;
  --transition-fast: 0.2s ease-in-out;
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.2s ease-in-out;
  --soft-gold-bg: rgba(212, 175, 55, 0.06);
  --gray-300: #e0e0e0;
  --gray-700: #616161;
}

/* =========================
   1. RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #212121;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  color: #d4af37;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

main {
  flex: 1;
  min-height: 60vh;
}

/* =========================
   2. TYPOGRAPHY / HEADINGS
========================= */
.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.subtitle,
.section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #008080;
  display: block;
  margin-bottom: 20px;
}

.main-title,
.section-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #36454f;
  letter-spacing: clamp(-1px, -0.1vw, 0px);
  position: relative;
  display: inline-block;
  padding-bottom: clamp(12px, 2vw, 24px);
  text-transform: uppercase;
}
.main-title::after,
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(24px, 4vw, 40px);
  height: 1px;
  background-color: #d4af37;
}

/* =========================
   3. COMPONENTS
========================= */
/* --- Buttons --- */
.secondary-ctas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.button {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-primary,
.button--primary {
  background-color: #36454f;
  color: #d4af37;
  border: 1px solid #36454f;
  box-shadow: inset 0 0 0 0 #d4af37;
}
.btn-primary:hover,
.button--primary:hover {
  color: #36454f;
  border-color: #d4af37;
  box-shadow: inset 800px 0 0 0 #d4af37;
}

.button--primary {
  width: 100%;
  border-radius: 10px;
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}
.disabled:hover {
  color: #d4af37;
  border-color: #36454f;
  box-shadow: inset 0 0 0 0 #d4af37;
}

.btn-secondary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: transparent;
  color: #36454f;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(54, 69, 79, 0.15);
  border-radius: 4px;
  transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out, background 0.2s ease-in-out;
}
.btn-secondary:hover {
  border-color: #008080;
  color: #008080;
  background: rgba(0, 128, 128, 0.1);
}

.btn-quote {
  background-color: #008080;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: inset 0 0 0 0 #d4af37;
}
.btn-quote:hover {
  border-color: #008080;
  color: #008080;
  background: rgba(0, 128, 128, 0.1);
}

/* --- Product Tags --- */
.product-tags {
  margin-bottom: 1rem;
}
.product-tags .product-tag ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-tags .product-tag ul li {
  background-color: #ffffff;
  color: #36454f;
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #d4af37;
}

.error {
  color: red;
  font-size: 0.75rem;
  margin-top: 4px;
}

.status {
  color: green;
  font-size: 0.75rem;
  margin-top: 4px;
}

.required {
  color: red;
}

/* =========================
   4. INTERACTIONS / EFFECTS
========================= */
/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Cursor */
#cur {
  width: 9px;
  height: 9px;
  background: #d4af37;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
  mix-blend-mode: multiply;
}

#curR {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.08s linear;
}

.empty {
  padding: 56px;
  text-align: center;
  color: #7a7a7a;
}
.empty i {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.empty p {
  margin: 0;
  font-size: 14px;
}

/* =========================
   5. RESPONSIVE
========================= */
/* Tablet */
@media (max-width: 1024px) {
  .main-title,
  .section-title {
    font-size: 2.5rem;
  }
  .button {
    padding: 12px 24px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 16px;
  }
  .main-title,
  .section-title {
    font-size: 1.75rem;
    letter-spacing: 0;
  }
  .subtitle,
  .section-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  .btn-secondary {
    padding: 0.85rem 1rem;
    font-size: 0.75rem;
  }
  .product-tags .product-tag ul {
    gap: 6px;
  }
  .product-tags .product-tag ul li {
    font-size: 0.6rem;
    padding: 3px 8px;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .main-content .breadcrumb {
    padding: 0 16px;
  }
  .main-content .content-section {
    padding: 16px;
  }
  .main-title,
  .section-title {
    font-size: 1.4rem;
  }
  .button {
    font-size: 0.75rem;
    padding: 10px 16px;
  }
}
/* =========================
   6. ACCESSIBILITY
========================= */
@media (hover: none) {
  #cur,
  #curR {
    display: none;
  }
  body {
    cursor: auto;
  }
  button,
  a {
    cursor: pointer;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  #cur,
  #curR {
    display: none;
  }
}
/* --- Full Page Center for Loader --- */
.loader-page-center {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  /* --- CareOsis DNA Loader --- */
}
.loader-page-center .careosis-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: fadeIn 1s ease-out;
  text-align: center;
}
.loader-page-center .careosis-loader .dna-strand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  perspective: 1000px;
  /* Gives 3D depth */
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.loader-page-center .careosis-loader .dna-strand .dna-base {
  position: relative;
  width: 80px;
  height: 18px;
  transform-style: preserve-3d;
  animation: spinY 2.5s linear infinite;
  animation-delay: var(--delay);
}
.loader-page-center .careosis-loader .dna-strand .dna-base .dna-line {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 2px;
  background: rgba(212, 175, 55, 0.3);
  transform: translateY(-50%);
}
.loader-page-center .careosis-loader .dna-strand .dna-base .dna-node {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  animation-delay: var(--delay) !important;
}
.loader-page-center .careosis-loader .dna-strand .dna-base .dna-node.gold-leaf {
  left: -10px;
  background: var(--metallic-gold);
  border-radius: 0 50% 50% 50%;
  /* Leaf shape */
  box-shadow: 0 0 10px var(--metallic-gold-glow);
  animation: counterSpinLeaf 2.5s linear infinite;
}
.loader-page-center .careosis-loader .dna-strand .dna-base .dna-node.teal-hex {
  right: -10px;
  background: var(--teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 0 6px rgba(0, 128, 128, 0.4));
  animation: counterSpinHex 2.5s linear infinite;
}
.loader-page-center .careosis-loader .loader-brand {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: -15px;
  transition: all 0.3s ease;
}
.loader-page-center .careosis-loader .loader-brand .text-gold {
  color: var(--metallic-gold);
}
.loader-page-center .careosis-loader .loader-brand .text-teal {
  color: var(--teal);
}
.loader-page-center .careosis-loader .loader-brand .text-charcoal {
  color: var(--charcoal);
}
.loader-page-center .careosis-loader .loader-tagline {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

body.is-page-loading,
body.is-ajax-loading {
  overflow: hidden;
}
body.is-page-loading .loader-page-center,
body.is-ajax-loading .loader-page-center {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Loader Animations */
@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/* Counter spins keep the leaf pointing up and the hex facing forward while they orbit */
@keyframes counterSpinLeaf {
  0% {
    transform: rotateY(0deg) rotate(-45deg) scale(1);
  }
  50% {
    transform: rotateY(-180deg) rotate(-45deg) scale(0.85);
  }
  100% {
    transform: rotateY(-360deg) rotate(-45deg) scale(1);
  }
}
@keyframes counterSpinHex {
  0% {
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(-180deg) scale(0.85);
  }
  100% {
    transform: rotateY(-360deg) scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .careosis-loader {
    gap: 20px;
  }
  .loader-brand {
    font-size: 2.5rem;
    margin-bottom: -10px;
  }
  .loader-tagline {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
  .dna-strand {
    transform: scale(0.9);
  }
}
@media (max-width: 480px) {
  .careosis-loader {
    gap: 15px;
  }
  .loader-brand {
    font-size: 2rem;
    margin-bottom: -5px;
  }
  .loader-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
  .dna-strand {
    transform: scale(0.8);
  }
}
/* ==========================================
   Breadcrumb
========================================== */
#breadcrumb {
  padding: 20px 24px;
}
#breadcrumb .block-system-breadcrumb-block {
  max-width: 1440px;
  margin: 0 auto;
}
#breadcrumb .block-system-breadcrumb-block .block__content {
  padding: 0;
}
#breadcrumb .breadcrumb {
  background: transparent;
  font-size: 0.9rem;
  color: #616161;
}
#breadcrumb .breadcrumb .breadcrumb__content {
  display: flex;
  align-items: center;
}
#breadcrumb .breadcrumb .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrumb .breadcrumb .breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
#breadcrumb .breadcrumb .breadcrumb__item::after {
  content: ">";
  color: rgba(54, 69, 79, 0.15);
  font-size: 0.75rem;
  line-height: 1;
}
#breadcrumb .breadcrumb .breadcrumb__item:last-child::after {
  display: none;
}
#breadcrumb .breadcrumb .breadcrumb__link {
  color: #36454f;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}
#breadcrumb .breadcrumb .breadcrumb__link:hover, #breadcrumb .breadcrumb .breadcrumb__link:focus {
  color: #d4af37;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
#breadcrumb .breadcrumb .breadcrumb__item--active,
#breadcrumb .breadcrumb .breadcrumb__item:last-child {
  color: #616161;
  font-weight: 500;
}

/* ==========================================
   Tablet
========================================== */
@media (max-width: 991px) {
  #breadcrumb {
    padding: 16px 20px;
  }
  #breadcrumb .breadcrumb {
    font-size: 0.85rem;
  }
  #breadcrumb .breadcrumb .breadcrumb__list {
    gap: 6px;
  }
  #breadcrumb .breadcrumb .breadcrumb__item {
    gap: 6px;
  }
}
/* ==========================================
   Mobile
========================================== */
@media (max-width: 767px) {
  #breadcrumb {
    padding: 12px 16px;
  }
  #breadcrumb .breadcrumb {
    font-size: 0.8rem;
  }
  #breadcrumb .breadcrumb .breadcrumb__list {
    row-gap: 6px;
    column-gap: 4px;
  }
  #breadcrumb .breadcrumb .breadcrumb__item {
    gap: 4px;
  }
  #breadcrumb .breadcrumb .breadcrumb__item::after {
    font-size: 0.7rem;
  }
  #breadcrumb .breadcrumb .breadcrumb__link {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
/* ==========================================
   Small Mobile
========================================== */
@media (max-width: 480px) {
  #breadcrumb {
    padding: 10px 12px;
  }
  #breadcrumb .breadcrumb {
    font-size: 0.75rem;
  }
  #breadcrumb .breadcrumb .breadcrumb__link {
    max-width: 120px;
  }
}
.cart--cart-block {
  position: relative;
}
.cart--cart-block .cart-block--summary {
  cursor: pointer;
  padding: 10px;
}
.cart--cart-block .cart-block--link__expand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #36454f;
  position: relative;
}
.cart--cart-block .cart-block--summary__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 2px solid #36454f;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.cart--cart-block .cart-block--summary__icon img {
  width: 20px;
  height: auto;
  filter: grayscale(1) brightness(0.25);
  transition: all 0.2s ease;
}
.cart--cart-block .cart-block--summary__count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #008080;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 4px;
  border: 2px solid #ffffff;
}
.cart--cart-block .cart-block--summary:hover .cart-block--summary__icon {
  background: #d4af37;
  border-color: #d4af37;
  transform: translateY(-2px);
}
.cart--cart-block .cart-block--summary:hover .cart-block--summary__icon img {
  filter: brightness(0) invert(1);
}
.cart--cart-block .cart-block--contents {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.2s ease;
  z-index: 100;
  overflow: hidden;
  border: 1px solid rgba(54, 69, 79, 0.1);
}
.cart--cart-block .cart-block--contents__inner {
  display: flex;
  flex-direction: column;
}
.cart--cart-block .cart-block--contents__items {
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(54, 69, 79, 0.12);
}
.cart--cart-block .cart-block--contents__items .cart,
.cart--cart-block .cart-block--contents__items .cart-block,
.cart--cart-block .cart-block--contents__items .views-element-container,
.cart--cart-block .cart-block--contents__items .view,
.cart--cart-block .cart-block--contents__items .view-content {
  width: 100%;
}
.cart--cart-block .cart-block--contents__items .views-table {
  width: 100%;
  border-collapse: collapse;
}
.cart--cart-block .cart-block--contents__items .views-table tbody tr {
  border-bottom: 1px solid rgba(54, 69, 79, 0.08);
}
.cart--cart-block .cart-block--contents__items .views-table tbody tr:last-child {
  border-bottom: 0;
}
.cart--cart-block .cart-block--contents__items .views-table td {
  padding: 10px 0;
  font-size: 13px;
  color: #616161;
  vertical-align: middle;
}
.cart--cart-block .cart-block--contents__items .views-table .views-field-quantity {
  width: 48px;
  color: #008080;
  font-weight: 700;
  white-space: nowrap;
}
.cart--cart-block .cart-block--contents__items .views-table .views-field-title {
  font-weight: 600;
  color: #36454f;
  padding-left: 8px;
  padding-right: 8px;
}
.cart--cart-block .cart-block--contents__items .views-table .views-field-total-price__number {
  text-align: right;
  font-weight: 700;
  color: #d4af37;
  white-space: nowrap;
}
.cart--cart-block .cart-block--contents__links {
  padding: 20px;
  background: #ffffff;
  text-align: center;
}
.cart--cart-block .cart-block--contents__links a {
  display: inline-block;
  width: 100%;
  background: #36454f;
  color: #ffffff !important;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  border: 2px solid #36454f;
}
.cart--cart-block .cart-block--contents__links a:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}
.cart--cart-block:hover .cart-block--contents, .cart--cart-block:focus-within .cart-block--contents {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

#block-careosis-cart:hover .cart-block--contents,
#block-careosis-cart:focus-within .cart-block--contents {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

@media (max-width: 767px) {
  .cart--cart-block .cart-block--summary {
    padding: 6px;
  }
  .cart--cart-block .cart-block--summary__icon {
    width: 40px;
    height: 40px;
  }
  .cart--cart-block .cart-block--summary__icon img {
    width: 18px;
  }
  .cart--cart-block .cart-block--summary__count {
    top: -4px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
  }
  .cart--cart-block .cart-block--contents {
    right: 0;
    width: min(320px, 100vw - 24px);
    max-height: min(70vh, 480px);
    overflow-y: auto;
  }
  .cart--cart-block .cart-block--contents__items {
    padding: 12px;
  }
  .cart--cart-block .cart-block--contents__items .views-table td {
    padding: 8px 0;
    font-size: 12px;
  }
  .cart--cart-block .cart-block--contents__items .views-table .views-field-quantity {
    width: 40px;
  }
  .cart--cart-block .cart-block--contents__items .views-table .views-field-title {
    padding-left: 6px;
    padding-right: 6px;
    word-break: break-word;
  }
  .cart--cart-block .cart-block--contents__links {
    padding: 12px;
  }
  .cart--cart-block .cart-block--contents__links a {
    font-size: 13px;
    padding: 10px 0;
  }
}
@media (max-width: 479px) {
  .cart--cart-block .cart-block--contents {
    right: -6px;
    width: calc(100vw - 16px);
  }
}
.careosis-custom-cart {
  width: 100%;
  max-width: 900px;
  margin: 25px auto;
  font-family: "Poppins", sans-serif;
  color: #616161;
}
.careosis-custom-cart__empty {
  background: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.12);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #36454f;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
}
.careosis-custom-cart__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.careosis-custom-cart__item {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) auto auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.careosis-custom-cart__item:hover {
  box-shadow: 0 12px 32px rgba(54, 69, 79, 0.12);
  transform: translateY(-2px);
}
.careosis-custom-cart__details {
  display: flex;
  align-items: center;
  gap: 20px;
}
.careosis-custom-cart__thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.careosis-custom-cart__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.careosis-custom-cart__meta {
  min-width: 0;
}
.careosis-custom-cart__title {
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #36454f;
  line-height: 1.3;
  margin-bottom: 4px;
}
.careosis-custom-cart__subtitle, .careosis-custom-cart__sku {
  font-size: 0.85rem;
  color: #616161;
  opacity: 0.7;
  margin-top: 2px;
}
.careosis-custom-cart__discount {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 8px;
}
.careosis-custom-cart__old-price {
  font-size: 0.85rem;
  opacity: 0.6;
  text-decoration: line-through;
}
.careosis-custom-cart__special-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d4af37;
}
.careosis-custom-cart__qty-controls {
  display: inline-flex;
  align-items: center;
  background: #f4f5f7;
  border-radius: 8px;
  padding: 4px;
}
.careosis-custom-cart__qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #36454f;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.careosis-custom-cart__qty-btn:hover {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  color: #d4af37;
}
.careosis-custom-cart__qty {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  color: #36454f;
  font-family: "Poppins", sans-serif;
  appearance: textfield;
  -moz-appearance: textfield;
}
.careosis-custom-cart__qty::-webkit-outer-spin-button, .careosis-custom-cart__qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.careosis-custom-cart__remove-btn {
  background: transparent;
  border: none;
  color: rgba(54, 69, 79, 0.5);
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.careosis-custom-cart__remove-btn:hover {
  color: #d4af37;
  transform: scale(1.1);
}
.careosis-custom-cart__line-total {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #36454f;
  white-space: nowrap;
  text-align: right;
  min-width: 80px;
}
.careosis-custom-cart__summary {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid rgba(54, 69, 79, 0.08);
  display: flex;
  justify-content: flex-end;
}
.careosis-custom-cart__subtotal {
  font-family: "Merriweather", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #36454f;
}
.careosis-custom-cart__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

[data-drupal-selector=edit-checkout] {
  background-color: #36454f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(54, 69, 79, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}
[data-drupal-selector=edit-checkout]:hover {
  background-color: #d4af37;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .careosis-custom-cart {
    padding: 0 14px;
  }
  .careosis-custom-cart__item {
    grid-template-columns: 1fr auto;
    grid-template-areas: "details details" "qty line" "remove remove";
    gap: 14px;
    padding: 18px;
  }
  .careosis-custom-cart__details {
    grid-area: details;
  }
  .careosis-custom-cart__qty-controls {
    grid-area: qty;
    justify-self: start;
  }
  .careosis-custom-cart__line-total {
    grid-area: line;
    justify-self: end;
    text-align: right;
  }
  .careosis-custom-cart__remove-btn {
    grid-area: remove;
    justify-self: end;
  }
}
@media (max-width: 767px) {
  .careosis-custom-cart__empty {
    padding: 16px;
    font-size: 0.95rem;
  }
  .careosis-custom-cart__item {
    grid-template-columns: 1fr;
    grid-template-areas: "details" "qty" "line" "remove";
    gap: 12px;
    padding: 16px;
    text-align: center;
  }
  .careosis-custom-cart__details {
    flex-direction: column;
    gap: 12px;
  }
  .careosis-custom-cart__qty-controls, .careosis-custom-cart__line-total, .careosis-custom-cart__remove-btn {
    justify-self: center;
    text-align: center;
  }
  .careosis-custom-cart__line-total {
    font-size: 1.2rem;
  }
  .careosis-custom-cart__summary, .careosis-custom-cart__actions {
    justify-content: center;
    text-align: center;
  }
  #edit-checkout {
    width: 100%;
  }
}
.footer {
  background-color: #36454f;
  color: #fff9f0;
  padding: clamp(2.5rem, 6vw, 80px) 0 0;
  margin-top: auto;
}
.footer .wrapper {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.5vw, 2rem);
}
.footer .wrapper .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 80px);
  align-items: start;
}
.footer .wrapper .footer-grid .footer-brand-sec {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer .wrapper .footer-grid .footer-brand-sec .footer-logo img {
  max-height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer .wrapper .footer-grid .footer-brand-sec .footer-desc {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 249, 240, 0.75);
  max-width: 400px;
  text-align: left;
}
.footer .wrapper .footer-grid .footer-brand-sec .footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.footer .wrapper .footer-grid .footer-brand-sec .footer-socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: transparent;
}
.footer .wrapper .footer-grid .footer-brand-sec .footer-socials .social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer .wrapper .footer-grid .footer-brand-sec .footer-socials .social-icon:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}
.footer .wrapper .footer-grid .footer-menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 40px);
}
.footer .wrapper .footer-grid .footer-menus .footer-menu-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer .wrapper .footer-grid .footer-menus .footer-menu-col .footer-heading {
  font-family: "Merriweather", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  position: relative;
  padding-bottom: 12px;
}
.footer .wrapper .footer-grid .footer-menus .footer-menu-col .footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #d4af37;
}
.footer .wrapper .footer-grid .footer-menus .footer-menu-col .footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .wrapper .footer-grid .footer-menus .footer-menu-col .footer-menu-list .footer-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 249, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}
.footer .wrapper .footer-grid .footer-menus .footer-menu-col .footer-menu-list .footer-link:hover {
  color: #d4af37;
  transform: translateX(6px);
}
.footer .wrapper .footer-bottom {
  margin-top: clamp(1.5rem, 5vw, 80px);
  padding-top: clamp(1rem, 2.5vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 249, 240, 0.5);
}
.footer .wrapper .footer-legal-links {
  display: flex;
  gap: clamp(0.75rem, 2vw, 24px);
}
.footer .wrapper .footer-legal-links a {
  color: rgba(255, 249, 240, 0.5);
  transition: 0.2s ease-in-out;
}
.footer .wrapper .footer-legal-links a:hover {
  color: #ffffff;
}

/* ==========================================
   LARGE TABLET (1024px)
========================================== */
@media (max-width: 1024px) {
  .footer .wrapper .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer .wrapper .footer-brand-sec .footer-desc {
    max-width: 100%;
  }
  .footer .wrapper .footer-menus {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .footer .wrapper .footer-bottom {
    margin-top: 48px;
  }
}
/* ==========================================
   TABLET (768px)
========================================== */
@media (max-width: 768px) {
  .footer {
    padding-top: 48px;
  }
  .footer .wrapper .footer-grid {
    gap: 40px;
  }
  .footer .wrapper .footer-brand-sec .footer-logo img {
    max-height: 48px;
  }
  .footer .wrapper .footer-brand-sec .footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .footer .wrapper .footer-brand-sec .footer-socials {
    gap: 12px;
  }
  .footer .wrapper .footer-brand-sec .footer-socials .social-icon {
    width: 40px;
    height: 40px;
  }
  .footer .wrapper .footer-brand-sec .footer-socials .social-icon svg {
    width: 16px;
    height: 16px;
  }
  .footer .wrapper .footer-menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .footer .wrapper .footer-menus .footer-menu-col {
    gap: 16px;
  }
  .footer .wrapper .footer-menus .footer-menu-col .footer-heading {
    font-size: 1rem;
  }
  .footer .wrapper .footer-menus .footer-menu-col .footer-menu-list {
    gap: 12px;
  }
  .footer .wrapper .footer-menus .footer-menu-col .footer-menu-list .footer-link {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  .footer .wrapper .footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer .wrapper .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ==========================================
   MOBILE (576px)
========================================== */
@media (max-width: 576px) {
  .footer {
    padding-top: 40px;
  }
  .footer .wrapper {
    padding-inline: 16px;
  }
  .footer .wrapper .footer-grid {
    gap: 32px;
  }
  .footer .wrapper .footer-brand-sec {
    gap: 20px;
  }
  .footer .wrapper .footer-brand-sec .footer-logo img {
    max-height: 42px;
  }
  .footer .wrapper .footer-brand-sec .footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  .footer .wrapper .footer-brand-sec .footer-socials {
    justify-content: center;
    gap: 10px;
  }
  .footer .wrapper .footer-brand-sec .footer-socials .social-icon {
    width: 36px;
    height: 36px;
  }
  .footer .wrapper .footer-brand-sec .footer-socials .social-icon svg {
    width: 14px;
    height: 14px;
  }
  .footer .wrapper .footer-menus {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer .wrapper .footer-menus .footer-menu-col {
    gap: 14px;
  }
  .footer .wrapper .footer-menus .footer-menu-col .footer-heading {
    font-size: 0.95rem;
    padding-bottom: 8px;
  }
  .footer .wrapper .footer-menus .footer-menu-col .footer-menu-list {
    gap: 10px;
  }
  .footer .wrapper .footer-menus .footer-menu-col .footer-menu-list .footer-link {
    font-size: 0.75rem;
    letter-spacing: 0.8px;
  }
  .footer .wrapper .footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    font-size: 0.75rem;
  }
  .footer .wrapper .footer-legal-links {
    gap: 12px;
  }
}
/* Reviews modal (jQuery UI dialog) */
.ui-dialog {
  border-radius: 16px;
  border: 1px solid rgba(54, 69, 79, 0.12);
  box-shadow: 0 28px 60px rgba(54, 69, 79, 0.2);
  background: #ffffff;
}
.ui-dialog .ui-widget-header {
  border: none;
}
.ui-dialog .ui-dialog-titlebar {
  background: #ffffff;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  padding-right: 64px;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  color: #36454f;
  letter-spacing: clamp(-1px, -0.08vw, 0px);
  position: relative;
  display: block;
  width: 100%;
  padding-right: 0;
  padding-bottom: 12px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: left;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
  width: 28px;
  height: 1px;
  background-color: #d4af37;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 1px solid #d4af37;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
  font-size: 0;
  line-height: 1;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close:hover {
  background: #d4af37;
  color: #ffffff;
  border-color: #d4af37;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close::before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='M6 6 18 18'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='M6 6 18 18'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-button-icon,
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-button-icon-space,
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-icon {
  display: none;
}

.review-form-modal {
  padding: 10px;
}
.review-form-modal .ui-dialog-buttonpane.ui-widget-content {
  border: none;
}

#drupal-modal {
  background: #ffffff;
}
#drupal-modal .review-form, #drupal-modal .user-login-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 20px;
  align-items: end;
  width: 100%;
}
#drupal-modal .review-form .js-form-item, #drupal-modal .user-login-form .js-form-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  min-width: 0;
}
#drupal-modal .review-form .form-item__label, #drupal-modal .user-login-form .form-item__label {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #616161;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#drupal-modal .review-form .form-item__label.form-required::after, #drupal-modal .user-login-form .form-item__label.form-required::after {
  color: #d4af37;
}
#drupal-modal .review-form .form-text,
#drupal-modal .review-form .form-select,
#drupal-modal .review-form .form-textarea, #drupal-modal .user-login-form .form-text,
#drupal-modal .user-login-form .form-select,
#drupal-modal .user-login-form .form-textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  color: #36454f;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 0;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#drupal-modal .review-form .form-text:focus,
#drupal-modal .review-form .form-select:focus,
#drupal-modal .review-form .form-textarea:focus, #drupal-modal .user-login-form .form-text:focus,
#drupal-modal .user-login-form .form-select:focus,
#drupal-modal .user-login-form .form-textarea:focus {
  border-bottom-color: #d4af37;
}
#drupal-modal .review-form .form-textarea, #drupal-modal .user-login-form .form-textarea {
  min-height: 140px;
  resize: vertical;
}
#drupal-modal .review-form .form-item-review-content,
#drupal-modal .review-form .form-actions, #drupal-modal .user-login-form .form-item-review-content,
#drupal-modal .user-login-form .form-actions {
  grid-column: 1/-1;
}
#drupal-modal .review-form .btn-primary, #drupal-modal .user-login-form .btn-primary {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  #drupal-modal .review-form, #drupal-modal .user-login-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
#drupal-modal textarea {
  border: 1px solid rgba(54, 69, 79, 0.18);
  color: #36454f;
  background: #ffffff;
}
#drupal-modal textarea:focus {
  border-color: #008080;
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.16);
}
#drupal-modal .fieldset {
  border: 1px solid rgba(54, 69, 79, 0.1);
}
#drupal-modal .star-rating label {
  color: rgba(54, 69, 79, 0.35);
}
#drupal-modal .star-rating[data-hover] label, #drupal-modal .star-rating[data-rating] label {
  color: #d4af37;
}
#drupal-modal .button--primary {
  background: #36454f;
  color: #ffffff;
}
#drupal-modal .button--primary:hover {
  background: #d4af37;
}

/* Checkout */
.commerce-checkout-flow .layout-region-checkout-secondary h3 {
  color: #36454f;
}
.commerce-checkout-flow .form-actions {
  border-top: 1px solid #e0e0e0;
}
.commerce-checkout-flow .form-actions .button--primary {
  background-color: #d4af37;
  color: #ffffff;
}
.commerce-checkout-flow .form-actions .link--previous {
  color: #616161;
}
.commerce-checkout-flow .form-actions .link--previous:hover {
  color: #d4af37;
}
.commerce-checkout-flow .careosis-checkout__card {
  background: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.15);
}
.commerce-checkout-flow .careosis-checkout__card .fieldset__label {
  color: #008080;
}
.commerce-checkout-flow .careosis-checkout__card .form-item__label {
  color: #36454f;
}
.commerce-checkout-flow .careosis-checkout__card .form-required::after {
  color: #d4af37;
}
.commerce-checkout-flow .careosis-checkout__card .form-element {
  border: 2px solid #f5f5f5;
  background-color: #ffffff;
}
.commerce-checkout-flow .careosis-checkout__card .form-element:focus {
  border-color: #d4af37;
  background-color: #fff9f0;
}
.commerce-checkout-flow .careosis-checkout__title {
  color: #36454f;
  border-bottom: 2px solid #fff9f0;
}
.commerce-checkout-flow .careosis-checkout__title::after {
  background: #d4af37;
}
.commerce-checkout-flow .checkout-pane-order-summary .views-field.views-field-purchased-entity, .commerce-checkout-flow .checkout-pane-order-summary .views-field.views-field-total-price__number {
  color: #36454f;
}
.commerce-checkout-flow .checkout-pane-order-summary .order-total-line__total {
  border-top: 2px solid #fff9f0;
  color: #008080;
}
.commerce-checkout-flow .careosis-checkout-complete {
  background: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.15);
}
.commerce-checkout-flow .careosis-checkout-complete__badge {
  color: #008080;
  background: #fff9f0;
}
.commerce-checkout-flow .careosis-checkout-complete__title {
  color: #36454f;
}
.commerce-checkout-flow .careosis-checkout-complete__order-number, .commerce-checkout-flow .careosis-checkout-complete__hint {
  color: #616161;
}
.commerce-checkout-flow .careosis-checkout-complete strong {
  color: #008080;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.header .wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.header-sec {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 96px;
  position: relative;
}

.strip-sec {
  background-color: #36454f;
  color: #fff9f0;
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 1px;
}
.strip-sec .region--header-strip:not(:empty) {
  padding: 8px 24px;
}

.site-branding__logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-branding__logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.menu--level-1 {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu__item {
  position: relative;
}

.menu__link--level-1 {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #36454f;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 36px 0;
  display: block;
  position: relative;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.menu__link--level-1::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.menu__link--level-1:hover, .menu__item--active-trail > .menu__link--level-1 {
  color: #d4af37;
}
.menu__link--level-1:hover::after, .menu__item--active-trail > .menu__link--level-1::after {
  width: 100%;
}

.menu--level-3, .menu--level-2 {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 260px;
  padding: 16px 0;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.12);
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
  pointer-events: none;
}

.menu--level-3 {
  top: -16px;
  left: 100%;
  margin-left: 2px;
}

.menu__item--has-children:hover > .menu--level-2,
.menu__item--has-children:hover > .menu--level-3 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.menu__item--has-children > a {
  padding-right: 20px;
}
.menu__item--has-children > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  opacity: 0.6;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu--level-1 > .menu__item--has-children:hover > a::before {
  transform: translateY(-30%) rotate(225deg);
  color: #d4af37;
  opacity: 1;
}

.menu--level-2 .menu__item--has-children > a::before {
  right: 24px;
  transform: translateY(-50%) rotate(-45deg);
}

.menu__link--level-2,
.menu__link--level-3 {
  display: block;
  padding: 12px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #616161;
  transition: 0.2s ease-in-out;
  position: relative;
  letter-spacing: 0.5px;
}
.menu__link--level-2:hover,
.menu__link--level-3:hover {
  color: #008080;
  background-color: #f8f8f8;
  padding-left: 32px;
}

#block-careosis-b2b-main-menu {
  justify-self: center;
}

#block-careosis-b2b-account-menu {
  justify-self: end;
}
#block-careosis-b2b-account-menu .menu--level-1 {
  gap: 24px;
}
#block-careosis-b2b-account-menu .menu__link--level-1 {
  font-size: 0.75rem;
  color: #616161;
}
#block-careosis-b2b-account-menu .menu__link--level-1:hover {
  color: #36454f;
}
#block-careosis-b2b-account-menu .menu__link--level-1::after {
  background-color: #36454f;
}

.toggle-button {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1005;
}
.toggle-button span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #36454f;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1024px) {
  .header-sec {
    padding: 0 clamp(1rem, 3vw, 2rem);
    min-height: 80px;
    gap: 24px;
  }
  .toggle-button {
    display: flex;
    justify-self: end;
    z-index: 1005;
  }
  .toggle-button.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .toggle-button.is-active span:nth-child(2) {
    opacity: 0;
  }
  .toggle-button.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #block-careosis-b2b-main-menu,
  #block-careosis-b2b-account-menu {
    display: none;
    width: 100%;
  }
  .header.is-mobile-open .header-sec {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    box-shadow: 0 16px 40px rgba(54, 69, 79, 0.12);
    box-sizing: border-box;
    z-index: 1000;
  }
  .header.is-mobile-open #block-careosis-b2b-site-branding {
    position: absolute;
    top: 16px;
    left: clamp(1rem, 3vw, 32px);
    height: 48px;
  }
  .header.is-mobile-open .toggle-button {
    position: absolute;
    top: 28px;
    right: clamp(1rem, 3vw, 32px);
  }
  .header.is-mobile-open #block-careosis-b2b-main-menu,
  .header.is-mobile-open #block-careosis-b2b-account-menu {
    display: block;
  }
  .header.is-mobile-open .menu--level-1 {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .header.is-mobile-open .menu__link--level-1 {
    padding: 16px 0;
    font-size: 1.1rem;
  }
  .header.is-mobile-open .menu__link--level-1::after {
    bottom: 10px;
  }
  .header.is-mobile-open #block-careosis-b2b-account-menu {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(54, 69, 79, 0.15);
  }
  .header.is-mobile-open #block-careosis-b2b-account-menu .menu__link--level-1 {
    font-size: 0.95rem;
  }
  .header.is-mobile-open .menu--level-2,
  .header.is-mobile-open .menu--level-3 {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(54, 69, 79, 0.15);
    border-radius: 0;
    padding: 8px 0 8px 16px;
    margin: 0 0 16px 16px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .header.is-mobile-open .menu__item--has-children.is-open > .menu--level-2,
  .header.is-mobile-open .menu__item--has-children.is-open > .menu--level-3 {
    display: block;
  }
  .header.is-mobile-open .menu__item--has-children.is-open > a::before {
    transform: translateY(-2px) rotate(225deg);
    color: #d4af37;
  }
  .header.is-mobile-open .menu__item--has-children > a::before {
    right: auto;
    position: relative;
    display: inline-block;
    margin-left: 12px;
    top: -2px;
    margin-right: 12px;
  }
}
@media (max-width: 480px) {
  .header-sec {
    padding: 0 0.875rem;
    min-height: 72px;
  }
  .site-branding__logo img {
    max-height: 40px;
  }
  .header.is-mobile-open .header-sec {
    padding: 72px 16px 20px;
  }
}
/* Wrapper */
.messages-list {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 420px;
  width: 100%;
}
.messages-list .messages {
  background: #ffffff;
  border-left: 6px solid #008080;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px 18px;
  animation: slideIn 0.4s ease-out;
}
.messages-list .messages .messages__container {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.messages-list .messages .messages__container .messages__header h2 {
  display: none;
}
.messages-list .messages .messages__container .messages__header .messages__icon svg {
  fill: #008080;
  flex-shrink: 0;
}
.messages-list .messages .messages__container .messages__content {
  font-size: 15px;
  color: #616161;
  line-height: 1.5;
  font-weight: 500;
}
.messages-list .messages .messages__container .messages__button {
  margin-left: auto;
}
.messages-list .messages .messages__container .messages__button .messages__close {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  position: relative;
}
.messages-list .messages .messages__container .messages__button .messages__close::before, .messages-list .messages .messages__container .messages__button .messages__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #616161;
}
.messages-list .messages .messages__container .messages__button .messages__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.messages-list .messages .messages__container .messages__button .messages__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.messages-list .messages.messages--status {
  background: #ffffff;
  border-left-color: #008080;
}
.messages-list .messages.messages--error {
  background: #ffffff;
  border-left-color: #36454f;
}
.messages-list .messages.messages--warning {
  background: #ffffff;
  border-left-color: #d4af37;
}
.messages-list .messages.messages--info {
  background: #ffffff;
  border-left-color: #008080;
}
@media (max-width: 480px) {
  .messages-list {
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
  }
}

/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.reviews-header-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 56px;
  align-items: center;
}

.review-cta a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background-color: #d4af37;
  color: #ffffff;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.review-cta a:hover {
  background-color: rgb(177.7777777778, 144.8888888889, 38.2222222222);
  transform: translateY(-2px);
}

.review-header {
  max-width: 42rem;
  margin-bottom: 3rem;
  z-index: 10;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #008080;
}

p {
  font-size: 1.125rem;
  color: rgba(54, 69, 79, 0.7);
}

.review-block.swiper {
  width: 100%;
  position: relative;
  z-index: 5;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.card-wrapper {
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.card {
  position: relative;
  width: 100%;
  max-width: 18rem;
  min-height: 22rem;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  border: 1px solid rgba(54, 69, 79, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: grab;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.card:active {
  cursor: grabbing;
}
.card:hover {
  z-index: 20;
  box-shadow: 0 25px 30px -5px rgba(54, 69, 79, 0.12), 0 10px 10px -5px rgba(54, 69, 79, 0.06);
}

.pin-wrapper {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  filter: drop-shadow(0 3px 2px rgba(54, 69, 79, 0.15));
}

.pin-shadow {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #36454f;
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(2px);
  top: 1.2rem;
  left: 0.5rem;
  z-index: -1;
}

.quote-bg {
  position: absolute;
  top: 2.5rem;
  left: 1.5rem;
  width: 2rem;
  height: 2rem;
  opacity: 0.15;
  color: #36454f;
  pointer-events: none;
}

.stars {
  color: #d4af37;
  font-size: 1.25rem;
  margin: 0.5rem 0 1rem;
  letter-spacing: 2px;
  display: block;
}

.card-headline {
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #36454f;
}

.card-review {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #36454f;
  opacity: 0.85;
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(54, 69, 79, 0.08);
  margin-top: auto;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #36454f;
  box-shadow: 0 2px 4px rgba(54, 69, 79, 0.08);
}

.reviewer-details {
  text-align: left;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #36454f;
  display: block;
  line-height: 1.2;
}

.verified-badge {
  font-size: 0.75rem;
  color: rgba(54, 69, 79, 0.65);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.1rem;
}

.verified-badge svg {
  width: 12px;
  height: 12px;
  color: #008080;
}

/* Variations */
.review-block .swiper-slide:nth-child(1) .card,
.card-1 {
  background-color: rgba(0, 128, 128, 0.08);
  transform: rotate(-2deg);
}

.review-block .swiper-slide:nth-child(1) .card:hover,
.card-1:hover {
  transform: scale(1.05) rotate(-2deg);
}

.review-block .swiper-slide:nth-child(2) .card,
.card-2 {
  background-color: rgba(212, 175, 55, 0.08);
  transform: rotate(1.5deg);
}

.review-block .swiper-slide:nth-child(2) .card .pin-svg,
.review-block .swiper-slide:nth-child(2) .card .avatar,
.card-2 .pin-svg,
.card-2 .avatar {
  color: #d4af37;
}

.review-block .swiper-slide:nth-child(2) .card:hover,
.card-2:hover {
  transform: scale(1.05) rotate(1.5deg);
}

.review-block .swiper-slide:nth-child(3) .card,
.card-3 {
  background-color: rgba(54, 69, 79, 0.04);
  transform: rotate(-1.5deg);
}

.review-block .swiper-slide:nth-child(3) .card .pin-svg,
.review-block .swiper-slide:nth-child(3) .card .avatar,
.card-3 .pin-svg,
.card-3 .avatar {
  color: #36454f;
}

.review-block .swiper-slide:nth-child(3) .card:hover,
.card-3:hover {
  transform: scale(1.05) rotate(-1.5deg);
}

.review-block .swiper-slide:nth-child(4) .card,
.card-4 {
  background-color: rgba(0, 128, 128, 0.12);
  transform: rotate(2.5deg);
}

.review-block .swiper-slide:nth-child(4) .card .pin-svg,
.review-block .swiper-slide:nth-child(4) .card .avatar,
.card-4 .pin-svg,
.card-4 .avatar {
  color: #008080;
}

.review-block .swiper-slide:nth-child(4) .card:hover,
.card-4:hover {
  transform: scale(1.05) rotate(2.5deg);
}

.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.12);
  color: #36454f;
  box-shadow: 0 10px 20px rgba(54, 69, 79, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(54, 69, 79, 0.18);
}

.review-block {
  padding: 0 56px;
}

.swiper-button-prev {
  left: 12px;
}

.swiper-button-next {
  right: 12px;
}

@media (max-width: 640px) {
  .review-block {
    padding: 0 40px;
  }
  .swiper-button-prev {
    left: 6px;
  }
  .swiper-button-next {
    right: 6px;
  }
}
@media (min-width: 768px) {
  .review-header h2 {
    font-size: 2.25rem;
  }
}
#block-careosis-b2b-primary-local-tasks {
  background-color: #f8f8f8;
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
  padding: 24px 48px 0;
}
#block-careosis-b2b-primary-local-tasks .tabs--primary {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}
#block-careosis-b2b-primary-local-tasks .tabs--primary .tabs__tab {
  margin: 0;
}
#block-careosis-b2b-primary-local-tasks .tabs--primary .tabs__tab .tabs__link {
  display: block;
  padding-bottom: 16px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neutral-600);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  /* Overlaps the bottom border perfectly */
  transition: var(--transition-med);
}
#block-careosis-b2b-primary-local-tasks .tabs--primary .tabs__tab .tabs__link:hover {
  color: var(--charcoal);
}
#block-careosis-b2b-primary-local-tasks .tabs--primary .tabs__tab .tabs__link {
  /* Active tab state with luxury gold */
}
#block-careosis-b2b-primary-local-tasks .tabs--primary .tabs__tab .tabs__link.is-active {
  color: var(--charcoal);
  border-bottom-color: var(--accent-primary);
}
#block-careosis-b2b-primary-local-tasks .tabs--primary .tabs__tab .tabs__trigger {
  display: none;
}

@media (max-width: 480px) {
  #block-careosis-b2b-primary-local-tasks {
    padding: 24px 24px 0;
  }
  .tabs--primary {
    gap: 16px;
  }
  .tabs__link {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }
}
.block-views-blockcategory-cards-block-1 {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}
.block-views-blockcategory-cards-block-1 .editorial-section {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.block-views-blockcategory-cards-block-1 .editorial-section .section-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.block-views-blockcategory-cards-block-1 .editorial-section .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #008080;
  display: block;
  margin-bottom: 20px;
}
.block-views-blockcategory-cards-block-1 .editorial-section .section-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  line-height: 1.15;
  font-weight: 300;
  color: #36454f;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
}
.block-views-blockcategory-cards-block-1 .editorial-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #d4af37;
}
.block-views-blockcategory-cards-block-1 .editorial-section .view-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
}
.block-views-blockcategory-cards-block-1 .editorial-section .views-row {
  flex: 0 0 calc(25% - 1.5rem);
  max-width: calc(25% - 1.5rem);
}
.block-views-blockcategory-cards-block-1 .editorial-section .views-field,
.block-views-blockcategory-cards-block-1 .editorial-section .field-content {
  display: block;
  height: 100%;
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-item {
  text-decoration: none;
  display: block;
  position: relative;
  height: 100%;
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-item:hover .image-container::after {
  opacity: 1;
  border-color: #d4af37;
  transform: scale(0.96);
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-item:hover .collection-image {
  transform: scale(1.06);
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-item:hover .collection-title {
  color: #008080;
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-item:hover .collection-link {
  opacity: 1;
  transform: translateY(0);
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-item:hover .collection-link::after {
  width: 50px;
}
.block-views-blockcategory-cards-block-1 .editorial-section .image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #f8f8f8;
  border-radius: 12px;
  margin-bottom: clamp(1rem, 2.5vw, 32px);
}
.block-views-blockcategory-cards-block-1 .editorial-section .image-container::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 8px;
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-index {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d4af37;
  margin-top: 6px;
  letter-spacing: 1px;
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-text {
  flex-grow: 1;
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.1rem, 1vw + 1rem, 1.75rem);
  line-height: 1.3;
  font-weight: 300;
  color: #36454f;
  margin-bottom: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #008080;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.block-views-blockcategory-cards-block-1 .editorial-section .collection-link::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #008080;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 1024px) {
  .block-views-blockcategory-cards-block-1 .editorial-section .section-header {
    margin-bottom: 48px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .section-title {
    font-size: 2.75rem;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .view-content {
    gap: 1.5rem;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .views-row {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .block-views-blockcategory-cards-block-1 .editorial-section .section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .section-title {
    font-size: 2rem;
    padding-bottom: 16px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .view-content {
    gap: 24px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .views-row {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .image-container {
    margin-bottom: 20px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .image-container::after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-content {
    gap: 12px;
    padding: 0;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-index {
    font-size: 0.75rem;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-link {
    opacity: 1;
    transform: translateY(0);
    color: #36454f;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-link::after {
    width: 24px;
    background-color: #36454f;
  }
}
@media (max-width: 576px) {
  .block-views-blockcategory-cards-block-1 {
    padding: 32px 16px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .section-header {
    margin-bottom: 32px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .section-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .section-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .view-content {
    gap: 20px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .image-container {
    border-radius: 10px;
    margin-bottom: 16px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .image-container::after {
    display: none;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-content {
    gap: 10px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-index {
    font-size: 0.7rem;
    margin-top: 4px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-title {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-link {
    font-size: 0.7rem;
    gap: 8px;
  }
  .block-views-blockcategory-cards-block-1 .editorial-section .collection-link::after {
    width: 20px;
  }
}

.block-contact-us-block {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}
.block-contact-us-block .contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 5vw, 80px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .block-contact-us-block .contact-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .block-contact-us-block .contact-section {
    grid-template-columns: 1fr;
  }
}
.block-contact-us-block .contact-section .contact-info-wrapper {
  max-width: 480px;
}
.block-contact-us-block .contact-section .contact-info-wrapper .contact-heading {
  font-family: "Merriweather", serif;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 300;
  color: #36454f;
  line-height: 1.2;
  margin-bottom: 24px;
}
.block-contact-us-block .contact-section .contact-info-wrapper .contact-text {
  font-size: 1rem;
  color: #616161;
  margin-bottom: 48px;
  line-height: 1.6;
}
.block-contact-us-block .contact-section .contact-info-wrapper .contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 32px);
}
.block-contact-us-block .contact-section .contact-info-wrapper .contact-list .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.block-contact-us-block .contact-section .contact-info-wrapper .contact-list .contact-item .contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 128, 128, 0.08);
  color: #008080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.block-contact-us-block .contact-section .contact-info-wrapper .contact-list .contact-item .contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.block-contact-us-block .contact-section .contact-info-wrapper .contact-list .contact-item .contact-details h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #36454f;
  margin-bottom: 4px;
}
.block-contact-us-block .contact-section .contact-info-wrapper .contact-list .contact-item .contact-details p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #616161;
  line-height: 1.5;
}
.block-contact-us-block .contact-section .contact-form-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: clamp(1rem, 4vw, 56px);
  box-shadow: 0 8px 24px rgba(54, 69, 79, 0.08);
  border: 2px solid rgba(54, 69, 79, 0.2);
}

@media (min-width: 1024px) {
  .block-contact-us-block .contact-section {
    grid-template-columns: 1fr 1.2fr;
  }
}
@media (max-width: 768px) {
  .block-contact-us-block .contact-section .contact-info-wrapper .contact-text {
    margin-bottom: 1.5rem;
  }
  .block-contact-us-block .contact-section .contact-info-wrapper .contact-item {
    gap: 12px;
  }
  .block-contact-us-block .contact-section .contact-info-wrapper .contact-icon {
    width: 40px;
    height: 40px;
  }
  .block-contact-us-block .contact-section .contact-form-card {
    border-radius: 14px;
  }
}
.faq-section {
  padding: 5rem 3rem;
}
.faq-section .faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-section .faq-inner .faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.faq-section .faq-inner .faq-list .faq-item {
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.faq-section .faq-inner .faq-list .faq-item.open {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
}
.faq-section .faq-inner .faq-list .faq-item.open .faq-trigger {
  background: #d4af37;
  color: #36454f;
}
.faq-section .faq-inner .faq-list .faq-item.open .faq-trigger .faq-icon {
  background: #ffffff;
  border-color: #d4af37;
}
.faq-section .faq-inner .faq-list .faq-item.open .faq-trigger .faq-icon svg {
  transform: rotate(45deg);
  color: #616161;
}
.faq-section .faq-inner .faq-list .faq-item.open .faq-body {
  max-height: 300px;
}
.faq-section .faq-inner .faq-list .faq-item .faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #212121;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.faq-section .faq-inner .faq-list .faq-item .faq-trigger:hover {
  background: #fff9f0;
}
.faq-section .faq-inner .faq-list .faq-item .faq-trigger .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-in-out, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-section .faq-inner .faq-list .faq-item .faq-trigger .faq-icon svg {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #d4af37;
}
.faq-section .faq-inner .faq-list .faq-item .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-section .faq-inner .faq-list .faq-item .faq-body .faq-body-inner {
  padding: 1.5rem;
  text-align: justify;
  font-size: 0.87rem;
  line-height: 1.8;
  color: #616161;
}
.faq-section .faq-inner .faq-list .faq-item .faq-body .faq-body-inner a {
  color: #008080;
  font-weight: 500;
}

.product-search-hero-block .hero-container {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.product-search-hero-block .hero-viewport {
  height: clamp(380px, 60vh, 760px);
  min-height: 380px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(54, 69, 79, 0.08);
  background-color: #36454f;
}
.product-search-hero-block .swiper {
  width: 100%;
  height: 100%;
}
.product-search-hero-block .slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3.5vw, 4rem);
  color: #ffffff;
  position: relative;
}
.product-search-hero-block .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, rgba(54, 69, 79, 0.8) 0%, rgba(54, 69, 79, 0.2) 60%, rgba(54, 69, 79, 0) 100%);
  z-index: 1;
}
.product-search-hero-block .slide .slide-content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 600px);
}
.product-search-hero-block .hero-label {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0.9;
  line-height: 1.4;
}
.product-search-hero-block .hero-label::before {
  content: "";
  min-width: 30px;
  height: 1px;
  background-color: #d4af37;
  margin-top: 0.7rem;
}
.product-search-hero-block .hero-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.8rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-wrap: balance;
}
.product-search-hero-block .hero-nav {
  position: absolute;
  left: clamp(1rem, 3.5vw, 4rem);
  bottom: clamp(1rem, 3.5vw, 4rem);
  display: flex;
  gap: 12px;
  z-index: 10;
  flex-wrap: wrap;
}
.product-search-hero-block .hero-nav .nav-circle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  user-select: none;
}
.product-search-hero-block .hero-nav .nav-circle:hover {
  background-color: #ffffff;
  color: #36454f;
}
@media (max-width: 1024px) {
  .product-search-hero-block .hero-viewport {
    height: clamp(360px, 56vh, 620px);
  }
  .product-search-hero-block .slide {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .product-search-hero-block .hero-viewport {
    height: clamp(320px, 45vh, 520px);
    min-height: 320px;
  }
  .product-search-hero-block .slide {
    justify-content: flex-end;
    padding: 1.25rem 1rem 4.5rem;
    background-position: 62% center;
  }
  .product-search-hero-block .slide::before {
    background: linear-gradient(180deg, rgba(54, 69, 79, 0.25) 0%, rgba(54, 69, 79, 0.55) 55%, rgba(54, 69, 79, 0.82) 100%);
  }
  .product-search-hero-block .slide .slide-content {
    max-width: 100%;
  }
  .product-search-hero-block .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.15rem);
    line-height: 1.18;
    margin-bottom: 0.25rem;
  }
  .product-search-hero-block .hero-label {
    font-size: 0.875rem;
    max-width: 32ch;
    margin-top: 0.75rem;
    gap: 8px;
  }
  .product-search-hero-block .hero-label::before {
    min-width: 24px;
    margin-top: 0.62rem;
  }
  .product-search-hero-block .hero-nav {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.75rem;
    gap: 10px;
  }
  .product-search-hero-block .hero-nav .nav-circle {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 480px) {
  .product-search-hero-block .slide {
    padding-bottom: 4.25rem;
  }
  .product-search-hero-block .hero-label::before {
    min-width: 18px;
  }
}

#product-search-form .search-float {
  max-width: 1440px;
  width: min(100% - 2rem, 1440px);
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem clamp(1rem, 2vw, 1.5rem);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  box-shadow: 0 20px 40px rgba(54, 69, 79, 0.12);
  border-bottom: 4px solid #d4af37;
  margin: 2rem auto 0 auto;
  flex-wrap: nowrap;
}
#product-search-form .search-float .search-group {
  flex: 1;
  min-width: 0;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
}
#product-search-form .search-float .search-group:not(:last-child) {
  border-right: 1px solid rgba(54, 69, 79, 0.15);
}
#product-search-form .search-float .search-group .form-type-select {
  width: 100%;
}
#product-search-form .search-float .search-group .search-field-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
#product-search-form .search-float .search-group .search-field-inner input,
#product-search-form .search-float .search-group .search-field-inner select {
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #36454f;
  width: 100%;
  background: transparent;
}
#product-search-form .search-float .search-group .search-field-inner input {
  cursor: text;
}
#product-search-form .search-float .search-group .search-field-inner select {
  cursor: pointer;
}
#product-search-form .search-float .btn-primary {
  margin-bottom: 0;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  #product-search-form .search-float {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  #product-search-form .search-float .search-group {
    padding: 0 0.75rem;
    flex: 1 1 calc(50% - 0.75rem);
  }
  #product-search-form .search-float .btn-primary {
    flex: 1 1 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #product-search-form .search-float {
    padding: 1rem;
    border-radius: 10px;
  }
  #product-search-form .search-float .search-group {
    flex: 1 1 100%;
    padding: 0;
  }
  #product-search-form .search-float .search-group:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(54, 69, 79, 0.15);
    padding-bottom: 0.75rem;
  }
  #product-search-form .search-float .btn-primary {
    margin-top: 0.25rem;
  }
}

.block-newsletter-block {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}
.block-newsletter-block .newsletter-block {
  background-color: #36454f;
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 80px) clamp(1rem, 4vw, 40px);
  text-align: center;
  color: #fff9f0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.block-newsletter-block .newsletter-block::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  pointer-events: none;
}
.block-newsletter-block .newsletter-block .news-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #d4af37;
  margin-bottom: 16px;
  display: block;
}
.block-newsletter-block .newsletter-block .news-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 300;
  margin: 0 0 24px 0;
  color: #ffffff;
  line-height: 1.2;
}
.block-newsletter-block .newsletter-block .news-desc {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  color: rgba(255, 249, 240, 0.8);
  max-width: 500px;
  margin: 0 auto 40px;
}
.block-newsletter-block .newsletter-block .news-form {
  display: flex;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 16px;
  justify-content: center;
}
.block-newsletter-block .newsletter-block .news-form .news-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 249, 240, 0.3);
  padding: 16px 0;
  color: #ffffff;
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  outline: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.block-newsletter-block .newsletter-block .news-form .news-input::placeholder {
  color: rgba(255, 249, 240, 0.4);
}
.block-newsletter-block .newsletter-block .news-form .news-input:focus {
  border-bottom-color: #d4af37;
}
.block-newsletter-block .newsletter-block .news-form .news-btn {
  background-color: #d4af37;
  color: #ffffff;
  border: none;
  padding: 0 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.block-newsletter-block .newsletter-block .news-form .news-btn:hover {
  background-color: rgb(202.1728395062, 164.7708641975, 43.4671604938);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
  .block-newsletter-block .newsletter-block {
    border-radius: 14px;
  }
  .block-newsletter-block .newsletter-block::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .block-newsletter-block .newsletter-block .news-subtitle {
    letter-spacing: 2px;
  }
  .block-newsletter-block .newsletter-block .news-form {
    flex-direction: column;
    gap: 12px;
  }
  .block-newsletter-block .newsletter-block .news-form .news-input {
    padding: 12px 0;
    font-size: 1rem;
  }
  .block-newsletter-block .newsletter-block .news-form .news-btn {
    width: 100%;
    min-height: 44px;
    padding: 0 1rem;
  }
}
.block-distribution-partner {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}
.block-distribution-partner .partner-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.block-distribution-partner .partner-wrapper .container {
  max-width: 1440px;
  width: 100%;
}

.partner-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 60px);
  background-color: #ffffff;
  padding: clamp(1.5rem, 4vw, 64px);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(54, 69, 79, 0.08);
  border: 2px solid rgba(54, 69, 79, 0.2);
}
.partner-section .partner-content {
  flex: 1;
  max-width: 480px;
  min-width: 0;
}
.partner-section .partner-content .partner-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #36454f;
  margin-bottom: 16px;
  line-height: 1.2;
}
.partner-section .partner-content .partner-desc {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  color: #616161;
  line-height: 1.6;
  margin-bottom: 32px;
}
.partner-section .partner-content .partner-btn {
  display: inline-block;
  background-color: #d4af37;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}
.partner-section .partner-content .partner-btn:hover {
  background-color: rgb(186.1728395062, 151.7308641975, 40.0271604938);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}
.partner-section .partner-stats {
  display: flex;
  gap: clamp(1rem, 3vw, 48px);
  flex: 1.2;
  justify-content: space-between;
  flex-wrap: wrap;
}
.partner-section .partner-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partner-section .partner-stats .stat-item .stat-number {
  font-family: "Merriweather", serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #008080;
  font-weight: 700;
  line-height: 1;
}
.partner-section .partner-stats .stat-item .stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #616161;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .partner-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-section .partner-content,
  .partner-section .partner-stats {
    max-width: 100%;
    width: 100%;
  }
  .partner-section .partner-stats {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .partner-section {
    border-radius: 14px;
  }
  .partner-section .partner-content .partner-btn {
    width: 100%;
    text-align: center;
  }
  .partner-section .partner-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
  .partner-section .partner-stats .stat-item {
    width: 100%;
  }
}
.feature-banner {
  position: relative;
  background-color: #008080;
  border-radius: clamp(20px, 4vw, 80px) 16px clamp(20px, 4vw, 80px) 16px;
  margin-bottom: clamp(1.5rem, 4vw, 60px);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(260px, 38vw, 320px);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.15);
}
.feature-banner__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  object-fit: cover;
  z-index: 0;
}
.feature-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #008080 45%, rgba(13, 148, 136, 0.8) 60%, rgba(13, 148, 136, 0) 100%);
  z-index: 1;
}
.feature-banner__content {
  position: relative;
  z-index: 2;
  width: min(65%, 760px);
  padding: clamp(1.5rem, 4vw, 50px) clamp(1rem, 4vw, 60px);
  color: #ffffff;
}
.feature-banner__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.feature-banner__desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  opacity: 0.95;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .feature-banner {
    flex-direction: column-reverse;
    align-items: stretch;
    min-height: 0;
  }
  .feature-banner__img {
    position: relative;
    width: 100%;
    height: clamp(180px, 46vw, 260px);
  }
  .feature-banner__overlay {
    background: linear-gradient(180deg, rgba(0, 128, 128, 0) 0%, rgba(0, 128, 128, 0.35) 50%, #008080 100%);
  }
  .feature-banner__content {
    width: 100%;
  }
}
.review-section {
  padding: 5rem 3rem 2.5rem;
}
.review-section .btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background-color: #36454f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid #36454f;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 1rem 0;
}
.review-section .btn-write-review i {
  font-size: 0.85rem;
}
.review-section .btn-write-review:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #36454f;
}
.review-section .review-slider-wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 640px) {
  .review-section .review-slider-wrapper {
    padding: 0;
  }
}
.review-section .review-swiper {
  width: 100%;
  padding-bottom: 8px;
  overflow: visible !important;
}
.review-section .swiper-slide {
  height: auto;
  display: flex;
}
.review-section .swiper-button-prev.review-nav-btn,
.review-section .swiper-button-next.review-nav-btn {
  width: 44px;
  height: 44px;
  margin-top: 0;
  background-image: none;
  color: inherit;
}
.review-section .swiper-button-prev.review-nav-btn::after,
.review-section .swiper-button-next.review-nav-btn::after {
  display: none;
}
.review-section .review-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #36454f;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.review-section .review-nav-btn:hover {
  color: #008080;
  border-color: #008080;
  box-shadow: 0 6px 16px rgba(0, 128, 128, 0.15);
}
.review-section .review-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.review-section .review-nav-btn.swiper-button-prev {
  left: 0;
}
.review-section .review-nav-btn.swiper-button-next {
  right: 0;
}
@media (max-width: 640px) {
  .review-section .review-nav-btn {
    display: none;
  }
}
@media (max-width: 600px) {
  .review-section {
    padding: 3rem 1.25rem 2rem;
  }
  .review-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .review-section .btn-write-review {
    width: 100%;
    justify-content: center;
  }
}
.review-section .card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 24px 0 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.review-section .card.card--gold .client-name {
  color: #d4af37;
}
.review-section .card.card--gold .card-footer::before {
  background: #d4af37;
}
.review-section .card.card--gold .stars i {
  color: #ffffff;
}
.review-section .card.card--gold .flame-icon i {
  color: #d4af37;
}
.review-section .card.card--teal .client-name {
  color: #008080;
}
.review-section .card.card--teal .card-footer::before {
  background: #008080;
}
.review-section .card.card--teal .stars i {
  color: #ffffff;
}
.review-section .card.card--teal .flame-icon i {
  color: #008080;
}
.review-section .card.card--charcoal .client-name {
  color: #36454f;
}
.review-section .card.card--charcoal .card-footer::before {
  background: #36454f;
}
.review-section .card.card--charcoal .stars i {
  color: #ffffff;
}
.review-section .card.card--charcoal .flame-icon i {
  color: #36454f;
}
.review-section .card .card-header {
  margin-bottom: 14px;
  /* top margin so content doesn't sit right at the edge */
  margin-top: 4px;
}
.review-section .card .card-header .client-name {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
}
.review-section .card .card-header .client-company {
  font-size: 0.78rem;
  color: #999;
  margin-top: 3px;
}
.review-section .card .card-divider {
  height: 1px;
  background: #eee;
  margin-bottom: 14px;
}
.review-section .card .card-body {
  font-size: 0.78rem;
  line-height: 1.8;
  color: #888;
  flex: 1;
  margin-bottom: 22px;
}
.review-section .card .card-footer {
  position: relative;
  height: 52px;
  margin-left: -24px;
  margin-right: -24px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 18px;
}
.review-section .card .card-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 70%;
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
  border-radius: 0 0 0 16px;
}
.review-section .card .card-footer .stars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.review-section .card .card-footer .stars i {
  font-size: 13px;
  line-height: 1;
  color: #ffffff;
}
.review-section .card .card-footer .flame-icon {
  position: relative;
  z-index: 1;
}
.review-section .card .card-footer .flame-icon i {
  font-size: 28px;
  line-height: 1;
  display: block;
}

.block-trust-card {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}
.block-trust-card .trust-card-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.block-trust-card .trust-card-container .trust-card {
  background: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 8px 24px rgba(54, 69, 79, 0.08);
}
.block-trust-card .trust-card-container .trust-card .trust-column {
  flex: 1;
  min-width: 300px;
}
.block-trust-card .trust-card-container .trust-card .trust-column .column-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #616161;
}
.block-trust-card .trust-card-container .trust-card .trust-column .logo-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  /* Updated to handle actual image tags smoothly */
}
.block-trust-card .trust-card-container .trust-card .trust-column .logo-grid .brand-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: 0.2s ease-in-out;
  mix-blend-mode: multiply;
  /* Helps logos with white backgrounds blend in */
}
.block-trust-card .trust-card-container .trust-card .trust-column .logo-grid .brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
.block-trust-card .trust-card-container .trust-card .trust-divider {
  width: 1px;
  background: #e0e0e0;
  align-self: stretch;
}
@media (max-width: 768px) {
  .block-trust-card .trust-card-container .trust-divider {
    display: none;
  }
  .block-trust-card .trust-card-container .trust-card {
    flex-direction: column;
    padding: 20px;
  }
  .block-trust-card .trust-card-container .column-title {
    text-align: center;
  }
  .block-trust-card .trust-card-container .logo-grid {
    justify-content: center;
  }
}

.block-testimonials-block {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}
.block-testimonials-block .testimonials-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.block-testimonials-block .testimonials-container .slider-wrapper {
  position: relative;
  padding: 0 clamp(0.5rem, 4vw, 60px);
  /* Room for the prev/next buttons */
}
.block-testimonials-block .testimonials-container {
  /* Swiper Container overrides */
}
.block-testimonials-block .testimonials-container .swiper {
  width: 100%;
  padding: 70px 0 40px 0 !important;
  /* Top padding creates space for the protruding avatar */
}
.block-testimonials-block .testimonials-container .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  padding-top: 60px; /* shifts card down so avatar has visual room */
}
.block-testimonials-block .testimonials-container {
  /* Default Card State (Side Cards) */
}
.block-testimonials-block .testimonials-container .testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  padding: 70px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  transform: scale(0.9);
  opacity: 0.5;
  cursor: pointer;
}
.block-testimonials-block .testimonials-container {
  /* Active Card State (Center Card) */
}
.block-testimonials-block .testimonials-container .swiper-slide-active .testimonial-card {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  border-color: #d4af37;
  cursor: default;
}
.block-testimonials-block .testimonials-container {
  /* Protruding avatar above card */
}
.block-testimonials-block .testimonials-container .avatar-wrapper {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.block-testimonials-block .testimonials-container .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #fff9f0;
}
.block-testimonials-block .testimonials-container .avatar.avatar-placeholder {
  background-color: #e0e0e0;
}
.block-testimonials-block .testimonials-container .quote {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #36454f;
  line-height: 1.6;
  margin: 0 0 28px;
  flex-grow: 1;
}
.block-testimonials-block .testimonials-container .author {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #212121;
  margin: 0 0 6px;
}
.block-testimonials-block .testimonials-container .location {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #616161;
  margin: 0 0 24px;
}
.block-testimonials-block .testimonials-container .logo-wrapper {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}
.block-testimonials-block .testimonials-container .company-logo {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.block-testimonials-block .testimonials-container .swiper-slide-active .company-logo {
  opacity: 1;
  filter: grayscale(0);
}
.block-testimonials-block .testimonials-container {
  /* --- Swiper Custom Pagination & Navigation --- */
}
.block-testimonials-block .testimonials-container .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #e0e0e0;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.block-testimonials-block .testimonials-container .swiper-pagination-bullet-active {
  background: #008080;
  width: 24px;
  border-radius: 10px;
}
.block-testimonials-block .testimonials-container {
  /* Custom Navigation Buttons */
}
.block-testimonials-block .testimonials-container .custom-nav-btn {
  position: absolute;
  top: 55%;
  /* Center relative to cards, ignoring pagination padding */
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #36454f;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.block-testimonials-block .testimonials-container .custom-nav-btn:hover {
  color: #008080;
  border-color: #008080;
  box-shadow: 0 6px 16px rgba(0, 128, 128, 0.15);
}
.block-testimonials-block .testimonials-container {
  /* Hide the default swiper blue arrows */
}
.block-testimonials-block .testimonials-container .swiper-button-next:after,
.block-testimonials-block .testimonials-container .swiper-button-prev:after {
  content: "";
}
.block-testimonials-block .testimonials-container {
  /* Custom SVG arrows */
}
.block-testimonials-block .testimonials-container .custom-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.block-testimonials-block .testimonials-container .swiper-button-prev {
  left: 0;
}
.block-testimonials-block .testimonials-container .swiper-button-next {
  right: 0;
}
@media (max-width: 768px) {
  .block-testimonials-block .testimonials-container .slider-wrapper {
    padding: 0;
  }
  .block-testimonials-block .testimonials-container .custom-nav-btn {
    display: none;
  }
  .block-testimonials-block .testimonials-container .swiper {
    padding: 70px 0 30px !important;
  }
  .block-testimonials-block .testimonials-container .testimonial-card,
  .block-testimonials-block .testimonials-container .swiper-slide-active .testimonial-card {
    transform: none;
    opacity: 1;
    padding: 65px 24px 30px;
  }
  .block-testimonials-block .testimonials-container .quote {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .block-testimonials-block .testimonials-container .author {
    font-size: 16px;
  }
}

.zig-zag-banners-block {
  padding: clamp(1.5rem, 4vw, 40px) clamp(1rem, 3.5vw, 24px);
}
.zig-zag-banners-block .zz-banner-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.zig-zag-banners-block .zz-banner-container .banner {
  display: flex;
  background-color: #fff9f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  min-height: clamp(300px, 45vw, 400px);
  flex-direction: row;
}
.zig-zag-banners-block .zz-banner-container .banner:nth-child(even) {
  flex-direction: row-reverse;
}
.zig-zag-banners-block .zz-banner-container .banner .banner-content {
  flex: 1;
  padding: clamp(1.5rem, 4vw, 4rem) clamp(1rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zig-zag-banners-block .zz-banner-container .banner .banner-content h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  color: #212121;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.zig-zag-banners-block .zz-banner-container .banner .banner-content p {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  max-width: 90%;
}
.zig-zag-banners-block .zz-banner-container .banner .banner-image {
  flex: 1;
  position: relative;
}
.zig-zag-banners-block .zz-banner-container .banner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.zig-zag-banners-block .zz-banner-container .banner .banner-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(56px, 10vw, 150px);
  z-index: 1;
  pointer-events: none;
}
.zig-zag-banners-block .zz-banner-container .banner:nth-child(odd) .banner-image::before {
  left: 0;
  background: linear-gradient(to right, #fff9f0 0%, transparent 100%);
}
.zig-zag-banners-block .zz-banner-container .banner:nth-child(even) .banner-image::before {
  right: 0;
  background: linear-gradient(to left, #fff9f0 0%, transparent 100%);
}
@media (max-width: 900px) {
  .zig-zag-banners-block {
    /* Force all banners to stack vertically on smaller screens */
  }
  .zig-zag-banners-block .banner,
  .zig-zag-banners-block .banner:nth-child(even) {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .zig-zag-banners-block .banner-content {
    padding: 2rem 1.25rem;
  }
  .zig-zag-banners-block .banner-content p {
    max-width: 100%;
  }
  .zig-zag-banners-block .banner-image {
    min-height: clamp(200px, 46vw, 300px);
  }
  .zig-zag-banners-block {
    /* Adjust gradient fade for vertical layout */
  }
  .zig-zag-banners-block .banner:nth-child(odd) .banner-image::before,
  .zig-zag-banners-block .banner:nth-child(even) .banner-image::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: clamp(56px, 12vw, 100px);
    background: linear-gradient(to top, #fff9f0 0%, transparent 100%);
  }
}
@media (max-width: 480px) {
  .zig-zag-banners-block .zz-banner-container {
    gap: 1.5rem;
  }
  .zig-zag-banners-block .banner-content h2 {
    line-height: 1.2;
  }
}

.page-node-type-blog,
.path-blog {
  background-color: #fff9f0;
}

.node--type-blog .page-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-node-type-blog .blog-meta-info {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #616161;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 32px 0;
}
.page-node-type-blog .meta-dot {
  width: 4px;
  height: 4px;
  background-color: rgba(54, 69, 79, 0.15);
  border-radius: 50%;
}
.page-node-type-blog .blog-author-name {
  font-weight: 500;
  color: #36454f;
}
.page-node-type-blog .blog-featured-image {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 64px;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
}
.page-node-type-blog .blog-body {
  max-width: 860px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  color: #36454f;
  text-align: justify;
}
.page-node-type-blog .blog-body > p:first-of-type::first-letter {
  font-family: "Merriweather", serif;
  font-size: 4.5rem;
  float: left;
  line-height: 1;
  padding-right: 12px;
  padding-top: 4px;
  color: #d4af37;
}
.page-node-type-blog .blog-body p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.page-node-type-blog .blog-body h2 {
  font-family: "Merriweather", serif;
  font-size: clamp(1.3rem, 2vw + 1rem, 2rem);
  font-weight: 400;
  color: #36454f;
  margin: 10px 0 10px;
}
.page-node-type-blog .blog-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #36454f;
  margin: 40px 0 16px;
}
.page-node-type-blog .blog-body img {
  width: 100%;
  border-radius: 4px;
  margin: 10px 0;
}
.page-node-type-blog .blog-body figcaption {
  font-size: 0.85rem;
  color: #616161;
  text-align: center;
  margin-top: -24px;
  margin-bottom: 40px;
  font-style: italic;
}
.page-node-type-blog .blog-blockquote {
  margin: 25px 0;
  padding-left: 32px;
  border-left: 2px solid #d4af37;
}
.page-node-type-blog .blog-blockquote p {
  font-family: "Merriweather", serif;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: #008080;
  margin: 0;
}
.page-node-type-blog .blog-share {
  margin: 64px auto;
  padding: 32px 0;
  border-top: 1px solid rgba(54, 69, 79, 0.15);
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-node-type-blog .blog-share-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #36454f;
}
.page-node-type-blog .blog-share-icons {
  display: flex;
  gap: 16px;
}
.page-node-type-blog .blog-share-icons .blog-share-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #36454f;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-node-type-blog .blog-share-icons .blog-share-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.page-node-type-blog .blog-share-icons .blog-share-icon:hover {
  background-color: #36454f;
  color: #ffffff;
  border-color: #36454f;
  transform: translateY(-2px);
}
.page-node-type-blog .blog-author-bio {
  max-width: 760px;
  margin: 0 auto 100px;
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  border: 1px solid rgba(54, 69, 79, 0.15);
}
.page-node-type-blog .blog-author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.page-node-type-blog .blog-author-info h4 {
  font-family: "Merriweather", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #36454f;
}
.page-node-type-blog .blog-author-info p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #616161;
  margin: 0;
  line-height: 1.6;
}
.page-node-type-blog .read-next-wrapper {
  margin-top: 80px;
  border-top: 1px solid rgba(54, 69, 79, 0.15);
  padding-top: 80px;
}
.page-node-type-blog .read-next-header {
  text-align: center;
  margin-bottom: 48px;
}
.page-node-type-blog .read-next-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.3rem, 2vw + 1rem, 2rem);
  font-weight: 300;
  color: #36454f;
  margin: 0;
}
.page-node-type-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 100px;
}
.page-node-type-blog .blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(54, 69, 79, 0.15);
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-node-type-blog .blog-card .card-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.page-node-type-blog .blog-card .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-node-type-blog .blog-card .card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.page-node-type-blog .blog-card .card-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 16px;
}
.page-node-type-blog .blog-card .card-title {
  font-family: "Merriweather", serif;
  font-size: clamp(0.95rem, 1vw + 0.75rem, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  color: #36454f;
  margin: 0 0 16px 0;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-node-type-blog .blog-card .card-divider {
  width: 32px;
  height: 2px;
  background-color: #d4af37;
  margin-bottom: 16px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-node-type-blog .blog-card .card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #616161;
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-node-type-blog .blog-card .btn-read-more {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #36454f;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-node-type-blog .blog-card .btn-read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}
.page-node-type-blog .blog-card .btn-read-more::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #36454f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.page-node-type-blog .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(54, 69, 79, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}
.page-node-type-blog .blog-card:hover .card-image {
  transform: scale(1.08);
}
.page-node-type-blog .blog-card:hover .card-title {
  color: #008080;
}
.page-node-type-blog .blog-card:hover .card-divider {
  width: 64px;
}
.page-node-type-blog .blog-card:hover .btn-read-more::after {
  transform: translateX(6px);
}
.page-node-type-blog .blog-card:hover .btn-read-more::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==========================================
   LARGE TABLET
========================================== */
@media (max-width: 1199px) {
  .page-node-type-blog .blog-featured-image {
    height: 50vh;
    min-height: 350px;
  }
  .page-node-type-blog .blog-body {
    max-width: 100%;
  }
  .page-node-type-blog .blog-grid {
    gap: 24px;
  }
}
/* ==========================================
   TABLET
========================================== */
@media (max-width: 991px) {
  .page-node-type-blog .blog-featured-image {
    height: 45vh;
    min-height: 300px;
    margin-bottom: 48px;
  }
  .page-node-type-blog .blog-body p {
    font-size: 1rem;
  }
  .page-node-type-blog .blog-body h2 {
    font-size: 1.75rem;
  }
  .page-node-type-blog .blog-body h3 {
    font-size: 1.2rem;
  }
  .page-node-type-blog .blog-body > p:first-of-type::first-letter {
    font-size: 3.5rem;
  }
  .page-node-type-blog .blog-share {
    margin: 48px auto;
    padding: 24px 0;
  }
  .page-node-type-blog .blog-author-bio {
    padding: 32px;
    gap: 24px;
  }
  .page-node-type-blog .read-next-wrapper {
    margin-top: 64px;
    padding-top: 64px;
  }
  .page-node-type-blog .blog-grid {
    gap: 24px;
  }
  .page-node-type-blog .blog-grid .blog-card .card-content {
    padding: 24px;
  }
  .page-node-type-blog .blog-grid .blog-card .card-title {
    font-size: 1.15rem;
  }
}
/* ==========================================
   MOBILE
========================================== */
@media (max-width: 767px) {
  .page-node-type-blog .blog-meta-info {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    margin: 16px 0 24px;
  }
  .page-node-type-blog .blog-featured-image {
    height: 240px;
    min-height: auto;
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .page-node-type-blog .blog-body {
    text-align: left;
  }
  .page-node-type-blog .blog-body p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .page-node-type-blog .blog-body h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
  }
  .page-node-type-blog .blog-body h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px;
  }
  .page-node-type-blog .blog-body img {
    margin: 24px 0;
  }
  .page-node-type-blog .blog-body figcaption {
    margin-top: -12px;
    margin-bottom: 24px;
    font-size: 0.8rem;
  }
  .page-node-type-blog .blog-body > p:first-of-type::first-letter {
    font-size: 2.75rem;
    padding-right: 8px;
  }
  .page-node-type-blog .blog-blockquote {
    padding-left: 20px;
    margin: 24px 0;
  }
  .page-node-type-blog .blog-blockquote p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .page-node-type-blog .blog-share {
    gap: 20px;
    align-items: center;
    margin: 40px auto;
  }
  .page-node-type-blog .blog-share-icons {
    gap: 12px;
  }
  .page-node-type-blog .blog-author-bio {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
    margin-bottom: 64px;
  }
  .page-node-type-blog .blog-author-avatar {
    width: 80px;
    height: 80px;
  }
  .page-node-type-blog .read-next-wrapper {
    margin-top: 48px;
    padding-top: 48px;
  }
  .page-node-type-blog .read-next-header {
    margin-bottom: 32px;
  }
  .page-node-type-blog .read-next-title {
    font-size: 1.5rem;
  }
  .page-node-type-blog .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 64px;
  }
  .page-node-type-blog .blog-grid .blog-card .card-content {
    padding: 20px;
  }
  .page-node-type-blog .blog-grid .blog-card .card-title {
    font-size: 1rem;
    line-height: 1.35;
  }
  .page-node-type-blog .blog-grid .blog-card .card-desc {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }
  .page-node-type-blog .blog-grid .blog-card .btn-read-more {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
}
/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 575px) {
  .page-node-type-blog .blog-featured-image {
    height: 200px;
  }
  .page-node-type-blog .blog-body p {
    font-size: 0.9rem;
  }
  .page-node-type-blog .blog-body h2 {
    font-size: 1.3rem;
  }
  .page-node-type-blog .blog-body h3 {
    font-size: 1rem;
  }
  .page-node-type-blog .blog-body > p:first-of-type::first-letter {
    font-size: 2.25rem;
  }
  .page-node-type-blog .blog-blockquote p {
    font-size: 1.05rem;
  }
  .page-node-type-blog .blog-author-bio {
    padding: 20px;
  }
  .page-node-type-blog .blog-author-info h4 {
    font-size: 1rem;
  }
  .page-node-type-blog .blog-author-info p {
    font-size: 0.85rem;
  }
  .page-node-type-blog .read-next-title {
    font-size: 1.3rem;
  }
  .page-node-type-blog .blog-grid .blog-card .card-content {
    padding: 16px;
  }
  .page-node-type-blog .blog-grid .blog-card .card-title {
    font-size: 0.95rem;
  }
}
.blog-landing-page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.blog-landing-page .category-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 64px auto;
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
  padding-bottom: 2px;
}
.blog-landing-page .category-nav .category-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #616161;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 16px;
  position: relative;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.blog-landing-page .category-nav .category-link:hover {
  color: #36454f;
}
.blog-landing-page .category-nav .category-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-landing-page .category-nav .category-link.active {
  color: #36454f;
}
.blog-landing-page .category-nav .category-link.active::after, .blog-landing-page .category-nav .category-link:hover::after {
  width: 100%;
}
.blog-landing-page .editorial-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  border: 1px solid rgba(54, 69, 79, 0.15);
  margin-bottom: 80px;
}
.blog-landing-page .editorial-hero .hero-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.blog-landing-page .editorial-hero .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-landing-page .editorial-hero .hero-content {
  padding: 64px 64px 64px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-landing-page .editorial-hero .hero-content .hero-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.25rem, 2vw + 0.75rem, 2.5rem);
  line-height: 1.25;
  font-weight: 400;
  color: #36454f;
  margin: 0 0 24px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-landing-page .editorial-hero .hero-content .hero-desc {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  color: #616161;
  line-height: 1.7;
  margin-bottom: 32px;
}
.blog-landing-page .editorial-hero .hero-content .meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(54, 69, 79, 0.15);
}
.blog-landing-page .editorial-hero:hover .hero-image {
  transform: scale(1.05);
}
.blog-landing-page .editorial-hero:hover .hero-title {
  color: #008080;
}
.blog-landing-page .editorial-hero:hover .btn-read-more::before {
  transform: scaleX(1);
  transform-origin: left;
}
.blog-landing-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}
.blog-landing-page .blog-grid .blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(54, 69, 79, 0.15);
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-landing-page .blog-grid .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(54, 69, 79, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}
.blog-landing-page .blog-grid .blog-card:hover .card-image {
  transform: scale(1.08);
}
.blog-landing-page .blog-grid .blog-card:hover .card-title {
  color: #008080;
}
.blog-landing-page .blog-grid .blog-card:hover .card-divider {
  width: 64px;
}
.blog-landing-page .blog-grid .blog-card:hover .btn-read-more::before {
  transform: scaleX(1);
  transform-origin: left;
}
.blog-landing-page .blog-grid .blog-card .card-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.blog-landing-page .blog-grid .blog-card .card-image-wrapper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-landing-page .blog-grid .blog-card .card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-landing-page .blog-grid .blog-card .card-title {
  font-family: "Merriweather", serif;
  font-size: clamp(0.95rem, 0.8vw + 0.75rem, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  color: #36454f;
  margin: 0 0 16px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-landing-page .blog-grid .blog-card .card-divider {
  width: 32px;
  height: 2px;
  background-color: #d4af37;
  margin-bottom: 16px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-landing-page .blog-grid .blog-card .card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #616161;
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-landing-page .blog-meta {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  color: #616161;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.blog-landing-page .blog-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 16px;
}
.blog-landing-page .meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(54, 69, 79, 0.15);
}
.blog-landing-page .btn-read-more {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #36454f;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-landing-page .btn-read-more::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #36454f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

/* ==========================================
   LARGE LAPTOP
========================================== */
@media (max-width: 1400px) {
  .blog-landing-page {
    padding-inline: 32px;
  }
  .blog-landing-page .editorial-hero {
    gap: 48px;
  }
  .blog-landing-page .editorial-hero .hero-content {
    padding: 48px 48px 48px 0;
  }
}
/* ==========================================
   TABLET LANDSCAPE
========================================== */
@media (max-width: 1199px) {
  .blog-landing-page {
    padding-inline: 24px;
  }
  .blog-landing-page .category-nav {
    gap: 24px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 8px;
  }
  .blog-landing-page .category-nav::-webkit-scrollbar {
    display: none;
  }
  .blog-landing-page .editorial-hero {
    gap: 40px;
  }
  .blog-landing-page .editorial-hero .hero-content {
    padding: 40px 40px 40px 0;
  }
  .blog-landing-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
/* ==========================================
   TABLET PORTRAIT
========================================== */
@media (max-width: 991px) {
  .blog-landing-page {
    padding-inline: 20px;
  }
  .blog-landing-page .category-nav {
    margin: 40px auto;
    gap: 20px;
  }
  .blog-landing-page .editorial-hero {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 64px;
  }
  .blog-landing-page .editorial-hero .hero-image-wrapper {
    min-height: 380px;
  }
  .blog-landing-page .editorial-hero .hero-content {
    padding: 36px;
  }
  .blog-landing-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .blog-landing-page .blog-grid .blog-card .card-content {
    padding: 24px;
  }
}
/* ==========================================
   MOBILE
========================================== */
@media (max-width: 767px) {
  .blog-landing-page {
    padding-inline: 16px;
  }
  .blog-landing-page .category-nav {
    margin: 32px auto;
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 4px;
  }
  .blog-landing-page .category-nav .category-link {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .blog-landing-page .editorial-hero {
    margin-bottom: 40px;
  }
  .blog-landing-page .editorial-hero .hero-image-wrapper {
    min-height: 240px;
  }
  .blog-landing-page .editorial-hero .hero-content {
    padding: 24px 20px;
  }
  .blog-landing-page .editorial-hero .hero-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .blog-landing-page .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .blog-landing-page .blog-grid .blog-card .card-content {
    padding: 20px;
  }
  .blog-landing-page .blog-grid .blog-card .card-desc {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }
  .blog-landing-page .blog-meta {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 0.75rem;
  }
  .blog-landing-page .blog-tag {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  .blog-landing-page .btn-read-more {
    font-size: 0.75rem;
    letter-spacing: 1px;
    gap: 8px;
  }
}
/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 575px) {
  .blog-landing-page {
    padding-inline: 12px;
  }
  .blog-landing-page .category-nav {
    margin: 24px auto;
  }
  .blog-landing-page .category-nav .category-link {
    font-size: 0.7rem;
    padding-bottom: 10px;
  }
  .blog-landing-page .editorial-hero {
    border-radius: 16px;
  }
  .blog-landing-page .editorial-hero .hero-image-wrapper {
    min-height: 200px;
  }
  .blog-landing-page .editorial-hero .hero-content {
    padding: 20px 16px;
  }
  .blog-landing-page .blog-grid {
    gap: 16px;
  }
  .blog-landing-page .blog-grid .blog-card {
    border-radius: 16px;
  }
  .blog-landing-page .blog-grid .blog-card .card-content {
    padding: 16px;
  }
}
.view-taxonomy-term.co-blog-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.view-taxonomy-term.co-blog-grid .co-blog-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  display: flex;
  flex-direction: row;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  border: 1px solid rgba(54, 69, 79, 0.05);
  width: 100%;
  min-height: 280px;
  align-items: stretch;
  margin: 0 auto;
}
.view-taxonomy-term.co-blog-grid .co-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.12);
}
.view-taxonomy-term.co-blog-grid .co-blog-card:hover img {
  transform: scale(1.05);
}
.view-taxonomy-term.co-blog-grid .co-blog-card:hover .co-blog-content .co-blog-title a {
  color: #008080;
}
.view-taxonomy-term.co-blog-grid .co-blog-card:hover .co-blog-content .co-blog-action {
  color: #008080;
}
.view-taxonomy-term.co-blog-grid .co-blog-card:hover .co-blog-content .co-blog-action i {
  transform: translateX(4px);
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-img-wrap {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.8s ease;
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content {
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  width: 55%;
  box-sizing: border-box;
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content .co-blog-category {
  color: #d4af37;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content .co-blog-title a {
  color: #36454f;
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  line-height: 1.35;
  margin: 0 0 15px 0;
  font-weight: 700;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content .co-blog-excerpt {
  color: #616161;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content .co-blog-excerpt p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content .co-blog-meta {
  font-size: 0.8rem;
  color: #889299;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content .co-blog-action {
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-med);
}
.view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content .co-blog-action i {
  width: 16px;
  transition: transform var(--transition-med);
}
.view-taxonomy-term.co-blog-grid .feed-icons {
  display: none;
}
@media (max-width: 768px) {
  .view-taxonomy-term.co-blog-grid .co-blog-card {
    flex-direction: column;
    height: auto;
  }
  .view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-img-wrap {
    width: 100%;
    height: 240px;
    position: relative;
  }
  .view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content {
    width: 100%;
    padding: 25px;
  }
  .view-taxonomy-term.co-blog-grid .co-blog-card .co-blog-content .co-blog-title {
    font-size: 1.3rem;
  }
}

.product-lists {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}
.product-lists .product-listing-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .product-lists .product-listing-container {
    padding: 0 32px;
  }
}
@media (max-width: 480px) {
  .product-lists .product-listing-container {
    padding: 0;
  }
}
.product-lists .product-listing-container .view-header .mobile-view {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.product-lists .product-listing-container .view-header .mobile-view .mobile-filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--background-primary);
  border: var(--border-default);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--text-primary);
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .product-lists .product-listing-container .view-header .mobile-view .mobile-filter-toggle {
    display: none;
  }
}
@media (min-width: 768px) {
  .product-lists .product-listing-container .view-header .mobile-view {
    justify-content: flex-end;
    margin-top: 0;
    flex-wrap: nowrap;
  }
}
.product-lists .product-listing-container .product-search__results {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.product-lists .product-listing-container .product-search__results.product-search__results--empty .view-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.product-lists .product-listing-container .product-search__results .filter-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(54, 69, 79, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.product-lists .product-listing-container .product-search__results .filter-overlay.active {
  opacity: 1;
  visibility: visible;
}
.product-lists .product-listing-container .product-search__results .view-filters {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 86px;
  align-self: flex-start;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.product-lists .product-listing-container .product-search__results .view-filters .view-filters__mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
}
.product-lists .product-listing-container .product-search__results .view-filters .view-filters__mobile-header h2 {
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #36454f;
}
.product-lists .product-listing-container .product-search__results .view-filters .view-filters__mobile-header .close-filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #36454f;
}
@media (max-width: 1023px) {
  .product-lists .product-listing-container .product-search__results .view-filters .view-filters__mobile-header {
    display: flex;
  }
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
  display: flex;
  flex-direction: column;
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-item__label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #36454f;
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-select,
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-text {
  width: 100%;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  padding: 10px 12px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #36454f;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-select:focus,
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-text:focus {
  border-color: #008080;
  box-shadow: 0 0 0 2px rgba(0, 128, 128, 0.15);
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-type-select {
  position: relative;
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-type-select::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 40px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #36454f;
  border-bottom: 2px solid #36454f;
  transform: rotate(45deg);
  pointer-events: none;
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-actions .button {
  flex: 1;
  background-color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.product-lists .product-listing-container .product-search__results .view-filters .views-exposed-form .form-actions .btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--neutral-300);
}
@media (max-width: 1023px) {
  .product-lists .product-listing-container .product-search__results .view-filters {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    border-radius: 0;
    z-index: 100;
    overflow-y: auto;
    transition: left 0.3s ease;
  }
  .product-lists .product-listing-container .product-search__results .view-filters.active {
    left: 0;
  }
}
.product-lists .product-listing-container .product-search__results .view-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.product-lists .product-listing-container .product-search__results .views-row {
  width: 100%;
}
@media (min-width: 768px) {
  .product-lists .product-listing-container .product-search__results .views-row {
    width: calc(50% - 8px);
  }
}
@media (min-width: 1024px) {
  .product-lists .product-listing-container .product-search__results .views-row {
    width: calc(33.333% - 11px);
  }
}
.product-lists .product-listing-container .product-search__results .product-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 4px;
  padding: 12px;
  gap: 12px;
  transition: all 0.2s ease;
  align-items: stretch;
  height: 100%;
}
.product-lists .product-listing-container .product-search__results .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .product-lists .product-listing-container .product-search__results .product-card {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
}
.product-lists .product-listing-container .product-search__results .product-card .product-image-container {
  position: relative;
  background-color: #f8f8f8;
  width: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 400px) {
  .product-lists .product-listing-container .product-search__results .product-card .product-image-container {
    width: 130px;
  }
}
@media (min-width: 768px) {
  .product-lists .product-listing-container .product-search__results .product-card .product-image-container {
    width: 100%;
    aspect-ratio: 1;
  }
}
.product-lists .product-listing-container .product-search__results .product-card .product-image-container .badge-new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d4af37;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.product-lists .product-listing-container .product-search__results .product-card .product-image-container .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-lists .product-listing-container .product-search__results .product-card .product-info {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-lists .product-listing-container .product-search__results .product-card .product-info .product-title {
  font-size: 0.85rem;
  color: #36454f;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-lists .product-listing-container .product-search__results .product-card .product-info .product-description {
  font-size: 0.75rem;
  color: rgba(54, 69, 79, 0.7);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .product-lists .product-listing-container .product-search__results .product-card .product-info .product-description {
    font-size: 0.85rem;
  }
}
.product-lists .product-listing-container .product-search__results .product-card .product-info .btn-buy-now {
  background-color: #008080;
  border: 1px solid #008080;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  width: 100%;
  margin-top: auto;
  transition: all 0.2s ease;
  text-align: center;
}
.product-lists .product-listing-container .product-search__results .product-card .product-info .btn-buy-now:hover {
  opacity: 0.9;
}

.signup-page {
  margin: 0;
  padding: clamp(16px, 4vw, 40px) clamp(14px, 3vw, 20px);
  min-height: 100svh;
  background-color: #fff9f0;
  background-image: radial-gradient(at 10% 20%, rgba(0, 128, 128, 0.1) 0px, transparent 50%), radial-gradient(at 90% 80%, rgba(212, 175, 55, 0.15) 0px, transparent 50%);
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.signup-page .co-reg-wrapper {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(54, 69, 79, 0.15);
}
.signup-page .co-reg-wrapper .co-reg-brand-panel {
  width: 50%;
  background: #008080;
  padding: 50px 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.15);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-auth-back-btn {
  position: absolute;
  top: 30px;
  left: 40px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-auth-back-btn:hover {
  color: #d4af37;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-auth-back-btn:hover i {
  transform: translateX(-5px);
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-auth-back-btn i {
  width: 16px;
  transition: transform 0.2s ease-in-out;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px 30px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card .co-reg-brand-title {
  font-family: "Merriweather", serif;
  color: #ffffff;
  font-size: 2.2rem;
  margin: 0 0 15px;
  line-height: 1.2;
  text-align: center;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card .co-reg-brand-title span {
  color: #d4af37;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card .co-reg-brand-title span.text-gold {
  color: #d4af37;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card .co-reg-brand-title span.text-teal {
  color: #008080;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card .co-reg-brand-title span.text-charcoal {
  color: #36454f;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card .co-reg-brand-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.9);
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 500;
}
.signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-feature-list li i {
  width: 18px;
  height: 18px;
  color: #d4af37;
  flex-shrink: 0;
}
.signup-page .co-reg-wrapper .co-reg-form-panel {
  width: 60%;
  padding: 60px 50px;
  background: #ffffff;
  box-sizing: border-box;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-header {
  margin-bottom: 35px;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-header h2 {
  font-family: "Merriweather", serif;
  color: #36454f;
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-header p {
  color: #616161;
  font-size: 0.95rem;
  margin: 0;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-row {
  display: flex;
  gap: 30px;
  width: 100%;
  margin-bottom: 20px;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-row .co-reg-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-row .co-reg-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #36454f;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-row .co-reg-group label.js-form-required::after {
  content: " *";
  color: #d4af37;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-row .form-element {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #36454f;
  background-color: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease-in-out;
  box-sizing: border-box;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-row .form-element:focus {
  outline: none;
  border-bottom: 2px solid #d4af37;
  background-color: transparent;
  box-shadow: none;
}
.signup-page .co-reg-wrapper .co-reg-form-panel {
  /* Submit Button */
}
.signup-page .co-reg-wrapper .co-reg-form-panel .form-submit {
  width: 100%;
  padding: 16px;
  background-color: #008080;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 128, 128, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .form-submit:hover {
  background-color: #36454f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 69, 79, 0.15);
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-login-link {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  color: #616161;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-login-link a {
  color: #008080;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-login-link a:hover {
  color: #d4af37;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
  .signup-page {
    align-items: flex-start;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .signup-page .co-reg-wrapper {
    flex-direction: column;
  }
  .signup-page .co-reg-wrapper .co-reg-brand-panel {
    width: 100%;
    padding: 40px 30px;
  }
  .signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card {
    top: 20px;
  }
  .signup-page .co-reg-wrapper .co-reg-form-panel {
    width: 100%;
    padding: 40px 30px;
  }
}
@media (max-width: 600px) {
  .signup-page {
    padding: 12px;
  }
  .signup-page .co-reg-wrapper {
    flex-direction: column;
  }
  .signup-page .co-reg-wrapper .co-reg-brand-panel {
    width: 100%;
    padding: 40px 30px;
  }
  .signup-page .co-reg-wrapper .co-reg-brand-panel .co-reg-glass-card {
    display: none;
  }
  .signup-page .co-reg-wrapper .co-reg-form-panel {
    width: 100%;
    padding: 40px 30px;
  }
  .signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-header h2 {
    font-size: 1.5rem;
  }
  .signup-page .co-reg-wrapper .co-reg-form-panel .co-reg-row {
    flex-direction: column;
    gap: 20px;
  }
}
.ui-autocomplete {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: #ffffff;
  border: 1px solid rgba(54, 69, 79, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.12);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  overflow: hidden;
  z-index: 9999;
}
.ui-autocomplete .ui-menu-item {
  padding: 0;
  border: none;
  background: transparent;
}
.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #36454f;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, padding-left 0.2s ease-in-out;
  text-decoration: none;
  border-radius: 0;
}
.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 128, 128, 0.3);
  margin-right: 10px;
  flex-shrink: 0;
  transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.ui-state-active, .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper:hover {
  background: rgba(0, 128, 128, 0.07);
  color: #008080;
  padding-left: 20px;
  outline: none;
}
.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.ui-state-active::before, .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper:hover::before {
  background: #008080;
  transform: scale(1.3);
}
.ui-autocomplete .ui-menu-item + .ui-menu-item {
  border-top: 1px solid rgba(54, 69, 79, 0.05);
}
.ui-autocomplete .ui-menu-item--no-results .ui-menu-item-wrapper {
  color: #616161;
  font-style: italic;
  cursor: default;
}
.ui-autocomplete .ui-menu-item--no-results .ui-menu-item-wrapper::before {
  background: transparent;
}
.ui-autocomplete .ui-menu-item--no-results .ui-menu-item-wrapper:hover {
  background: transparent;
  color: #616161;
  padding-left: 16px;
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.luxury-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.luxury-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: end;
}
.luxury-form .form-group .form-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #36454f;
}
.luxury-form .form-group .form-input,
.luxury-form .form-group .form-select,
.luxury-form .form-group .form-textarea {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1px solid rgba(54, 69, 79, 0.2);
  border-radius: 12px;
  background-color: #ffffff;
  color: #36454f;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  outline: none;
  -webkit-appearance: none;
}
.luxury-form .form-group .form-input::placeholder,
.luxury-form .form-group .form-select::placeholder,
.luxury-form .form-group .form-textarea::placeholder {
  color: #e0e0e0;
}
.luxury-form .form-group .form-input:focus,
.luxury-form .form-group .form-select:focus,
.luxury-form .form-group .form-textarea:focus {
  border-color: #008080;
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}
.luxury-form .form-group .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2336454f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}
.luxury-form .form-group .form-textarea {
  resize: vertical;
  min-height: 120px;
}
.luxury-form .submit-btn {
  background-color: #d4af37;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}
.luxury-form .submit-btn:hover {
  background-color: rgb(186.1728395062, 151.7308641975, 40.0271604938);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .form-row {
    align-items: end;
  }
}
.login-page {
  margin: 0;
  min-height: 100vh;
  background-color: var(--champagne);
  background-image: radial-gradient(at 10% 20%, var(--teal-dim) 0px, transparent 50%), radial-gradient(at 90% 80%, rgba(212, 175, 55, 0.15) 0px, transparent 50%);
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* --- Main Wrapper --- */
.co-auth-wrapper {
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(54, 69, 79, 0.15);
  margin: 0 auto;
}
.co-auth-wrapper .co-auth-brand-panel {
  width: 45%;
  background: #008080;
  padding: 50px 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.co-auth-wrapper .co-auth-brand-panel::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.co-auth-wrapper .co-auth-brand-panel::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.15);
  /* Gold tint */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-glass-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px 30px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-glass-card .co-auth-brand-title {
  font-family: "Merriweather", serif;
  color: #ffffff;
  font-size: 2.2rem;
  margin: 0 0 15px 0;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 600px) {
  .co-auth-wrapper .co-auth-brand-panel .co-auth-glass-card .co-auth-brand-title {
    font-size: 1.8rem;
  }
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-glass-card .co-auth-brand-title span {
  color: #d4af37;
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-glass-card .co-auth-brand-title span.text-gold {
  color: var(--metallic-gold);
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-glass-card .co-auth-brand-title span.text-teal {
  color: var(--teal);
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-glass-card .co-auth-brand-title span.text-charcoal {
  color: var(--charcoal);
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-glass-card .co-auth-brand-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-back-btn {
  position: absolute;
  top: 30px;
  left: 40px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-back-btn:hover {
  color: #d4af37;
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-back-btn:hover i {
  transform: translateX(-5px);
}
.co-auth-wrapper .co-auth-brand-panel .co-auth-back-btn i {
  width: 16px;
  transition: transform 0.2s ease-in-out;
}
.co-auth-wrapper .co-auth-form-panel {
  width: 55%;
  padding: 60px 50px;
  background: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-header {
  margin-bottom: 35px;
}
@media (max-width: 600px) {
  .co-auth-wrapper .co-auth-form-panel .co-auth-header h2 {
    font-size: 1.5rem;
  }
}
.co-auth-wrapper .co-auth-form-panel .co-auth-header h2 {
  font-family: "Merriweather", serif;
  color: #36454f;
  font-size: 1.8rem;
  margin: 0 0 8px 0;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-header p {
  color: #616161;
  font-size: 0.95rem;
  margin: 0;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form,
.co-auth-wrapper .co-auth-form-panel .user-pass {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .co-auth-group,
.co-auth-wrapper .co-auth-form-panel .user-pass .co-auth-group {
  display: flex;
  flex-direction: column;
  position: relative;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .co-auth-group .co-auth-label-row,
.co-auth-wrapper .co-auth-form-panel .user-pass .co-auth-group .co-auth-label-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4px;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .co-auth-group .co-auth-label-row label,
.co-auth-wrapper .co-auth-form-panel .user-pass .co-auth-group .co-auth-label-row label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #36454f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .co-auth-group .co-auth-label-row label.js-form-required::after,
.co-auth-wrapper .co-auth-form-panel .user-pass .co-auth-group .co-auth-label-row label.js-form-required::after {
  content: " *";
  color: #d4af37;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .co-auth-group .co-auth-label-row .co-auth-forgot-link,
.co-auth-wrapper .co-auth-form-panel .user-pass .co-auth-group .co-auth-label-row .co-auth-forgot-link {
  font-size: 0.75rem;
  color: #008080;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .co-auth-group .co-auth-label-row .co-auth-forgot-link:hover,
.co-auth-wrapper .co-auth-form-panel .user-pass .co-auth-group .co-auth-label-row .co-auth-forgot-link:hover {
  color: #d4af37;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .form-element,
.co-auth-wrapper .co-auth-form-panel .user-pass .form-element {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #36454f;
  background-color: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease-in-out;
  box-sizing: border-box;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .form-element:focus,
.co-auth-wrapper .co-auth-form-panel .user-pass .form-element:focus {
  outline: none;
  border-bottom: 2px solid #d4af37;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .button--primary,
.co-auth-wrapper .co-auth-form-panel .user-pass .button--primary {
  width: 100%;
  padding: 16px;
  background-color: #008080;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 128, 128, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-form .button--primary:hover,
.co-auth-wrapper .co-auth-form-panel .user-pass .button--primary:hover {
  background-color: #36454f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 69, 79, 0.15);
}
.co-auth-wrapper .co-auth-form-panel .co-auth-footer-link {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  color: #616161;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-footer-link a {
  color: #008080;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.co-auth-wrapper .co-auth-form-panel .co-auth-footer-link a:hover {
  color: #d4af37;
}
@media (max-width: 900px) {
  .co-auth-wrapper {
    flex-direction: column;
  }
  .co-auth-wrapper .co-auth-brand-panel,
  .co-auth-wrapper .co-auth-form-panel {
    width: 100%;
    padding: 40px 30px;
  }
  .co-auth-wrapper .co-auth-brand-panel .co-auth-back-btn {
    top: 20px;
    left: 30px;
  }
}

.ajax-progress,
.ajax-progress-throbber,
.ajax-progress-fullscreen {
  display: none !important;
}

.ui-dialog.ui-widget-content.lead-generation-modal {
  position: fixed;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  padding: 60px 0 0;
  border: none !important;
  border-radius: 30px 0 0 30px;
  z-index: 10001;
}
.ui-dialog.ui-widget-content.lead-generation-modal .ui-dialog-titlebar {
  display: none;
  padding: 0;
  border: 0;
}
.ui-dialog.ui-widget-content.lead-generation-modal .ui-widget-content {
  width: 100% !important;
  position: relative;
  padding: 0 !important;
  color: #141414;
  background: #fff;
  border: none;
  border-radius: 10px;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}
.ui-dialog.ui-widget-content.lead-generation-modal.lead-generation-modal {
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  height: 100vh !important;
  padding: 0 !important;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
.ui-dialog.ui-widget-content.lead-generation-modal.lead-generation-modal.open {
  transform: translateX(0);
}
.ui-dialog.ui-widget-content.lead-generation-modal.lead-generation-modal > .ui-widget-content {
  height: 100% !important;
  border-radius: 30px 0 0 30px !important;
}
.ui-dialog.ui-widget-content.lead-generation-modal.lead-generation-modal .ui-dialog-titlebar .ui-dialog-titlebar-close {
  transform: none !important;
}
@media (max-width: 600px) {
  .ui-dialog.ui-widget-content.lead-generation-modal.lead-generation-modal > .ui-widget-content {
    border-radius: 0 !important;
  }
}

.ui-dialog.lead-generation-modal .ui-dialog-titlebar-close {
  position: unset !important;
}

.lead-generation-modal {
  width: 500px !important;
}
@media (max-width: 600px) {
  .lead-generation-modal {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none;
    border-radius: 0 !important;
    box-shadow: none;
    /* keep the same right-slide as desktop */
    transform: translateX(100%);
  }
  .lead-generation-modal.open {
    transform: translateX(0);
  }
}
.lead-generation-modal #locality-modal-wrapper .modal-header {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background-color: #fff9f0;
}
.lead-generation-modal #locality-modal-wrapper .modal-header h2 {
  margin: 0;
  font-family: "Merriweather", serif;
  color: #008080;
  font-size: 1.5rem;
  font-weight: 700;
}
.lead-generation-modal #locality-modal-wrapper .modal-header .close-btn {
  background: #f8f8f8;
  border: 1px solid rgba(54, 69, 79, 0.15);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #36454f;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
.lead-generation-modal #locality-modal-wrapper .modal-header .close-btn:hover {
  background: #ffffff;
  color: #d4af37;
  transform: rotate(90deg);
}
.lead-generation-modal #locality-modal-wrapper .form-wrapper .form-container,
.lead-generation-modal #locality-modal-wrapper .modal-header {
  padding: 28px 30px 20px;
}
.lead-generation-modal #locality-modal-wrapper .form-wrapper .form-container {
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}
.lead-generation-modal #locality-modal-wrapper .form-wrapper .form-container .intro-text {
  margin-top: 0;
  margin-bottom: 22px;
  color: #616161;
  font-size: 1rem;
  line-height: 1.6;
}
.lead-generation-modal #locality-modal-wrapper .form-wrapper .form-container .form-group {
  margin-bottom: 18px;
  position: relative;
}
.lead-generation-modal #locality-modal-wrapper .form-wrapper .form-container .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #36454f;
}
.lead-generation-modal #locality-modal-wrapper .form-wrapper .form-container .form-group label .required {
  color: red;
}
.lead-generation-modal #locality-modal-wrapper .form-wrapper .form-container .form-group .form-element {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #36454f;
  background-color: #f8f8f8;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.lead-generation-modal #locality-modal-wrapper .form-wrapper .form-container .submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #008080;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: 8px;
  box-shadow: 0 4px 15px rgba(0, 128, 128, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.success-state {
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  z-index: 10;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Hero band ── */
.ss-hero {
  position: relative;
  background: linear-gradient(150deg, var(--charcoal) 0%, #1a2e36 60%, #0d2020 100%);
  padding: 44px 28px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* large decorative orbs behind hero */
.ss-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ss-orb-1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 128, 128, 0.35) 0%, transparent 70%);
  top: -60px;
  left: -60px;
}

.ss-orb-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  bottom: -40px;
  right: -40px;
}

/* spinning DNA ring around the checkmark */
.ss-ring-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 24px;
  opacity: 0;
  transform: scale(0.6);
}

.success-state.active .ss-ring-wrap {
  animation: ssPop 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.15s;
}

/* SVG ring */
.ss-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ssRotate 6s linear infinite;
}

.ss-ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
}

.ss-ring-dash {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 28 12;
  stroke: url(#ringGrad);
}

/* centre check circle */
.ss-check-circle {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #005f5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.5);
}

.success-state.active .ss-check-circle {
  animation: ssPulse 2.4s ease-out infinite 0.9s;
}

.ss-check-circle svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.ss-check-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}

.success-state.active .ss-check-path {
  animation: ssDrawCheck 0.55s ease-out forwards 0.75s;
}

/* gold leaf accent dot */
.ss-leaf-dot {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: var(--metallic-gold);
  border-radius: 0 50% 50% 50%;
  box-shadow: 0 0 10px var(--metallic-gold-glow);
  opacity: 0;
}

.success-state.active .ss-leaf-dot {
  animation: ssFadeIn 0.4s ease forwards 0.6s;
}

/* burst particles */
.ss-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.ss-burst span {
  position: absolute;
  width: var(--sz, 7px);
  height: var(--sz, 7px);
  border-radius: 50%;
  background: var(--clr, var(--metallic-gold));
  top: calc(-1 * var(--sz, 7px) / 2);
  left: calc(-1 * var(--sz, 7px) / 2);
  opacity: 0;
}

.success-state.active .ss-burst span {
  animation: ssBurst 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards var(--d, 0.3s);
}

/* hero text */
.ss-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
  opacity: 0;
  transform: translateY(12px);
}

.ss-title span {
  color: var(--metallic-gold);
}

.success-state.active .ss-title {
  animation: ssUp 0.5s ease forwards 0.5s;
}

.ss-subtitle {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 300px;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
}

.success-state.active .ss-subtitle {
  animation: ssUp 0.5s ease forwards 0.65s;
}

/* wave divider */
.ss-wave {
  display: block;
  width: 100%;
  margin-top: -2px;
  flex-shrink: 0;
  fill: var(--champagne);
}

.ss-wave-reverse {
  transform: rotate(180deg);
}

/* ── Body content ── */
.ss-body {
  background: var(--champagne);
  padding: 4px 24px 28px;
  flex: 1;
}

/* status pill */
.ss-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 128, 128, 0.1);
  border: 1px solid rgba(0, 128, 128, 0.2);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(10px);
}

.ss-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.success-state.active .ss-status-dot {
  animation: ssBlink 1.4s ease-in-out infinite 1.2s;
}

.success-state.active .ss-status {
  animation: ssUp 0.45s ease forwards 0.8s;
}

/* steps */
.ss-steps-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neutral-600);
  margin-bottom: 12px;
  opacity: 0;
}

.success-state.active .ss-steps-label {
  animation: ssUp 0.45s ease forwards 0.9s;
}

.ss-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.ss-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(54, 69, 79, 0.08);
  opacity: 0;
  transform: translateX(-12px);
}

.ss-step:last-child {
  border-bottom: none;
}

.success-state.active .ss-step:nth-child(1) {
  animation: ssSlide 0.45s ease forwards 1s;
}

.success-state.active .ss-step:nth-child(2) {
  animation: ssSlide 0.45s ease forwards 1.12s;
}

.success-state.active .ss-step:nth-child(3) {
  animation: ssSlide 0.45s ease forwards 1.24s;
}

.ss-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ss-step-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.ss-step-icon--gold {
  background: rgba(212, 175, 55, 0.12);
}

.ss-step-icon--gold svg {
  stroke: var(--metallic-gold);
}

.ss-step-icon--teal {
  background: rgba(0, 128, 128, 0.1);
}

.ss-step-icon--teal svg {
  stroke: var(--teal);
}

.ss-step-icon--charcoal {
  background: rgba(54, 69, 79, 0.08);
}

.ss-step-icon--charcoal svg {
  stroke: var(--charcoal);
}

.ss-step-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.ss-step-text span {
  font-size: 0.78rem;
  color: var(--neutral-600);
  line-height: 1.5;
}

/* explore card */
.ss-explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a2e36 100%);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(54, 69, 79, 0.2);
}

.ss-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(54, 69, 79, 0.28);
}

.success-state.active .ss-explore {
  animation: ssUp 0.45s ease forwards 1.35s;
}

.ss-explore-left {
  display: flex;
  flex-direction: column;
}

.ss-explore-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--metallic-gold);
  margin-bottom: 3px;
}

.ss-explore-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}

.ss-explore-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ss-explore-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--metallic-gold);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-explore:hover .ss-explore-arrow {
  background: var(--metallic-gold);
  transform: translateX(3px);
}

.ss-explore:hover .ss-explore-arrow svg {
  stroke: var(--charcoal);
}

/* close button */
.ss-close-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1.5px solid rgba(54, 69, 79, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0;
}

.ss-close-btn:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.success-state.active .ss-close-btn {
  animation: ssUp 0.45s ease forwards 1.5s;
}

/* ── Keyframes ── */
@keyframes ssPop {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  75% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ssRotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ssPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 128, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 128, 128, 0);
  }
}
@keyframes ssDrawCheck {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ssFadeIn {
  to {
    opacity: 1;
  }
}
@keyframes ssBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes ssUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ssSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes ssBurst {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(var(--bx, 0px), var(--by, 0px)) scale(1);
    opacity: 0;
  }
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}
.overview-grid .gallery {
  display: flex;
  gap: 1.25rem;
}
.overview-grid .gallery .thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.overview-grid .gallery .thumbs .thumb-btn {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  border: 1.5px solid rgba(54, 69, 79, 0.15);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  padding: 0;
  flex-shrink: 0;
}
.overview-grid .gallery .thumbs .thumb-btn:hover {
  border-color: #008080;
  transform: scale(1.04);
}
.overview-grid .gallery .thumbs .thumb-btn.active {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.overview-grid .gallery .thumbs .thumb-btn .thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overview-grid .gallery .thumbs .thumb-btn .thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview-grid .gallery .main-image-wrap {
  flex: 1;
  border-radius: 20px;
  border: 1px solid rgba(54, 69, 79, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.overview-grid .gallery .main-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.overview-grid .gallery .main-image-wrap .share-widget {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.overview-grid .gallery .main-image-wrap .share-widget .gallery-share {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #36454f;
  cursor: pointer;
  transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  order: 2;
}
.overview-grid .gallery .main-image-wrap .share-widget .gallery-share:hover, .overview-grid .gallery .main-image-wrap .share-widget .gallery-share[aria-expanded=true] {
  border-color: #d4af37;
  color: #d4af37;
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  order: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup .share-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid rgba(54, 69, 79, 0.15);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #36454f;
  text-decoration: none;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  position: relative;
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup .share-link:hover {
  transform: scale(1.12);
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup .share-link.share-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup .share-link.share-twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: #ffffff;
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup .share-link.share-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  color: #ffffff;
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup .share-link .share-copied-tip {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: #36454f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.overview-grid .gallery .main-image-wrap .share-widget .share-popup .share-link .share-copied-tip.visible {
  opacity: 1;
}
.overview-grid .gallery .main-image-wrap .main-product-image {
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.overview-grid .prod-details .prod-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #008080;
  margin-bottom: 0.5rem;
}
.overview-grid .prod-details .prod-title {
  font-family: "Merriweather", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: #36454f;
  margin-bottom: 1rem;
}
.overview-grid .prod-details .rating-bar {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
}
.overview-grid .prod-details .rating-bar .stars-row {
  display: flex;
  gap: 2px;
}
.overview-grid .prod-details .rating-bar .stars-row i {
  color: #d4af37;
  font-size: 1rem;
}
.overview-grid .prod-details .rating-bar .stars-row i.half {
  position: relative;
  color: rgba(212, 175, 55, 0.2);
}
.overview-grid .prod-details .rating-bar .stars-row i.half::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #d4af37;
  width: 50%;
  overflow: hidden;
}
.overview-grid .prod-details .rating-bar .rating-score {
  font-weight: 700;
  color: #36454f;
  font-size: 0.95rem;
}
.overview-grid .prod-details .rating-bar .rating-sep {
  width: 1px;
  height: 16px;
  background: rgba(54, 69, 79, 0.15);
}
.overview-grid .prod-details .rating-bar .rating-count {
  text-decoration: underline;
  font-size: 0.78rem;
  color: #008080;
}
.overview-grid .prod-details .prod-desc p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #36454f;
}
.overview-grid .prod-details .prod-desc p strong {
  color: #36454f;
}
.overview-grid .prod-details .prod-desc p:last-child {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
}
.overview-grid .prod-details .cta-area {
  margin-bottom: 2rem;
}
.overview-grid .prod-details .cta-area .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .overview-grid .gallery {
    flex-direction: column;
    padding: 0 1rem;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }
  .overview-grid .gallery .thumbs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    order: 1;
    width: 100%;
  }
  .overview-grid .gallery .thumbs .thumb-btn {
    width: 68px;
    height: 68px;
  }
  .overview-grid .gallery .main-image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    min-height: unset;
    max-height: 480px;
  }
  .overview-grid .prod-details {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .overview-grid {
    gap: 2rem;
  }
  .overview-grid .gallery {
    gap: 0.875rem;
  }
  .overview-grid .gallery .thumbs {
    gap: 0.625rem;
  }
  .overview-grid .gallery .thumbs .thumb-btn {
    width: 60px;
    height: 60px;
    border-radius: 10px;
  }
  .overview-grid .gallery .main-image-wrap {
    min-height: 280px;
  }
  .overview-grid .gallery .share-widget {
    bottom: 0.75rem;
    right: 0.75rem;
  }
  .overview-grid .gallery .share-widget .gallery-share {
    width: 34px;
    height: 34px;
  }
  .overview-grid .gallery .share-widget .share-popup .share-link {
    width: 30px;
    height: 30px;
  }
  .overview-grid .prod-details .rating-bar {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
  }
  .overview-grid .prod-details .prod-desc p {
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .overview-grid {
    gap: 1.5rem;
  }
  .overview-grid .gallery {
    padding: 0;
  }
  .overview-grid .gallery .thumbs {
    justify-content: flex-start;
  }
  .overview-grid .gallery .thumbs .thumb-btn {
    width: 56px;
    height: 56px;
  }
  .overview-grid .gallery .main-image-wrap {
    min-height: 240px;
    border-radius: 14px;
  }
  .overview-grid .prod-details {
    padding: 0;
  }
  .overview-grid .prod-details .prod-title {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
    margin-bottom: 0.75rem;
  }
  .overview-grid .prod-details .rating-bar {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }
  .overview-grid .prod-details .cta-area {
    margin-bottom: 1.25rem;
  }
  .trust-strip-wrapper .trust-strip {
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }
  .trust-strip-wrapper .trust-strip .ts-item {
    white-space: normal;
    font-size: 0.8rem;
  }
}
.trust-strip-wrapper {
  margin: 2rem 0 0;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgba(54, 69, 79, 0.15);
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
}
.trust-strip-wrapper .trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 1rem;
}
.trust-strip-wrapper .trust-strip .ts-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #36454f;
  white-space: nowrap;
}
.trust-strip-wrapper .trust-strip .ts-item i {
  color: #008080;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.path-product .sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 400;
  background: #212121;
  color: #fff;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 20px 50px rgba(33, 33, 33, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.path-product .sticky-cta.show {
  transform: translateY(0);
  opacity: 1;
}
.path-product .sticky-cta .sc-product {
  font-size: 0.78rem;
  color: #d4af37;
}
.path-product .sticky-cta .sc-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}
.path-product .sticky-cta .ss-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.path-product .sticky-cta .ss-ctas .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 0.78rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.path-product .sticky-cta .ss-ctas .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: #fff;
  border: 1.5px solid #25D366;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
}
@media (max-width: 768px) {
  .path-product .sticky-cta {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    flex-wrap: wrap;
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }
  .path-product .sticky-cta > div:first-child {
    flex: 1 1 100%;
  }
}

.ingredients {
  background: #fff9f0;
  padding: 5rem 3rem 2.5rem;
}
.ingredients .whats-inside-section {
  max-width: 1440px;
  margin: 0 auto;
}
.ingredients .whats-inside-section .tab-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 0.25rem;
  width: min(100%, 760px);
  margin: 0 auto 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ingredients .whats-inside-section .tab-pills .tab-pill {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #36454f;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  flex: 1 1 0;
  min-width: 140px;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.ingredients .whats-inside-section .tab-pills .tab-pill.tab-panel--active {
  background: #ffffff;
  color: #d4af37;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(54, 69, 79, 0.1);
}
@media (max-width: 768px) {
  .ingredients .whats-inside-section .tab-pills {
    width: 100%;
  }
  .ingredients .whats-inside-section .tab-pills .tab-pill {
    flex: 1;
    min-width: 120px;
    font-size: 0.75rem;
    padding: 0.55rem 0.6rem;
  }
}
@media (max-width: 480px) {
  .ingredients .whats-inside-section .tab-pills {
    gap: 0.35rem;
    border-radius: 12px;
  }
  .ingredients .whats-inside-section .tab-pills .tab-pill {
    min-width: 102px;
    white-space: normal;
    font-size: 0.7rem;
    letter-spacing: 0.01em;
    padding: 0.5rem 0.45rem;
  }
}
.ingredients .whats-inside-section .tab-panel {
  display: none;
}
.ingredients .whats-inside-section .tab-panel .no-data-container {
  text-align: center;
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  background: #ffffff;
}
.ingredients .whats-inside-section .tab-panel .no-data-container p {
  line-height: 1.1;
  font-size: 1rem;
}
.ingredients .whats-inside-section .tab-panel.tab-panel--active {
  display: block;
  animation: panelReveal 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ingredients .whats-inside-section .tab-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .ingredients .whats-inside-section .tab-panel__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .ingredients .whats-inside-section .tab-panel__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .ingredients .whats-inside-section .tab-panel.composition-panel {
    overflow-x: scroll;
  }
}
.ingredients .whats-inside-section .ingredient-card {
  border-radius: 20px;
  border: 1px solid rgba(54, 69, 79, 0.15);
  background: #ffffff;
  padding: 2rem 1.75rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.ingredients .whats-inside-section .ingredient-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #008080);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ingredients .whats-inside-section .ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}
.ingredients .whats-inside-section .ingredient-card:hover::before {
  transform: scaleX(1);
}
.ingredients .whats-inside-section .ingredient-card .ingredient-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.ingredients .whats-inside-section .ingredient-card .ingredient-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #36454f;
  margin-bottom: 0.25rem;
}
.ingredients .whats-inside-section .ingredient-card .ingredient-card__description {
  font-size: 0.82rem;
  line-height: 1.75;
  color: #616161;
}
@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ingredients .whats-inside-section .composition-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
}
.ingredients .whats-inside-section .composition-table thead tr {
  background: #36454f;
}
.ingredients .whats-inside-section .composition-table tr th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}
.ingredients .whats-inside-section .composition-table tr td {
  padding: 0.875rem 1.25rem;
  font-size: 0.83rem;
  color: #36454f;
  border-bottom: 1px solid rgba(54, 69, 79, 0.15);
}
.ingredients .whats-inside-section .composition-table tr:last-child td {
  border-bottom: none;
}
.ingredients .whats-inside-section .composition-table tr:nth-child(even) td {
  background: #f8f8f8;
}
.ingredients .whats-inside-section .composition-table tr:hover td {
  background: rgba(212, 175, 55, 0.2);
}
@media (max-width: 768px) {
  .ingredients .whats-inside-section .composition-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 640px;
    border-radius: 14px;
  }
  .ingredients .whats-inside-section .composition-table thead,
  .ingredients .whats-inside-section .composition-table tbody,
  .ingredients .whats-inside-section .composition-table tr {
    width: 100%;
  }
  .ingredients .whats-inside-section .composition-table th,
  .ingredients .whats-inside-section .composition-table td {
    padding: 0.75rem 0.875rem;
    white-space: nowrap;
  }
  .ingredients .whats-inside-section .composition-table th {
    font-size: 0.65rem;
  }
  .ingredients .whats-inside-section .composition-table td {
    font-size: 0.78rem;
  }
  .ingredients .whats-inside-section .note {
    margin-top: 2rem;
    padding: 0 0.25rem;
  }
}
@media (max-width: 480px) {
  .ingredients .whats-inside-section .composition-table {
    display: block;
    width: 100%;
    min-width: 480px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  }
  .ingredients .whats-inside-section .composition-table thead,
  .ingredients .whats-inside-section .composition-table tbody,
  .ingredients .whats-inside-section .composition-table tr {
    width: 100%;
  }
  .ingredients .whats-inside-section .composition-table th,
  .ingredients .whats-inside-section .composition-table td {
    padding: 0.65rem 0.75rem;
    white-space: nowrap;
  }
  .ingredients .whats-inside-section .composition-table th {
    font-size: 0.62rem;
  }
  .ingredients .whats-inside-section .composition-table td {
    font-size: 0.74rem;
  }
  .ingredients .whats-inside-section .note {
    margin-top: 1.5rem;
    font-size: 0.7rem;
  }
}
.ingredients .whats-inside-section .note {
  font-size: 0.75rem;
  color: #616161;
  margin-top: 4rem;
  text-align: center;
}

.cert-section {
  padding: 5rem 3rem 2.5rem;
  background: #fff9f0;
}
.cert-section .cert-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.cert-section .cert-inner .cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.cert-section .cert-inner .cert-grid .cert-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(54, 69, 79, 0.15);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(54, 69, 79, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.2s ease-in-out;
}
.cert-section .cert-inner .cert-grid .cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(54, 69, 79, 0.12);
  border-color: #d4af37;
}
.cert-section .cert-inner .cert-grid .cert-card .cert-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
}
.cert-section .cert-inner .cert-grid .cert-card .cert-icon-wrap::after {
  content: "✓";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #008080;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}
.cert-section .cert-inner .cert-grid .cert-card .cert-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #36454f;
  margin-bottom: 0.3rem;
}
.cert-section .cert-inner .cert-grid .cert-card .cert-body {
  font-size: 0.75rem;
  color: #616161;
  line-height: 1.6;
}
.cert-section .cert-inner .cert-grid .cert-card .cert-year {
  font-size: 0.68rem;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}
@media (max-width: 1024px) {
  .cert-section .cert-inner .cert-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cert-section .cert-inner .cert-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .cert-section .cert-inner .cert-grid {
    grid-template-columns: 1fr;
  }
}

.cert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cert-modal[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cert-modal[aria-hidden=false] .cert-modal-content {
  transform: translateY(0) scale(1);
}
.cert-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(54, 69, 79, 0.85);
  backdrop-filter: blur(8px);
}
.cert-modal-content {
  position: relative;
  background-color: #ffffff;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(20px) scale(0.98);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.cert-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: #616161;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  z-index: 10;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-modal-close:hover {
  color: #d4af37;
  transform: rotate(90deg);
}
.cert-modal-viewer {
  width: 100%;
  height: 90vh;
  min-height: 300px;
  background-color: #f8f8f8;
  border: 1px solid rgba(54, 69, 79, 0.15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cert-modal-pdf {
  width: 100%;
  height: 100%;
  display: none;
}
.cert-modal-title {
  font-family: "Merriweather", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #36454f;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .cert-modal-content {
    padding: 32px 24px;
  }
  .cert-modal-title {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
