/* ============================================
   TwiceCharmed Storefront Styles
   Design tokens from landing page
   ============================================ */

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

:root {
  --blush: #F5E6E0;
  --rose: #D4918B;
  --deep-rose: #B06A64;
  --champagne: #F9F3EE;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --charcoal: #2C2C2C;
  --soft-gray: #6B6B6B;
  --cream: #FFFBF7;
  --white: #FFFFFF;
  --border: rgba(201, 169, 110, 0.15);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* ============================================
   NAV
   ============================================ */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(255, 251, 247, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--soft-gray);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-coming-soon {
  background: var(--soft-gray);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-coming-soon:hover {
  transform: none;
  box-shadow: none;
}

/* ============================================
   SHOP HERO
   ============================================ */

.shop-hero {
  padding: 8rem 2rem 3rem;
  background: linear-gradient(175deg, var(--cream) 0%, var(--blush) 60%, var(--champagne) 100%);
  text-align: center;
}

.shop-hero-inner {
  max-width: 650px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.shop-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.shop-hero p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--soft-gray);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   FILTER BAR
   ============================================ */

.shop-content,
.bundles-content {
  padding: 2rem 2rem 5rem;
  background: var(--white);
}

.shop-container {
  max-width: 1100px;
  margin: 0 auto;
}

.filter-bar {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--soft-gray);
  background: var(--champagne);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.filter-tab:hover {
  color: var(--charcoal);
  border-color: var(--border);
}

.filter-tab.active {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--gold);
}

.filter-types {
  display: flex;
  gap: 0.5rem;
}

.type-tab {
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--soft-gray);
  transition: all 0.2s;
}

