/* === GRACEFULLY SEWN BY DIANE === */

:root {
  --rose: #C4888A;
  --rose-light: #E8C4C5;
  --rose-dark: #9B6163;
  --cream: #FFF8F0;
  --sage: #8FA68A;
  --sage-light: #D4E2D1;
  --charcoal: #3A3A3A;
  --warm-gray: #6B6560;
  --light-gray: #F5F0EB;
  --white: #FFFFFF;
  --gold: #C9A96E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { -webkit-appearance: none; appearance: none; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.3;
}

a { color: var(--rose-dark); text-decoration: none; }
a:hover { color: var(--rose); }

.page { display: none; }
.page.active { display: block; }
.hidden { display: none !important; }

/* === NAV === */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rose-light);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--charcoal);
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: 1px;
}
.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warm-gray);
  margin-top: -2px;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warm-gray);
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--rose-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--charcoal);
  cursor: pointer;
}

/* === HERO === */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85f82e?w=1400&h=800&fit=crop') center/cover no-repeat;
  margin-top: 70px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,136,138,0.7) 0%, rgba(143,166,138,0.5) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 24px;
  max-width: 650px;
}
.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--rose-dark);
}
.btn-secondary {
  background: transparent;
  color: var(--rose-dark);
  border-color: var(--rose);
}
.btn-secondary:hover {
  background: var(--rose);
  color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* === SECTIONS === */
.section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section.narrow { max-width: 750px; }
.section-alt {
  background: var(--light-gray);
  max-width: 100%;
  padding: 80px 24px;
}
.section-alt > * { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.section-subtitle {
  text-align: center;
  color: var(--warm-gray);
  font-size: 17px;
  margin-bottom: 48px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.section-title + .category-grid,
.section-title + .shop-filters,
.section-title + .product-grid,
.section-title + .testimonial-grid { margin-top: 48px; }

/* === CATEGORY CARDS === */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.category-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.category-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.category-card h3 {
  padding: 20px 20px 4px;
  font-size: 22px;
  color: var(--rose-dark);
}
.category-card p {
  padding: 0 20px 20px;
  color: var(--warm-gray);
  font-size: 14px;
}

/* === ABOUT PREVIEW === */
.about-preview {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.about-preview-img { flex-shrink: 0; }
.placeholder-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--rose-dark);
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.placeholder-portrait.large {
  width: 280px;
  height: 280px;
  font-size: 80px;
}
.about-preview-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.about-preview-text p {
  color: var(--warm-gray);
  margin-bottom: 24px;
  font-size: 16px;
}

/* === TESTIMONIALS === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-top: 3px solid var(--rose-light);
}
.testimonial-text {
  font-style: italic;
  font-size: 15px;
  color: var(--warm-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}
.testimonial-author {
  font-weight: 700;
  color: var(--rose-dark);
  font-size: 14px;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--sage-light) 100%);
  max-width: 100%;
  padding: 80px 24px;
  margin: 0;
}
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--warm-gray);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === SHOP / PRODUCT GRID === */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--rose-light);
  border-radius: 30px;
  background: transparent;
  color: var(--warm-gray);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  font-family: 'Lato', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.product-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sage);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-info { padding: 20px; }
.product-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.product-info .product-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rose);
  margin-bottom: 8px;
}
.product-info .product-desc {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 12px;
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--rose-dark);
}
.product-price span {
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-gray);
}

.shop-cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--light-gray);
  border-radius: 12px;
  color: var(--warm-gray);
}
.shop-cta a { font-weight: 700; }

/* === HOW IT WORKS === */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  margin-top: 48px;
}
.step {
  text-align: center;
  padding: 24px;
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.step p {
  color: var(--warm-gray);
  font-size: 14px;
}

/* === CUSTOM ORDER FORM === */
.custom-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--rose-light);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--sage);
}

