/* --- Global Animations --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatEnvironment { 
  0% { transform: scale(1) translate(0px, 0px); } 
  50% { transform: scale(1.02) translate(10px, -10px); } 
  100% { transform: scale(1) translate(0px, 0px); } 
}

/* --- Header & Navigation (Flattened from Home.module.css) --- */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(7, 28, 54, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 110px;
  display: flex;
  align-items: center;
}

.top-nav.scrolled {
  background: #071c36;
  min-height: 90px;
}

.nav-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.scrolled .nav-logo-img {
  transform: scale(0.9);
}

.nav-links {
  display: flex;
  align-items: center;
}

/* Primary Desktop List Fix */
.desktop-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.desktop-nav-list li {
  margin: 0;
  padding: 0;
  list-style: none; /* Force no bullets */
}

.desktop-nav-list li a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.desktop-nav-list li a:hover, 
.desktop-nav-list li.current-menu-item a {
  color: #c9a84c;
}

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

.nav-button {
  background-color: #c9a84c;
  color: #071c36;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #c9a84c;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  padding: 0;
  cursor: pointer;
}

.desktop-only {
  display: block;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .nav-links, .desktop-only {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .nav-container {
    padding: 0 1.5rem;
  }
}

/* --- Footer (Flattened from Home.module.css) --- */
.footer-section {
  background-color: #111d2e;
  padding: 5rem 0 0 0;
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #b5c7ea;
  max-width: 260px;
}

.footer-heading {
  font-family: 'Noto Serif', serif;
  font-size: 1.125rem;
  color: #c9a84c;
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #b5c7ea;
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #b5c7ea;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15) translateY(-2px);
  color: white !important;
}

/* --- Mobile Nav (Flattened) --- */
@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; }
  .nav-container { padding: 0 1.5rem; min-height: 90px; }
  
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #071c36;
    z-index: 1000;
    padding: 120px 32px 32px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .mobile-menu-open { transform: translateX(0); }
  
  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .mobile-nav-list li a {
    font-family: 'Noto Serif', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
  }
}

/* --- Hero Section (Flattened from Home.module.css) --- */
.hero-section {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 90vh;
  width: 100%;
  padding: 10rem 0 6rem;
  position: relative;
  background-image: linear-gradient(90deg, #071c36 0%, rgba(7, 28, 54, 0.8) 40%, rgba(7, 28, 54, 0.2) 100%), url('../images/real_smiles_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section .container {
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 4rem !important; /* MATCH Header axis */
  display: block !important;
  width: 100%;
}

#main-content .hero-section .hero-content {
  width: 100%;
  max-width: 650px;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem;
  animation: fadeUp 1s cubic-bezier(1.16, 1, 0.3, 1) forwards; /* Smoother curve */
  position: relative;
  z-index: 5;
  text-align: left !important;
  align-items: flex-start !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.hero-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 7vw, 5.5rem) !important; /* Larger parity */
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}

.hero-title-highlight {
  color: #c9a84c;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  justify-content: flex-start;
}

.primary-button {
  background: #c9a84c;
  color: #071c36;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 1.125rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-button:hover {
  background: #b5943b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.secondary-button {
  background: transparent;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.125rem 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.badge {
  color: #c9a84c;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* --- Trust Bar Section --- */
.trust-bar-section {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3.5rem 2rem; /* Increased padding */
  border-radius: 2rem;
  box-shadow: 0px 20px 40px 0px rgba(7,28,54,0.06);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: -4.5rem;
  position: relative;
  z-index: 20;
  max-width: 1280px; /* Standardize to React's 1280 */
  margin-left: auto;
  margin-right: auto;
}

.trust-bar-grid {
  display: flex; /* Switched to flex for better spacing */
  justify-content: space-around;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.trust-bar-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4d5f7d;
  text-align: center;
  margin: 0;
}

/* --- Bento Section (Flattened from Home.module.css) --- */
.bento-section {
  background-color: #f9f9ff;
  padding: 6rem 0;
  width: 100%;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  text-align: center;
}

.section-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 3rem;
  color: #071c36;
  margin: 0;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #4d5f7d;
  max-width: 42rem;
  margin: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: linear-gradient(180deg, #f0f3ff 0%, #ffffff 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  height: 256px;
  border: 1px solid #e7eeff;
  border-bottom: 4px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.02);
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-bottom-color: #755b00;
  box-shadow: 0 25px 50px rgba(7, 28, 54, 0.12);
}

.bento-card-icon {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.bento-card-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #071c36;
  margin: 0;
}

.bento-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4d5f7d;
  margin: 0;
}

/* --- Products Section (Flattened from Home.module.css) --- */
.products-section {
  background-color: white;
  padding: 6rem 0;
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background-color: white;
  border: 1px solid #e7eeff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0px 20px 40px 0px rgba(7,28,54,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover { transform: translateY(-8px); }

.product-image-wrapper {
  background-color: #f8f9ff;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  aspect-ratio: 1;
  border: 1px solid #edf0ff;
}

.product-image {
  width: 100%;
  max-width: 318px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.product-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #071c36;
  margin: 0;
}

.product-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-badge {
  background-color: #e7eeff;
  color: #4d5f7d;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.product-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f4ff;
}

.product-price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.5rem; /* Larger, bolder price */
  color: #071c36;
  margin: 0;
}

.product-button {
  background: linear-gradient(135deg, #755b00 0%, #c9a84c 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(117, 91, 0, 0.2);
  display: inline-block;
  text-align: center;
}

.best-seller-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1b6c42;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  z-index: 10;
}

/* --- Results Section (Flattened from Home.module.css) --- */
.results-section {
  background-color: #ecf1ff; /* Solid color to match React airy look */
  padding: 6rem 0;
  width: 100%;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center; /* Ensure header titles inherit alignment */
}

.result-card {
  background-color: white;
  border-radius: 2rem;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  box-shadow: 0px 20px 40px 0px rgba(7,28,54,0.06);
  height: 288px;
}

.image-module {
  flex: 1;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
}

