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

:root {
  --ivory: #f7f3ee;
  --ivory-dark: #ece4da;
  --dusty-rose: #d4a59a;
  --dusty-rose-light: #e8ccc4;
  --gold: #b8956e;
  --gold-light: #d4b896;
  --gold-dark: #8a6e4e;
  --charcoal: #1c1c1c;
  --text: #3a3a3a;
  --text-muted: #8a8a8a;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.05);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.1);
  --transition: 0.35s cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

h1, h2, h3 {
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* TOP BAR */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}

.top-bar span { display: inline-block; }
.top-bar .sep { margin: 0 16px; opacity: 0.3; }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,243,238,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.logo span { color: var(--gold); font-weight: 300; }

.nav { display: flex; align-items: center; }

.nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-actions a {
  color: var(--charcoal);
  font-size: 17px;
  position: relative;
  opacity: 0.7;
  transition: var(--transition);
}

.header-actions a:hover { opacity: 1; }

.cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  width: 17px;
  height: 17px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 6px 16px 6px 6px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,110,0.3);
}

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

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-bg {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--dusty-rose-light), var(--ivory-dark) 70%);
  position: relative;
}

.hero-visual-bg::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.hero-image-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  animation: float 6s ease-in-out infinite;
}

.hero-float-1 { top: 15%; right: 5%; animation-delay: 0s; }
.hero-float-2 { bottom: 20%; left: 5%; animation-delay: 2s; }

.hero-float i { color: var(--gold); font-size: 14px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* MARQUEE STRIP */
.marquee-strip {
  background: var(--charcoal);
  color: rgba(255,255,255,0.9);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-strip-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION */
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.section-header {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.section-header h2 { max-width: 500px; }

.section-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}

.section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.section-link i { transition: transform 0.3s ease; }
.section-link:hover i { transform: translateX(4px); }

/* PRODUCTS */
.products { background: var(--white); padding-top: 48px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover { z-index: 2; }

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--ivory);
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--charcoal);
  color: var(--white);
  z-index: 2;
}

.product-tag.gold { background: var(--gold); }
.product-tag.sage { background: #8a9e86; }

.product-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: var(--transition);
  color: var(--charcoal);
  font-size: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  z-index: 3;
}

.product-wishlist:hover { background: var(--dusty-rose); color: var(--white); }

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.product-category {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--charcoal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  font-size: 12px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-rating span { color: var(--text-muted); font-size: 12px; }

.product-price {
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: 6px;
}

.product-add {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  margin-top: 12px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.product-add:hover { background: var(--gold-dark); color: var(--white); }

.product-add.btn-primary { background: var(--charcoal); }
.product-add.btn-primary:hover { background: var(--gold); }

/* COLLECTIONS PREVIEW */
.collections-preview {
  background: var(--ivory);
}

.collection-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.collection-strip-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 0.8;
  cursor: pointer;
}

.collection-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-strip-card:hover img { transform: scale(1.05); }

.collection-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.collection-strip-overlay h3 {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}

.collection-strip-overlay span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* STORY (About preview) */
.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.story-image-frame {
  position: absolute;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius);
  z-index: -1;
}

.story-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.story-badge strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
}

.story-badge span {
  font-size: 11px;
  opacity: 0.7;
}

.story h2 { margin-bottom: 20px; }

.story > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.story-signature {
  font-family: serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-top: 24px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--ivory);
}

.testimonial-marquee {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 16px 0;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: scroll-testimonials 30s linear infinite;
}

@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  min-width: 340px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dusty-rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-dark);
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* NEWSLETTER */
.newsletter {
  background: var(--white);
  padding: 80px 0;
}

.newsletter-box {
  background: var(--charcoal);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,110,0.08) 0%, transparent 70%);
}

.newsletter-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,154,0.06) 0%, transparent 70%);
}

.newsletter-box h2 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.newsletter-box p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  font-size: 14px;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.newsletter-form .btn { flex-shrink: 0; }

/* FOOTER */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 20px; max-width: 300px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,149,110,0.08);
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
}

.footer-payment { display: flex; gap: 10px; font-size: 18px; color: rgba(255,255,255,0.15); }

