:root {
  --cream: #f7f2ec;
  --beige: #e7ddd2;
  --taupe: #cbb8aa;
  --sand: #b79d91;
  --mocha: #8d7466;
  --deep: #5c473d;
  --espresso: #3e2f29;
  --white: #ffffff;
  --line: rgba(92, 71, 61, 0.16);
  --shadow: 0 20px 60px rgba(62, 47, 41, 0.14);
  --shadow-soft: 0 10px 30px rgba(62, 47, 41, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

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

.top-announcement {
  background: rgba(231, 221, 210, 0.75);
  color: var(--deep);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.04em;
}

.brand-sub {
  font-family: "Cormorant Garamond", serif;
  color: var(--mocha);
  font-size: 0.98rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  color: var(--deep);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  color: var(--deep);
  transition: transform 0.3s ease, letter-spacing 0.3s ease, opacity 0.3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--deep);
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a.hovered {
  transform: translateY(-2px);
  letter-spacing: 0.03em;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.cart-bag {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(231, 221, 210, 0.72);
  color: var(--deep);
  cursor: pointer;
  font-size: 1.1rem;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--deep);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero,
.shop-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    url(images/home.jpg)
    center/cover no-repeat;
  overflow: hidden;
  background-attachment: fixed;
}

.small-hero {
  min-height: 58vh;
}

.hero-overlay,
.royal-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(
    rgba(247, 242, 236, 0.18),
    rgba(231, 221, 210, 0.46)
  );
}

.hero-card {
  position: relative;
  z-index: 1;
  background: rgba(231, 221, 210, 0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 56px 84px;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--mocha);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.hero h1,
.shop-hero h1,
.section h2,
.site-footer h2,
.collection-content h3,
.cart-header h3,
.product-modal-content h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--deep);
}

.hero h1,
.shop-hero h1 {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(4rem, 8vw, 6.8rem);
  font-weight: 400;
  line-height: 0.96;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shop-subtext {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, letter-spacing 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
  letter-spacing: 0.03em;
}

.btn-dark {
  background: var(--deep);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--espresso);
}

.btn-light {
  background: var(--cream);
  color: var(--deep);
  border: 1px solid rgba(92, 71, 61, 0.12);
}

.btn-light:hover {
  background: var(--white);
}

.full-btn {
  width: 100%;
}

.section {
  padding: 84px 28px;
}

.section-head {
  text-align: center;
  margin-bottom: 30px;
}

.section-head h2,
.vision-copy h2,
.royal-panel h2,
.experience-wrap h2,
.footer-brand h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.collections-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.collection-card {
  background: rgba(231, 221, 210, 0.72);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(183, 157, 145, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(62, 47, 41, 0.12);
}

.collection-image {
  min-height: 370px;
  background-size: cover;
  background-position: center;
}

.product-image {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.collection-content {
  padding: 26px;
}

.collection-content h3 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.collection-content p {
  margin: 0 0 14px;
  color: var(--mocha);
}

.text-link {
  font-weight: 600;
  color: var(--deep);
  transition: letter-spacing 0.3s ease;
}

.text-link:hover {
  letter-spacing: 0.03em;
}

.vision-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, #fffaf5, #eaded2);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.vision-image {
  min-height: 560px;
  border-radius: 24px;
  background:
    url(images/vision.jpg)
    center/cover no-repeat;
}

.vision-copy {
  padding: 20px;
}

.vision-copy p:last-child {
  color: var(--mocha);
}

.royal {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    url(images/jugg.jpg)
    center/cover no-repeat;
}

.royal-overlay {
  background: linear-gradient(rgba(62, 47, 41, 0.28), rgba(62, 47, 41, 0.48));
}

.royal-panel {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  padding: 56px 38px;
  border-radius: 30px;
  background: rgba(231, 221, 210, 0.32);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: var(--shadow);
}

.royal-panel p,
.royal-panel h2 {
  color: var(--cream);
}

.experience-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.experience-intro {
  max-width: 700px;
  margin: 0 auto;
  color: var(--mocha);
}

.signup-form {
  margin-top: 30px;
  text-align: left;
  padding: 34px;
  border-radius: 28px;
  background: rgba(231, 221, 210, 0.72);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-soft);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  color: var(--deep);
  font-size: 0.94rem;
}

