:root {
  --bg: #f8f2ee;
  --surface: #ffffff;
  --text: #1f1f1f;
  --muted: #626262;
  --primary: #b94f4f;
  --primary-dark: #8d3636;
  --border: #ebdfd8;
  --accent: #d4a574;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--text);
  color: white;
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-content {
  animation: slidePromo 8s linear infinite;
}

@keyframes slidePromo {
  0% { transform: translateX(0); }
  25% { transform: translateX(0); }
  50% { transform: translateX(-100%); }
  75% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* ===== HEADER ===== */
.site-header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 38px;
  z-index: 99;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-image {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.main-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 999px;
}

.main-nav a {
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(185, 79, 79, 0.2);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-hero {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.btn-full {
  width: 100%;
}

.btn-small {
  padding: 0.7rem 1.2rem !important;
  font-size: 0.9rem;
  width: 100%;
  margin-top: auto;
  text-align: center;
  display: inline-block;
}

.btn-large {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

/* ===== HERO SECTION ===== */
.hero-media {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 !important;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 2rem;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.brand-highlight {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

.zoom-on-hover {
  overflow: hidden;
}

.zoom-on-hover img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zoom-on-hover:hover img {
  transform: scale(1.1);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
}

.collection-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #fff8f4 0%, #f8f2ee 100%);
}

.collection-hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.collection-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}

.collection-intro p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.collection-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.collection-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.collection-pill:hover,
.collection-pill.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.collection-hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.collection-hero-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.25rem;
}

.collection-page-section {
  padding-top: 0.5rem;
  padding-bottom: 5rem;
}

.collection-products-shell {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.cards-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-secondary {
  background: white;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  background: var(--bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.category-card {
  position: relative;
  height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
  display: block;
  cursor: pointer;
  group: 'card';
}

.category-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card:hover .category-image-wrapper img {
  transform: scale(1.1) rotate(1deg);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
  transform: translateY(0);
  opacity: 1;
}

.category-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-grid h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-grid p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.about-details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
}

.about-details ul {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.about-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  font-weight: 500;
}

.checkmark {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--bg), white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.testimonial-image {
  margin-bottom: 1.5rem;
}

.testimonial-image img {
  width: 180px;
  height: 250px;
  border-radius: 1rem;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin: 0 auto;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hover Image Effect */
.testimonial-image-hover {
  position: relative;
  width: 180px;
  height: 250px;
  margin: 0 auto 1.5rem;
}

.testimonial-image-hover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
  border: 3px solid var(--primary);
  transition: opacity 0.4s ease;
}

.testimonial-img-before {
  opacity: 1;
}

.testimonial-img-after {
  opacity: 0;
}

.testimonial-hover-card:hover .testimonial-img-before {
  opacity: 0;
}

.testimonial-hover-card:hover .testimonial-img-after {
  opacity: 1;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  background: white;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  display: block;
  cursor: pointer;
  group: 'insta';
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(185, 79, 79, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay svg {
  width: 40px;
  height: 40px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 6rem 0;
}

.cta-card {
  background: white;
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 700;
}

.cta-card p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: white;
  padding: 2rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.footer-brand p {
  margin: 0;
}

.footer-photo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(2) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.2s;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 300;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.social-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
  transition: background 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
  padding: 0.7rem 1.2rem;
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: white;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.product-gallery img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #f7e5db, #eee);
  padding: 1rem;
}

.product-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  padding: 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.1);
}

.product-link {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  flex: 1;
  margin-bottom: 1rem;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-card-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f8ece5, #fdf7f1);
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.04);
}

.product-card .price {
  margin-top: auto;
  font-size: 1.05rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  transition: all 0.3s ease;
}

.back-link:hover {
  transform: translateX(-4px);
}

/* ===== QUANTITY & CART ===== */
.selector-group {
  margin-top: 1.25rem;
}

.selector-group h3 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.option-chip {
  padding: 0.6rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.option-chip--color {
  min-width: 7.5rem;
  justify-content: center;
}

.option-chip.is-active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.option-chip:hover:not(.is-active) {
  border-color: var(--primary);
  color: var(--primary);
}

.color-summary {
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #fcf8f4;
  width: 100%;
  box-sizing: border-box;
}

.color-summary__selected {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--text);
}

.color-summary__options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  row-gap: 0.45rem;
}

.color-summary__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.color-summary__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text);
}

.color-summary__dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.color-summary__chip--muted {
  color: var(--muted);
}

.quantity-selector {
  margin-top: 1.25rem;
}

.quantity-selector h3 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem;
  background: white;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.qty-btn:hover {
  background: var(--bg);
  color: var(--primary);
}

#quantityInput {
  width: 50px;
  height: 32px;
  border: none;
  text-align: center;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
}

#quantityInput::-webkit-outer-spin-button,
#quantityInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ===== CART MODAL ===== */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.cart-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from { background: rgba(0, 0, 0, 0); }
  to { background: rgba(0, 0, 0, 0.5); }
}

.cart-content {
  background: white;
  border-radius: 1.5rem 1.5rem 0 0;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h2 {
  font-size: 1.5rem;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  background: var(--bg);
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 1px solid var(--border);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cart-item-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary);
}

.remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  transition: color 0.2s ease;
  font-weight: 700;
}

.remove-btn:hover {
  color: var(--primary);
}

.cart-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  background: var(--bg);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ===== CHECKOUT MODAL ===== */
.checkout-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.checkout-modal.active {
  display: flex;
}

.checkout-content {
  background: white;
  border-radius: 1.5rem;
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.checkout-content h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s ease;
  font-weight: 700;
}

.close-btn:hover {
  color: var(--text);
}

.checkout-message-section {
  margin-bottom: 1.5rem;
}

.message-label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
  color: var(--text);
}

.message-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.message-box textarea {
  width: 100%;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  background: var(--bg);
  color: var(--text);
}

.message-box textarea:focus {
  outline: none;
  border-color: var(--primary);
}

#copyMessageBtn {
  align-self: flex-start;
}

/* ===== PRODUCT CATALOG ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .collection-hero-content {
    grid-template-columns: 1fr;
  }

  .collection-hero-card img {
    height: 320px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-gallery img {
    max-height: 380px;
  }

  .product-info h1 {
    font-size: 1.4rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.8rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    position: relative;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-image {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-products-shell {
    padding: 1.25rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .main-nav {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .option-list {
    gap: 0.55rem;
  }

  .option-chip--color {
    min-width: 0;
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: center;
  }

  .color-summary {
    padding: 0.8rem 0.9rem;
  }

  .color-summary__chip {
    font-size: 0.8rem;
    padding: 0.32rem 0.6rem;
  }

  .cart-content {
    max-width: 100%;
    border-radius: 1rem 1rem 0 0;
  }

  .checkout-content {
    max-width: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .quantity-controls {
    width: 100%;
    justify-content: space-around;
  }

  .btn-large {
    width: 100%;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .promo-bar {
    font-size: 0.75rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .testimonial-image img {
    width: 140px;
    height: 200px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 0.6rem;
  }

  .brand {
    font-size: 0.9rem;
  }

  .main-nav {
    gap: 0.45rem 0.7rem;
  }

  .option-chip--color {
    flex: 1 1 100%;
  }

  .color-summary__options {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card-body p {
    display: none;
  }

  .hero-content {
    padding: 1rem;
  }

  .main-nav {
    gap: 0.8rem;
  }

  .btn-hero {
    padding: 0.9rem 1.6rem;
    font-size: 0.9rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }
}
