/*
Theme Name: JCBC - Just Cheap Business Cards
Theme URI: https://justcheapbusinesscards.com
Author: JCBC
Author URI: https://justcheapbusinesscards.com
Description: Custom WordPress theme for Just Cheap Business Cards. Premium business card printing with WooCommerce integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: proprietary
Text Domain: jcbc
*/


:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", sans-serif;

  --brand-pink: #e23b72;
  --brand-navy: #0f172a;
  --brand-amber: #f59e0b;
  --brand-green: #10b981;
  --brand-purple: #8b5cf6;
  --brand-cyan: #06b6d4;
  --brand-bg: #f8fafc;
  
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --radius-sm: 0.5rem;    /* 8px — chips, small tags */
  --radius-md: 0.75rem;   /* 12px — inputs, buttons, option cards */
  --radius-lg: 1rem;      /* 16px — feature cards, panels */
  --radius-xl: 1.5rem;    /* 24px — hero images, CTA banners */
  --radius-full: 9999px;  /* pills, badges, avatars */

  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--brand-bg);
  color: var(--brand-navy);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.5;
}

::selection {
  background-color: var(--brand-pink);
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* Spacing */
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-10 { padding-bottom: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  padding: 1.25rem 1.5rem;
  background-color: rgba(248, 250, 252, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  height: 2.125rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(12%);
  transition: opacity 0.2s;
  position: relative;
  top: 2px;
}

.header-logo-img:hover {
  opacity: 0.7;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-navy);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.nav-link:hover { color: var(--brand-pink); }

.btn-nav {
  background-color: var(--brand-pink);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(226, 59, 114, 0.25);
}

.btn-nav:hover {
  background-color: #c9305f;
  box-shadow: 0 4px 12px rgba(226, 59, 114, 0.35);
  transform: translateY(-1px);
}

.btn-nav:active { transform: translateY(0); }

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: var(--shadow-xl);
  padding: 0 1.5rem;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-100);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease, gap 0.35s ease;
  pointer-events: none;
}

.mobile-menu.active {
  max-height: 500px;
  padding: 1.5rem;
  gap: 1rem;
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

/* Hero */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(226, 59, 114, 0.1);
  color: var(--brand-pink);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}

.hero-title span { color: var(--brand-pink); }

.hero-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.625;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-btns { flex-direction: row; }
}

.btn-primary {
  background-color: var(--brand-pink);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(226, 59, 114, 0.3);
}

.btn-secondary {
  background-color: white;
  border: 2px solid var(--gray-200);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--brand-navy); }

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  z-index: 10;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transform: rotate(2deg);
  transition: transform 0.7s;
}

.hero-image-wrapper:hover { transform: rotate(0); }

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
}

.hero-blob-1 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(226, 59, 114, 0.2);
  border-radius: 9999px;
  filter: blur(48px);
  z-index: -10;
}

.hero-blob-2 {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  width: 12rem;
  height: 12rem;
  background-color: rgba(6, 182, 212, 0.2);
  border-radius: 9999px;
  filter: blur(48px);
  z-index: -10;
}

.hero-floating-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  z-index: 20;
  display: none;
}

@media (min-width: 640px) {
  .hero-floating-badge { display: block; }
}

/* Trust Bar */
.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background-color: white;
}

.trust-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .trust-logos { gap: 5rem; }
}

.trust-logos:hover {
  opacity: 1;
  filter: grayscale(0);
}

.trust-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

.trust-sub {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.trust-sub strong {
  color: var(--brand-navy);
  font-weight: 700;
  font-family: var(--font-display);
}

.trust-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--gray-400);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 0.625rem;
}

/* Features */
.features-section { padding: 5rem 0; background-color: white; }
.features-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item { display: flex; flex-direction: column; gap: 1rem; }
.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--gray-50);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title { font-size: 1.375rem; font-weight: 700; }
.feature-desc { color: var(--gray-600); line-height: 1.625; }

/* Products */
.products-section { padding: 6rem 0; background-color: var(--brand-bg); }
.section-header { display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 4rem; gap: 1.5rem; }
@media (min-width: 768px) { .section-header { flex-direction: row; align-items: flex-end; } }