.field input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(247, 242, 236, 0.95);
  font: inherit;
  color: var(--espresso);
}

.field input:focus {
  outline: none;
  border-color: var(--sand);
  box-shadow: 0 0 0 4px rgba(183, 157, 145, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 24px;
  color: var(--mocha);
}

.form-message {
  min-height: 22px;
  margin-top: 14px;
  color: var(--deep);
}

.site-footer {
  background: rgba(231, 221, 210, 0.82);
  border-top: 1px solid var(--line);
  padding: 42px 28px 26px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--mocha);
}

.copyright {
  max-width: 1320px;
  margin: 18px auto 0;
  color: var(--mocha);
  font-size: 0.92rem;
}

.shop-toolbar {
  max-width: 1320px;
  margin: 0 auto 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  border: 1px solid rgba(92, 71, 61, 0.16);
  background: rgba(231, 221, 210, 0.72);
  color: var(--deep);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.shop-grid {
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 18px;
}

.price-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--deep);
  font-weight: 700;
}

.product-type {
  font-size: 0.88rem;
  color: var(--mocha);
  background: rgba(247, 242, 236, 0.85);
  border: 1px solid rgba(92, 71, 61, 0.12);
  padding: 7px 12px;
  border-radius: 999px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-card.hidden {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.product-modal.show {
  display: block;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(62, 47, 41, 0.35);
  backdrop-filter: blur(4px);
}

.product-modal-card {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 32px));
  margin: 5vh auto 0;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(62, 47, 41, 0.2);
  overflow: hidden;
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(231, 221, 210, 0.9);
  color: var(--deep);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.product-modal-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.product-modal-content {
  padding: 48px 36px;
}

.product-modal-content h3 {
  margin: 0 0 12px;
  font-size: 2.6rem;
}

.modal-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--mocha);
  margin-bottom: 18px;
}

.product-modal-content p {
  color: var(--mocha);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(100%, 390px);
  height: 100vh;
  background: var(--cream);
  box-shadow: -10px 0 30px rgba(62, 47, 41, 0.15);
  z-index: 130;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-panel.open {
  right: 0;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(62, 47, 41, 0.28);
  opacity: 0;
  visibility: hidden;
  z-index: 125;
  transition: 0.3s ease;
}

.cart-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.cart-header,
.cart-footer {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  border-bottom: none;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-cart {
  border: none;
  background: transparent;
  font-size: 2rem;
  color: var(--deep);
  cursor: pointer;
}

.cart-items {
  padding: 18px 20px;
  display: grid;
  gap: 14px;
  overflow: auto;
}

.empty-cart {
  color: var(--mocha);
}

.cart-item {
  background: rgba(231, 221, 210, 0.72);
  border-radius: 18px;
  padding: 14px;
}

.cart-item-name {
  font-weight: 600;
  color: var(--deep);
}

.cart-item-price {
  color: var(--mocha);
  margin: 6px 0 10px;
}

.remove-item {
  border: none;
  background: transparent;
  color: var(--deep);
  cursor: pointer;
  padding: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .collections-grid,
  .vision-wrap {
    grid-template-columns: 1fr;
  }

  .vision-image {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    padding: 16px 18px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 10px;
  }

  .site-nav.show {
    display: flex;
  }

  .hero,
  .shop-hero {
    background-attachment: scroll;
  }

  .hero-card {
    width: min(100%, 560px);
    padding: 38px 24px;
  }

  .section {
    padding: 64px 18px;
  }

  .field-row,
  .footer-inner,
  .product-modal-grid,
  .product-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }

  .signup-form,
  .product-modal-content {
    padding: 24px;
  }

  .product-modal-card {
    margin-top: 3vh;
  }

  .product-modal-image-wrap img {
    min-height: 320px;
  }
}
.product-options {
  margin: 14px 0 18px;
}

.product-options label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.length-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d0c8;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #fff;
  color: #111;
  outline: none;
}

.length-select:focus {
  border-color: #b88a44;
}
.product-options + .product-options {
  margin-top: 10px;
}
.product-options + .product-options {
  margin-top: 10px;
}
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  padding: 14px 14px 0;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.25s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--deep);
  transform: translateY(-2px);
}

.product-main-image {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}

.product-options + .product-options {
  margin-top: 10px;
}