/* PAGE BANNER */
.page-banner {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-banner h1 { margin-bottom: 8px; }
.page-banner p { color: var(--text-muted); font-size: 16px; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

/* FILTERS */
.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* COLLECTION DETAIL */
.collection-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.collection-block:nth-child(even) .collection-block-image { order: 1; }

.collection-block-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.collection-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-block:hover .collection-block-image img { transform: scale(1.03); }

.collection-block-content {
  padding: 48px;
}

.collection-block-content h3 {
  margin-bottom: 8px;
}

.collection-block-content .count {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.collection-block-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.collection-block-content .btn { margin-top: 16px; }

/* ABOUT PAGE */
.about-extended .story-grid { gap: 60px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  padding: 40px 32px;
  background: var(--ivory);
  border-radius: var(--radius);
  transition: var(--transition);
}

.value-card:hover { background: var(--white); box-shadow: var(--shadow); }

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--dusty-rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--ivory-dark);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold-dark);
  font-weight: 400;
}

.team-card h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-card span {
  font-size: 12px;
  color: var(--text-muted);
}

/* CONTACT PAGE */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-row {
  display: flex;
  gap: 16px;
}

.contact-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-row h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact-row p {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  margin-bottom: 16px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  margin-top: 48px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* PRODUCT DETAIL */
.product-detail {
  padding-top: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-gallery {
  position: sticky;
  top: 100px;
}

.detail-main-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--ivory);
}

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

.detail-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.detail-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
  border: 2px solid transparent;
  background: var(--ivory);
}

.detail-thumb.active,
.detail-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

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

.detail-info .product-category {
  margin-bottom: 8px;
  display: block;
}

.detail-info h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--gold);
}

.detail-rating span {
  color: var(--text-muted);
}

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.detail-price {
  font-size: 32px;
  font-weight: 500;
  color: var(--charcoal);
}

.detail-price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.detail-description {
  margin-bottom: 28px;
}

.detail-description p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.detail-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.detail-features li i {
  color: var(--gold);
  font-size: 12px;
  width: 20px;
  text-align: center;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  overflow: hidden;
}

.detail-qty button {
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
  font-family: inherit;
}

.detail-qty button:hover {
  background: var(--ivory);
}

.detail-qty span {
  width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.detail-actions .btn {
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.detail-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.04);
  font-size: 13px;
  color: var(--text-muted);
}

.detail-meta strong {
  color: var(--text);
  font-weight: 500;
}

.related-products {
  margin-top: 80px;
}

.related-products h2 {
  margin-bottom: 32px;
}

