.elementor-2198 .elementor-element.elementor-element-2441416{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-2441416 */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --primary-navy: #203B46;
  --accent-orange: #C76832;
  --accent-orange-light: #FCE8DB;
  --text-muted: #667085;
  --text-main: #1D2939;
  --radius-service: 16px;
  --radius-normal: 12px;
  --peach-bg-soft: #FFF9F5;
  --border-soft: #EAECF0;
  --white: #FFFFFF;
  --off-white: #F9FAFB;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 15.5px;
  overflow-x: clip;
}

/* STICKY NAV */
.sticky-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s ease;
}
.sticky-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sticky-nav-inner::-webkit-scrollbar {
  display: none;
}
.sticky-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.sticky-nav a:hover, .sticky-nav a.active {
  color: var(--primary-navy);
  background: var(--peach-bg-soft);
}

/* CORE LAYOUT */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

header {
 
  margin-bottom: 40px;
  text-align: center;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 12px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--primary-navy);
}
.hero-title .highlight, .section-title .highlight {
  color: var(--accent-orange);
  position: relative;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 992px) {
  .two-col {
    grid-template-columns: 8fr 3.5fr;
  }
}

main {
  min-width: 0;
}
aside {
  position: relative;
}
.sidebar-inner {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.sidebar-inner::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}

/* SECTIONS */
.article-section {
  margin-bottom: 56px;
}
.article-section h2.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  color: var(--primary-navy);
  margin-top: 12px;
  margin-bottom: 20px;
  font-weight: 800;
}
.article-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  color: var(--primary-navy);
  margin-top: 36px;
  margin-bottom: 14px;
  font-weight: 700;
}
.article-section p {
  margin-bottom: 20px;
  color: var(--text-main);
}
.article-section a {
  color: var(--accent-orange);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(199, 104, 50, 0.2);
  transition: all 0.2s ease;
}
.article-section a:hover {
  border-bottom-color: var(--accent-orange);
  background: rgba(199, 104, 50, 0.04);
}
.article-section ul, .article-section ol {
  padding-left: 20px;
  margin-bottom: 24px;
}
.article-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* PULL QUOTE */
.pull-quote, .pullquote {
  border-left: 4px solid var(--accent-orange);
  background: var(--peach-bg-soft);
  padding: 24px;
  border-radius: 0 var(--radius-service) var(--radius-service) 0;
  margin: 32px 0;
}
.pull-quote p, .pullquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-navy);
  margin-bottom: 12px;
}
.pull-quote cite, .pullquote cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 28px;
  margin-top: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-soft);
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--accent-orange);
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
}
.timeline-content {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.timeline-content:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.timeline-content h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-main);
}

/* OUTFIT & CARD GRIDS */
.outfit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 32px;
}
@media (min-width: 576px) {
  .outfit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.outfit-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.outfit-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.outfit-thumb {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-bottom: 1px solid var(--border-soft);
}
.outfit-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.outfit-body .tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: var(--peach-bg-soft);
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 8px;
}
.outfit-body h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}
.outfit-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}
.outfit-body > a, .product-item a, .aff-card a.aff-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  border: 1.5px solid var(--accent-orange);
  border-radius: var(--radius-normal);
  padding: 8px 16px;
  text-align: center;
  transition: all 0.2s ease;
  margin-top: auto;
  display: inline-block;
  border-bottom: 1.5px solid var(--accent-orange) !important;
}
.outfit-body > a:hover, .product-item a:hover {
  background: var(--accent-orange);
  color: var(--white);
}

/* WIDGET & SWATCHES */
.swatch-item {
  transition: all 0.2s ease;
}
.swatch-item:hover {
  transform: scale(1.04);
}

/* CHART BOX */
.chart-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  margin: 32px 0;
}
.chart-box h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.chart-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.bar-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.bar-row:last-child {
  margin-bottom: 0;
}
.bar-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
}
.bar-track {
  background: var(--off-white);
  height: 26px;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.bar-fill {
  height: 100%;
  background: var(--primary-navy);
  display: flex;
  align-items: center;
  padding-left: 16px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.1, 0.8, 0.2, 1);
  border-radius: 13px;
}
.bar-fill.go {
  /* triggered in viewport */
}
.bar-val {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* STAT GRID */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}
@media (min-width: 576px) {
  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.stat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  overflow: hidden;
}
th {
  background: var(--peach-bg-soft);
  color: var(--primary-navy);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 16px 20px;
  border-bottom: 2px solid var(--border-soft);
  text-align: left;
}
td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-main);
  line-height: 1.6;
}
tr:last-child td {
  border-bottom: none;
}
tr:nth-child(even) {
  background: var(--off-white);
}