.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }

.section-desc { color: var(--gray-600); max-width: 36rem; }

.view-all-btn {
  color: var(--brand-pink);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.view-all-btn:hover { gap: 0.75rem; }

.product-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

@media (hover: hover) {
  .product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
  }
  .product-card:hover .product-img { transform: scale(1.05); }
}

.product-img-container { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }

.price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.product-info { padding: 2rem; }
.product-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.product-desc { color: var(--gray-600); font-size: 0.875rem; margin-bottom: 1.5rem; line-height: 1.6; }

.btn-product {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-product-pink { background-color: var(--brand-pink); color: white; }
.btn-product-navy { background-color: var(--brand-navy); color: white; }
.btn-product-purple { background-color: var(--brand-purple); color: white; }

.btn-product:hover { opacity: 0.9; }

/* Brighton Section */
.brighton-section { padding: 6rem 0; background-color: white; overflow: hidden; }
.brighton-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .brighton-grid { grid-template-columns: 1fr 1fr; } }

.brighton-image-container { position: relative; }
.brighton-image-wrapper { border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-2xl); }

.brighton-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--brand-pink);
  color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
}

.brighton-badge-title { font-size: 2.25rem; font-family: var(--font-display); font-weight: 700; }
.brighton-badge-text { font-size: 0.875rem; font-weight: 700; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.1em; }

.brighton-content h2 { font-size: 2.5rem; margin-bottom: 2rem; line-height: 1.2; }
@media (min-width: 768px) { .brighton-content h2 { font-size: 3rem; } }
.brighton-content h2 span { color: var(--brand-pink); }

.brighton-content p { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.625; }

.brighton-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.brighton-list-item { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.brighton-list-icon {
  width: 1.25rem;
  height: 1.25rem;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--brand-green);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brighton-link {
  color: var(--brand-navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border-bottom: 2px solid var(--brand-pink);
  padding-bottom: 0.25rem;
  width: fit-content;
}

.brighton-link:hover { gap: 0.75rem; }

/* CTA */
.cta-section { padding: 6rem 1.5rem; }
.cta-container {
  background-color: var(--brand-navy);
  border-radius: 3rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .cta-container { padding: 5rem; } }

.cta-bg-blob-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background-color: var(--brand-pink);
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.1;
}

.cta-bg-blob-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background-color: var(--brand-cyan);
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.1;
}

.cta-content { position: relative; z-index: 10; }
.cta-title { color: white; font-size: 2.5rem; margin-bottom: 2rem; line-height: 1.2; }
@media (min-width: 768px) { .cta-title { font-size: 3.75rem; } }

.cta-desc { color: var(--gray-400); font-size: 1.125rem; margin-bottom: 3rem; max-width: 40rem; margin-left: auto; margin-right: auto; }

.cta-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }

.btn-cta-primary {
  background-color: var(--brand-pink);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.2s;
}

.btn-cta-primary:hover { box-shadow: 0 25px 50px -12px rgba(226, 59, 114, 0.4); }

.btn-cta-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(12px);
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.2s;
}

.btn-cta-secondary:hover { background-color: rgba(255, 255, 255, 0.2); }

/* Footer */
footer { background-color: var(--brand-navy); color: white; padding-top: 5rem; padding-bottom: 2.5rem; }
.footer-grid { display: grid; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo { display: block; margin-bottom: 1.5rem; }
.footer-logo-img { height: 2.25rem; width: auto; display: block; filter: brightness(0) invert(1); }

.footer-desc { color: var(--gray-400); max-width: 24rem; margin-bottom: 2rem; line-height: 1.625; }

.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.social-link:hover { background-color: var(--brand-pink); }

.footer-links-title { font-weight: 700; margin-bottom: 1.5rem; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; color: var(--gray-400); font-size: 0.875rem; }
.footer-links-list a:hover { color: white; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-legal { display: flex; gap: 1.5rem; }

/* Animations */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.7s ease-out; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s ease-out; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s ease-out; }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.7s ease-out; }

.revealed { opacity: 1; transform: translate(0) scale(1); }