.result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.after-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #755b00;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.see-all-link {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.link-text {
  color: #755b00;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: all 0.2s ease;
}

.link-text:hover {
  transform: translateX(5px);
  color: #071c36;
}

.link-text:hover {
  text-decoration: underline;
}

/* --- Reviews Section --- */
.reviews-section {
  background-color: #ffffff; /* Use solid white to match airy layout */
  padding: 6rem 0;
  width: 100%;
}

.reviews-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.reviews-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #071c36;
  margin: 0;
  max-width: 600px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-stars { display: flex; }

.reviews-score {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #071c36;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background-color: white; /* Clean white for premium look */
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0px 20px 40px 0px rgba(7,28,54,0.06);
  display: flex;
  flex-direction: column;
  height: 244px;
  text-align: left; /* Restored left alignment */
  align-items: flex-start;
}

.review-text {
  font-family: 'Inter', sans-serif;
  font-style: italic; /* Match React italics */
  font-size: 1rem;
  line-height: 1.5;
  color: #4d5f7d;
  margin: 1.5rem 0 auto 0;
}

.review-author {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #071c36;
  margin: 0;
}

.verified-customer {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4d5f7d;
  margin: 0.25rem 0 0 0;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background-color: #f1f4ff;
  padding: 6rem 1.5rem;
  display: flex;
  justify-content: center;
}

.newsletter-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.newsletter-heading {
  font-family: 'Noto Serif', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #071c36;
}

.newsletter-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4d5f7d;
  max-width: 600px;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}

.newsletter-input {
  flex: 1;
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #071c36;
}

