/* ============================================
   ROKOKO - Main Stylesheet
   Mobile-first: 0–991.98px (default)
   Desktop: 992px+
   ============================================ */

/* ===== VARIABLES ===== */
:root {
  /* COLORS */
  --black: #1a1410;
  --dark-brown: #2a2118;
  --brown: #6b5c52;
  --gold: #c9a96e;
  --gold-20: rgba(201, 169, 110, 0.2);
  --gold-12: rgba(201, 169, 110, 0.12);
  --light-gold: #e8d5b0;
  --rose: #b87c6a;
  --red-brown: #4a3530;
  --cream: #f7f2ec;
  --white: #ffffff;
  --white-50: rgba(255,255,255,0.5);
  --ivory: #fdf9f4;
  --nfz-blue: #2d2a7c;
  --accent: #8b5e3c;

  /* FONTS */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  /* TRANSITIONS */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* CONTAINER */
  --container-padding: 25px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
    line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 300;
  line-height: 1.1;
}

/* ===== BUTTONS ===== */
.btn {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: var(--transition);
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black) !important;
    text-decoration: unset !important;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--white) !important;
    transform: translateY(-2px);
}

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

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

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

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

.link-underline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  border-bottom: 1px solid var(--light-gold);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition);
}

.link-underline:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.link-arrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.link-arrow:hover {
  color: var(--light-gold);
  gap: 14px;
}

.link-arrow span {
  transition: transform var(--transition);
}

.link-arrow:hover span {
  transform: translateX(4px);
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--gold);
  flex-shrink: 0;
}

.section-label.is-centered {
  justify-content: center;
}

.section-label.is-centered::before {
  display: none;
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(247, 242, 236, 0.97);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--gold-20);
    z-index: 9999;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: height var(--transition);
}

.site-header .logo img {
  width: 50px;
  height: 40px;
  object-fit: contain;
}

.main-nav {
  display: none;
}

.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav .menu-item a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  transition: var(--transition);
}

.main-nav .menu-item a:hover,
.main-nav .menu-item a:focus {
  color: var(--gold);
}

.main-nav .menu-item-has-children {
  position: relative;
}

.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  background-color: rgba(247, 242, 236, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold-20);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 110;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.main-nav .menu-item-has-children.is-open > .sub-menu,
.main-nav .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu .menu-item a {
  display: block;
  padding: 8px 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.main-nav .sub-menu .menu-item a:hover {
  background-color: var(--gold-12);
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--gold);
  white-space: nowrap;
}

.header-phone img {
  width: 24px;
  height: 24px;
}

.header-divider {
  display: none;
  width: 1px;
  height: 30px;
  background-color: var(--light-gold);
}

.header-search {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.header-search img {
  width: 100%;
  height: 100%;
}

.header-cta {
  display: block;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.header-phone-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.header-phone-mobile img {
  width: 100%;
  height: 100%;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-header.is-scrolled .container {
  height: 60px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  transition: var(--transition);
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Lightbox */
.search-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.search-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.search-lightbox-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  z-index: 1;
}

.search-lightbox-form {
  display: flex;
  background: var(--white);
  border: 1px solid var(--gold-20);
}

.search-lightbox-form input {
  flex: 1;
  border: none;
  padding: 18px 24px;
  font-size: 16px;
  color: var(--black);
  background: transparent;
  outline: none;
}

.search-lightbox-form input::placeholder {
  color: var(--brown);
  opacity: 0.5;
}

.search-lightbox-form button {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border: none;
  cursor: pointer;
}

.search-lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--cream);
    z-index: 99;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition);
    padding: 30px var(--container-padding);
    z-index: 999;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-search {
  margin-bottom: 20px;
}

.mobile-nav-search form {
  display: flex;
  border: 1px solid var(--gold-20);
  background: var(--white);
}

.mobile-nav-search input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--black);
  background: transparent;
  outline: none;
}

.mobile-nav-search input::placeholder {
  color: var(--brown);
  opacity: 0.5;
}