/* FAQ ACCORDION */
.faq-accordion {
  margin-top: 28px;
}
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background-color 0.2s ease;
}
.faq-btn:hover {
  background-color: var(--off-white);
}
.faq-icon {
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}
.faq-item.open .faq-answer {
  display: block;
  border-top: 1px solid var(--border-soft);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* SIDEBAR LAYOUTS */
.sb-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}
.sb-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--peach-bg-soft);
  padding-bottom: 8px;
}
.sb-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.sb-card li {
  margin-bottom: 12px;
  font-size: 13.5px;
}
.sb-card li:last-child {
  margin-bottom: 0;
}
.sb-card a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.sb-card a:hover {
  color: var(--accent-orange);
}

.source-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.source-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.source-item a {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--primary-navy);
  border-bottom: 1px solid transparent;
}
.source-item a:hover {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}
.source-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: var(--off-white);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  align-self: flex-start;
}

.sb-dark-card {
  background: var(--primary-navy);
  border-radius: var(--radius-service);
  padding: 24px;
  color: var(--white);
}
.sb-dark-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding-bottom: 8px;
}
.sb-dark-card ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.sb-dark-card a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.sb-dark-card a:hover {
  color: var(--accent-orange-light);
}

/* STEP CARD DETAILS */
.step-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  padding: 28px;
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}
.step-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--accent-orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}
.step-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--primary-navy);
  margin-top: 8px;
  margin-bottom: 12px;
  font-weight: 700;
}
.step-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 16px;
}
.step-science, .science-box {
  background: var(--peach-bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--primary-navy);
  margin-top: 16px;
  line-height: 1.6;
}
.step-science strong, .science-box strong {
  font-weight: 700;
  color: var(--accent-orange);
}
.step-products {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.step-products-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

/* TABS & ROUTINES */
.routine-box, .routine-tabs {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  overflow: hidden;
  margin: 32px 0 48px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}
.routine-head, .routine-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-soft);
  background: var(--off-white);
}
.routine-col-head {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  transition: all 0.2s ease;
}
.routine-col-head.active {
  color: var(--primary-navy);
  background: var(--white);
  border-bottom: 2px solid var(--accent-orange);
}
.routine-body {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .routine-body {
    grid-template-columns: 1fr 1fr;
  }
}
.routine-col {
  padding: 24px;
  border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 768px) {
  .routine-col {
    border-bottom: none;
    border-right: 1px solid var(--border-soft);
  }
  .routine-col:last-child {
    border-right: none;
  }
}
.r-step, .routine-step, .grad-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.r-step:last-child, .routine-step:last-child, .grad-step:last-child {
  margin-bottom: 0;
}
.r-num, .routine-num, .grad-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--peach-bg-soft);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.r-text, .routine-step-text, .grad-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
}
.r-text strong, .routine-step-text strong, .grad-content strong {
  color: var(--primary-navy);
}

/* AMZ PRODUCT CARDS */
.aff-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  padding: 16px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  margin-top: 12px;
}
@media (min-width: 576px) {
  .aff-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}
.aff-card:hover {
  border-color: var(--accent-orange);
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.aff-badge-wrap {
  flex-shrink: 0;
  margin-bottom: 8px;
}
@media (min-width: 576px) {
  .aff-badge-wrap {
    margin-bottom: 0;
  }
}
.aff-badge {
  background: var(--accent-orange-light);
  color: var(--accent-orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  white-space: nowrap;
}
.aff-info {
  flex: 1;
  min-width: 0;
}
.aff-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy) !important;
  line-height: 1.4;
  margin-bottom: 6px;
}
.aff-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.aff-btn {
  display: inline-block;
  background: #FF9900;
  color: #111 !important;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  align-self: flex-start;
}
.aff-btn:hover {
  background: #e68a00;
}
.aff-disclosure {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  margin: 8px 0 12px;
}

