/* ─── Beads n Chain Co. — Brand Stylesheet ────────────── */
/* Mobile-first, warm jewelry aesthetic                     */

:root {
  --coral: #E8808B;
  --coral-light: #F0A0A8;
  --coral-dark: #D06A74;
  --gray-warm: #9A9A9E;
  --gray-warm-light: #B8B8BC;
  --cream: #FDF9F9;
  --cream-dark: #F5EDED;
  --text: #2D2926;
  --text-light: #666;
  --text-muted: #999;
  --white: #fff;
  --border: #E8DEDE;
  --success: #2E7D32;
  --error: #C62828;
  --sale: #C62828;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline:hover { background: var(--coral); color: var(--white); }
.btn-block { width: 100%; }

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-nav a:hover { color: var(--coral); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-link {
  position: relative;
  color: var(--text);
  display: flex;
  align-items: center;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(rgba(45,41,38,0.65), rgba(26,22,18,0.75)), url(/images/hero-backsplash.jpg) center/cover no-repeat;
  color: var(--white);
  padding: 120px 0 140px;
  text-align: center;
  position: relative;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--coral); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ─── SECTIONS ────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── CATEGORIES ──────────────────────────────────── */
.categories-section {
  padding: 80px 0;
  background: var(--white);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}
.category-card:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.category-icon { font-size: 28px; }
.category-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── PRODUCT GRID ────────────────────────────────── */
.featured-section { padding: 80px 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge.sold-out { background: var(--text); color: var(--white); }
.badge.sale { background: var(--sale); color: var(--white); }

.product-info { padding: 16px; }
.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}
.product-category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.product-price { display: flex; align-items: center; gap: 8px; }
.price-current {
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
}
.price-compare {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 14px;
}

/* ─── CATALOG ─────────────────────────────────────── */
.catalog-section { padding: 40px 0 80px; }
.page-title {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 24px;
}
.page-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { margin: 0 6px; }
.breadcrumb .current { color: var(--text); }

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.filter-pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.2s;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-size: 14px;
  color: var(--text);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-link {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-light);
  transition: all 0.2s;
}
.page-link:hover, .page-link.active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

/* ─── PRODUCT DETAIL ──────────────────────────────── */
.product-detail { padding: 40px 0 80px; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
}
.product-gallery .main-image {
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-dark);
  aspect-ratio: 1;
}
.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbnail-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.thumb-btn {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
}
.thumb-btn.active, .thumb-btn:hover { border-color: var(--coral); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

.product-title {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 12px;
}
.product-rating {
  color: var(--coral);
  font-size: 16px;
  margin-bottom: 16px;
}
.product-rating span { color: var(--text-muted); font-size: 14px; margin-left: 8px; }
.price-large { font-size: 28px; }
.product-price-detail { margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.product-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.product-description p { margin-bottom: 12px; }
.product-materials {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tag {
  padding: 4px 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-muted);
}
.product-stock { margin-bottom: 20px; font-size: 14px; }
.stock-ok { color: var(--success); }
.stock-low { color: var(--coral-dark); font-weight: 600; }
.stock-out { color: var(--error); }

.add-to-cart-form { display: flex; gap: 12px; align-items: center; }
.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
}
.qty-btn:hover { background: var(--cream-dark); }
#qty-input {
  width: 48px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 16px;
  background: var(--white);
}
.btn-add-to-cart { flex: 1; }

/* ─── REVIEWS ─────────────────────────────────────── */
.reviews-section {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  margin-bottom: 60px;
}
.reviews-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 24px;
}
.review-card {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
}
.review-stars { color: var(--coral); font-size: 16px; }
.review-date { color: var(--text-muted); font-size: 13px; }
.review-title { font-size: 15px; margin-bottom: 4px; }
.review-body { color: var(--text-light); font-size: 14px; line-height: 1.6; }
.no-reviews { color: var(--text-muted); font-style: italic; margin-bottom: 24px; }

.review-form { margin-top: 24px; max-width: 600px; }
.review-form h3 { font-family: var(--font-display); margin-bottom: 16px; }
.review-form input, .review-form textarea, .review-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body);
  margin-bottom: 12px;
  background: var(--white);
}
.review-form textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.star-rating-input {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 14px;
}
.star-rating-input input { display: none; }
.star-rating-input label {
  cursor: pointer;
  font-size: 24px;
  color: var(--border);
  transition: color 0.1s;
}
.star-rating-input input:checked ~ label { color: var(--border); }
.star-rating-input label:hover, .star-rating-input label:hover ~ label,
.star-rating-input input:checked + label { color: var(--coral); }

/* ─── ABOUT ───────────────────────────────────────── */
.about-page { padding: 40px 0 80px; }
.about-content { max-width: 700px; margin: 0 auto 60px; }
.about-lead {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text);
}
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--coral);
}
.value-card p { font-size: 14px; color: var(--text-light); }

