/* CUSTOM STYLES & VARIABLE DECLARATIONS */
:root {
  /* Color Palette - LIGHT Theme (Crimson & Slate) */
  --cx-bg: #F9FAFB;
  --cx-surface: #FFFFFF;
  --cx-accent: #C92A2A;
  --cx-accent-hover: #A61B1B;
  --cx-accent-soft: #FFF5F5;
  --cx-ink: #1A1D20;
  --cx-ink-muted: #5A626A;
  --cx-border: #E9ECEF;
  --cx-gradient-accent: linear-gradient(135deg, #C92A2A 0%, #E03131 100%);
  
  /* Layout Configurations */
  --cx-max-width: 1180px;
  --cx-radius: 16px; /* soft style (12-20px) */
  --cx-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.03); /* raised shadow style */
  --cx-shadow-deep: 0 10px 25px -5px rgba(201, 42, 42, 0.1), 0 8px 16px -6px rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Base resets & layout scaffolding */
body.cx-body-root {
  font-family: var(--font-body);
  background-color: var(--cx-bg);
  color: var(--cx-ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.cx-page-shell {
  flex: 1;
  position: relative;
}

/* Grid & container limits */
.cx-inner-limit {
  max-width: var(--cx-max-width);
  width: 100%;
}

/* Background SVG layout block */
.cx-bg-decor-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* HEADER STYLE */
.cx-head-strip {
  background-color: #111418;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 72px;
  position: relative;
  z-index: 20;
}

.cx-logo-icon {
  width: 32px;
  height: 32px;
  color: var(--cx-accent);
}

.cx-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  text-transform: uppercase; /* uppercase style requested */
  color: #FFFFFF;
}

/* PRODUCT MAIN SECTION (Split Sticky) */
.cx-composition-spot {
  position: relative;
  z-index: 10;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.cx-split-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .cx-split-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Left column - 40% Width Sticky on Desktop */
.cx-sticky-artwork-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .cx-sticky-artwork-col {
    width: 40%;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
  }
}

.cx-image-sticky-box {
  background: radial-gradient(circle at center, #FFFFFF 0%, #F1F3F5 100%);
  border-radius: var(--cx-radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid var(--cx-border);
  box-shadow: var(--cx-shadow);
}

.cx-visual-frame {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.cx-bottle-render {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0,0,0,0.15));
}

.cx-spot-badge-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--cx-accent);
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 650;
  border-radius: 999px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

/* Right column - 60% Width Flow */
.cx-details-flow-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .cx-details-flow-col {
    width: 60%;
  }
}

.cx-main-heading {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase; /* uppercase style requested */
  color: var(--cx-ink);
  margin-bottom: 0.5rem;
}

.cx-sub-headline-text {
  font-size: 1.15rem;
  color: var(--cx-ink-muted);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Description Panel */
.cx-desc-panel {
  border-radius: var(--cx-radius);
  padding: 2rem;
  border: 1px solid var(--cx-border);
}

.cx-panel-caption {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase; /* uppercase style */
  color: var(--cx-accent);
  margin-bottom: 0.75rem;
}

.cx-panel-body-text {
  font-size: 0.975rem;
  color: var(--cx-ink-muted);
  line-height: 1.7;
}

/* Bullet Collection */
.cx-bullet-collection {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cx-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cx-bullet-icon-wrapper {
  background-color: var(--cx-accent);
  border-radius: 50%;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Guarantee Badge (Icon Left Style) */
.cx-badge-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--cx-radius);
  margin-top: 2rem;
}

.cx-guarantee-icon-container {
  flex-shrink: 0;
  background-color: #FFFFFF;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cx-guarantee-text-container {
  display: flex;
  flex-direction: column;
}

.cx-guarantee-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cx-accent);
}

.cx-guarantee-desc {
  font-size: 0.85rem;
  color: var(--cx-ink-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* Price and CTA Block */
.cx-price-cta-panel {
  border-radius: var(--cx-radius);
  border: 1px solid var(--cx-border);
}

/* Badge Price Style (Accent Background) */
.cx-price-badge {
  display: inline-block;
  background-color: var(--cx-accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  padding: 0.5rem 1.75rem;
  border-radius: var(--cx-radius);
  letter-spacing: -0.5px;
  box-shadow: 0 4px 10px rgba(201, 42, 42, 0.25);
}

/* CTA Action Link Button */
.cx-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cx-gradient-accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: var(--cx-radius);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 15px rgba(201, 42, 42, 0.3);
  text-align: center;
  cursor: pointer;
}

.cx-action-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 42, 42, 0.4);
}

.cx-action-link:active {
  transform: translateY(0);
}

/* FEATURES SECTION (Horizontal rows, separate section from product block) */
.cx-utility-core {
  background-color: var(--cx-surface);
  border-top: 1px solid var(--cx-border);
  border-bottom: 1px solid var(--cx-border);
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.cx-section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cx-ink);
  line-height: 1.2;
}

.cx-section-subtitle {
  font-size: 1.05rem;
  color: var(--cx-ink-muted);
  margin-top: 1rem;
}

.cx-feature-rows-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Rows: Icon circle left + title and short text next to it */
.cx-feature-row-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--cx-radius);
  border: 1px solid var(--cx-border);
  text-align: center;
}

@media (min-width: 640px) {
  .cx-feature-row-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.cx-feature-circle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.cx-feature-row-content {
  flex: 1;
}

.cx-feature-row-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--cx-ink);
  margin-bottom: 0.5rem;
}

.cx-feature-row-text {
  font-size: 0.95rem;
  color: var(--cx-ink-muted);
  line-height: 1.6;
}

/* TESTIMONIALS WALL (4 reviews, grid layout, top border accent) */
.cx-trust-wall {
  background-color: #111418; /* Contrast background */
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.cx-feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .cx-feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cx-feedback-grid {
    grid-template-columns: repeat(2, 1fr); /* Clean 2x2 grid */
  }
}

.cx-feedback-card {
  padding: 2rem;
  border-radius: var(--cx-radius);
  border-top: 4px solid var(--cx-accent); /* Top accent border */
  border-left: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cx-avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--cx-accent-soft);
  color: var(--cx-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1rem;
}

.cx-stars-indicator {
  color: #F1C40F;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 0.15rem;
}

/* FOOTER SECTION */
.cx-end-plate {
  background-color: #0B0D10;
  color: #9AA0A6;
  position: relative;
  z-index: 20;
}

.cx-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cx-footer-links {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.cx-footer-links a {
  font-size: 0.85rem;
  color: #FFFFFF;
  opacity: 0.8;
  transition: opacity 0.2s;
  text-decoration: none;
}

.cx-footer-links a:hover {
  opacity: 1;
  color: var(--cx-accent);
}