.type-tab:hover { color: var(--charcoal); }
.type-tab.active {
  color: var(--deep-rose);
  font-weight: 600;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

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

.product-grid-small {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.product-image-icon {
  font-size: 3rem;
  opacity: 0.3;
  color: var(--white);
}

/* Occasion-specific gradients for product placeholders */
.occasion-flower-girl { background: linear-gradient(135deg, #F5E6E0, #D4918B); }
.occasion-holiday { background: linear-gradient(135deg, #D4918B, #C9A96E); }
.occasion-communion { background: linear-gradient(135deg, #F9F3EE, #E8D5B0); }
.occasion-birthday { background: linear-gradient(135deg, #E8D0F0, #D4918B); }
.occasion-recital { background: linear-gradient(135deg, #E8D5B0, #B06A64); }

.badge {
  position: absolute;
  top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.badge-excellent {
  right: 0.75rem;
  background: rgba(255,255,255,0.85);
  color: #2E7D32;
}

.badge-very-good {
  right: 0.75rem;
  background: rgba(255,255,255,0.85);
  color: #1565C0;
}

.badge-good {
  right: 0.75rem;
  background: rgba(255,255,255,0.85);
  color: var(--gold);
}

.badge-jewelry {
  left: 0.75rem;
  background: rgba(201, 169, 110, 0.9);
  color: var(--white);
}

.product-info {
  padding: 1.25rem;
}

.product-occasion {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.65rem;
  color: var(--charcoal);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.compare-price {
  font-size: 0.9rem;
  color: var(--soft-gray);
  text-decoration: line-through;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */

.product-detail {
  padding: 6rem 2rem 3rem;
  background: var(--white);
}

.product-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--soft-gray);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--soft-gray);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--charcoal); }

.breadcrumb-sep { color: var(--gold-light); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 5rem;
}

.product-main-image {
  border-radius: var(--radius-lg);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-icon {
  font-size: 5rem;
  opacity: 0.25;
  color: var(--white);
}

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.thumbnail:hover { border-color: var(--gold); }

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

.product-occasion-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.price-large {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
}

.compare-price-large {
  font-size: 1.2rem;
  color: var(--soft-gray);
  text-decoration: line-through;
}

.savings-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}

/* Condition info */
.condition-info {
  padding: 1rem 1.25rem;
  background: var(--champagne);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.condition-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.condition-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.condition-excellent { background: #2E7D32; }
.condition-very-good { background: #1565C0; }
.condition-good { background: var(--gold); }

.condition-notes {
  font-size: 0.85rem;
  color: var(--soft-gray);
  line-height: 1.5;
}

/* Sizes */
.size-section {
  margin-bottom: 1.5rem;
}

.size-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
}

.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-chip {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.size-chip:hover {
  border-color: var(--charcoal);
}

.size-chip.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.size-validation-msg {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.4rem;
  display: none;
}

.size-validation-msg.visible {
  display: block;
}

.btn-buy.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-description {
  margin-bottom: 1.5rem;
}

.product-description p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--soft-gray);
}

.product-actions {
  margin-bottom: 1rem;
}

.btn-buy {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.product-note {
  text-align: center;
}

.product-note p {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
}

/* Bundle full description */
.bundle-full-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--soft-gray);
  margin-bottom: 1.5rem;
}

/* Bundle includes */
.bundle-includes {
  margin-bottom: 2rem;
}

.includes-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.includes-item:hover {
  background: var(--champagne);
}

.includes-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

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

.includes-icon {
  font-size: 1.2rem;
  opacity: 0.3;
  color: var(--white);
}

.includes-info {
  flex: 1;
}

.includes-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.15rem;
}

.includes-price {
  font-size: 0.8rem;
  color: var(--soft-gray);
}

/* ============================================
   BUNDLE GRID
   ============================================ */

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

.bundle-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bundle-image {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.bundle-icon {
  font-size: 3rem;
  opacity: 0.25;
  color: var(--white);
}

.bundle-savings-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: rgba(46, 125, 50, 0.9);
  color: var(--white);
}

.bundle-info {
  padding: 1.5rem;
}

.bundle-occasion {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.bundle-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.bundle-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--soft-gray);
  margin-bottom: 0.75rem;
}

.bundle-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.bundle-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-rose);
}

/* ============================================
   RELATED SECTION
   ============================================ */

.related-section {
  padding: 3rem 2rem 5rem;
  background: var(--champagne);
}

.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

/* ============================================
   SUCCESS PAGE
   ============================================ */

.success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  background: linear-gradient(175deg, var(--cream) 0%, var(--blush) 60%, var(--champagne) 100%);
}

.success-inner {
  text-align: center;
  max-width: 500px;
}

.success-icon {
  font-size: 3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.success-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.success-inner p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--soft-gray);
  margin-bottom: 0.5rem;
}

.success-sub {
  font-style: italic;
  color: var(--gold) !important;
  margin-bottom: 2rem !important;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.empty-state p {
  font-size: 0.95rem;
  color: var(--soft-gray);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 3rem 2rem;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.footer-logo span { color: var(--gold-light); }

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .product-grid-small {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .product-gallery {
    position: static;
  }

  .product-main-image {
    height: 350px;
  }
}

@media (max-width: 600px) {
  nav { padding: 0.875rem 1.25rem; }

  .nav-logo { font-size: 1.2rem; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 251, 247, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }

  .shop-hero {
    padding: 6.5rem 1.5rem 2rem;
  }

  .shop-hero h1 {
    font-size: 1.8rem;
  }

  .shop-content,
  .bundles-content {
    padding: 1.5rem 1rem 3rem;
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .filter-tabs::-webkit-scrollbar { display: none; }

  .filter-tab { white-space: nowrap; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-image { height: 200px; }

  .product-info { padding: 0.875rem; }

  .product-name { font-size: 0.95rem; }

  .product-detail { padding: 5rem 1.25rem 2rem; }

  .product-main-image { height: 300px; }

  .product-title { font-size: 1.5rem; }

  .related-section { padding: 2rem 1rem 3rem; }

  .product-grid-small {
    grid-template-columns: repeat(2, 1fr);
  }

  .bundle-info { padding: 1rem; }
  .bundle-name { font-size: 1.1rem; }
  .bundle-image { height: 180px; }
}

/* ============================================
   COMPLETE THE LOOK (JEWELRY CROSS-SELL)
   ============================================ */

.complete-look-section {
  padding: 4rem 2rem 5rem;
  background: linear-gradient(175deg, var(--champagne) 0%, var(--blush) 100%);
}

.complete-look-inner {
  max-width: 960px;
  margin: 0 auto;
}

.complete-look-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.complete-look-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.complete-look-header p {
  font-size: 0.95rem;
  color: rgba(44, 44, 44, 0.6);
  margin: 0;
}

.complete-look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.complete-look-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.complete-look-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.complete-look-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.complete-look-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.complete-look-info {
  padding: 1rem 1.125rem 1.25rem;
}

.complete-look-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.375rem;
  line-height: 1.3;
}

.complete-look-price {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--gold);
}

.complete-look-footer {
  text-align: center;
  margin-top: 0.5rem;
}

.complete-look-footer a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.complete-look-footer a:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .complete-look-section { padding: 2.5rem 1rem 3rem; }
  .complete-look-grid { grid-template-columns: 1fr; gap: 1rem; }
  .complete-look-image { height: 160px; }
}

/* ============================================
   FOOTER EMAIL SIGNUP STRIP
   ============================================ */

.footer-signup {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a2a2a 100%);
  padding: 4rem 2rem;
}

.footer-signup-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.footer-signup-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.footer-signup-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.footer-signup-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  padding: 0.875rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.footer-signup-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-signup-form input[type="email"]:focus {
  border-color: var(--gold);
}

.btn-subscribe {
  padding: 0.875rem 2rem;
  border-radius: 100px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: #b8953a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

.footer-signup-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.footer-signup-msg.success { color: var(--gold-light); }
.footer-signup-msg.error   { color: #f08080; }

@media (max-width: 600px) {
  .footer-signup-form { flex-direction: column; align-items: stretch; }
  .footer-signup-form input[type="email"] { max-width: 100%; }
  .footer-signup-text h3 { font-size: 1.4rem; }
}

/* ============================================
   TIMED POPUP
   ============================================ */

.tc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: tcFadeIn 0.35s ease;
}

@keyframes tcFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.tc-popup {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem 2rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: tcSlideUp 0.35s ease;
}

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

.tc-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  color: var(--soft-gray);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.tc-popup-close:hover { background: rgba(0,0,0,0.12); }

.tc-popup-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.tc-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.tc-popup-sub {
  font-size: 0.95rem;
  color: var(--soft-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tc-popup-field {
  margin-bottom: 1rem;
}

.tc-popup-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.tc-popup-field select,
.tc-popup-field input[type="email"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(44, 44, 44, 0.15);
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.tc-popup-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.tc-popup-field select:focus,
.tc-popup-field input[type="email"]:focus {
  border-color: var(--gold);
}

.tc-popup-submit {
  width: 100%;
  padding: 0.95rem;
  border-radius: 100px;
  border: none;
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.25s ease;
}

.tc-popup-submit:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.tc-popup-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

.tc-popup-msg.success {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  border: 1px solid var(--gold-light);
}

.tc-popup-msg.error {
  background: rgba(176, 106, 100, 0.1);
  color: var(--deep-rose);
  border: 1px solid rgba(176, 106, 100, 0.25);
}

@media (max-width: 500px) {
  .tc-popup { padding: 2rem 1.5rem 1.75rem; }
  .tc-popup-title { font-size: 1.3rem; }
}

/* ============================================
   SHARE BUTTONS
   ============================================ */

.share-buttons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto 0.5rem;
}

.share-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-right: 0.2rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.share-btn:active {
  transform: translateY(0);
  opacity: 0.85;
}

/* Pinterest — primary, rose accent */
.share-pinterest {
  background: var(--rose);
  color: #fff;
  border-color: var(--deep-rose);
}

.share-pinterest:hover {
  background: var(--deep-rose);
}

/* Facebook — secondary, champagne outline */
.share-facebook {
  background: var(--champagne);
  color: var(--charcoal);
  border-color: var(--gold-light);
}

.share-facebook:hover {
  background: var(--blush);
  border-color: var(--gold);
}

/* Copy Link — ghost */
.share-copy {
  background: transparent;
  color: var(--soft-gray);
  border-color: rgba(107, 107, 107, 0.3);
  font-family: inherit;
}

.share-copy:hover {
  background: var(--champagne);
  color: var(--charcoal);
  border-color: var(--gold-light);
}

/* Hero section used by guide + blog pages — sits below fixed nav (~60px) */
.guide-hero {
  background: linear-gradient(135deg, #fdf6f0 0%, #fef0f5 100%);
  padding: 72px 24px 56px;
  text-align: center;
  border-bottom: 1px solid #f0e6ef;
}
.guide-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.guide-hero h1 {
  scroll-margin-top: 65px;
}

/* Guide pages: center & add breathing room */
.guide-hero + .share-buttons {
  justify-content: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* Mobile: full-width stacked */
@media (max-width: 600px) {
  .guide-hero {
    padding: 72px 16px 40px;
  }

  .share-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.5rem;
  }

  .share-label {
    text-align: center;
    margin-right: 0;
  }

  .share-btn {
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
}