/* GRIDS */
.anatomy-grid, .tint-grid, .mistake-grid, .tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0 40px;
}
@media (min-width: 576px) {
  .anatomy-grid, .tint-grid, .mistake-grid, .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .anatomy-grid, .tint-grid, .mistake-grid, .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.anatomy-card, .tint-card, .mistake-card, .tip-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  transition: all 0.3s ease;
}
.anatomy-card:hover, .tint-card:hover, .mistake-card:hover, .tip-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.anatomy-icon, .tip-icon, .mistake-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}
.anatomy-title, .tint-name, .tip-title, .mistake-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.tint-tag {
  font-size: 9px;
  color: var(--accent-orange);
  background: var(--peach-bg-soft);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.anatomy-text, .tint-desc, .tip-text, .mistake-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* RESEARCH & ALERTS */
.research-box {
  background: #f0f7f4;
  border: 1px solid #d0e7dd;
  border-radius: var(--radius-normal);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14px;
  color: #1e3a2f;
  line-height: 1.7;
}
.research-title {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2e5c46;
  margin-bottom: 8px;
  display: block;
  font-weight: 700;
}
.research-box a {
  color: #2e5c46;
  font-weight: 600;
}
.intro-box {
  background: var(--peach-bg-soft);
  border-left: 4px solid var(--accent-orange);
  border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--primary-navy);
}
.notice-box {
  background: #fffbeb;
  border: 1px solid #fef08a;
  border-radius: var(--radius-normal);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: #854d0e;
  line-height: 1.6;
}

/* INGREDIENTS */
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0 40px;
}
@media (min-width: 576px) {
  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .ingredient-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}
.ingredient-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.ingredient-tag {
  font-size: 9px;
  color: var(--accent-orange);
  background: var(--peach-bg-soft);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.ingredient-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.ingredient-ref {
  font-size: 11px;
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
}

/* RECOMENDATION */
.rec-box {
  background: var(--primary-navy);
  color: var(--white);
  border-radius: var(--radius-service);
  padding: 36px;
  margin-top: 60px;
  box-shadow: 0 8px 32px rgba(32, 59, 70, 0.15);
}
.rec-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--accent-orange-light);
  margin-bottom: 16px;
  border: none !important;
  padding-bottom: 0 !important;
}
.rec-box p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.rec-box p:last-child {
  margin-bottom: 0;
}
.rec-signature, .rec-sig {
  margin-top: 24px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--accent-orange-light);
  font-size: 16px;
  display: block;
}

/* REVEALS & TRANSITIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.1, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.1, 0.8, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.6s cubic-bezier(0.1, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.1, 0.8, 0.2, 1);
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.highlight {
  background: var(--accent-orange-light);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--accent-orange);
}
.outfit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aff-image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: var(--radius-normal);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  align-self: center;
}
@media (min-width: 576px) {
  .aff-image {
    align-self: flex-start;
  }
}
.aff-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* PRIMARY AND GHOST BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn--orange {
  background: var(--accent-orange);
  color: var(--white) !important;
  border-bottom: none !important;
}
.btn--orange:hover {
  background: #b55827;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 104, 50, 0.2);
}
.btn--ghost {
  background: transparent;
  color: var(--text-main) !important;
  border: 1.5px solid var(--border-soft) !important;
  border-bottom: 1.5px solid var(--border-soft) !important;
}
.btn--ghost:hover {
  background: rgba(199, 104, 50, 0.04);
  border-color: var(--accent-orange) !important;
  color: var(--accent-orange) !important;
  transform: translateY(-2px);
}
.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* STICKY BOTTOM BAR */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 200;
  transform: translateY(100%);
  transition: transform .28s ease;
  box-shadow: 0 -4px 18px rgba(0,0,0,.06);
}
.sticky.on {
  transform: translateY(0);
}
.sticky__txt {
  font-size: 14px;
  color: var(--text-muted);
}
.sticky__txt strong {
  color: var(--primary-navy);
  font-weight: 600;
}

@media(max-width:640px) {
  .sticky__txt {
    display: none;
  }
  .sticky {
    justify-content: center;
  }
}/* End custom CSS */