.mobile-nav-search button {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border: none;
  cursor: pointer;
}

.mobile-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav .menu-item {
  border-bottom: 1px solid var(--gold-20);
}

.mobile-nav .menu-item a {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  padding: 16px 0;
}

.mobile-nav .menu-item-has-children {
  position: relative;
}

.mobile-nav .menu-item-has-children > .submenu-toggle {
  position: absolute;
  right: 0;
  top: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brown);
  transition: var(--transition);
}

.mobile-nav .menu-item-has-children > .submenu-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
}

.mobile-nav .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.mobile-nav .sub-menu.is-open {
  max-height: 500px;
}

.mobile-nav .sub-menu a {
  padding: 12px 0 12px 20px;
  font-size: 12px;
  font-weight: 400;
}

.mobile-nav-bottom {
    margin-top: 30px;
    padding-top: 20px;
}

.mobile-nav-bottom .btn {
  width: 100%;
  margin-bottom: 20px;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
    padding-top: 70px;
    min-height: auto;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero .container {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: 0;
}

.hero-content {
  padding: 60px var(--container-padding) 40px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero h1 em {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-description {
    max-width: 420px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-actions .btn {
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--gold-20);
    padding-top: 40px;
}

.hero-stat h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 4px;
}

.hero-stat p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
}

.hero-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.hero-image img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-image--video .hero-video {
  display: block;
  border: 0;
}

.hero-image--video iframe.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(184, 124, 106, 0.1) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero floating badge */
.hero-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--light-gold);
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
}

.hero-badge-content p:first-child {
  font-size: 12px;
  color: var(--brown);
  margin-bottom: 2px;
}

.hero-badge-content p:last-of-type {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
}

.hero-badge-content .btn {
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 2px;
  background-color: var(--gold);
  color: var(--black);
}

/* WhatsApp floating */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.floating-wa img {
  width: 24px;
  height: 24px;
}

/* ===== MARQUEE ===== */
.marquee {
  background-color: var(--black);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--light-gold);
  white-space: nowrap;
  padding: 0 40px;
}

.marquee-separator {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gold);
  opacity: 0.5;
  padding: 0 10px;
  flex-shrink: 0;
}

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

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PRODUCTS ===== */
.products {
  padding: 60px 0 80px;
  background-color: var(--cream);
}

.products .container:nth-child(2) {
    padding: 0 !important;
}

.products .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.products .section-header h2 {
  font-size: 32px;
  line-height: 1.15;
  margin-top: 16px;
}

.products .section-header h2 em {
  font-style: italic;
  color: var(--rose);
}

.products-grid {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--container-padding);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}

.products-grid::-webkit-scrollbar {
  height: 4px;
}

.products-grid::-webkit-scrollbar-track {
  background: var(--cream);
}

.products-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.product-card {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-brown);
  flex: 0 0 75%;
  scroll-snap-align: start;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
  filter: saturate(0.85);
}

.product-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.88) 0%, rgba(26, 20, 16, 0.1) 55%, transparent 100%);
  pointer-events: none;
  transition: background 0.4s;
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--cream);
}

.product-card-content > p:first-child {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.product-card-content .product-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(232, 213, 176, 0.8);
  line-height: 1.6;
  margin-bottom: 12px;
  display: none;
}

.product-card.is-large .product-card-content .product-desc {
  display: block;
}

.product-card-content .link-arrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ===== NFZ BANNER ===== */
.nfz-banner {
    padding: 40px 0;
    background: var(--ivory);
}

.nfz-banner .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.nfz-banner-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nfz-banner-logo {
  flex-shrink: 0;
}

.nfz-banner-logo img {
  width: 120px;
  height: auto;
}

.nfz-banner-content h3 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 8px;
}

.nfz-banner-content p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--black);
  max-width: 480px;
}

.nfz-banner-content strong {
  color: var(--gold);
  font-weight: 500;
}

.nfz-banner .btn {
  margin-top: 16px;
}

/* ===== STORES ===== */
.stores {
    padding: 60px 0 80px;
    background-color: var(--cream);
}