/* === ABOUT FULL === */
.about-full {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 48px;
}
.about-portrait-lg { flex-shrink: 0; }
.about-story p {
  color: var(--warm-gray);
  margin-bottom: 16px;
  font-size: 16px;
}
.about-story h3 {
  color: var(--rose-dark);
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.contact-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.contact-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.contact-card p {
  color: var(--warm-gray);
  font-size: 15px;
}

.social-links {
  text-align: center;
  margin-top: 48px;
}
.social-links p {
  color: var(--warm-gray);
  margin-bottom: 16px;
}
.social-icons { display: flex; gap: 12px; justify-content: center; }
.social-btn {
  padding: 12px 28px;
  border: 2px solid var(--rose-light);
  border-radius: 30px;
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

/* === FOOTER === */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 60px 24px 40px;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}
.footer-brand .brand-name {
  color: var(--rose-light);
  font-size: 24px;
}
.footer-brand .brand-sub {
  color: rgba(255,255,255,0.4);
}
.footer-tagline {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a:hover { color: var(--rose-light); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* === NAV RIGHT (cart + hamburger) === */
.nav-right { display: flex; align-items: center; gap: 16px; }
.cart-icon {
  position: relative;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
.cart-icon:hover { color: var(--rose-dark); }
.cart-icon.cart-bump { animation: cartBump 0.4s ease; }
@keyframes cartBump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }
.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--rose);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === CART DRAWER === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
}
.cart-drawer {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--cream);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rose-light);
}
.cart-header h3 { font-size: 20px; margin: 0; }
.cart-close {
  background: none; border: none;
  font-size: 28px; cursor: pointer;
  color: var(--warm-gray);
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
  text-align: center;
  color: var(--warm-gray);
  padding: 60px 0;
  font-size: 15px;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rose-light);
  align-items: center;
}
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.cart-item-price { color: var(--rose-dark); font-weight: 700; font-size: 15px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px; margin-top: 4px;
}
.cart-item-qty button {
  width: 26px; height: 26px;
  border: 1px solid var(--rose-light);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}
.cart-item-qty span { font-weight: 700; font-size: 14px; min-width: 16px; text-align: center; }
.cart-item-remove {
  background: none; border: none;
  font-size: 22px; color: var(--warm-gray);
  cursor: pointer;
}
.cart-item-remove:hover { color: var(--rose-dark); }
.cart-footer {
  padding: 20px 24px;
  border-top: 2px solid var(--rose-light);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cart-secure {
  text-align: center;
  font-size: 11px;
  color: var(--warm-gray);
  margin-top: 8px;
}

/* === ADD TO CART BUTTON === */
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.btn-add-cart {
  padding: 8px 16px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
}
.btn-add-cart:hover { background: var(--rose-dark); }

/* === EMAIL SIGNUP BANNER === */
.email-banner {
  background: var(--charcoal);
  padding: 40px 24px;
}
.email-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.email-banner-text h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 4px;
}
.email-banner-text p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.email-form {
  display: flex;
  gap: 8px;
}
.email-form input {
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  width: 260px;
}
.email-form input::placeholder { color: rgba(255,255,255,0.4); }
.email-form input:focus { outline: none; border-color: var(--rose); }
.email-form .btn { padding: 12px 24px; }
.email-success {
  color: var(--sage-light);
  font-weight: 700;
  font-size: 15px;
}

/* === INSTAGRAM GRID === */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.insta-tile {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.insta-tile:hover { opacity: 0.8; }

/* === GIFT CARD === */
.gift-card-showcase {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.gift-card-visual {
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 50%, var(--sage) 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.gift-card-visual::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
}
.gift-card-visual.large {
  width: 400px;
  height: 250px;
}
.gift-card-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}
.gift-card-amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin: 8px 0;
}
.gift-card-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.8;
}
.gift-amounts {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.gift-amt-btn {
  padding: 12px 20px;
  border: 2px solid var(--rose-light);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lato', sans-serif;
}
.gift-amt-btn:hover, .gift-amt-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

/* === GIFT PROMO (homepage) === */
.gift-promo {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.gift-promo-text { flex: 1; }
.gift-promo-text h2 { font-size: 32px; margin-bottom: 16px; }
.gift-promo-text p { color: var(--warm-gray); margin-bottom: 24px; font-size: 16px; }
.gift-promo-card { flex-shrink: 0; }

/* === FORM EXTRAS === */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--warm-gray);
  margin-top: 12px;
  line-height: 1.6;
}