.floating { animation: floating 4s ease-in-out infinite; }
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Misc */
.hidden { display: none; }
.sm-block { display: none; }
@media (min-width: 640px) { .sm-block { display: block; } }

.user-avatars { display: flex; margin-right: -0.5rem; }
.user-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid white;
  margin-left: -0.5rem;
}
.user-avatar:first-child { margin-left: 0; }

/* ============================================
   Product Page
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  margin-top: 4.5rem;
  background-color: white;
  border-bottom: 1px solid var(--gray-100);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.breadcrumb__list a {
  color: var(--gray-500);
  transition: color 0.2s;
}

.breadcrumb__list a:hover { color: var(--brand-pink); }

.breadcrumb__list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--gray-400);
}

.breadcrumb__list li[aria-current] {
  color: var(--brand-navy);
  font-weight: 600;
}

/* Product Page Layout */
.product-page {
  padding: 3rem 0 4rem;
  background-color: var(--brand-bg);
}

.product-page__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .product-page__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Gallery */
.product-gallery {}

.product-gallery__main {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
}

.product-gallery__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.product-gallery__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--brand-pink);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
}

.product-thumb {
  flex: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  padding: 0;
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-thumb.active {
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 2px rgba(226, 59, 114, 0.2);
}

.product-thumb:hover:not(.active) {
  border-color: var(--gray-200);
}

/* Product Info */
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .product-info__title { font-size: 2.5rem; }
}

.product-info__desc {
  color: var(--gray-600);
  line-height: 1.625;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.stars { display: flex; gap: 0.125rem; }

.product-info__rating span {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Price Box */
.product-price-box {
  background-color: white;
  border: 1px solid var(--gray-100);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.product-price-box__main {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.025em;
}

.product-price-per {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Options */
.product-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-option__label {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
  color: var(--brand-navy);
}

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

.chip {
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  border: 2px solid var(--gray-200);
  background: white;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--brand-navy);
  font-family: inherit;
}

.chip:hover {
  border-color: var(--brand-pink);
  color: var(--brand-pink);
}

.chip.active {
  background-color: var(--brand-pink);
  border-color: var(--brand-pink);
  color: white;
}

/* Upload Area */
.upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-500);
}

.upload-area:hover {
  border-color: var(--brand-pink);
  background-color: rgba(226, 59, 114, 0.03);
}

/* Trust Signals */
.product-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* Product Sections (stacked) */
.product-section {
  padding: 3.5rem 0;
  background-color: white;
  border-top: 1px solid var(--gray-100);
}

.product-section--alt {
  background-color: var(--brand-bg);
}

.product-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.product-section__desc {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

/* Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--brand-bg);
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
}

.spec-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-pink);
}

.spec-item__value {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--brand-navy);
}

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

/* Template Links */
.template-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.template-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-navy);
  transition: all 0.2s;
}

.template-link:hover {
  border-color: var(--brand-pink);
  color: var(--brand-pink);
}

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

.accordion__item {
  background: var(--brand-bg);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-slow), border-color var(--transition-slow), background-color var(--transition-slow);
}

.accordion__item:hover:not([open]) {
  border-color: var(--gray-200);
  background: var(--white);
}