.stores .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.stores .section-header h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-top: 12px;
}

.stores .section-header h2 em {
  font-style: italic;
  color: var(--rose);
}

.stores .section-header p {
    max-width: 560px;
    margin: 16px auto 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.stores-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stores-map {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 0;
}

.stores-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.stores-map-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.stores-map-badge h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 28px;
  color: var(--black);
  line-height: 1;
}

.stores-map-badge p {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
}

.stores-search {
    text-align: center;
    background: var(--gold);
    padding: 20px;
}

.stores-search-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

.stores-search-input {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.stores-search-input input {
    width: 100%;
    max-width: 333px;
    height: 40px;
    border: 1px solid var(--gold);
    background: var(--cream);
    padding: 0 14px;
    font-size: 13px;
    color: var(--brown);
    outline: none;
}

.stores-search-input input::placeholder {
  color: var(--brown);
  opacity: 0.6;
}

.stores-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.store-card {
    background-color: var(--gold-12);
    padding: 20px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.store-card-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.store-card-details h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}

.store-card-details p {
  font-size: 12px;
  color: var(--brown);
}

.store-card-address {
  font-size: 12px;
  color: var(--brown);
  text-align: right;
}

.store-card-link {
  text-align: center;
  border-top: 1px solid var(--gold-20);
  padding-top: 10px;
  margin-top: 12px;
}

.store-card-link a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
}

.store-card-link a:hover {
  color: var(--gold);
}

.stores-cta {
  text-align: center;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 60px 0 80px;
  background-color: var(--cream);
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-grid {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--container-padding);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}

.gallery-grid::-webkit-scrollbar {
  height: 4px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: var(--cream);
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.gallery-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
    aspect-ratio: 323 / 430;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== ABOUT ===== */
.about {
  padding: 60px 0 80px;
  background-color: var(--cream);
}

.about .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-images {
  position: relative;
  width: 100%;
}

.about-img-1 {
    width: 65%;
    overflow: hidden;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 45%;
    aspect-ratio: 315 / 500;
    overflow: hidden;
    box-shadow: -8px 8px 32px rgba(0, 0, 0, 0.15);
    border: 8px solid #fff;
    height: 100%;
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 40px;
  right: 38%;
  width: 80px;
  height: 80px;
  background-color: var(--cream);
  border: 1px solid var(--gold-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.about-badge h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.about-badge p {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
}

.about-content {
  width: 100%;
}

.about-content h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 20px;
}

.about-content h2 em {
  font-style: italic;
  color: var(--rose);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--brown);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about-feature {
  background-color: var(--cream);
  border: 1px solid var(--light-gold);
  padding: 24px;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background-color: var(--gold-20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.about-feature-icon img {
  width: 18px;
  height: 18px;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--brown);
}

/* ===== CELEBRITIES ===== */
.celebrities {
  padding: 60px 0 80px;
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.celebrities .section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.celebrities .section-header h2 {
  font-size: 42px;
  color: var(--cream);
  margin-top: 12px;
}

.celebrities .section-header p {
    max-width: 560px;
    margin: 16px auto 0;
    color: var(--white-50);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.celebrities .section-label {
  color: var(--gold);
}

.celebrities-grid {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--container-padding);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--black);
  position: relative;
  z-index: 1;
}

.celebrities-grid::-webkit-scrollbar {
  height: 4px;
}

.celebrities-grid::-webkit-scrollbar-track {
  background: var(--black);
}

.celebrities-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.celebrity-card {
  flex: 0 0 75%;
  scroll-snap-align: start;
  aspect-ratio: 323/431;
  position: relative;
  overflow: hidden;
}

.celebrity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(20%) saturate(0.9);
    scale: 1.01;
}

.celebrity-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) saturate(1.1);
}

.celebrity-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.85) 0%, transparent 60%);
  pointer-events: none;
}

.celebrity-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.celebrity-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
}

.celebrity-card-content a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.celebrity-card-content a::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: 60px 0 80px;
  background-color: var(--cream);
}