.about-cta {
  text-align: center;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.about-cta h2 { font-family: var(--font-display); margin-bottom: 12px; }
.about-cta p { color: var(--text-light); margin-bottom: 20px; }

.about-teaser {
  padding: 80px 0;
  background: linear-gradient(rgba(255,255,255,0.92), rgba(253,249,249,0.92)), url(/images/about-hands.jpg) center/cover no-repeat;
}
.about-teaser h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 16px;
}
.about-teaser p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
}

/* ─── CART ─────────────────────────────────────────── */
.cart-page { padding: 40px 0 80px; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}
@media (max-width: 768px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 15px; margin-bottom: 4px; }
.cart-item-info h4 a { color: var(--text); }
.cart-item-info h4 a:hover { color: var(--coral); }
.cart-item-price { font-size: 14px; color: var(--text-muted); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  cursor: pointer;
  font-size: 14px;
}
.cart-item-total { font-weight: 600; min-width: 70px; text-align: right; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
}
.cart-item-remove:hover { color: var(--error); }

.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.cart-summary h3 {
  font-family: var(--font-display);
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
}
.summary-total {
  font-weight: 700;
  font-size: 18px;
  border-top: 2px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}
.summary-note {
  font-size: 13px;
  color: var(--coral-dark);
  text-align: center;
  padding: 8px 0;
}
.cart-secure {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── CUSTOM ORDER FORM ───────────────────────────── */
.custom-order-page { padding: 40px 0 80px; }
.custom-order-form {
  max-width: 600px;
  margin-top: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-help { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ─── NEWSLETTER ──────────────────────────────────── */
.newsletter-cta {
  padding: 60px 0;
  background: linear-gradient(rgba(45,41,38,0.88), rgba(26,22,18,0.92)), url(/images/pattern-tile.jpg) center/cover;
  color: var(--white);
}
.newsletter-cta h2 { font-family: var(--font-display); margin-bottom: 12px; }
.newsletter-cta p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
}
.newsletter-form-hero { margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  padding: 12px 24px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: #2D2926;
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--coral);
  font-size: 20px;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 14px; }
.footer-links h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: rgba(255,255,255,0.5);
}
.footer-links a:hover { color: var(--coral); }
.footer-newsletter h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-newsletter p { font-size: 14px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ─── RELATED PRODUCTS ────────────────────────────── */
.related-products {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.related-products h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 24px;
}

/* ─── SUCCESS PAGE ────────────────────────────────── */
.success-page { padding: 80px 0; text-align: center; }

/* ─── HERO LOGO & BRANDING ────────────────────────── */
.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  animation: fadeInDown 0.8s ease-out;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--coral-light);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.btn-hero {
  padding: 14px 36px;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 0.95; transform: translateY(0); }
}

/* ─── ABOUT TEASER LOGO ──────────────────────────── */
.about-teaser-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.about-teaser-logo {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  opacity: 0.15;
}
@media (max-width: 768px) {
  .about-teaser-inner { flex-direction: column; text-align: center; }
  .about-teaser-logo { width: 120px; height: 120px; }
}

/* ─── NEWSLETTER LOGO ────────────────────────────── */
.newsletter-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

/* ─── ABOUT PAGE LOGO ────────────────────────────── */
.about-hero {
  text-align: center;
  margin-bottom: 40px;
}
.about-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
}

/* ─── FOOTER BRAND LOGO ──────────────────────────── */
.footer-brand-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* ─── HEADER BRAND TEXT ──────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}
.logo-text .accent { color: var(--coral); }
@media (max-width: 600px) {
  .logo-text { display: none; }
}

/* ─── CHAT WIDGET ────────────────────────────────── */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,128,139,0.4);
  z-index: 1000;
  transition: transform 0.2s, background 0.2s;
}
.chat-fab:hover { background: var(--coral-dark); transform: scale(1.05); }
.chat-fab.active { transform: scale(0.9); }

.chat-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; }

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--coral);
  color: var(--white);
}
.chat-header-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}
.chat-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  max-height: 320px;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
  word-wrap: break-word;
}
.chat-bubble.assistant {
  background: var(--cream-dark);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  background: var(--coral);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 10px;
}
.chat-chip {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--cream);
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.15s;
  min-height: 32px;
}
.chat-chip:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  min-height: 48px;
}
.chat-input:focus { outline: none; border-color: var(--coral); }
.chat-send {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.chat-send:hover { background: var(--coral-dark); }

/* Mobile: fullscreen chat */
@media (max-width: 480px) {
  .chat-panel {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .chat-messages { max-height: none; flex: 1; }
  .chat-fab { bottom: 16px; right: 16px; }
}

/* Mobile touch targets */
@media (max-width: 1024px) {
  .filter-pill { min-height: 48px; display: flex; align-items: center; }
  .cart-item-qty button { width: 36px; height: 36px; }
  .qty-btn { width: 48px; height: 48px; }
}

@media (max-width: 375px) {
  .container { padding: 0 12px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .footer-inner { gap: 24px; }
}
Content-Length: 0

