/* =============================================
   AffiliLink — Affiliate Landing Page Stylesheet
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber: #8A3B7D;
  --amber-light: #FDF5FC;
  --amber-dark: #733068;
  --bg: #ffffff;
  --surface:     #FFFFFF;
  --border:      #E8E6E0;
  --text-1:      #1A1A18;
  --text-2:      #5A5A55;
  --text-3:      #9A9A93;
  --green:       #15803D;
  --green-bg:    #DCFCE7;
  --red:         #DC2626;
  --red-bg:      #FEE2E2;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.5px;
}
.logo span { color: var(--amber); }

.header-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  border: 1px solid #FFCC80;
  padding: 4px 10px;
  border-radius: 99px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FFD580, transparent 70%);
  top: -200px; left: -100px;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FFA040, transparent 70%);
  bottom: -150px; right: -80px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-1);
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Input Card */
.input-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: 0 auto 1.25rem;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 14px;
  transition: border-color 0.2s;
}
.input-wrap:focus-within {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(228,121,17,0.12);
}

.input-icon {
  color: var(--text-3);
  flex-shrink: 0;
}

.input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-1);
  outline: none;
  min-width: 0;
}
.input-wrap input::placeholder { color: var(--text-3); }

.input-wrap button {
  flex-shrink: 0;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.input-wrap button:hover { background: var(--amber-dark); }
.input-wrap button:active { transform: scale(0.98); }
.input-wrap button:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

.error-msg {
  margin-top: 0.75rem;
  font-size: 13px;
  color: var(--red);
  text-align: left;
}

/* Demo chips */
.demo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.demo-label {
  font-size: 13px;
  color: var(--text-3);
}
.demo-chip {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.demo-chip:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
  box-shadow: var(--shadow-sm);
}

/* ---------- Output Section ---------- */
.output-section {
  padding: 2rem 0 4rem;
  min-height: 300px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-3);
}
.empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  color: var(--text-3);
}
.empty-title { font-size: 16px; font-weight: 500; color: var(--text-2); margin-bottom: 0.4rem; }
.empty-sub { font-size: 14px; }

/* Loading state */
.loading-state {
  text-align: center;
  padding: 4rem 2rem;
}
.loading-ring {
  display: inline-block;
  width: 44px; height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-bottom: 1.25rem;
}
.loading-text { font-size: 16px; font-weight: 500; color: var(--text-1); margin-bottom: 0.3rem; }
.loading-sub { font-size: 14px; color: var(--text-3); }

@keyframes spin { to { transform: rotate(360deg); } }

/* Product Card */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
  .product-card { grid-template-columns: 1fr; }
}

/* Image column */
.card-image-col {
  background: #F5F4F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  min-height: 320px;
  border-right: 1px solid var(--border);
}
@media (max-width: 680px) {
  .card-image-col { border-right: none; border-bottom: 1px solid var(--border); min-height: 240px; }
}

.image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-wrap img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.image-wrap img:hover { transform: scale(1.03); }

.prime-badge {
  position: absolute;
  top: -8px; left: 0;
  background: #0F2F3E;
  color: #79B9D5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.image-meta {
  margin-top: 1rem;
  text-align: center;
}
.avail-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-bg);
  padding: 4px 12px;
  border-radius: 99px;
}

/* Body column */
.card-body-col {
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.6rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-1);
  margin-bottom: 1rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.stars { color: #D97706; font-size: 15px; letter-spacing: 1px; }
.rating-val { font-size: 14px; font-weight: 500; color: var(--text-1); }
.review-count { font-size: 13px; color: var(--text-3); }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.price-current {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
}
.price-original {
  font-size: 15px;
  color: var(--text-3);
  text-decoration: line-through;
}
.savings-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-bg);
  padding: 3px 10px;
  border-radius: 99px;
}

.product-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  flex: 1;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 1.5rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 5px;
  flex-shrink: 0;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 12px rgba(228,121,17,0.3);
}
.cta-btn:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(228,121,17,0.35);
}
.cta-btn:active { transform: translateY(0); }

.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.copy-btn:hover {
  background: var(--bg);
  color: var(--text-1);
}
.copy-btn.copied {
  color: var(--green);
  border-color: #86EFAC;
  background: var(--green-bg);
}

.affiliate-micro {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-3);
}