.collections .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.collections-image {
    width: 100%;
    aspect-ratio: 564 / 705;
    position: relative;
}

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

.collections-image-label {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--ivory);
  border: 1px solid var(--light-gold);
  padding: 20px 28px;
  box-shadow: 0 10px 40px rgba(26, 20, 16, 0.08);
}

.collections-image-label h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--black);
}

.collections-image-label p {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.collections-content h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 20px;
}

.collections-content h2 em {
  font-style: italic;
  color: var(--rose);
}

.collections-text p {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--brown);
}

.collections-text strong {
  font-weight: 500;
  color: var(--black);
}

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

/* ===== BLOG ===== */
section.blog {
    padding: 100px 0 120px;
    background-color: var(--ivory);
}

.blog .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.blog .section-header h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-top: 12px;
}

.blog .section-header h2 em {
  font-style: italic;
  color: var(--rose);
}

.blog .section-header p {
    max-width: 560px;
    margin: 16px auto 0;
    font-size: 14px;
    line-height: 1.5;
}

.blog-grid {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--container-padding);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}

.blog-grid::-webkit-scrollbar {
  height: 4px;
}

.blog-grid::-webkit-scrollbar-track {
  background: var(--cream);
}

.blog-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.blog-card {
  flex: 0 0 75%;
  scroll-snap-align: start;
  aspect-ratio: 323/430;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform 0.6s, filter 0.4s;
    scale: 1.01;
}

.blog-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.8) 0%, rgba(26, 20, 16, 0) 50%);
  pointer-events: none;
}

.blog-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.blog-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card-content .link-arrow {
  font-size: 10px;
  color: var(--gold);
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--black);
    padding: 60px 0 30px;
    color: var(--light-gold);
    z-index: 99;
    position: relative;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 213, 176, 0.15);
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: block;
}

.footer-brand .logo img {
  width: 70px;
  height: auto;
}

.footer-brand-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--white-50);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-contact-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-contact-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 36px;
}

.footer-contact-item a,
.footer-contact-item span:last-child {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

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

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-column h4,
.footer-column-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    font-size: 13px;
    font-weight: 300;
    color: var(--white-50);
    transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-top: 30px;
}

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

.footer-social a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-copy {
  font-size: 12px;
  color: var(--light-gold);
  opacity: 0.5;
  text-align: center;
}

.footer-copy a {
  font-weight: 600;
  color: var(--light-gold);
}

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

/* ============================================
   DESKTOP 992px+
   ============================================ */