/* === TESTIMONIAL STARS === */
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* === SOCIAL BUTTONS === */
.social-etsy { border-color: #F1641E; color: #D35400; }
.social-etsy:hover { background: #F1641E; border-color: #F1641E; color: var(--white); }
.social-fb { border-color: #4267B2; color: #4267B2; }
.social-fb:hover { background: #4267B2; border-color: #4267B2; color: var(--white); }
.social-ig { border-color: #E1306C; color: #C13584; }
.social-ig:hover { background: #E1306C; border-color: #E1306C; color: var(--white); }

/* === FOOTER SOCIAL === */
.footer-social {
  margin-bottom: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-social a:hover { color: var(--rose-light); }

/* === MOBILE === */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: block; }
  .nav-inner { padding: 12px 16px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 9px; letter-spacing: 2px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--rose-light);
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--light-gray);
  }
  .nav-links a:last-child { border-bottom: none; }

  /* Hero */
  .hero { height: auto; min-height: 75vh; margin-top: 56px; }
  .hero-content { padding: 48px 20px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Sections */
  .section { padding: 40px 16px; }
  .section-alt { padding: 40px 16px; }
  .section-title { font-size: 26px; margin-bottom: 12px; }
  .section-subtitle { font-size: 15px; margin-bottom: 32px; }

  /* Grids go single column */
  .category-grid,
  .testimonial-grid,
  .how-it-works,
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Category cards horizontal on mobile */
  .category-card { display: flex; align-items: center; }
  .category-img { width: 120px; height: 120px; min-height: 120px; flex-shrink: 0; border-radius: 12px 0 0 12px; }
  .category-card h3 { padding: 12px 16px 2px; font-size: 18px; }
  .category-card p { padding: 0 16px 12px; font-size: 13px; }

  /* Products — 2 columns on tablet, tighter */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img { height: 160px; }
  .product-info { padding: 12px; }
  .product-info h3 { font-size: 15px; }
  .product-desc { font-size: 12px; margin-bottom: 8px; }
  .product-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .product-price { font-size: 17px; }
  .product-price span { font-size: 11px; }
  .btn-add-cart { width: 100%; text-align: center; padding: 10px; }

  /* About */
  .about-preview { flex-direction: column; text-align: center; gap: 24px; }
  .placeholder-portrait { width: 140px; height: 140px; font-size: 48px; }
  .about-preview-text h2 { font-size: 26px; }
  .about-full { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .placeholder-portrait.large { width: 180px; height: 180px; font-size: 56px; }
  .about-story p { font-size: 15px; }

  /* Testimonials */
  .testimonial { padding: 20px; }
  .testimonial-text { font-size: 14px; }

  /* Steps */
  .how-it-works { gap: 16px; margin-top: 32px; margin-bottom: 32px; }
  .step { padding: 16px 8px; }
  .step-num { width: 40px; height: 40px; font-size: 18px; }

  /* Forms */
  .custom-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 12px 14px; }
  .btn-lg { padding: 16px 24px; font-size: 14px; }
  .form-note { font-size: 12px; }

  /* Email banner */
  .email-banner { padding: 28px 16px; }
  .email-banner-inner { flex-direction: column; text-align: center; gap: 16px; }
  .email-banner-text h3 { font-size: 18px; }
  .email-banner-text p { font-size: 13px; }
  .email-form { flex-direction: column; align-items: center; width: 100%; }
  .email-form input { width: 100%; max-width: 300px; }
  .email-form .btn { width: 100%; max-width: 300px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .insta-tile { border-radius: 4px; }

  /* Gift cards */
  .gift-card-visual { width: 260px; height: 160px; }
  .gift-card-visual.large { width: 280px; height: 175px; }
  .gift-card-brand { font-size: 18px; }
  .gift-card-amount { font-size: 32px; }
  .gift-card-sub { font-size: 10px; }
  .gift-amounts { gap: 6px; }
  .gift-amt-btn { padding: 10px 14px; font-size: 14px; }
  .gift-promo { flex-direction: column; text-align: center; gap: 24px; }
  .gift-promo-text h2 { font-size: 26px; }

  /* Contact */
  .contact-card { padding: 24px 16px; }
  .contact-icon { font-size: 28px; margin-bottom: 12px; }
  .social-icons { flex-direction: column; align-items: center; }
  .social-btn { width: 200px; text-align: center; }

  /* CTA */
  .cta-section { padding: 48px 16px; }
  .cta-section h2 { font-size: 26px; }
  .cta-section p { font-size: 15px; }
  .cta-section .btn { width: 100%; max-width: 300px; }

  /* Cart drawer full width */
  .cart-drawer { width: 100%; max-width: 100vw; right: -100%; }
  .cart-header { padding: 16px; }
  .cart-items { padding: 12px 16px; }
  .cart-footer { padding: 16px; }
  .cart-item-img { width: 50px; height: 50px; }

  /* Footer */
  footer { padding: 40px 16px 32px; }
  .footer-links { gap: 16px; }
  .footer-links a { font-size: 12px; }
}

@media (max-width: 380px) {
  /* Small phones */
  .product-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
  .section-title { font-size: 22px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-card-visual, .gift-card-visual.large { width: 240px; height: 150px; }
  .gift-amt-btn { padding: 8px 10px; font-size: 13px; }
  .nav-inner { padding: 10px 12px; }
  .brand-name { font-size: 16px; }
}