/* Reset row */
.reset-row {
  text-align: center;
  margin-top: 1.5rem;
}
.reset-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.reset-btn:hover { background: var(--surface); color: var(--text-1); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.disclosure-box {
  background: var(--amber-light);
  border: 1px solid #FFCC80;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.disclosure-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}
.disclosure-box p {
  font-size: 13px;
  color: #7A4A00;
  line-height: 1.7;
}

.tnc-details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.tnc-details summary {
  padding: 1rem 1.25rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.tnc-details summary::-webkit-details-marker { display: none; }
.tnc-details summary::after {
  content: '▸';
  font-size: 11px;
  transition: transform 0.2s;
  color: var(--text-3);
}
.tnc-details[open] summary::after { transform: rotate(90deg); }
.tnc-details summary:hover { background: var(--bg); color: var(--text-1); }

.tnc-body {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
}
.tnc-body ul {
  margin: 1rem 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tnc-body li {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-3);
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .hero { padding: 3.5rem 0 2.5rem; }
  .hero-sub { font-size: 15px; }
  .input-wrap { flex-wrap: wrap; }
  .input-wrap button { width: 100%; justify-content: center; }
  .card-body-col { padding: 1.25rem; }
  .product-title { font-size: 17px; }
  .price-current { font-size: 22px; }
}

/* Header Navigation */
.header-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--amber);
}

/* Static Pages */
.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
}
.page-content {
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--text-2);
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-1);
  margin: 2rem 0 1rem;
}
.page-content p {
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.input-wrap textarea {
  width: 100%; border: none; background: transparent; font-family: var(--font-body); font-size: 14px; color: var(--text-1); outline: none; resize: vertical; padding: 14px;
}

/* Articles Section */
.articles-section {
  padding: 2rem 0 6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 3rem;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}
.article-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.article-card:hover .article-img img {
  transform: scale(1.05);
}
.article-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.article-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-1);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.article-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* FREETICLE HEADER */
.f-header { background: white; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.f-top { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 5%; max-width: 1400px; margin: 0 auto; }

.f-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #333; }
.f-logo-icon { fill: var(--amber); width: 44px; height: 44px; }
.f-logo-text-wrap { display: flex; flex-direction: column; }
.f-logo-text { font-size: 26px; font-weight: 400; font-family: var(--font-display); line-height: 1; color: #111; letter-spacing: -1px; }
.f-logo-sub { font-size: 8px; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

.f-search { flex: 1; max-width: 450px; display: flex; align-items: center; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 0.75rem 1rem; margin: 0 2rem; box-shadow: inset 0 2px 4px rgba(0,0,0,0.01); }
.f-search input { border: none; background: transparent; width: 100%; outline: none; font-size: 15px; margin-left: 12px; color: #333; font-family: inherit; }
.f-search input::placeholder { color: #aaa; }

.f-actions { display: flex; align-items: center; gap: 12px; }
.f-globe { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #eee; display: flex; align-items: center; justify-content: center; color: #666; background: #fafafa; }

.f-subnav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 1.25rem 2rem; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; }
.f-subnav a { color: #444; font-weight: 600; font-size: 16px; padding: 10px 20px; border-radius: 99px; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: all 0.2s ease; }
.f-subnav a:hover { color: var(--amber); background-color: #fafafa; }

/* ---------- Latest Products Showcase ---------- */
.latest-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .latest-showcase {
    grid-template-columns: 1fr;
  }
}

.showcase-main {
  display: flex;
  flex-direction: column;
}

.main-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #9333EA;
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 12px;
  font-weight: 700;
  border-radius: 99px;
  z-index: 10;
}

.main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.main-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.main-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.main-btn {
  margin-top: auto;
  align-self: flex-start;
  background: #9333EA;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}
.main-btn:hover { opacity: 0.9; }

.showcase-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.side-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.side-img-box {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  border-radius: var(--radius-sm);
}

.side-img-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.side-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.side-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.side-btn {
  align-self: flex-start;
  background: #9333EA;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.side-btn:hover { opacity: 0.9; }

/* Share Buttons & Highlight */
.btn-group {
  display: flex;
  gap: 12px;
  margin-top: auto;
  align-items: center;
}

.share-btn {
  background: transparent;
  color: #444;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}
.share-btn:hover { background: #f0f0f0; color: #111; }

.side-btn-group {
  display: flex;
  gap: 8px;
  margin-top: auto;
  align-items: center;
}

.side-share-btn {
  background: transparent;
  color: #444;
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}
.side-share-btn:hover { background: #f0f0f0; color: #111; }

.highlight-card {
  animation: highlightPulse 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes highlightPulse {
  0% { box-shadow: 0 0 0 0px rgba(147, 51, 234, 0.7); border-color: #9333EA; transform: scale(1.02); }
  50% { box-shadow: 0 0 0 12px rgba(147, 51, 234, 0); border-color: #9333EA; transform: scale(1); }
  100% { box-shadow: var(--shadow-sm); border-color: var(--border); }
}


@media (max-width: 1024px) {
  .f-search { display: none; }
  .f-top { gap: 1rem; }
}
}
    /* ========== ZESTLOO X FREETICLE DESIGN OVERRIDES ========== */
    body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #ffffff; margin: 0; padding: 0; }
    
    /* FREETICLE HEADER */
    .f-header { background: white; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
    .f-top { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 5%; max-width: 1400px; margin: 0 auto; }
    
    .f-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #333; }
    .f-logo-icon { fill: #8A3B7D; width: 44px; height: 44px; }
    .f-logo-text-wrap { display: flex; flex-direction: column; }
    .f-logo-text { font-size: 26px; font-weight: 400; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; color: #111; letter-spacing: -1px; }
    .f-logo-sub { font-size: 8px; font-weight: 700; color: #8A3B7D; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

    .f-search { flex: 1; max-width: 450px; display: flex; align-items: center; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 0.75rem 1rem; margin: 0 2rem; box-shadow: inset 0 2px 4px rgba(0,0,0,0.01); }
    .f-search input { border: none; background: transparent; width: 100%; outline: none; font-size: 15px; margin-left: 12px; color: #333; font-family: inherit; }
    .f-search input::placeholder { color: #aaa; }

    .f-actions { display: flex; align-items: center; gap: 12px; }
    .f-globe { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #eee; display: flex; align-items: center; justify-content: center; color: #666; background: #fafafa; }
    .btn-partner { background: #8A3B7D; color: white; padding: 10px 20px; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.2s; }
    .btn-partner:hover { background: #733068; }
    .btn-login { border: 1px solid #8A3B7D; color: #8A3B7D; padding: 10px 24px; border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.2s; }
    .btn-login:hover { background: #fdf5fc; }

    /* FREETICLE SUBNAV */
    .f-subnav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 1.25rem 2rem; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; }
    .f-subnav a { color: #444; font-weight: 600; font-size: 16px; padding: 10px 20px; border-radius: 99px; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: all 0.2s ease; }
    .f-subnav a:hover { color: #8A3B7D; background-color: #FDF5FC; }

    /* FREETICLE HERO */
    .f-hero { position: relative; padding: 6rem 5% 8rem 5%; background: #ffffff; overflow: hidden; display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; gap: 4rem; }
    .f-hero-blob-1 { position: absolute; top: -10%; left: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(138,59,125,0.15) 0%, transparent 60%); z-index: 0; }
    .f-hero-blob-2 { position: absolute; top: 10%; right: -10%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(138,59,125,0.1) 0%, transparent 65%); z-index: 0; }
    
    .f-hero-content { flex: 1.1; z-index: 2; position: relative; }
    .f-badge { display:inline-flex; align-items:center; gap:8px; background: #8A3B7D; color: white; padding: 8px 16px; border-radius: 99px; font-size: 13px; font-weight: 600; margin-bottom: 2rem; box-shadow: 0 8px 16px rgba(138,59,125,0.2); }
    .f-title { font-size: 5rem; font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -1.5px; }
    .t-purple { color: #8A3B7D; }
    .t-slate { color: #5B6A7F; }
    .f-desc { font-size: 1.15rem; color: #555; line-height: 1.6; max-width: 500px; font-weight: 500; }
    
    .f-hero-affiliate-box {
      background: #ffffff;
      border: 1px solid #d1b4cd;
      border-radius: 8px;
      padding: 16px;
      margin-top: 1.5rem;
      max-width: 520px;
      font-size: 13.5px;
      color: #333;
      line-height: 1.6;
      box-shadow: 0 10px 30px rgba(138,59,125,0.08); /* slight purple glow */
      position: relative;
      z-index: 5;
    }
    .f-hero-affiliate-box strong { color: #8A3B7D; font-weight: 700; }

    .f-hero-cards { flex: 0.9; position: relative; z-index: 2; display: flex; flex-direction: column; gap: 1.5rem; }
    .f-card { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(250,245,252,0.95)); border: 2px solid rgba(138,59,125,0.15); border-radius: 24px; padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; box-shadow: 0 24px 48px -12px rgba(138,59,125,0.1); backdrop-filter: blur(10px); }
    .f-card-icon { background: #8A3B7D; width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; box-shadow: 0 10px 20px rgba(138,59,125,0.2); }
    .f-card-content h3 { color: #3A4C62; font-weight: 800; font-size: 1.25rem; margin-bottom: 8px; margin-top: 0; }
    .f-card-content p { color: #666; font-size: 0.95rem; line-height: 1.5; margin: 0; }

    /* Floating Outline Icons */
    .f-float-cart { position: absolute; right: 8%; top: 20%; width: 80px; opacity: 0.15; color: #8A3B7D; }
    .f-float-bag { position: absolute; right: 22%; top: 52%; width: 64px; opacity: 0.15; color: #8A3B7D; }
    .f-float-box { position: absolute; right: 2%; bottom: 10%; width: 56px; opacity: 0.15; color: #8A3B7D; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .f-hero { flex-direction: column; text-align: center; gap: 3rem; padding-top: 4rem; }
      .f-desc { margin: 0 auto; }
      .f-float-cart, .f-float-bag, .f-float-box { display: none; }
      .f-search { display: none; }
      .f-top { gap: 1rem; }
      .f-title { font-size: 3.5rem; }
    }

    /* PREMIUM DYNAMIC OVERRIDES */
    .premium-product-container { max-width: 1000px; margin: 4rem auto; padding: 0 1.5rem; animation: entryFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
    .premium-card { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); border-radius: 32px; box-shadow: 0 24px 64px -12px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.6); padding: 3rem; overflow: hidden; position: relative; }
    .premium-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at top left, rgba(138,59,125,0.1), transparent 40%), radial-gradient(circle at bottom right, rgba(138,59,125,0.05), transparent 40%); z-index: -1; pointer-events: none; }
    .premium-image-box { border-radius: 20px; background: #ffffff; padding: 2rem; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 12px 32px -8px rgba(0,0,0,0.06); transition: transform 0.4s ease; }
    .premium-image-box:hover { transform: translateY(-4px) scale(1.02); }
    .premium-image-box img { max-width: 100%; max-height: 400px; object-fit: contain; mix-blend-mode: multiply; }
    .premium-content { display: flex; flex-direction: column; justify-content: center; }
    .exclusive-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #8A3B7D; background: #FDF5FC; padding: 6px 14px; border-radius: 99px; margin-bottom: 1.5rem; width: max-content; }
    .premium-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; line-height: 1.1; color: #111827; margin-bottom: 1.25rem; }
    .premium-desc { font-size: 17px; color: #4B5563; line-height: 1.6; margin-bottom: 3rem; }
    .premium-cta { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; background: #8A3B7D; color: white; font-weight: 700; font-size: 1.1rem; padding: 1.25rem 2rem; border-radius: 16px; text-decoration: none; box-shadow: 0 12px 24px rgba(138,59,125,0.3); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
    .premium-cta:hover { transform: translateY(-4px); box-shadow: 0 20px 32px rgba(138,59,125,0.4); background: #733068; }

    @keyframes entryFadeUp { 0% { opacity: 0; transform: translateY(40px) scale(0.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }

    /* ZESTLOO PREMIUM FOOTER */
    .f-dark-footer {
      background-color: #231020; /* Deep rich purple to match #8A3B7D brand */
      color: #dfcfdc;
      font-family: 'Plus Jakarta Sans', sans-serif;
      padding: 4.5rem 5% 2.5rem;
      border-top: 1px solid #43223d;
      margin-top: 4rem;
    }

    .f-footer-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .f-footer-brand {
      max-width: 480px;
    }

    .f-footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 2rem;
      text-decoration: none;
    }

    .f-footer-logo svg {
      width: 44px;
      height: 44px;
      fill: #ffffff;
    }

    .f-footer-logo-text-wrap {
      display: flex;
      flex-direction: column;
    }

    .f-footer-logo-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      font-weight: 400;
      line-height: 1;
      color: #ffffff;
      letter-spacing: -0.5px;
    }

    .f-footer-logo-sub {
      font-size: 9px;
      font-weight: 600;
      color: #d1b4cd;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .f-footer-desc {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: #dfcfdc;
    }

    .f-footer-affiliate {
      font-size: 13px;
      line-height: 1.6;
      color: #bfa3bd;
    }
    .f-footer-affiliate strong {
      color: #ffffff;
      font-weight: 600;
    }

    .f-footer-col h4 {
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .f-footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .f-footer-col a {
      color: #dfcfdc;
      text-decoration: none;
      font-size: 15px;
      transition: color 0.2s;
    }
    .f-footer-col a:hover {
      color: #ffffff;
    }

    .f-footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 14px;
      color: #bfa3bd;
    }

    @media (max-width: 900px) {
      .f-footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }
  </style>