@media (min-width: 992px) {
  :root {
    --container-padding: 80px;
  }

  .container {
    max-width: 1600px;
    padding: 0 150px;
  }

  /* HEADER DESKTOP */
  .site-header .container {
      height: 97px;
      padding: 0 60px;
      max-width: 100%;
  }

  .site-header .logo img {
    width: 65px;
    height: 52px;
  }

  .site-header.is-scrolled .logo img {
    padding: 5px 0;
}

  .hamburger {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .main-nav {
    display: block;
  }

  .header-phone {
    display: flex;
  }

  .header-divider {
    display: block;
  }

  .header-search {
    display: block;
  }

  .header-cta .btn {
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .header-phone-mobile {
    display: none;
  }

  /* HERO DESKTOP */
  .hero {
    padding-top: 97px;
    min-height: 100vh;
  }

  .hero .container {
    flex-direction: row;
    max-width: 100%;
    padding: 0;
  }

  .hero-content {
    width: 50%;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 97px);
  }

  .hero h1 {
    font-size: 80px;
    line-height: 88px;
    margin-bottom: 0;
  }

  .hero h2 {
    font-size: 80px;
    line-height: 88px;
    margin-bottom: 32px;
  }

  .hero-description {
    margin-bottom: 48px;
  }

  .hero-stat h3 {
    font-size: 42px;
  }

  .hero-image {
      width: 50%;
      height: auto;
      aspect-ratio: auto;
      min-height: calc(100vh - 97px);
      overflow: unset;
  }

  .hero-badge {
      bottom: 40px;
      left: 0;
      right: auto;
      transform: translateX(-50%);
      padding: 20px 28px;
      gap: 16px;
      min-width: 210px;
      z-index: 9;
  }

  /* PRODUCTS DESKTOP */
  .products {
    padding: 100px 0 120px;
  }

  .products .section-header {
    margin-bottom: 64px;
  }

  .products .section-header h2 {
    font-size: 56px;
    line-height: 64.4px;
  }

  .products .container {
    padding: 0 150px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    overflow-x: visible;
    padding: 0;
  }

  .product-card {
    flex: none;
  }

  .product-card.is-large {
    grid-column: span 2;
    aspect-ratio: unset;
    min-height: 480px;
  }

  .product-card-content {
    padding: 36px;
  }

  .product-card-small .product-card-content h3 {
    font-size: 20px;
  }

  .products .container:nth-child(2) {
      padding: 0 150px !important;
  }

  /* NFZ BANNER DESKTOP */
  .nfz-banner {
    padding: 60px 0;
  }

  .nfz-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 150px;
  }

  .nfz-banner-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .nfz-banner-logo img {
    width: 150px;
  }

  .nfz-banner-content h3 {
    font-size: 28px;
  }

  .nfz-banner .btn {
    margin-top: 0;
  }

  /* STORES DESKTOP */
  .stores {
    padding: 100px 0 120px;
  }

  .stores .section-header h2 {
    font-size: 58px;
  }

  .stores-wrapper {
    flex-direction: row;
    gap: 0;
  }

  .stores-map {
    flex: 1;
    aspect-ratio: auto;
    min-height: 608px;
    overflow: visible;
  }

  .stores-map-badge {
    top: -20px;
    right: -20px;
  }

  .stores-right {
    flex: 0 0 45%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
  }

  .stores-list {
    grid-template-columns: 1fr;
    max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream);
  }

  .stores-search-input {
    justify-content: flex-start;
  }

  .stores-search-input input {
    max-width: 100%;
  }

  /* ABOUT DESKTOP */
  .about {
    padding: 100px 0 120px;
  }

  .about .container {
    flex-direction: row;
    gap: 60px;
  }

  .about-images {
    width: 50%;
    flex-shrink: 0;
  }

  .about-content {
    width: 50%;
  }

  .about-content h2 {
    font-size: 52px;
  }

  /* CELEBRITIES DESKTOP */
  .celebrities {
    padding: 100px 0 120px;
  }

  .celebrities .section-header h2 {
    font-size: 58px;
  }

  .celebrities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    overflow-x: visible;
    padding: 0 150px;
  }

  .celebrity-card {
    flex: none;
  }

  /* COLLECTIONS DESKTOP */
  .collections {
    padding: 100px 0 120px;
  }

  .collections .container {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 0 200px;
  }

  .collections-image {
    width: 47%;
    flex-shrink: 0;
  }

  .collections-content {
    width: 53%;
  }

  .collections-content h2 {
    font-size: 52px;
  }

  /* BLOG DESKTOP */

  .blog .section-header h2 {
    font-size: 58px;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    overflow-x: visible;
    padding: 0 150px;
  }

  .blog-card {
    flex: none;
  }

  .blog-card-content h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  /* FOOTER DESKTOP */
  .site-footer {
    padding: 80px 0 30px;
  }

  .site-footer .container {
      padding: 0 60px;
      max-width: 100%;
  }

  .footer-top {
    flex-direction: row;
    gap: 60px;
  }

  .footer-brand {
    flex: 0 0 30%;
  }

  .footer-columns {
    flex: 1;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  button.submenu-toggle {
    margin-left: 4px;
    transform: translateY(1px);
  }
  button.submenu-toggle path {
    color: var(--brown);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    overflow-x: visible;
    padding: 0 150px;
    scroll-snap-type: none;
  }

  .gallery-item {
      flex: none;
      aspect-ratio: 323 / 430;
  }
}