.accordion__item[open] {
  box-shadow: var(--shadow-sm);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.accordion__header::-webkit-details-marker { display: none; }
.accordion__header::marker { display: none; content: ''; }

.accordion__header svg {
  color: var(--gray-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion__item[open] .accordion__header svg {
  transform: rotate(180deg);
}

.accordion__body {
  padding: 0 1.5rem 1.25rem;
}

.accordion__body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background-color: var(--brand-bg);
  border-top: 1px solid var(--gray-100);
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.reviews-head h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews-score .score-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-pink);
}

.reviews-score .score-info .score-stars {
  color: var(--brand-amber);
  font-size: 1rem;
  letter-spacing: 1px;
}

.reviews-score .score-info .score-sub {
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.review-feat {
  grid-row: span 2;
  background: var(--brand-pink);
  color: #fff;
  border-radius: 0.75rem;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.review-feat::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -70px;
  right: -50px;
}

.review-feat .review-stars {
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  position: relative;
}

.review-feat blockquote {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  flex: 1;
}

.review-feat .review-who {
  position: relative;
  margin-top: 1.5rem;
}

.review-feat .review-who .review-name {
  font-weight: 700;
  font-size: 0.875rem;
}

.review-feat .review-who .review-date {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 2px;
}

.review-sm {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-sm .review-stars {
  color: var(--brand-amber);
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 0.625rem;
}

.review-sm p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--gray-600);
  flex: 1;
}

.review-sm .review-who {
  margin-top: 0.875rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.review-sm .review-who .review-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.review-sm .review-who .review-date {
  font-size: 0.625rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-feat {
    grid-row: span 1;
  }
}

/* Product page responsive */

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

/* ============================================
   Info Pages (about, delivery, design, privacy)
   ============================================ */

.info-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.info-hero__title {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.info-hero__title span { color: var(--brand-pink); }

@media (min-width: 768px) {
  .info-hero__title { font-size: 3.5rem; }
}

.info-hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* Stats Bar */
.stats-bar {
  padding: 2.5rem 0;
  background: white;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-bar__grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-pink);
  letter-spacing: -0.025em;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Info Section */
.info-section {
  padding: 4rem 0;
}

.info-section--alt {
  background: white;
}

.container--narrow {
  margin: 0 auto;
  padding: 0 1.5rem;
}

.info-block {
  margin-bottom: 3rem;
}

.info-block:last-child { margin-bottom: 0; }

.info-block h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.info-block p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.info-block p:last-child { margin-bottom: 0; }

.info-block ul {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.info-block li {
  color: var(--gray-600);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.info-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--brand-pink);
  border-radius: 50%;
}

/* Why Cards */
.why-section {
  padding: 4rem 0;
  background: white;
}

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

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

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

.why-card {
  background: var(--brand-bg);
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
}

.why-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(226, 59, 114, 0.08);
  color: var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* CTA Banner (info pages) */
.cta-banner {
  padding: 4rem 0;
}

.cta-banner__inner {
  background: var(--brand-navy);
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.cta-banner__inner p {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Page */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

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

.contact-form-wrap h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 480px) {
  .form-row--half { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
}

.form-group .required { color: var(--brand-pink); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--brand-navy);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(226, 59, 114, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

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

@media (max-width: 768px) {
  .contact-details { flex-direction: row; flex-wrap: wrap; }
  .contact-card { flex: 1; min-width: 200px; }
}

.contact-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
}

.contact-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(226, 59, 114, 0.08);
  color: var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-card a { color: var(--brand-pink); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

.contact-card__note {
  font-size: 0.75rem !important;
  color: var(--gray-500) !important;
  margin-top: 0.25rem;
}

.contact-card address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Article Page */
.article-hero {
  padding: 6rem 0 2rem;
}

.article-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(226, 59, 114, 0.1);
  color: var(--brand-pink);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.article-hero__title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .article-hero__title { font-size: 3rem; }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.article-meta__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
}

.article-cover {
  padding: 0 0 3rem;
}

.article-cover__placeholder {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 1.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.article-content {
  padding-bottom: 3rem;
}

.article-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.article-content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.article-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0 0 1.25rem 1.5rem;
}

.article-content blockquote {
  border-left: 3px solid var(--brand-pink);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-600);
  background: rgba(226, 59, 114, 0.03);
  border-radius: 0 0.75rem 0.75rem 0;
}

.article-content__lead {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Share Bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 3rem;
}

.share-bar__label {
  font-size: 0.875rem;
  font-weight: 700;
}

.share-bar__buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  background: white;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.share-btn:hover {
  border-color: var(--brand-pink);
  color: var(--brand-pink);
}

/* Author Box */
.author-box {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.author-box__info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.author-box__info p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* Related Articles */
.related {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-100);
}

.related__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.related-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-card:hover { box-shadow: var(--shadow-lg); }

.related-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-pink);
  margin-bottom: 0.5rem;
}

.related-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.related-card__date {
  font-size: 0.75rem;
  color: var(--gray-500);
}