/* SCROLL TOP */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-visual-bg { width: 380px; height: 380px; }
  .hero-image-ring { width: 280px; height: 280px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-strip { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 48px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-block { grid-template-columns: 1fr; }
  .collection-block:nth-child(even) .collection-block-image { order: 0; }
  .collection-block-content { padding: 32px; }
  .contact-block { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .mobile-btn { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 28px 28px;
    box-shadow: 4px 0 40px rgba(0,0,0,0.08);
    transition: left 0.35s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav.open { left: 0; }
  .nav ul { flex-direction: column; gap: 20px; }
  .nav a { font-size: 15px; }

  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  .hero-visual { order: -1; }
  .hero-visual-bg { width: 280px; height: 280px; }
  .hero-image-ring { width: 200px; height: 200px; }
  .hero-float { display: none; }

  .hero p { max-width: 100%; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .product-info { padding: 16px; }
  .product-info h3 { font-size: 14px; }
  .product-price { font-size: 17px; }
  .product-wishlist { opacity: 1; transform: none; }
  .product-category { font-size: 10px; }

  .section-header { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
  .section-header p { max-width: 100%; }

  .collection-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .collection-strip-overlay h3 { font-size: 15px; }

  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-image-frame { top: -16px; left: -16px; width: calc(100% + 32px); height: calc(100% + 32px); }
  .story-badge { right: -8px; bottom: -8px; padding: 12px 20px; }
  .story-badge strong { font-size: 22px; }

  .newsletter-box { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .contact-form .form-row { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 56px 0 32px; }
  .page-banner h1 { font-size: clamp(24px, 6vw, 36px); }
  .page-banner p { font-size: 14px; }
  .breadcrumb { font-size: 11px; }
  .filters { gap: 6px; }
  .filter-btn { font-size: 11px; padding: 8px 16px; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-gallery { position: static; }
  .detail-price { font-size: 26px; }
  .detail-actions { flex-direction: column; }
  .detail-actions .btn { min-width: auto; }
  .detail-thumb { width: 56px; height: 56px; }
  .related-products { margin-top: 48px; }
  .cart-empty i { font-size: 36px; }
  .cart-empty p { font-size: 14px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero { min-height: auto; }
  .hero-visual-bg { width: 220px; height: 220px; }
  .hero-image-ring { width: 160px; height: 160px; }
  .collection-strip { grid-template-columns: 1fr 1fr; }
  .hero-float { display: none; }
  .testimonial-card { min-width: 280px; }
  .filters { gap: 6px; }
  .filter-btn { font-size: 11px; padding: 8px 14px; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-visual-bg { width: 180px; height: 180px; }
  .hero-image-ring { width: 130px; height: 130px; }
  .collection-strip { grid-template-columns: 1fr; }
  .filter-btn { font-size: 10px; padding: 6px 12px; }
}

/* ==================== SEARCH DROPDOWN ==================== */
.search-dropdown {
  position: fixed;
  z-index: 9999;
  width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.search-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-dropdown-inner {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  overflow: hidden;
}

.search-dropdown-inner input {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
  outline: none;
  font-family: inherit;
  color: var(--charcoal);
  background: none;
}

.search-dropdown-inner input::placeholder {
  color: var(--text-muted);
}

.search-dropdown-results {
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-dropdown-results::-webkit-scrollbar { width: 4px; }
.search-dropdown-results::-webkit-scrollbar-thumb { background: var(--ivory-dark); border-radius: 4px; }

.search-empty {
  text-align: center;
  padding: 32px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.search-item:hover {
  background: var(--ivory);
}

.search-item img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--ivory);
  flex-shrink: 0;
}

.search-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.search-item strong mark {
  background: var(--gold-light);
  color: var(--charcoal);
  padding: 0 2px;
}

.search-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==================== CART & WISHLIST PAGES ==================== */
.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty i {
  font-size: 48px;
  color: var(--ivory-dark);
  margin-bottom: 20px;
}

.cart-empty h2 {
  margin-bottom: 8px;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.cart-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
}

.cart-row-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ivory);
}

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

.cart-row-info {
  flex: 1;
  min-width: 0;
}

.cart-row-info h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-row-price {
  font-size: 13px;
  color: var(--text-muted);
}

.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  padding: 4px;
  flex-shrink: 0;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  border-radius: 50%;
  transition: var(--transition);
  font-family: inherit;
}

.cart-qty-btn:hover {
  background: var(--ivory);
}

.cart-row-qty span {
  width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.cart-row-total {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

.cart-row-remove {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-row-remove:hover {
  background: rgba(0,0,0,0.04);
  color: var(--charcoal);
}

.cart-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.cart-total {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}

.cart-total strong {
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .cart-row { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .cart-row-img { width: 60px; height: 60px; }
  .cart-row-info { width: calc(100% - 80px); }
  .cart-row-info h3 { font-size: 14px; }
  .cart-row-total { min-width: auto; }
  .cart-footer { align-items: stretch; }
  .cart-total { justify-content: space-between; }
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-content {
  position: relative;
  z-index: 1;
  width: 90vw;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding: 0 24px;
  z-index: 1;
  max-width: 90vw;
  overflow-x: auto;
}

.lightbox-thumbs::-webkit-scrollbar { height: 3px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 4px; }

.lightbox-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.lightbox-thumb.active,
.lightbox-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

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

/* ==================== TOAST ==================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==================== RESPONSIVE LIGHTBOX ==================== */
@media (max-width: 768px) {
  .lightbox-content { width: 94vw; height: 55vh; }
  .lightbox-content img { width: 100%; height: 100%; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 15px; }
  .lightbox-thumb { width: 48px; height: 48px; }
  .search-dropdown { width: 280px; }
}