.newsletter-button {
  background-color: #c9a84c;
  color: #071c36;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.privacy-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #4d5f7d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Contact Page Styles --- */
.contact-section { padding-bottom: 6rem; }

.contact-hero {
  background-color: #f0f3ff;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-hero-title {
  font-family: 'Noto Serif', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #071c36;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding: 6rem 0;
}

.contact-form-card {
  background: #fff;
  border-radius: 48px;
  padding: 4rem;
  box-shadow: 0 20px 40px rgba(7, 28, 54, 0.06);
  border: 1px solid rgba(208, 197, 178, 0.15);
}

.form-title {
  font-family: 'Noto Serif', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.detail-section-label {
  color: #755b00;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background-color: #dee8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071c36;
  flex-shrink: 0;
}

.contact-info label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4d5f7d;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* CF7 Overrides to match React Theme */
.wpcf7-form-control-wrap { margin-bottom: 1.5rem; display: block; }
.wpcf7-text, .wpcf7-textarea {
  background-color: #f0f3ff;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1.25rem;
  border-radius: 1.5rem;
  width: 100%;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.wpcf7-text:focus, .wpcf7-textarea:focus {
  outline: none;
  border-bottom-color: #c9a84c;
  background-color: #e8edff;
}
.wpcf7-submit {
  background: linear-gradient(135deg, #755b00 0%, #c9a84c 100%);
  color: #fff;
  border: none;
  padding: 1.125rem 2.5rem;
  border-radius: 99px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .contact-hero-grid, .contact-main-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem; border-radius: 2rem; }
}

/* --- About Page Styles --- */
.about-hero {
  padding: 14rem 0 4rem 0;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(201, 168, 76, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-title {
  font-family: 'Noto Serif', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: #071c36;
  margin-bottom: 1.5rem;
}

.stats-card {
  background-color: white;
  border-radius: 3rem;
  padding: 3rem;
  box-shadow: 0px 40px 80px 0px rgba(7, 28, 54, 0.1);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #dee8ff;
}

.stat-number {
  font-family: 'Noto Serif', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #755b00;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4d5f7d;
}

.story-section {
  background-color: #f0f3ff;
  padding: 8rem 0;
}

.story-content {
  max-width: 56rem;
  margin: 0 auto;
}

.story-title {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  color: #071c36;
  margin-bottom: 3rem;
  text-align: center;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 2;
  color: #4d4637;
}

.cta-banner {
  background-color: #071c36;
  border-radius: 3rem;
  padding: 6rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-title {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #d6e3ff;
  margin-bottom: 3rem;
}

.cta-primary {
  background-color: #c9a84c;
  color: #503d00;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .about-hero-title { font-size: 3rem; }
}

/* --- WooCommerce Single Product Styles --- */
.woocommerce-product-gallery {
  background: #f8fafc;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.product-title-single {
  font-family: 'Noto Serif', serif;
  font-size: 2.75rem;
  color: #071c36;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.price-single {
  color: #c9a84c;
  font-size: 2rem;
  font-weight: 700;
}

.commerce-selectors {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: #f8fafc;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
}

/* Shade Swatches styling */
.shade-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.swatch-btn {
  padding: 1.125rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swatch-btn:hover, .swatch-btn.active {
  border-color: #c9a84c;
  background: #fffcf5;
}

.swatch-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Arch Buttons styling */
.arch-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.arch-btn {
  padding: 1.125rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.arch-btn.active {
  border-color: #c9a84c;
  background: #fffcf5;
  border-width: 2px;
}

.save-badge-mini {
  font-size: 11px;
  background: linear-gradient(135deg, #c9a84c 0%, #755b00 100%);
  color: #fff;
  padding: 3px 10px;
  border-radius: 9999px;
  font-weight: 800;
}

/* Trust Features */
.product-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-item-mini {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.trust-item-mini svg { color: #c9a84c; }

@media (max-width: 1024px) {
  .product-title-single { font-size: 2rem; }
  .product-trust-grid { grid-template-columns: 1fr; }
}

/* --- FAQ Page Styles --- */
.faq-hero {
  padding: 14rem 0 6rem;
  background-color: #f9f9ff;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: flex-end;
}

.faq-main-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding: 4rem 0 8rem;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.faq-nav-link {
  padding: 1rem 1.5rem;
  border-radius: 48px;
  color: #4d5f7d;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}

.faq-nav-link:hover, .faq-nav-link.active {
  background-color: #dee8ff;
  color: #755b00;
  font-weight: 700;
}

.faq-section { margin-bottom: 6rem; }

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.faq-accordion-item {
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(7, 28, 54, 0.05);
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
  color: #071c36;
}

.faq-answer {
  padding: 0 2rem 2rem;
  color: #4d5f7d;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid #f0f3ff;
  display: none;
  padding-top: 1.5rem;
}

.faq-accordion-item.open .faq-answer { display: block; }
.faq-accordion-item.open .toggle-icon { transform: rotate(45deg); color: #c9a84c; }

/* --- Dashboard / WooCommerce My Account Styles --- */
.woocommerce-account .main { padding-top: 140px; padding-bottom: 80px; }

.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.dashboard-sidebar {
  position: sticky;
  top: 120px;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: #64748b;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.dashboard-nav-item.is-active, .dashboard-nav-item:hover {
  background: #071c36;
  color: #fff;
  box-shadow: 0 10px 20px rgba(7, 28, 54, 0.2);
}

.dashboard-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 48px;
  border-radius: 32px;
  border: 1.5px solid rgba(255, 255, 255, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.dashboard-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #755b00, #c9a84c, #755b00);
}

/* My Account Specifics */
.woocommerce-MyAccount-navigation { display: none; } /* We will use our custom nav */

.welcome-header { margin-bottom: 40px; }
.welcome-header h2 {
  font-family: 'Noto Serif', serif;
  font-size: 32px;
  color: #071c36;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.dashboard-action-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dashboard-action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.12);
  border-color: #c9a84c;
}

.dashboard-icon-circle {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
}

@media (max-width: 1024px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; margin-bottom: 2rem; }
  .dashboard-content { padding: 2rem; }
  .dashboard-quick-actions { grid-template-columns: 1fr; }
}

/* --- How It Works Section Styles --- */
.steps-section {
  padding: 100px 0;
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 grid for parity */
  gap: 4rem;
  margin-top: 60px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center steps content */
  text-align: center;
  height: 100%;
}

.step-header { margin-bottom: 25px; }
.step-title {
  font-family: 'Noto Serif', serif;
  font-size: 24px; /* Larger titles */
  line-height: 1.3;
  color: #071c36;
  margin: 0;
  min-height: auto;
}

.step-image-container {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafc;
  margin-bottom: 25px;
  box-shadow: 0 15px 35px rgba(7, 28, 54, 0.1);
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-footer p {
  color: #4d5f7d;
  font-size: 15px;
  line-height: 1.6;
}

.center-action {
  text-align: center;
  margin-top: 60px;
}

.action-button {
  background: linear-gradient(135deg, #755b00 0%, #c9a84c 100%);
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 168, 76, 0.25);
}

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}


@media (max-width: 1024px) {
  .faq-hero-grid, .faq-main-grid { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
}




@media (max-width: 768px) {
  .newsletter-heading { font-size: 2rem; }
  .newsletter-form { flex-direction: column; width: 100%; }
}

@media (max-width: 768px) {
  .reviews-header-row { flex-direction: column; text-align: center; align-items: center; gap: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { height: auto; text-align: center; align-items: center; } /* Revert to center for better mobile readability */
}

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr; }
  .result-card { height: auto; flex-direction: row; gap: 0.5rem; padding: 0.5rem; } /* KEEP side-by-side for parity */
  .before-badge, .after-badge { font-size: 0.5rem; padding: 0.2rem 0.5rem; top: 0.5rem; left: 0.5rem; }
}

@media (max-width: 1024px) {
  .section-title { font-size: 2.25rem; }
  .bento-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .trust-bar-item:last-child {
    grid-column: span 2;
  }
}

/* --- Comparison Table Section --- */
.comparison-section {
  background-color: white;
  padding: 6rem 0;
  width: 100%;
}

.table-wrapper {
  border: 1px solid #e7eeff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0px 20px 40px 0px rgba(7,28,54,0.06);
  margin-top: 3rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  padding: 2rem 1.5rem;
  text-align: left;
  background-color: #f0f3ff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #4d5f7d;
  border-bottom: 2px solid white;
}

.compare-table th:nth-child(2) {
  background: linear-gradient(135deg, #111d2e 0%, #071c36 100%);
  color: white;
  border-top: 4px solid #c9a84c;
  box-shadow: 0px 0px 20px rgba(201, 168, 76, 0.2);
  position: relative;
  z-index: 2;
}

.compare-table td {
  padding: 1.5rem;
  border-top: 1px solid #e7eeff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #4d5f7d;
  background-color: white;
}

.compare-table td:first-child {
  font-weight: 600;
  color: #071c36;
}

.compare-table td:nth-child(2) {
  background-color: #f8fafc;
  font-weight: 700;
  color: #071c36;
  border-left: 2px solid #111d2e;
  border-right: 2px solid #111d2e;
}

.compare-table tr:hover td {
  background-color: #fcfcfd;
}

.compare-table tr:hover td:nth-child(2) {
  background-color: #f1f5f9;
}

.compare-table tr:last-child td:nth-child(2) {
  border-bottom: 4px solid #111d2e;
}

/* --- Free Gifts Section --- */
.gifts-section {
  background: white;
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
}

.gifts-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.gifts-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.gifts-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.gifts-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #071c36;
  margin: 0;
  line-height: 1.1;
}

.gifts-title-highlight {
  color: #c9a84c;
  background: linear-gradient(135deg, #755b00 0%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gifts-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #4d5f7d;
  margin: 0;
  line-height: 1.6;
  max-width: 32rem;
}

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.gift-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}

.gift-item:hover {
  transform: translateX(5px);
}

.gift-icon-wrapper {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  flex-shrink: 0;
}

.gift-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #071c36;
  margin: 0 0 0.4rem 0;
}

.gift-detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #4d5f7d;
  margin: 0;
  line-height: 1.4;
}

.gifts-action-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gifts-button {
  background: linear-gradient(135deg, #755b00 0%, #c9a84c 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(117, 91, 0, 0.25);
}

.gifts-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(117, 91, 0, 0.4);
}

.scarcity-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #94a3b8;
  font-style: italic;
}

.gifts-image-container {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.gifts-ensemble-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gifts-image-container:hover .gifts-ensemble-image {
  transform: scale(1.03);
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.image-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #071c36;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tag1 { top: 20%; left: 10%; animation-delay: 0s; }
.tag2 { top: 40%; right: 10%; animation-delay: 1s; }
.tag3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.tag4 { bottom: 15%; right: 15%; animation-delay: 0.5s; }

/* --- About Snippet Section --- */
.about-section {
  background-color: #f9f9ff;
  padding: 6rem 0;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #755b00;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.about-heading {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 3rem;
  color: #071c36;
  margin: 0;
  line-height: 1.1;
}

.about-heading-light {
  font-weight: 400;
  color: #4d5f7d;
}

.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4d5f7d;
}

.about-link {
  color: #755b00;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-link:hover {
  text-decoration: underline;
}

.about-stats-card {
  background-color: #f0f3ff;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0px 20px 40px 0px rgba(7,28,54,0.06);
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stats-logo {
  height: 52px;
}

.stats-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #071c36;
  margin: 0;
}

.stats-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #4d5f7d;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #755b00;
  margin: 0;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #4d5f7d;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0.5rem 0 0 0;
}

/* --- Responsive Additions --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-heading {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 2rem;
    border-radius: 1rem;
  }

  .compare-table {
    min-width: 650px;
  }

  .gifts-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .gifts-badge, .gifts-button {
    align-self: center;
  }

  .gifts-grid {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Results Gallery Page --- */
.results-gallery-section {
  padding: 80px 0;
  background-color: #000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 40px;
}

.case-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #222;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
  z-index: 10;
}

.image-wrapper {
  display: flex;
  position: relative;
  aspect-ratio: 2 / 1;
}

.image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.image-container .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  z-index: 5;
  margin: 0; /* Reset global margin */
}

.image-container .badge.after-badge {
  background: #ffd700;
  color: #000;
}

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

.case-info {
  padding: 24px;
  color: #fff;
}

.case-tag {
  color: #ffd700;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.case-title {
  font-family: 'Noto Serif', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.case-desc {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .case-card:hover { transform: none; }
}

@media (max-width: 500px) {
  .image-wrapper { flex-direction: column; aspect-ratio: auto; }
}

/* --- How It Works Page Overhaul --- */
/* Hero Section Correction */
.hiw-hero-section {
  padding: 160px 0 100px;
  background: linear-gradient(to bottom, #fcfcfd, #f8fafc);
  overflow: hidden;
}

.hiw-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-badge-small {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.hiw-hero-title {
  font-family: 'Noto Serif', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #071c36;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hiw-hero-title .gold-text {
  color: #a1832b;
}

.hiw-hero-desc {
  font-size: 1.25rem;
  color: #4d5f7d;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
}

.hiw-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hiw-stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #071c36;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.hiw-stat-item svg {
  color: #c9a84c;
}

.hiw-hero-actions {
  display: flex;
  gap: 1.5rem;
}

.btn-primary-hiw {
  background: #c9a84c;
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2);
}

.btn-secondary-hiw {
  background: transparent;
  color: #071c36;
  border: 2px solid #071c36;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-hiw:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(201, 168, 76, 0.3); }
.btn-secondary-hiw:hover { background: #071c36; color: white; transform: translateY(-3px); }

.hiw-image-wrapper {
  position: relative;
}

.hiw-main-img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.25);
  display: block;
}

@media (max-width: 1024px) {
  .hiw-hero-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .hiw-hero-section { padding: 120px 0 60px; text-align: center; }
  .hiw-hero-grid { grid-template-columns: 1fr; gap: 4rem; }
  .hiw-hero-desc { margin-left: auto; margin-right: auto; }
  .hiw-hero-stats, .hiw-hero-actions { justify-content: center; }
  .hiw-hero-actions { flex-direction: column; }
  .btn-primary-hiw, .btn-secondary-hiw { width: 100%; }
}

/* Kit Section */
.kit-section {
  padding: 8rem 0;
  background-color: #f8fafc;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.kit-item {
  text-align: center;
}

.kit-icon-box {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #c9a84c;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.kit-label {
  font-family: 'Noto Serif', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #071c36;
}

.kit-desc {
  color: #4d5f7d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pro-tip-box {
  margin-top: 5rem;
  background: #fff;
  border-left: 5px solid #c9a84c;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.pro-tip-icon {
  color: #c9a84c;
  flex-shrink: 0;
}

.pro-tip-content strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: #071c36;
  margin-bottom: 0.5rem;
}

.pro-tip-content p {
  margin: 0;
  color: #4d5f7d;
  font-size: 0.95rem;
}

/* Video Section Correction */
.video-detail-section {
  padding: 6rem 0;
  background-color: #fff;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(11, 31, 58, 0.2);
  background: #000;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll-tip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #a1832b;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bounce-icon {
  animation: bounce 2s infinite;
  display: flex;
  justify-content: center;
  font-size: 1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-5px);}
  60% {transform: translateY(-3px);}
}

/* Good Example Section */
.good-example-section {
  padding: 8rem 0;
  background: #fff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.comparison-card {
  border-radius: 2rem;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.bad-card { background-color: #fff5f5; border: 1px solid #feb2b2; }
.good-card { background-color: #f0fdf4; border: 1px solid #bbf7d0; }

.badge-overlay {
  position: absolute;
  top: -15px;
  left: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #fff;
}

.bad-badge { background-color: #c53030; }
.good-badge { background-color: #15803d; }

.comparison-image-box {
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.comparison-image-box img {
  width: 100%;
  display: block;
}

.comparison-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.bad-text { color: #9b2c2c; }
.good-text { color: #166534; }

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.bad-item { color: #742a2a; }
.good-item { color: #14532d; }

.bad-item::before { content: "✕"; position: absolute; left: 0; font-weight: 900; }
.good-item::before { content: "✓"; position: absolute; left: 0; font-weight: 900; }

/* Mistakes Section */
.mistakes-section {
  padding: 8rem 0;
  background-color: #f8fafc;
}

.mistakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}

.mistake-card {
  display: flex;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.mistake-icon { color: #c53030; flex-shrink: 0; }

.mistake-title {
  font-family: 'Noto Serif', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #071c36;
}

.mistake-desc {
  color: #4d5f7d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Review CTA Section */
.review-cta-section {
  padding: 8rem 0;
  background: #fff;
}

.review-card-cta {
  background: #f8fafc;
  border-radius: 3rem;
  padding: 5rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.review-title-cta {
  font-family: 'Noto Serif', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #071c36;
  margin-bottom: 1.5rem;
}

.review-desc-cta {
  color: #4d5f7d;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.review-actions-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary-cta {
  background: #071c36;
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-cta {
  border: 2px solid #071c36;
  color: #071c36;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(7,28,54,0.2); }
.btn-secondary-cta:hover { background: #071c36; color: #fff; transform: translateY(-3px); }

/* FAQ Section */
.how-it-works-faq {
  padding: 8rem 0;
  background: #f1f5f9;
}

.faq-wrapper {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-details {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.faq-summary {
  padding: 1.5rem 2rem;
  font-weight: 700;
  color: #071c36;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-icon {
  font-size: 1.5rem;
  color: #c9a84c;
  transition: transform 0.3s ease;
}

.faq-details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 2rem 1.5rem;
  color: #4d5f7d;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .comparison-grid, .mistakes-grid { grid-template-columns: 1fr; }
  .review-card-cta { padding: 3rem 2rem; border-radius: 2rem; }
  .review-title-cta { font-size: 1.75rem; }
  .review-actions-cta { flex-direction: column; }
  .btn-primary-cta, .btn-secondary-cta { width: 100%; text-align: center; }
}

/* ==========================================================================
   About Page Parity Styles
   ========================================================================== */

/* About Hero */
.about-hero-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-mission-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f1f5f9;
  color: #071c36;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.about-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  color: #071c36;
  margin-bottom: 2rem;
}

.about-hero-subtitle {
  font-size: 1.125rem;
  color: #4d5f7d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-primary-about {
  display: inline-block;
  background-color: #071c36;
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-about:hover {
  background-color: #c9a84c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Stats Card */
.about-stats-card {
  background-color: #fff;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 40px 100px -20px rgba(11, 31, 58, 0.15);
}

.about-cdt-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.about-icon-circle {
  width: 4rem;
  height: 4rem;
  background-color: #6fbb8a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cdt-label-small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cdt-title-main {
  font-size: 1.125rem;
  font-weight: 700;
  color: #071c36;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #c9a84c;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Story Section */
.about-story-section {
  padding: 8rem 0;
  background-color: #fff;
}

.about-story-card {
  max-width: 800px;
  margin: 0 auto;
}

.about-story-badge {
  text-align: center;
  color: #c9a84c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.about-story-title {
  text-align: center;
  font-size: 2.5rem;
  color: #071c36;
  margin-bottom: 3rem;
}

.about-story-text p {
  font-size: 1.125rem;
  color: #4d5f7d;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Gifts Grid */
.about-gifts-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.about-gifts-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-gifts-title {
  font-size: 2.25rem;
  color: #071c36;
  margin-bottom: 1rem;
}

.about-gifts-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-divider-wrapper {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.about-divider-line {
  width: 40px;
  height: 2px;
  background-color: #c9a84c;
}

.about-gifts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-gift-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-gift-card:hover {
  transform: translateY(-5px);
}

.about-gift-icon {
  color: #c9a84c;
  margin-bottom: 1.5rem;
}

.about-gift-title {
  font-size: 1.25rem;
  color: #071c36;
  margin-bottom: 1rem;
}

.about-gift-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
}

/* Lineup Section */
.about-lineup-section {
  padding: 6rem 0;
  text-align: center;
}

.about-lineup-title {
  font-size: 2.25rem;
  color: #071c36;
  margin-bottom: 1rem;
}

.about-lineup-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 4rem;
}

.about-lineup-grid {
  display: flex;
  justify-content: center;
}

.about-product-card {
  max-width: 400px;
  background-color: #fff;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.about-product-image-wrapper {
  margin-bottom: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
}

.about-product-image {
  width: 100%;
  height: auto;
}

.about-product-title {
  font-size: 1.5rem;
  color: #071c36;
  margin-bottom: 1rem;
}

.about-product-desc {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-product-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #c9a84c;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-product-link:hover {
  color: #071c36;
}

/* Reviews Wrapper */
.about-reviews-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.about-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-reviews-title {
  font-size: 1.5rem;
  color: #071c36;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.about-review-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
}

.about-review-stars {
  margin-bottom: 1.5rem;
}

.about-review-quote {
  font-size: 1rem;
  color: #4d5f7d;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.about-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-author-avatar {
  width: 3rem;
  height: 3rem;
  background-color: #071c36;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.about-author-name {
  display: block;
  font-weight: 700;
  color: #071c36;
}

.about-author-status {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Final CTA */
.about-cta-container {
  padding: 6rem 0;
}

.about-cta-banner {
  background-color: #071c36;
  border-radius: 3rem;
  padding: 6rem 4rem;
  text-align: center;
  color: #fff;
  background-image: radial-gradient(circle at top right, rgba(201, 168, 76, 0.1), transparent);
}

.about-cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.about-cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-secondary-about-cta {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-about-cta:hover {
  background-color: #fff;
  color: #071c36;
}

/* Tablets/Mobile */
@media (max-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-gifts-grid { grid-template-columns: repeat(2, 1fr); }
  .about-reviews-grid { grid-template-columns: 1fr; }
  .about-hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .about-hero-section { padding: 4rem 0; }
  .about-gifts-grid { grid-template-columns: 1fr; }
  .about-cta-actions { flex-direction: column; }
  .about-cta-banner { padding: 4rem 2rem; }
}


/* ==========================================================================
   FAQ Page Parity Styles
   ========================================================================== */

.faq-hero-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.faq-hero-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.faq-help-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f1f5f9;
  color: #c9a84c;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1.5rem;
}

.faq-hero-title {
  font-size: 3.5rem;
  color: #071c36;
}

.faq-can-help-text {
  color: #64748b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.faq-email-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #c9a84c;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-email-link:hover {
  color: #071c36;
}

/* Grid Layout */
.faq-main-wrapper {
  padding: 6rem 0;
  background-color: #fff;
}

.faq-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}

/* Sidebar */
.faq-sidebar-sticky {
  position: sticky;
  top: 120px;
}

.faq-category-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-cat-link {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-cat-link:hover {
  background-color: #f8fafc;
  color: #071c36;
}

.faq-cat-link.active {
  background-color: #071c36;
  color: #fff;
}

/* Content Blocks */
.faq-content-section-block {
  margin-bottom: 6rem;
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.faq-section-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.faq-section-title {
  font-size: 1.75rem;
  color: #071c36;
  font-weight: 700;
}

/* Accordion */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  border: 1px solid #f1f5f9;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  border-color: #c9a84c;
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.faq-accordion-item.active {
  border-color: #071c36;
}

.faq-accordion-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-q-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #071c36;
  padding-right: 2rem;
}

.faq-plus-icon {
  color: #c9a84c;
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-plus-icon {
  transform: rotate(45deg);
  color: #ef4444;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a-inner {
  padding: 0 2rem 1.5rem;
  color: #4d5f7d;
  line-height: 1.7;
}

/* FAQ Contact CTA */
.faq-contact-cta {
  margin-top: 4rem;
  padding: 3.5rem;
  background-color: #f8fafc;
  border-radius: 2rem;
  text-align: center;
}

.faq-cta-title {
  font-size: 1.5rem;
  color: #071c36;
  margin-bottom: 0.75rem;
}

.faq-cta-desc {
  color: #64748b;
  margin-bottom: 2rem;
}

.btn-primary-faq-cta {
  display: inline-block;
  background-color: #071c36;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-faq-cta:hover {
  background-color: #c9a84c;
  transform: translateY(-2px);
}

/* Tablets/Mobile Overlay Area fix for design parity overhaul fix */
@media (max-width: 1024px) {
  .faq-grid-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-sidebar { display: none; }
  .faq-hero-grid { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .faq-hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .faq-main-wrapper { padding: 4rem 0; }
  .faq-accordion-trigger { padding: 1.25rem 1.5rem; }
  .faq-q-text { font-size: 1rem; }
}


/* ==========================================================================
   Contact Page Parity Styles
   ========================================================================== */

.contact-hero-section {
  padding: 8rem 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.contact-container-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.contact-support-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #c9a84c;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-hero-title {
  font-size: 4rem;
  color: #071c36;
  margin-bottom: 1.5rem;
}

.contact-hero-desc {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 480px;
}

/* Hero Visuals - Image Overlap */
.contact-hero-visuals {
  position: relative;
  height: 400px;
}

.contact-card-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 320px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 1;
}

.contact-card-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 200px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  z-index: 2;
}

.contact-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Grid */
.contact-main-body-wrapper {
  padding: 8rem 0;
  background-color: #fff;
}

.container-contact-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-dual-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  margin-bottom: 8rem;
}

/* Contact Form Card */
.contact-form-card {
  background-color: #fff;
}

.contact-form-title {
  font-size: 2.25rem;
  color: #071c36;
  margin-bottom: 1rem;
}

.contact-form-desc {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Contact Form 7 Styling */
.cf7-wrapper-modern input[type="text"],
.cf7-wrapper-modern input[type="email"],
.cf7-wrapper-modern textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 1rem;
  color: #071c36;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.cf7-wrapper-modern input:focus,
.cf7-wrapper-modern textarea:focus {
  background-color: #fff;
  border-color: #c9a84c;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
  outline: none;
}

.cf7-wrapper-modern input[type="submit"] {
  background-color: #071c36;
  color: #fff;
  padding: 1.25rem 3rem;
  border-radius: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf7-wrapper-modern input[type="submit"]:hover {
  background-color: #c9a84c;
  transform: translateY(-2px);
}

/* Details Column */
.contact-detail-section {
  margin-bottom: 4rem;
}

.contact-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}

.contact-section-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #071c36;
  line-height: 1.6;
}

.contact-item-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon-circle-small {
  width: 3rem;
  height: 3rem;
  background-color: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.contact-info-block label {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-info-block span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #071c36;
}

/* LabTech Box */
.contact-labtech-highlight {
  background-color: #fff;
  border: 2px solid #c9a84c;
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.05);
}

.labtech-highlight-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #c9a84c;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.labtech-highlight-email {
  font-size: 1.25rem;
  color: #071c36;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.labtech-highlight-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* Hours */
.contact-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #071c36;
}

.contact-day { color: #64748b; }
.contact-closed { color: #ef4444; }

/* Map */
.contact-map-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 240px;
  margin-top: 3rem;
}

.contact-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-map-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #071c36;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  white-space: nowrap;
}

/* Socials */
.contact-social-row {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.contact-social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
}

.contact-social-icon:hover {
  background-color: #071c36;
  color: #fff;
  transform: translateY(-2px);
}

/* Support Footer Banner */
.contact-support-footer-banner {
  position: relative;
  background-color: #071c36;
  border-radius: 3rem;
  padding: 6rem 4rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.contact-support-banner-bg-1,
.contact-support-banner-bg-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.contact-support-banner-bg-1 { top: -200px; left: -100px; }
.contact-support-banner-bg-2 { bottom: -200px; right: -100px; }

.contact-support-content { position: relative; z-index: 2; }

.contact-support-banner-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-support-banner-desc {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.btn-primary-contact-support {
  display: inline-block;
  background-color: #c9a84c;
  color: #fff;
  padding: 1.25rem 3.5rem;
  border-radius: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-contact-support:hover {
  background-color: #fff;
  color: #071c36;
  transform: translateY(-2px);
}

/* Responsive fix for design parity overhaul fix */
@media (max-width: 1024px) {
  .contact-hero-grid { grid-template-columns: 1fr; gap: 4rem; }
  .contact-dual-grid { grid-template-columns: 1fr; gap: 4rem; }
  .contact-hero-title { font-size: 3rem; }
  .contact-hero-visuals { display: none; }
}

@media (max-width: 768px) {
  .contact-hero-section { padding: 4rem 0; }
  .contact-main-body-wrapper { padding: 4rem 0; }
  .contact-support-footer-banner { padding: 4rem 2rem; border-radius: 2rem; }
  .contact-support-banner-title { font-size: 1.75rem; }
}


/* ==========================================================================
   Shop Page Parity Styles
   ========================================================================== */

.shop-hero-section {
  padding: 6rem 0;
  background-color: #071c36;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.shop-hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.shop-hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #c9a84c;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}

.shop-hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-family: 'Noto Serif', serif;
}

.shop-hero-sub-shipping {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.shop-hero-shipping-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.truck-emoji { font-size: 1.5rem; }
.shipping-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #fff;
}

.shop-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 500px;
}

.shop-hero-img-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shop-hero-img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Product Grid Section */
.shop-products-grid-section {
  padding: 8rem 0;
  background-color: #fff;
}

.shop-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.shop-section-title {
  font-size: 3rem;
  color: #071c36;
  margin-bottom: 1rem;
  font-family: 'Noto Serif', serif;
}

.shop-section-desc {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Product Card */
.shop-product-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
  border-color: #c9a84c;
}

.shop-product-img-wrapper {
  aspect-ratio: 1/1;
  background-color: #f8fafc;
  overflow: hidden;
}

.shop-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.shop-product-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.shop-badge-tag {
  padding: 0.25rem 0.75rem;
  background-color: #f1f5f9;
  color: #c9a84c;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #071c36;
  text-decoration: none;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  height: 3.5rem;
  display: block;
}

.shop-product-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #071c36;
}

.shop-btn-action {
  background-color: #071c36;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.shop-btn-action:hover {
  background-color: #c9a84c;
}

/* Shop FAQ Section */
.shop-faq-section-wrapper {
  padding: 8rem 0;
  background-color: #f9f9ff;
}

.shop-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.shop-faq-title {
  font-size: 2.5rem;
  color: #071c36;
  text-align: center;
  margin-bottom: 4rem;
}

.shop-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop-faq-item {
  background-color: #fff;
  border-radius: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.shop-faq-item.active {
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.shop-faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.shop-faq-q {
  font-size: 1.125rem;
  font-weight: 700;
  color: #071c36;
}

.shop-faq-chevron {
  color: #c9a84c;
  transition: transform 0.3s ease;
}

.shop-faq-item.active .shop-faq-chevron {
  transform: rotate(180deg);
}

.shop-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.shop-faq-inner {
  padding: 0 2rem 2rem;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive fix for design parity overhaul fix */
@media (max-width: 1024px) {
  .shop-hero-content-grid { grid-template-columns: 1fr; gap: 3rem; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  .shop-products-grid { grid-template-columns: 1fr; }
  .shop-hero-section { padding: 4rem 0; }
  .shop-section-title { font-size: 2.25rem; }
}


/* ==========================================================================
   Product Single Parity Styles
   ========================================================================== */

.product-single-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

/* Breadcrumb */
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.product-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
  color: #071c36;
}

.breadcrumb-current {
  color: #071c36;
  font-weight: 600;
}

/* Grid Layout */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
}

/* Gallery Restructuring */
.product-gallery-area .woocommerce-product-gallery {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
}

.product-gallery-area .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-gallery-area .flex-control-thumbs li {
  border: 2px solid transparent;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-gallery-area .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-area .flex-control-thumbs li.flex-active {
  border-color: #c9a84c;
}

.product-gallery-area .woocommerce-product-gallery__image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Info Sticky Column */
.product-info-sticky {
  position: sticky;
  top: 120px;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.review-count {
  font-size: 0.875rem;
  color: #94a3b8;
}

.product-main-title {
  font-size: 3rem;
  font-family: 'Noto Serif', serif;
  color: #071c36;
  margin-bottom: 1.5rem;
}

.product-main-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #071c36;
  margin-bottom: 2rem;
}

.product-main-price ins { text-decoration: none; }
.product-main-price del { font-size: 1.25rem; color: #94a3b8; margin-right: 0.75rem; }

.product-short-desc {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Variation Selectors Restoration */
.variations {
  width: 100%;
  margin-bottom: 2.5rem;
}

.variations tr { display: block; margin-bottom: 2rem; }
.variations td { display: block; padding: 0 !important; }

.variations label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #071c36;
  margin-bottom: 1rem;
}

.variations select {
  width: 100%;
  padding: 1.25rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Custom Add to Cart Button */
.single_add_to_cart_button {
  background-color: #071c36 !important;
  color: #fff !important;
  padding: 1.5rem 4rem !important;
  border-radius: 1.25rem !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  width: 100%;
  transition: all 0.3s ease !important;
}

.single_add_to_cart_button:hover {
  background-color: #c9a84c !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Trust Bar */
.product-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #f1f5f9;
}

.trust-pill {
  display: flex;
  gap: 1rem;
  color: #071c36;
}

.trust-pill svg { color: #c9a84c; flex-shrink: 0; }
.trust-pill strong { display: block; font-size: 0.875rem; }
.trust-pill p { font-size: 0.75rem; color: #64748b; margin: 0; }

/* Tabs Styling */
.product-additional-info {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #f1f5f9;
}

.woocommerce-tabs ul.tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0 0 4rem;
  list-style: none;
  border: none !important;
}

.woocommerce-tabs ul.tabs li {
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
}

.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 1rem 2.5rem;
  background-color: #f8fafc;
  border-radius: 1rem;
  color: #64748b;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce-tabs ul.tabs li.active a {
  background-color: #071c36;
  color: #fff;
}

.woocommerce-tabs .woocommerce-Tabs-panel {
  max-width: 800px;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.8;
}

.woocommerce-Tabs-panel h2 {
  font-size: 2rem;
  color: #071c36;
  margin-bottom: 2rem;
  text-align: center;
}

/* Responsive fix for design parity overhaul fix */
@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 4rem; }
  .product-info-sticky { position: static; }
  .product-main-title { font-size: 2.25rem; }
}

@media (max-width: 768px) {
  .product-single-main { padding: 4rem 1.5rem; }
  .woocommerce-tabs ul.tabs { flex-direction: column; gap: 0.75rem; }
  .woocommerce-tabs ul.tabs li a { text-align: center; }
}


/* JS Generated Variation Buttons */
.cv-variation-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cv-variation-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem !important;
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1rem !important;
  color: #071c36 !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  position: relative;
  text-align: left;
}

.cv-variation-btn:hover {
  border-color: #c9a84c !important;
}

.cv-variation-btn.active {
  background-color: #071c36 !important;
  border-color: #071c36 !important;
  color: #fff !important;
}

.cv-variation-btn.cv-type-shade {
  justify-content: flex-start;
}

.cv-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.cv-save-badge {
  background-color: #fff !important;
  color: #c9a84c !important;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cv-variation-btn.active .cv-save-badge {
  background-color: #c9a84c !important;
  color: #fff !important;
}

@media (max-width: 640px) {
  .cv-variation-buttons { grid-template-columns: 1fr; }
}


/* ==========================================================================
   Cart & Checkout Parity Styles
   ========================================================================== */

/* Layout Utilities for WooCommerce Pages */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem;
}

/* Cart Page Overhaul */
.woocommerce-cart-form {
  margin-bottom: 4rem;
}

.shop_table.cart {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0 1rem;
  border: none !important;
  background: none !important;
}

.shop_table.cart thead {
  background: none;
}

.shop_table.cart thead th {
  padding: 1rem 2rem !important;
  color: #94a3b8;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  border: none !important;
}

.shop_table.cart .cart_item {
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border-radius: 1.5rem;
  overflow: hidden;
}

.shop_table.cart td {
  padding: 2rem !important;
  border: none !important;
  vertical-align: middle;
}

.shop_table.cart .product-thumbnail img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 1rem;
  object-fit: cover;
}

.shop_table.cart .product-name a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #071c36;
}

.shop_table.cart .product-name dl.variation {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  display: flex;
  gap: 1rem;
}

.shop_table.cart .product-price,
.shop_table.cart .product-subtotal {
  font-size: 1.125rem;
  font-weight: 700;
  color: #071c36;
}

/* Cart Totals Sidebar (2-Column Layout) */
@media (min-width: 1024px) {
  .woocommerce-cart .cart-collaterals {
    display: flex;
    justify-content: flex-end;
  }
  .cart-collaterals .cart_totals {
    width: 400px !important;
    float: none !important;
  }
}

.cart_totals {
  background: #fff;
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cart_totals h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #071c36;
}

.cart_totals table {
  width: 100% !important;
  margin-bottom: 2rem;
}

.cart_totals th, .cart_totals td {
  padding: 1rem 0 !important;
  border-top: 1px solid #f1f5f9 !important;
  background: none !important;
  color: #64748b;
}

.cart_totals .order-total th, 
.cart_totals .order-total td {
  color: #071c36;
  font-weight: 700;
  font-size: 1.25rem;
}

.checkout-button {
  background-color: #071c36 !important;
  color: #fff !important;
  padding: 1.5rem !important;
  border-radius: 1.25rem !important;
  font-weight: 700 !important;
  width: 100%;
  display: block;
  text-align: center;
}

/* Checkout Page Parity */
.woocommerce-checkout #customer_details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: flex-start;
  }
}

.woocommerce-checkout h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #071c36;
}

/* Form Styling */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.woocommerce-checkout input.input-text:focus {
  border-color: #c9a84c;
  background-color: #fff;
}

/* Order Review Side */
#order_review_heading { display: none; } /* Combined in sidebar */

#order_review {
  background: #fff;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.shop_table.woocommerce-checkout-review-order-table {
  width: 100%;
  margin-bottom: 2rem;
}

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
  padding: 1rem 0;
  border-top: 1px solid #f1f5f9;
}

/* Payment Methods boxes */
#payment {
  background: none !important;
  padding: 0 !important;
}

#payment ul.payment_methods {
  border: none !important;
  padding: 0 !important;
  margin-bottom: 2rem;
}

#payment ul.payment_methods li {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  list-style: none;
}

#payment ul.payment_methods li input {
  margin-right: 1rem;
}

#payment ul.payment_methods li .payment_box {
  background: none !important;
  padding: 1rem 0 0 2rem !important;
  color: #64748b;
  font-size: 0.875rem;
}

#payment #place_order {
  background-color: #071c36 !important;
  color: #fff !important;
  padding: 1.5rem !important;
  border-radius: 1.25rem !important;
  font-weight: 700 !important;
  width: 100%;
  font-size: 1.125rem;
}

/* Success Card */
.woocommerce-order-received .entry-content {
  text-align: center;
}

.woocommerce-thankyou-order-received {
  font-size: 2.5rem;
  color: #071c36;
  font-family: 'Noto Serif', serif;
  margin-bottom: 2rem;
}

ul.woocommerce-thankyou-order-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 0;
  margin: 4rem 0;
  list-style: none;
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 2rem;
}

ul.woocommerce-thankyou-order-details li {
  padding: 0;
  text-align: left;
}

ul.woocommerce-thankyou-order-details li strong {
  display: block;
  font-size: 1.25rem;
  color: #071c36;
}

/* Empty Cart / Info Box */
.woocommerce-info, .woocommerce-message, .woocommerce-error {
  background-color: #f8fafc !important;
  border-top: 3px solid #c9a84c !important;
  padding: 1.5rem 2rem !important;
  border-radius: 1rem;
  color: #071c36;
  margin-bottom: 3rem !important;
}

.cart-empty {
  font-size: 2rem;
  font-family: 'Noto Serif', serif;
  color: #071c36;
  margin-bottom: 2rem;
}

.return-to-shop .button {
  background-color: #071c36 !important;
  color: #fff !important;
  padding: 1.25rem 3rem !important;
  border-radius: 1rem !important;
}

