/* ============================================================
   DREAM MAILBOXE — Main Stylesheet
   Exact clone of dreammailboxes.com
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --black: #000000;
  --dark: #1a1a1a;
  --dark2: #111111;
  --grey-light: #f5f5f5;
  --grey-mid: #e5e5e5;
  --grey-text: #6b6b6b;
  --gold: #c8a96e;
  --gold-dark: #a88a52;
  --red: #cc0000;
  --green: #2d6a4f;
  --announcement-bg: #1a1a1a;
  --nav-bg: #ffffff;
  --nav-height: 70px;
  --announce-height: 44px;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius: 3px;
  --transition: 0.25s ease;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --max-width: 1400px;
  --section-pad: 80px 40px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: calc(var(--nav-height) + var(--announce-height));
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--announcement-bg);
  color: var(--white);
  height: var(--announce-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.announcement-bar__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 80px;
}
.announcement-bar__item {
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.announcement-bar__item a { color: var(--white); text-decoration: underline; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--announce-height);
  left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.nav-links__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-links__item > a,
.nav-links__item > button {
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark);
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links__item > a:hover,
.nav-links__item > button:hover,
.nav-links__item > a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-links__item--deals > a { color: var(--red); font-weight: 700; }
.nav-caret {
  font-size: 10px;
  margin-left: 2px;
  transition: transform var(--transition);
}
.nav-links__item:hover .nav-caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-links__item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 13.5px;
  color: var(--dark);
  border-bottom: 1px solid var(--grey-light);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: var(--grey-light); color: var(--gold); }
.nav-dropdown a:last-child { border-bottom: none; }

/* Nav Icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background var(--transition);
  font-size: 18px;
  color: var(--dark);
  position: relative;
}
.nav-icon-btn:hover { background: var(--grey-light); }
.nav-cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Mobile Nav */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--white);
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-mid);
}
.mobile-nav__close {
  font-size: 28px;
  color: var(--dark);
  line-height: 1;
}
.mobile-nav__links { padding: 16px 0; }
.mobile-nav__links a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--grey-light);
  color: var(--dark);
}
.mobile-nav__links a.deals { color: var(--red); font-weight: 700; }
.mobile-nav__sub {
  background: var(--grey-light);
  padding: 8px 0;
}
.mobile-nav__sub a {
  padding: 10px 36px;
  font-size: 14px;
  font-weight: 400;
  border-bottom: none;
}

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; position: relative; }
.hero-slide img {
  width: 100%;
  height: 88vh;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}
.hero-slide__content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  max-width: 520px;
  color: var(--white);
}
.hero-slide__tag {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}
.hero-slide__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-slide__sub {
  font-size: 16px;
  margin-bottom: 28px;
  opacity: 0.9;
  line-height: 1.5;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.3);
}
.hero-arrows {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  z-index: 10;
}
.hero-arrow {
  pointer-events: all;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,0.4); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn-dark:hover { background: var(--dark2); border-color: var(--dark2); }
.btn-white {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-full { width: 100%; }

/* ── SECTION HEADINGS ─────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 10px;
}
.section-head__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}
.section-head__sub {
  font-size: 16px;
  color: var(--grey-text);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-head--left { text-align: left; }
.section-head--left .section-head__sub { margin-left: 0; }

/* ── COLLECTIONS CAROUSEL ─────────────────────────────────── */
.collections-section {
  padding: var(--section-pad);
  background: var(--white);
  overflow: hidden;
}
.collections-carousel {
  position: relative;
  overflow: hidden;
}
.collections-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.collections-track::-webkit-scrollbar { display: none; }
.collection-card {
  flex: 0 0 260px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.collection-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.collection-card__body {
  padding: 16px;
}
.collection-card__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.collection-card__desc {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.5;
}
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--dark);
}
.carousel-btn:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }

/* ── PRODUCT GRID ─────────────────────────────────────────── */
.products-section {
  padding: var(--section-pad);
  background: var(--grey-light);
}
.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.products-header__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
}
.products-header__count {
  font-size: 14px;
  color: var(--grey-text);
}
.sort-select {
  padding: 10px 16px;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--white);
  color: var(--dark);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-hover); }
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--grey-light);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  position: absolute;
  inset: 0;
}
.product-card__img.hover-img {
  opacity: 0;
}
.product-card:hover .product-card__img.main-img { opacity: 0; }
.product-card:hover .product-card__img.hover-img { opacity: 1; }
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}
.product-card__badge--sold { background: var(--grey-text); }
.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__prices {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.product-card__price--sale { color: var(--red); }
.product-card__compare {
  font-size: 13px;
  color: var(--grey-text);
  text-decoration: line-through;
}
.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.page-btn.active, .page-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.page-info {
  font-size: 14px;
  color: var(--grey-text);
  padding: 0 12px;
}
.view-all-wrap { text-align: center; margin-top: 36px; }

/* ── BANNER SECTION ───────────────────────────────────────── */
.banner-section {
  position: relative;
  overflow: hidden;
}
.banner-section img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.55);
}
.banner-section__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 40px;
}
.banner-section__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
}
.banner-section__sub {
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 560px;
  opacity: 0.92;
  line-height: 1.6;
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad);
  background: var(--white);
}
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-wrap p {
  color: var(--grey-text);
  margin-bottom: 28px;
  font-size: 15px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  color: var(--dark);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--dark); }
.form-row textarea { height: 120px; resize: vertical; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 28px; }
.info-block {
  padding: 24px;
  border: 1px solid var(--grey-mid);
  border-radius: 6px;
}
.info-block__icon { font-size: 28px; margin-bottom: 12px; }
.info-block__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-block__text {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.6;
}
.info-block__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: underline;
}
/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--grey-mid); }
.faq-item:first-child { border-top: 1px solid var(--grey-mid); }
.faq-toggle {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer p {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.75);
  padding: 64px 40px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-newsletter h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-newsletter p { font-size: 14px; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 20px;
  background: var(--white);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--grey-mid); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; }
.footer-policies { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-policies a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-policies a:hover { color: var(--white); }

/* ── COLLECTION PAGE ──────────────────────────────────────── */
.collection-hero {
  background: var(--dark);
  color: var(--white);
  padding: 60px 40px;
  text-align: center;
}
.collection-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; margin-bottom: 10px; }
.collection-hero p { font-size: 16px; opacity: 0.8; max-width: 600px; margin: 0 auto; }
.collection-filters {
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: sticky;
  top: calc(var(--nav-height) + var(--announce-height));
  z-index: 50;
}
.filter-count { font-size: 14px; color: var(--grey-text); }
.filter-right { display: flex; align-items: center; gap: 14px; }
.collection-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 40px 80px;
}

/* ── PRODUCT PAGE ─────────────────────────────────────────── */
.product-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 40px 80px;
}
.product-breadcrumb {
  font-size: 13px;
  color: var(--grey-text);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-breadcrumb a:hover { color: var(--dark); }
.product-breadcrumb span { opacity: 0.4; }
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: calc(var(--nav-height) + var(--announce-height) + 20px); }
.product-gallery__main {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--grey-light);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-gallery__main:hover img { transform: scale(1.04); }
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; }
.product-gallery__thumb {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-gallery__thumb.active { border-color: var(--dark); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info {}
.product-info__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.product-info__prices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.product-info__price {
  font-size: 26px;
  font-weight: 700;
}
.product-info__price--sale { color: var(--red); }
.product-info__compare {
  font-size: 18px;
  color: var(--grey-text);
  text-decoration: line-through;
}
.product-info__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 2px;
}
.product-info__badge--sold { background: var(--grey-text); }
.product-divider { height: 1px; background: var(--grey-mid); margin: 20px 0; }
.product-option { margin-bottom: 20px; }
.product-option__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-option__label span { font-weight: 400; color: var(--grey-text); text-transform: none; }
.option-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.option-pill {
  padding: 8px 18px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--dark);
}
.option-pill:hover, .option-pill.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}
.option-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.option-select:focus { border-color: var(--dark); }
.product-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.qty-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dark);
  transition: background var(--transition);
  border: none;
  background: none;
}
.qty-btn:hover { background: var(--grey-light); }
.qty-input {
  flex: 1;
  text-align: center;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  width: 40px;
}
.product-info__short-desc {
  font-size: 14.5px;
  color: var(--grey-text);
  line-height: 1.75;
  margin-top: 24px;
}
.product-meta { margin-top: 16px; font-size: 13px; color: var(--grey-text); }
.product-meta span { color: var(--dark); font-weight: 600; }

/* Product Tabs */
.product-tabs { margin-top: 60px; }
.tab-buttons {
  display: flex;
  border-bottom: 2px solid var(--grey-mid);
  margin-bottom: 28px;
  gap: 0;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey-text);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  text-transform: uppercase;
  font-size: 12px;
}
.tab-btn.active { color: var(--dark); border-bottom-color: var(--dark); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { font-size: 15px; line-height: 1.75; color: var(--grey-text); margin-bottom: 14px; }
.tab-panel ul { padding-left: 20px; list-style: disc; }
.tab-panel ul li { font-size: 15px; line-height: 1.75; color: var(--grey-text); margin-bottom: 6px; }

/* Related Products */
.related-section {
  background: var(--grey-light);
  padding: var(--section-pad);
}

/* ── STATIC PAGES ─────────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 40px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 700; margin-bottom: 12px; }
.page-hero p { font-size: 17px; opacity: 0.85; max-width: 600px; margin: 0 auto; }
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 40px;
}
.page-content h2 { font-size: 26px; font-weight: 700; margin: 36px 0 14px; }
.page-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.page-content p { font-size: 15px; line-height: 1.8; color: var(--grey-text); margin-bottom: 16px; }
.page-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.page-content ul li { font-size: 15px; line-height: 1.8; color: var(--grey-text); margin-bottom: 6px; }

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 64px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 14px; color: var(--grey-text); }

/* Gallery Grid */
.gallery-grid {
  columns: 3;
  gap: 12px;
  padding: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 4px;
  break-inside: avoid;
  transition: transform var(--transition);
}
.gallery-grid img:hover { transform: scale(1.01); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 64px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.review-card {
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  padding: 24px;
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.75; color: var(--grey-text); margin-bottom: 16px; }
.review-author { font-weight: 700; font-size: 14px; }
.review-img { width: 100%; border-radius: 6px; margin-top: 14px; }

/* ── NOTIFICATIONS ────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast--success { background: var(--green); }
.toast--error { background: var(--red); }

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.hidden { display: none !important; }
.loading { opacity: 0.5; pointer-events: none; }
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 960px) {
  :root { --section-pad: 60px 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-main { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .hero-slide__content { left: 40px; bottom: 60px; }
  .collection-filters { padding: 14px 24px; }
  .collection-main { padding: 32px 24px 60px; }
  .product-page { padding: 32px 24px 60px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-icons .nav-icon-btn:not(.cart-btn) { display: none; }
  .nav-burger { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-slide__content { left: 24px; right: 24px; bottom: 60px; }
  .hero-slide__title { font-size: 26px; }
  .form-two-col { grid-template-columns: 1fr; }
  .qty-row { grid-template-columns: 100px 1fr; }
}
@media (max-width: 480px) {
  :root { --section-pad: 48px 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card__body { padding: 10px; }
  .product-card__name { font-size: 12px; }
  .product-card__price { font-size: 13px; }
  .gallery-grid { columns: 1; padding: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-slide img { height: 70vh; }
  .hero-arrows { display: none; }
}
