/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --color-baroque-gold: #D4AF37;
  --color-royal-bronze: #CD7F32;
  --color-crown-black: #1C1C1C;
  --color-cream-silk: #F5F3F0;
  --color-warm-ivory: #FDF8F3;
  --color-soft-beige: #E8E2DB;
  --color-charcoal-grey: #4A4A4A;
  --color-sicilian-blue: #4A90B8;
  --color-mediterranean-turquoise: #5FB3B3;
  --color-sunset-amber: #E6A85C;

  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Cormorant Garamond', serif;
  --font-accent: 'Cinzel', serif;

  /* Font Sizes */
  --font-size-h1: 4.5rem;
  --font-size-h2: 3rem;
  --font-size-h3: 2.25rem;
  --font-size-h4: 1.5rem;
  --font-size-body-large: 1.125rem;
  --font-size-body: 1rem;
  --font-size-caption: 0.875rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 3rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Layout */
  --container-max-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-fast: 0.3s ease-in-out;
  --transition-medium: 0.6s ease-in-out;
  --transition-slow: 1s ease-in-out;

  /* Shadows */
  --shadow-light: 0 4px 20px rgba(212, 175, 55, 0.1);
  --shadow-medium: 0 8px 30px rgba(212, 175, 55, 0.15);
  --shadow-heavy: 0 12px 40px rgba(212, 175, 55, 0.2);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100vw;
  max-width: 100%;
  position: relative;
}

/* Container responsive */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 3vw, var(--spacing-lg));
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero container override - full width */
.hero__container {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  color: var(--color-crown-black);
  background-color: var(--color-cream-silk);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  /* padding: 0 var(--spacing-lg); */
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-md);
}

.section__subtitle {
  font-size: var(--font-size-body-large);
  color: var(--color-charcoal-grey);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-baroque-gold), var(--color-royal-bronze));
  color: var(--color-crown-black);
  box-shadow: var(--shadow-light);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background: transparent;
  color: var(--color-baroque-gold);
  border: 2px solid var(--color-baroque-gold);
  box-shadow: none;
}

.btn--secondary:hover {
  background: var(--color-baroque-gold);
  color: var(--color-crown-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition-fast);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(1rem, 3vw, var(--spacing-lg));
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.nav__logo-img {
  height: clamp(36px, 7vh, 52px);
  width: auto;
  max-width: clamp(140px, 30vw, 220px);
  object-fit: contain;
}

.nav__list {
  display: flex;
  gap: var(--spacing-lg);
}

.nav__link {
  font-family: var(--font-secondary);
  font-weight: 500;
  color: var(--color-crown-black);
  transition: var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--color-baroque-gold);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-baroque-gold);
  transition: var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin: 0 auto;
}

.language-select {
  background: transparent;
  border: 1px solid var(--color-soft-beige);
  padding: 0.5rem;
  border-radius: 4px;
  font-family: var(--font-secondary);
  color: var(--color-crown-black);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-crown-black);
  transition: var(--transition-fast);
}

.nav__close {
  display: none;
}

/* ===== MAIN LAYOUT ===== */
.main {
  margin: 0;
  padding: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Responsive background positioning */
@media screen and (max-width: 1024px) {
  .hero__bg-img {
    object-position: center top;
  }
}

@media screen and (max-width: 768px) {
  .hero__bg-img {
    object-position: center center;
    object-fit: cover;
  }
}

@media screen and (max-width: 480px) {
  .hero__bg-img {
    object-position: center center;
    object-fit: cover;
  }
  
  .hero__background::after {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.2));
  }
}

.hero__container {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}



.hero__bg-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
}

.hero__content {
  text-align: center;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  padding: clamp(0.5rem, 2vw, 1rem);
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height) - 2rem);
  gap: clamp(0.5rem, 2vh, 1.5rem);
}

.hero__logo-img {
  height: clamp(100px, 15vh, 200px);
  width: auto;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-crown-black);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.1;
  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
  flex-shrink: 0;
}

.hero__subtitle {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--color-charcoal-grey);
  margin: 0;
  max-width: 100%;
  line-height: 1.4;
  text-align: center;
  padding: 0 clamp(0.25rem, 1vw, 0.75rem);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: calc(100% - 1rem);
  margin: 0 auto;
  box-sizing: border-box;
}

.hero__actions .btn {
  flex: 1 1 auto;
  min-width: clamp(120px, 20vw, 160px);
  max-width: clamp(180px, 35vw, 220px);
  padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  flex-shrink: 0;
}

/*.hero__scroll {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-charcoal-grey);
  font-size: var(--font-size-caption);
}*/

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-baroque-gold);
  border-bottom: 2px solid var(--color-baroque-gold);
  transform: rotate(45deg);
  margin: var(--spacing-xs) auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* ===== ESSENCE SECTION ===== */
.essence {
  background: var(--color-warm-ivory);
}

.essence__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.essence__card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-cream-silk);
  border-radius: 12px;
  border: 1px solid var(--color-soft-beige);
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.essence__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.essence__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  color: var(--color-baroque-gold);
}

.essence__icon-svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.essence__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-md);
}

.essence__description {
  color: var(--color-charcoal-grey);
  line-height: 1.7;
}

/* ===== COLLECTION SECTION ===== */
.collection__horizontal {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.collection__item {
  flex: 0 0 320px;
  width: 320px;
  min-height: 660px;
  height: auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.collection__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.collection__image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--color-warm-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-medium);
}

.collection__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.collection__item:hover .collection__overlay {
  opacity: 1;
}

.collection__item:hover .collection__img {
  transform: scale(1.1);
}

.collection__content {
  padding: var(--spacing-lg);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collection__name {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-md);
}

.collection__description {
  color: var(--color-charcoal-grey);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.collection__notes {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

.collection__note {
  background: var(--color-baroque-gold);
  color: var(--color-crown-black);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: var(--font-size-caption);
  font-weight: 500;
}

.collection__price {
  margin-top: var(--spacing-md);
  text-align: center;
}

.collection-price {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-crown-black);
}

.collection__buy {
  margin-top: var(--spacing-md);
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: var(--font-size-caption);
}

/* ===== HERITAGE SECTION ===== */
.heritage {
  background: var(--color-warm-ivory);
}

.heritage__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.heritage__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-lg);
}

.heritage__description {
  color: var(--color-charcoal-grey);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  font-size: var(--font-size-body-large);
}

.heritage__image {
  position: relative;
}

.heritage__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.heritage__ornament {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  opacity: 0.8;
}

.heritage__ornament-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.craftsmanship__card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-warm-ivory);
  border-radius: 12px;
  border: 1px solid var(--color-soft-beige);
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.craftsmanship__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.craftsmanship__number {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-baroque-gold);
  margin-bottom: var(--spacing-md);
}

.craftsmanship__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-md);
}

.craftsmanship__description {
  color: var(--color-charcoal-grey);
  line-height: 1.7;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
  background: var(--color-warm-ivory);
}

.newsletter__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  background: var(--color-cream-silk);
  border-radius: 12px;
  border: 2px solid var(--color-baroque-gold);
  position: relative;
}

.newsletter__ornament {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--color-cream-silk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter__ornament-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.newsletter__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-md);
}

.newsletter__description {
  color: var(--color-charcoal-grey);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: var(--spacing-md);
  max-width: 400px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-soft-beige);
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  background: var(--color-warm-ivory);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-baroque-gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-crown-black);
  color: var(--color-warm-ivory);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer__logo-img {
  height: clamp(50px, 8vh, 70px);
  width: auto;
  max-width: 100%;
  margin-bottom: var(--spacing-md);
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer__description {
  color: var(--color-soft-beige);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: var(--spacing-md);
}

.footer__social-link {
  color: var(--color-baroque-gold);
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  color: var(--color-warm-ivory);
}

.footer__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--color-baroque-gold);
  margin-bottom: var(--spacing-md);
}

.footer__contact-item,
.footer__link {
  color: var(--color-soft-beige);
  margin-bottom: var(--spacing-xs);
  transition: var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-baroque-gold);
}

.footer__bottom {
  border-top: 1px solid var(--color-charcoal-grey);
  padding-top: var(--spacing-lg);
  text-align: center;
}

.footer__copyright {
  color: var(--color-soft-beige);
  font-size: var(--font-size-caption);
}

/* ===== PERFUME PAGES ===== */
.perfume-hero {
  padding: calc(var(--header-height) + clamp(0.5rem, 2vw, 1.5rem)) 0 clamp(1rem, 5vw + 1rem, 6rem);
  background: #ffffff;
  min-height: clamp(60vh, 100vh, 120vh);
  width: 100vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.perfume-hero__container {
  width: 100%;
  max-width: min(100%, var(--container-max-width));
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 2vw + 0.5rem, 3rem);
}

.perfume-hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 40vw, 500px), 1fr));
  gap: clamp(1rem, 4vw + 1rem, 4rem);
  align-items: center;
  justify-items: center;
  width: 100%;
}

.perfume-hero__image {
  position: relative;
  border-radius: clamp(8px, 1vw, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  width: 100%;
  max-width: clamp(250px, 30vw + 10rem, 600px);
  min-width: clamp(200px, 25vw, 300px);
  margin: 0 auto;
  flex-shrink: 0;
}

.perfume-hero__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/4;
  display: block;
  max-height: clamp(300px, 50vh, 700px);
}

.perfume-hero__header {
  display: block; /* Visible on all devices */
  text-align: center;
  margin-bottom: clamp(1rem, 3vw + 0.5rem, 2rem);
  width: 100%;
}

.perfume-hero__header .perfume-hero__title,
.perfume-hero__header .perfume-hero__subtitle {
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.perfume-hero__info {
  padding: clamp(0.5rem, 2vw + 0.5rem, 2rem);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.perfume-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 4vw + 1rem, 5rem);
  font-weight: 700;
  color: var(--color-crown-black);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: clamp(1.1, 1.2, 1.3);
  word-break: break-word;
  hyphens: auto;
}

.perfume-hero__subtitle {
  font-size: clamp(0.9rem, 2vw + 0.5rem, 1.8rem);
  color: var(--color-baroque-gold);
  font-style: italic;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.4;
}

.product-hero__price {
  margin-bottom: clamp(1rem, 3vw + 0.5rem, 2.5rem);
  text-align: left;
}

@media (max-width: 768px) {
  .product-hero__price {
    text-align: center;
  }
}

.product-price {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-crown-black);
}

.perfume-notes {
  margin-bottom: clamp(1rem, 3vw + 0.5rem, 3rem);
  padding: clamp(0.75rem, 2vw + 0.5rem, 2rem);
  background: var(--color-warm-ivory);
  border-radius: clamp(6px, 1vw, 12px);
  border-left: clamp(3px, 0.5vw, 6px) solid var(--color-baroque-gold);
  width: 100%;
  box-sizing: border-box;
}

.perfume-notes__title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.8rem);
  color: var(--color-crown-black);
  margin-bottom: clamp(0.5rem, 1.5vw + 0.25rem, 1.5rem);
  line-height: 1.3;
}

.perfume-notes__grid {
  display: grid;
  gap: clamp(0.5rem, 1.5vw + 0.25rem, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(clamp(120px, 25vw, 200px), 1fr));
}

.perfume-note {
  display: flex;
  flex-direction: column;
  gap: clamp(0.2rem, 0.5vw + 0.1rem, 0.5rem);
  min-width: 0;
}

.perfume-note__label {
  font-weight: 600;
  color: var(--color-baroque-gold);
  font-size: clamp(0.7rem, 1.5vw + 0.2rem, 1rem);
  text-transform: uppercase;
  letter-spacing: clamp(0.5px, 0.1vw, 1.5px);
  line-height: 1.2;
}

.perfume-note__value {
  color: var(--color-charcoal-grey);
  font-size: clamp(0.8rem, 2vw + 0.2rem, 1.1rem);
  line-height: clamp(1.4, 1.6, 1.8);
  word-break: break-word;
}

.perfume-description {
  margin-bottom: clamp(1rem, 3vw + 0.5rem, 3rem);
  line-height: clamp(1.5, 1.7, 1.9);
}

.perfume-description p {
  color: var(--color-charcoal-grey);
  margin-bottom: clamp(0.5rem, 1.5vw + 0.25rem, 1.5rem);
  font-size: clamp(0.85rem, 2vw + 0.3rem, 1.2rem);
  line-height: inherit;
  word-break: break-word;
  hyphens: auto;
}

.perfume-actions {
  display: flex;
  gap: clamp(0.5rem, 1.5vw + 0.25rem, 1.5rem);
  flex-wrap: wrap;
  justify-content: flex-start;
}

.perfume-actions .btn {
  flex: 1 1 clamp(120px, 25vw, 200px);
  min-width: clamp(100px, 20vw, 150px);
  max-width: clamp(200px, 40vw, 300px);
  padding: clamp(0.8rem, 1.5vw + 0.5rem, 1.2rem) clamp(1.5rem, 2.5vw + 0.8rem, 2.5rem);
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  font-family: var(--font-secondary);
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Related Perfumes Section */
.related-perfumes {
  padding: clamp(2rem, 5vw + 1rem, 6rem) 0;
  background: var(--color-soft-beige);
  width: 100vw;
  box-sizing: border-box;
}

.related-perfumes__container {
  width: 100%;
  max-width: min(100%, var(--container-max-width));
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 2vw + 0.5rem, 3rem);
}

.related-perfumes__title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 4vw + 1rem, 3.5rem);
  text-align: center;
  color: var(--color-crown-black);
  margin-bottom: clamp(1.5rem, 4vw + 1rem, 4rem);
  line-height: clamp(1.1, 1.2, 1.3);
  word-break: break-word;
}

.related-perfumes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 30vw + 5rem, 400px), 1fr));
  gap: clamp(1rem, 3vw + 0.5rem, 3rem);
  max-width: 100%;
  margin: 0 auto;
  justify-items: center;
}

.related-perfume {
  background: var(--color-warm-ivory);
  border-radius: clamp(8px, 1vw, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
  text-align: center;
  padding: clamp(0.75rem, 2vw + 0.5rem, 2rem);
  width: 100%;
  max-width: clamp(250px, 35vw + 10rem, 450px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(300px, 40vw, 500px);
}

.related-perfume:hover {
  transform: translateY(clamp(-4px, -1vw, -12px));
  box-shadow: var(--shadow-medium);
}

.related-perfume__image {
  margin-bottom: clamp(0.5rem, 1.5vw + 0.25rem, 1.5rem);
  border-radius: clamp(6px, 0.5vw, 10px);
  overflow: hidden;
  flex-shrink: 0;
}

.related-perfume__image img {
  width: 100%;
  height: clamp(150px, 20vw + 5rem, 300px);
  object-fit: contain;
  aspect-ratio: 3/4;
}

.related-perfume__name {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-crown-black);
  margin-bottom: clamp(0.25rem, 0.5vw + 0.1rem, 0.5rem);
  line-height: clamp(1.2, 1.3, 1.4);
  word-break: break-word;
  hyphens: auto;
}

.related-perfume__subtitle {
  color: var(--color-baroque-gold);
  font-style: italic;
  margin-bottom: clamp(0.5rem, 1vw + 0.25rem, 1rem);
  font-size: clamp(0.85rem, 1.8vw + 0.3rem, 1.1rem);
  line-height: 1.4;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-perfume__price {
  margin-bottom: clamp(0.75rem, 1.5vw + 0.5rem, 2rem);
  text-align: center;
}

.related-price {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-crown-black);
}

.btn--small {
  padding: clamp(0.6rem, 1.2vw + 0.3rem, 1rem) clamp(1.2rem, 2.5vw + 0.8rem, 2rem);
  font-size: clamp(0.8rem, 1.5vw + 0.3rem, 1rem);
  font-family: var(--font-secondary);
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  min-width: clamp(100px, 18vw, 140px);
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Primary button style for perfume actions */
.perfume-actions .btn--primary {
  background: linear-gradient(135deg, var(--color-baroque-gold), var(--color-royal-bronze));
  color: var(--color-crown-black);
  box-shadow: var(--shadow-light);
}

.perfume-actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Secondary button style for perfume actions */
.perfume-actions .btn--secondary {
  background: transparent;
  color: var(--color-baroque-gold);
  border: 2px solid var(--color-baroque-gold);
  box-shadow: none;
}

.perfume-actions .btn--secondary:hover {
  background: var(--color-baroque-gold);
  color: var(--color-crown-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Ensure perfume action buttons inherit proper styling */
.perfume-actions .btn {
  border: 2px solid var(--color-baroque-gold) !important;
}

.perfume-actions .btn--secondary {
  background: transparent !important;
  color: var(--color-baroque-gold) !important;
  border: 2px solid var(--color-baroque-gold) !important;
  box-shadow: none !important;
}

.perfume-actions .btn--secondary:hover {
  background: var(--color-baroque-gold) !important;
  color: var(--color-crown-black) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-medium) !important;
}

.perfume-actions .btn--primary {
  background: linear-gradient(135deg, var(--color-baroque-gold), var(--color-royal-bronze)) !important;
  color: var(--color-crown-black) !important;
  box-shadow: var(--shadow-light) !important;
  border: none !important;
}

.perfume-actions .btn--primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-medium) !important;
}

/* Related perfume buttons - primary style */
.btn--small.btn--primary {
  background: linear-gradient(135deg, var(--color-baroque-gold), var(--color-royal-bronze));
  color: var(--color-crown-black);
  box-shadow: var(--shadow-light);
}

.btn--small.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Related perfume buttons - secondary style */
.btn--small.btn--secondary {
  background: transparent;
  color: var(--color-baroque-gold);
  border: 2px solid var(--color-baroque-gold);
}

.btn--small.btn--secondary:hover {
  background: var(--color-baroque-gold);
  color: var(--color-crown-black);
}

/* ===== SECURITY STYLES ===== */
.error {
  border-color: #ff4757 !important;
  background-color: rgba(255, 71, 87, 0.1);
}

.error::placeholder {
  color: #ff4757;
}

.security-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 71, 87, 0.9);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  z-index: 10001;
  transform: translateY(-100%);
  transition: var(--transition-fast);
}

.security-notice.show {
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop Large (1200px+) - Default styles above */

/* Desktop Medium (1024px - 1199px) */
@media screen and (max-width: 1199px) {
  .container {
    max-width: 1024px;
    padding: 0 clamp(1rem, 3vw, var(--spacing-lg));
  }
  
  .collection__horizontal {
    gap: clamp(1rem, 3vw, var(--spacing-lg));
  }
  
  .collection__item {
    flex: 0 0 clamp(280px, 40vw, 320px);
    width: clamp(280px, 40vw, 320px);
    min-height: clamp(520px, 60vh, 660px);
    height: auto;
  }
  
  .hero__logo-img {
    height: clamp(100px, 12vh, 160px);
  }
  
  .hero__title {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  }
}

/* Tablet Large (768px - 1023px) */
@media screen and (max-width: 1023px) {
  :root {
    --font-size-h1: 3.5rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 2rem;
    --spacing-xxl: 4rem;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .heritage__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .heritage__image {
    order: -1;
  }
  
  .collection__horizontal {
    flex-direction: column;
    align-items: center;
    align-items: center;
    gap: var(--spacing-xl);
  }
  
  .collection__item {
    flex: 0 0 clamp(320px, 80vw, 450px);
    width: clamp(320px, 80vw, 450px);
    min-height: clamp(520px, 65vh, 640px);
    height: auto;
  }
  
  .collection__image {
    height: clamp(250px, 35vh, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-warm-ivory);
  }
  
  .collection__img {
    width: auto; /* Let width adjust naturally */
    height: auto; /* Let height adjust naturally */
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Show full image */
  }
  
  /* Perfume pages responsive */
  .perfume-hero {
    min-height: clamp(70vh, 90vh, 100vh);
    padding: calc(var(--header-height) + clamp(1rem, 4vw + 0.5rem, 3rem)) 0 clamp(1rem, 4vw + 0.5rem, 3rem);
  }
  
  .perfume-hero__content {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 4vw + 0.5rem, 3rem);
    text-align: center;
  }
  
  .perfume-hero__header {
    display: block; /* Show on tablet and below */
    order: -2; /* Place above image */
  }
  
  .perfume-hero__info .perfume-hero__title,
  .perfume-hero__info .perfume-hero__subtitle {
    display: none; /* Hide duplicates in info section on mobile */
  }
  
  .perfume-hero__image {
    max-width: clamp(250px, 50vw + 5rem, 500px);
    margin: 0 auto;
    order: -1;
  }
  
  .perfume-hero__info {
    padding: clamp(0.5rem, 2vw + 0.25rem, 2rem);
  }
  
  .perfume-notes__grid {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 2vw + 0.25rem, 1.5rem);
  }
  
  .perfume-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .perfume-actions .btn {
    width: 100%;
    max-width: clamp(200px, 60vw, 350px);
    flex: none;
    padding: clamp(0.8rem, 2vw + 0.4rem, 1.2rem) clamp(1.5rem, 3vw + 1rem, 2.5rem);
    font-size: clamp(0.9rem, 2vw + 0.4rem, 1.1rem);
  }
  
  .related-perfumes__grid {
    grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 60vw, 280px), 1fr));
    gap: clamp(1rem, 3vw + 0.5rem, 2rem);
  }
  
  .related-perfume {
    min-height: clamp(250px, 35vw + 10rem, 400px);
  }
  
  .craftsmanship__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .essence__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

/* Tablet Small & Mobile Large (576px - 767px) */
@media screen and (max-width: 767px) {
  .hero__content {
    padding: clamp(0.25rem, 1vw, 0.75rem);
    max-width: calc(100% - 1rem);
    min-height: calc(100vh - var(--header-height) - 1rem);
    gap: clamp(0.25rem, 1.5vh, 1rem);
  }
  
  .hero__logo-img {
    height: clamp(80px, 12vh, 160px);
    max-width: calc(100% - 1rem);
  }
  
  .hero__title {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
  }
  
  .hero__subtitle {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    padding: 0 clamp(0.125rem, 0.5vw, 0.5rem);
  }
  
  .hero__actions {
    flex-direction: column;
    gap: clamp(0.25rem, 1vw, 0.75rem);
    max-width: calc(100% - 0.5rem);
  }
  
  .hero__actions .btn {
    flex: none;
    width: 100%;
    min-width: auto;
    max-width: calc(100% - 0.5rem);
    margin: 0;
    padding: clamp(0.5rem, 1.2vw, 0.8rem) clamp(0.8rem, 2vw, 1.2rem);
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  }
  
  .collection__item {
    flex: 0 0 clamp(280px, 85vw, 380px);
    width: clamp(280px, 85vw, 380px);
    min-height: clamp(480px, 65vh, 580px);
  }
  
  .collection__image {
    height: clamp(250px, 35vh, 320px);
  }

  :root {
    --font-size-h1: 3rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.25rem;
    --spacing-xxl: 3rem;
    --spacing-xl: 2rem;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  /* Mobile Navigation */
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-warm-ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .nav__link {
    font-size: var(--font-size-h4);
    padding: var(--spacing-sm);
  }

  .nav__close {
    display: block;
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    font-size: 1.5rem;
    cursor: pointer;
  }

  .nav__toggle {
    display: flex;
    order: 2;
    position: absolute !important;
    right: clamp(1rem, 3vw, 2rem) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1002 !important;
  }

  .nav__language {
    order: 1;
    position: absolute !important;
    right: clamp(4rem, 8vw, 6rem) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1002 !important;
  }

  .nav__actions {
    position: relative !important;
    width: auto !important;
    height: auto !important;
  }

  .nav {
    justify-content: flex-start !important;
    position: relative !important;
  }

  /* Hero Section */
  .hero {
    max-height: 100vh;
    min-height: 80vh;
  }

  .hero__content {
    padding: calc(var(--header-height) + clamp(1rem, 8vw, var(--spacing-xxl))) clamp(1rem, 5vw, var(--spacing-md));
    text-align: center;
  }
  
  /* Perfume pages extra small */
  .perfume-hero {
    padding: calc(var(--header-height) + clamp(0.1rem, 1vw, 0.5rem)) 0 clamp(0.75rem, 6vw, 1.5rem);
  }
  
  .perfume-hero__image {
    max-width: clamp(240px, 90vw, 320px);
  }
  
  .perfume-hero__title {
    font-size: clamp(1.5rem, 10vw, 2.2rem);
    line-height: 1.1;
  }
  
  .perfume-hero__subtitle {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
  }
  
  .perfume-notes__title {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }
  
  .perfume-description p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    line-height: 1.5;
  }

  .hero__logo-img {
    height: clamp(80px, 20vw, 120px);
    margin-bottom: var(--spacing-lg);
  }

  .hero__title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
  }
  
  .hero__subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  .hero__actions {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Collection Section */
  .collection__item {
    flex: 0 0 clamp(300px, 90vw, 380px);
    width: clamp(300px, 90vw, 380px);
    min-height: clamp(500px, 70vh, 600px);
    margin: 0 auto;
  }
  
  /* Perfume pages mobile */
  .perfume-hero {
    padding: calc(var(--header-height) + clamp(0.1rem, 1vw, 0.5rem)) 0 clamp(0.75rem, 6vw + 0.5rem, 2rem);
    min-height: clamp(80vh, 95vh, 110vh);
  }
  
  .perfume-hero__image {
    max-width: clamp(200px, 70vw + 2rem, 350px);
    min-width: clamp(150px, 50vw, 250px);
  }
  
  .perfume-hero__img {
    max-height: clamp(250px, 45vh, 400px);
  }
  
  .perfume-hero__info {
    padding: clamp(0.5rem, 2vw + 0.25rem, 1.5rem);
  }
  
  .perfume-hero__title {
    font-size: clamp(1.3rem, 6vw + 0.8rem, 2.8rem);
    line-height: clamp(1.1, 1.15, 1.2);
  }
  
  .perfume-hero__subtitle {
    font-size: clamp(0.8rem, 3vw + 0.4rem, 1.3rem);
  }
  
  .perfume-notes {
    padding: clamp(0.5rem, 2vw + 0.25rem, 1.5rem);
    margin-bottom: clamp(0.75rem, 3vw + 0.25rem, 2rem);
  }
  
  .perfume-notes__title {
    font-size: clamp(0.9rem, 3vw + 0.4rem, 1.4rem);
  }
  
  .perfume-note__label {
    font-size: clamp(0.65rem, 2vw + 0.2rem, 0.9rem);
  }
  
  .perfume-note__value {
    font-size: clamp(0.75rem, 2.5vw + 0.2rem, 1rem);
  }
  
  .perfume-description p {
    font-size: clamp(0.8rem, 2.5vw + 0.25rem, 1.1rem);
  }
  
  .perfume-actions {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(0.5rem, 2vw + 0.25rem, 1rem);
  }
  
  .perfume-actions .btn {
    width: 100%;
    max-width: none;
    padding: clamp(0.8rem, 2.8vw + 0.4rem, 1.2rem) clamp(1.2rem, 3.5vw + 0.8rem, 2.2rem);
    font-size: clamp(0.85rem, 2.5vw + 0.35rem, 1.05rem);
    flex: none;
  }
  
  .related-perfumes {
    padding: clamp(1.5rem, 5vw + 1rem, 4rem) 0;
  }
  
  .related-perfumes__title {
    font-size: clamp(1.2rem, 5vw + 0.8rem, 2.5rem);
    margin-bottom: clamp(1rem, 3vw + 0.5rem, 2.5rem);
  }
  
  .related-perfumes__grid {
    grid-template-columns: repeat(auto-fit, minmax(clamp(140px, 70vw, 250px), 1fr));
    gap: clamp(0.75rem, 3vw + 0.25rem, 1.5rem);
  }
  
  .related-perfume {
    padding: clamp(0.5rem, 2vw + 0.25rem, 1.5rem);
    min-height: clamp(200px, 40vw + 10rem, 350px);
  }
  
  .related-perfume__image img {
    height: clamp(120px, 25vw + 5rem, 250px);
  }
  
  .related-perfume__name {
    font-size: clamp(0.9rem, 3vw + 0.3rem, 1.2rem);
  }
  
  .related-perfume__subtitle {
    font-size: clamp(0.75rem, 2.5vw + 0.2rem, 1rem);
    margin-bottom: clamp(0.5rem, 2vw + 0.25rem, 1rem);
  }
  
  .btn--small {
    padding: clamp(0.5rem, 1.8vw + 0.25rem, 0.8rem) clamp(0.8rem, 2.5vw + 0.5rem, 1.3rem);
    font-size: clamp(0.75rem, 2.2vw + 0.25rem, 0.95rem);
    min-width: clamp(80px, 15vw, 120px);
  }

  .collection__image {
    height: 250px;
  }

  /* Newsletter */
  .newsletter__form {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .newsletter__input {
    width: 100%;
  }

  .newsletter__btn {
    width: 100%;
  }



  /* Footer */
  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
  }

  .footer__logo-img {
    height: clamp(45px, 7vh, 60px);
    margin: 0 auto;
  }

  .footer__social {
    justify-content: center;
  }
}



/* Mobile Small & Extra Small (≤ 480px) */
@media screen and (max-width: 480px) {
  .hero__content {
    padding: clamp(0.125rem, 0.8vw, 0.5rem);
    max-width: calc(100% - 0.5rem);
    min-height: calc(100vh - var(--header-height) - 0.5rem);
    gap: clamp(0.125rem, 1vh, 0.75rem);
  }
  
  .hero__logo-img {
    height: clamp(60px, 9vh, 120px);
    max-width: calc(100% - 0.5rem);
  }
  
  .hero__title {
    font-size: clamp(1.1rem, 2.8vw, 1.8rem);
    line-height: 1;
  }
  
  .hero__subtitle {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    padding: 0 clamp(0.0625rem, 0.25vw, 0.25rem);
  }
  
  .hero__actions {
    gap: clamp(0.125rem, 0.8vw, 0.5rem);
    max-width: calc(100% - 0.25rem);
  }
  
  .hero__actions .btn {
    max-width: calc(100% - 0.25rem);
    padding: clamp(0.4rem, 1vw, 0.7rem) clamp(0.6rem, 1.5vw, 1rem);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
  }
  
  .nav__logo-img {
    height: clamp(32px, 6vh, 44px);
    max-width: clamp(120px, 25vw, 170px);
  }

  .nav {
    position: relative !important;
    justify-content: flex-start !important;
  }

  .nav__actions {
    position: fixed !important;
    right: 0 !important;
    padding-right: 0.3rem !important;
    z-index: 1001 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
    gap: clamp(0.25rem, 1vw, 0.5rem) !important;
  }


  
  .nav {
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    position: relative !important;
    justify-content: flex-start !important;
  }

  .nav__actions {
    position: absolute !important;
    right: clamp(0.25rem, 1.5vw, 0.75rem) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
  }
  
  .collection__item {
    flex: 0 0 clamp(260px, 90vw, 340px);
    width: clamp(260px, 90vw, 340px);
    min-height: clamp(460px, 60vh, 560px);
  }
  
  .collection__image {
    height: clamp(200px, 30vh, 280px);
  }
}

/* Ultra Small Screens (≤ 360px) */
@media screen and (max-width: 360px) {
  .hero__content {
    padding: clamp(0.0625rem, 0.5vw, 0.25rem);
    max-width: calc(100% - 0.25rem);
    gap: clamp(0.0625rem, 0.8vh, 0.5rem);
  }
  
  .hero__logo-img {
    height: clamp(50px, 8vh, 100px);
    max-width: calc(100% - 0.25rem);
  }
  
  .hero__title {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 0.95;
  }
  
  .hero__subtitle {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    padding: 0 clamp(0.03125rem, 0.125vw, 0.125rem);
  }
  
  .hero__actions .btn {
    max-width: calc(100% - 0.125rem);
    padding: clamp(0.3rem, 0.8vw, 0.6rem) clamp(0.5rem, 1.2vw, 0.8rem);
    font-size: clamp(0.7rem, 0.8vw, 0.75rem);
  }
  
  .nav__logo-img {
    height: clamp(28px, 5vh, 36px);
    max-width: clamp(100px, 22vw, 140px);
  }

  .nav {
    position: relative !important;
    justify-content: flex-start !important;
  }

  .nav__actions {
    position: absolute !important;
    right: clamp(0.2rem, 1vw, 0.5rem) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
    gap: clamp(0.2rem, 0.8vw, 0.4rem) !important;
  }


  
  .collection__item {
    flex: 0 0 clamp(240px, 88vw, 300px);
    width: clamp(240px, 88vw, 300px);
    min-height: clamp(440px, 55vh, 520px);
  }
  
  .collection__image {
    height: clamp(180px, 25vh, 240px);
  }
}

/* Mobile Small (320px - 575px) */
@media screen and (max-width: 575px) {
  :root {
    --font-size-h1: 2.5rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.125rem;
    --spacing-xxl: 2.5rem;
    --spacing-xl: 1.5rem;
    --spacing-lg: 1.25rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  /* Header */
  .nav__logo-img {
    height: 35px;
  }

  .language-select {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
  }

  /* Hero */
  .hero__logo-img {
    height: 80px;
  }

  .hero__title {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Sections */
  .section__title {
    font-size: 1.75rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  /* Essence Cards */
  .essence__icon {
    width: 48px;
    height: 48px;
  }

  .essence__title {
    font-size: 1.25rem;
  }

  .essence__description {
    font-size: 0.875rem;
  }

  /* Collection */
  .collection__item {
    max-width: 100%;
  }

  .collection__image {
    height: 220px;
  }

  .collection__name {
    font-size: 1.25rem;
  }

  .collection__description {
    font-size: 0.875rem;
  }

  .collection__note {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }

  /* Heritage */
  .heritage__title {
    font-size: 1.75rem;
  }

  .heritage__description {
    font-size: 1rem;
  }

  .heritage__ornament,
  .newsletter__ornament {
    display: none;
  }

  /* Craftsmanship */
  .craftsmanship__number {
    font-size: 2.5rem;
  }

  .craftsmanship__title {
    font-size: 1.25rem;
  }

  .craftsmanship__description {
    font-size: 0.875rem;
  }

  /* Newsletter */
  .newsletter__title {
    font-size: 1.75rem;
  }

  .newsletter__description {
    font-size: 1rem;
  }

  /* Footer */
  .footer__title {
    font-size: 1.25rem;
  }

  .footer__description,
  .footer__contact-item,
  .footer__link {
    font-size: 0.875rem;
  }

  .footer__logo-img {
    height: 50px;
  }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING ANIMATION ===== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-cream-silk);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: var(--transition-medium);
}

.loading__logo {
  width: 120px;
  height: 120px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}



/* ===== PRODUCT PAGES ===== */
.product-hero {
  padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-xxl);
  background: #ffffff;
}

/* Mobile header - hidden by default */
.product-hero__mobile-header {
  display: none;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.product-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.product-hero__image {
  position: relative;
  text-align: center;
}

.product-hero__img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.product-hero__ornament {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  opacity: 0.8;
}

.product-hero__ornament-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hero__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-sm);
}

.product-hero__subtitle {
  font-family: var(--font-accent);
  font-size: var(--font-size-h4);
  color: var(--color-baroque-gold);
  margin-bottom: var(--spacing-xl);
}

.product-hero__notes {
  margin-bottom: var(--spacing-xl);
}

.product-hero__notes-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h3);
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-lg);
}

.product-hero__notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.product-hero__note-category h4 {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body-large);
  font-weight: 500;
  color: var(--color-charcoal-grey);
  margin-bottom: var(--spacing-sm);
}

.product-note {
  display: inline-block;
  background: var(--color-baroque-gold);
  color: var(--color-crown-black);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: var(--font-size-caption);
  font-weight: 500;
  margin-right: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}

.product-hero__story {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: var(--color-warm-ivory);
  border-radius: 12px;
  border-left: 4px solid var(--color-baroque-gold);
}

.product-hero__story-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h3);
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-sm);
}

.product-hero__story-subtitle {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  color: var(--color-baroque-gold);
  margin-bottom: var(--spacing-md);
}

.product-hero__story-text {
  color: var(--color-charcoal-grey);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-body);
}

.product-hero__dedication {
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-baroque-gold);
}

.product-hero__dedication h5 {
  font-family: var(--font-primary);
  font-size: var(--font-size-body-large);
  color: var(--color-baroque-gold);
  margin-bottom: var(--spacing-sm);
  font-style: italic;
}

.product-hero__dedication p {
  color: var(--color-charcoal-grey);
  line-height: 1.7;
  font-size: var(--font-size-body);
  font-style: italic;
}

.product-hero__details {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--color-soft-beige);
  box-shadow: var(--shadow-light);
}

.product-hero__details-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h3);
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-lg);
}

.product-hero__details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.product-detail {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.product-detail__label {
  font-family: var(--font-secondary);
  font-size: var(--font-size-caption);
  color: var(--color-baroque-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-detail__value {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  color: var(--color-crown-black);
  font-weight: 500;
}

.product-hero__actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: var(--font-size-body-large);
}

.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-caption);
}

/* ===== PRODUCT STORY SECTION ===== */
.product-story {
  background: #ffffff;
  padding: var(--spacing-xxl) 0;
}

.product-story__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  align-items: start;
}

.product-story__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h2);
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.product-story__subtitle {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  color: var(--color-baroque-gold);
  margin-bottom: var(--spacing-lg);
}

.product-story__description {
  color: var(--color-charcoal-grey);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-body-large);
}

.product-story__details {
  background: var(--color-warm-ivory);
  padding: var(--spacing-xl);
  border-radius: 12px;
  border: 1px solid var(--color-baroque-gold);
  box-shadow: var(--shadow-light);
  height: fit-content;
}

.product-detail {
  margin-bottom: var(--spacing-lg);
}

.product-detail:last-child {
  margin-bottom: 0;
}

.product-detail__title {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  font-weight: 500;
  color: var(--color-charcoal-grey);
  margin-bottom: var(--spacing-xs);
}

.product-detail__value {
  font-family: var(--font-primary);
  font-size: var(--font-size-body-large);
  font-weight: 500;
  color: var(--color-crown-black);
}

/* ===== RELATED PRODUCTS SECTION ===== */
.related-products {
  background: var(--color-warm-ivory);
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  max-width: 800px;
  margin: 0 auto;
}

.related-product {
  background: #ffffff;
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.related-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.related-product__image {
  margin-bottom: var(--spacing-md);
}

.related-product__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
}

.related-product__name {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  color: var(--color-crown-black);
  margin-bottom: var(--spacing-sm);
}

.related-product__description {
  color: var(--color-charcoal-grey);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-body);
}

/* ===== PRODUCT PAGES RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  .product-hero__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  /* Show mobile header */
  .product-hero__mobile-header {
    display: block;
  }

  /* Hide desktop titles */
  .product-hero__title--desktop,
  .product-hero__subtitle--desktop {
    display: none;
  }

  /* Center images on mobile */
  .product-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-hero__img {
    margin: 0 auto;
  }

  .product-story__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}

@media screen and (max-width: 768px) {
  .product-hero__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  /* Mobile header styling */
  .product-hero__mobile-header .product-hero__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
  }

  .product-hero__mobile-header .product-hero__subtitle {
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }

  /* Ensure image centering on smaller mobile */
  .product-hero__image {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .product-hero__img {
    max-width: 90%;
    margin: 0 auto;
  }

  .product-hero__notes-grid {
    gap: var(--spacing-md);
  }

  .product-hero__actions {
    justify-content: center;
  }

  .product-hero__ornament {
    display: none;
  }

  .related-products__grid {
    grid-template-columns: 1fr;
  }

  .product-story__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .product-story__details {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
}

@media screen and (max-width: 480px) {
  .product-hero__mobile-header .product-hero__title {
    font-size: 2rem;
  }

  .btn--large {
    padding: 1rem 2rem;
    font-size: var(--font-size-body);
  }

  .product-hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
/* Tablet and Mobile Navigation */
@media screen and (max-width: 768px) {
  .nav__toggle {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    order: 2;
  }

  .nav__language {
    order: 1;
  }

  .nav__actions {
    display: flex !important;
    align-items: center;
    gap: var(--spacing-md);
    flex-direction: row;
    position: absolute !important;
    right: clamp(0.5rem, 2vw, 1rem) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
  }

  .nav {
    justify-content: flex-start !important;
    position: relative !important;
  }
  
  .nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-crown-black);
    display: block;
    transition: 0.3s;
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-warm-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .nav__menu.show-menu {
    left: 0;
  }
  
  .nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-crown-black);
    display: block;
  }
  
  .nav__link {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
  
  .nav__actions {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Mobile containers */
  .container {
    padding: 0 1rem;
  }
  
  /* Mobile Main */
  .main {
    padding-top: var(--header-height);
  }

  /* Mobile Hero */
  .hero {
    height: 100vh;
    min-height: 500px;
    padding: 0;
  }
  
  .hero__background {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1));
  }
  
  .hero__content {
    padding: 1rem;
  }
  
  .hero__logo-img {
    height: 120px;
    margin-bottom: 1.5rem;
  }
  
  .hero__title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero__actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  /* Mobile Collection */
  .collection__horizontal {
    flex-direction: column;
    gap: 2rem;
  }
  
  .collection__item {
    width: 100%;
    max-width: 320px;
    min-height: 580px;
  }
  
  .collection__image {
    height: 280px;
  }
  
  /* Mobile Essence */
  .essence__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Mobile Newsletter */
  .newsletter__form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter__input {
    width: 100%;
  }
  
  .newsletter__btn {
    width: 100%;
  }
  
  /* Mobile Footer */
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__social {
    justify-content: center;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }
  
  .hero__logo-img {
    height: 80px;
  }
  
  .collection__item {
    max-width: 280px;
    min-height: 480px;
  }
  
  .collection__image {
    height: 200px;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== EXTREME RESPONSIVE ===== */

/* Ultra-wide screens (2560px+) */
@media screen and (min-width: 2560px) {
  .container {
    max-width: min(2000px, 80vw);
  }
  
  .hero__title {
    font-size: clamp(4rem, 4vw, 7rem);
  }
  
  .hero__subtitle {
    font-size: clamp(1.5rem, 1.5vw, 2.5rem);
  }
  
  /* Perfume pages ultra-wide */
  .perfume-hero__content {
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(4rem, 8vw, 12rem);
    max-width: 1800px;
    margin: 0 auto;
  }
  
  .perfume-hero__image {
    max-width: clamp(500px, 20vw, 800px);
  }
  
  .perfume-hero__title {
    font-size: clamp(3rem, 3vw, 6rem);
  }
  
  .perfume-hero__subtitle {
    font-size: clamp(1.5rem, 1.5vw, 2.5rem);
  }
  
  .related-perfumes__grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 1600px;
    gap: clamp(2rem, 4vw, 5rem);
  }
}

/* Ultra-small screens (240px-319px) */
@media screen and (max-width: 319px) {
  :root {
    --header-height: 60px;
    --font-size-h1: 1.8rem;
    --font-size-h2: 1.4rem;
    --font-size-h3: 1.2rem;
    --font-size-h4: 1rem;
    --spacing-xxl: 1.5rem;
    --spacing-xl: 1rem;
    --spacing-lg: 0.75rem;
  }

  .container {
    padding: 0 clamp(0.5rem, 3vw, 1rem);
    max-width: 100%;
  }

  /* Header ultra-small */
  .nav__logo-img {
    height: clamp(25px, 8vw, 35px);
  }

  .language-select {
    font-size: clamp(0.7rem, 3vw, 0.8rem);
    padding: clamp(0.2rem, 1vw, 0.3rem) clamp(0.3rem, 2vw, 0.5rem);
  }

  /* Hero ultra-small */
  .hero {
    min-height: clamp(400px, 100vh, 500px);
  }
  
  .hero__logo-img {
    height: clamp(60px, 15vw, 80px);
  }

  .hero__title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    line-height: clamp(1.1, 1.15, 1.2);
  }

  .hero__subtitle {
    font-size: clamp(0.8rem, 3vw, 1rem);
    line-height: clamp(1.4, 1.5, 1.6);
  }

  /* Perfume pages ultra-small */
  .perfume-hero {
    padding: calc(var(--header-height) + clamp(0.1rem, 0.5vw, 0.3rem)) 0 clamp(0.5rem, 4vw, 1rem);
    min-height: clamp(70vh, 85vh, 95vh);
  }
  
  .perfume-hero__container {
    padding: 0 clamp(0.25rem, 2vw, 0.75rem);
  }
  
  .perfume-hero__image {
    max-width: clamp(140px, 60vw, 250px);
    min-width: clamp(120px, 50vw, 200px);
  }
  
  .perfume-hero__img {
    max-height: clamp(180px, 40vh, 300px);
  }

  .perfume-hero__title {
    font-size: clamp(1.1rem, 5vw + 0.5rem, 2rem);
    line-height: clamp(1.05, 1.1, 1.15);
    margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
  }

  .perfume-hero__subtitle {
    font-size: clamp(0.7rem, 2.5vw + 0.2rem, 1rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }

  .perfume-notes {
    padding: clamp(0.4rem, 1.5vw + 0.2rem, 1rem);
    margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
  }

  .perfume-notes__title {
    font-size: clamp(0.8rem, 2.5vw + 0.3rem, 1.2rem);
    margin-bottom: clamp(0.3rem, 1vw, 0.75rem);
  }

  .perfume-note__label {
    font-size: clamp(0.6rem, 1.5vw + 0.15rem, 0.8rem);
    letter-spacing: clamp(0.3px, 0.05vw, 0.8px);
  }

  .perfume-note__value {
    font-size: clamp(0.65rem, 2vw + 0.15rem, 0.9rem);
    line-height: clamp(1.3, 1.4, 1.5);
  }

  .perfume-description p {
    font-size: clamp(0.7rem, 2vw + 0.2rem, 0.95rem);
    margin-bottom: clamp(0.4rem, 1.5vw, 1rem);
  }

  .perfume-actions .btn {
    padding: clamp(0.6rem, 2.2vw + 0.3rem, 1rem) clamp(1rem, 3vw + 0.5rem, 1.8rem);
    font-size: clamp(0.75rem, 2.2vw + 0.25rem, 0.95rem);
    margin-bottom: clamp(0.4rem, 1.2vw + 0.1rem, 0.6rem);
  }

  /* Related perfumes ultra-small */
  .related-perfumes {
    padding: clamp(1rem, 4vw + 0.5rem, 2.5rem) 0;
  }

  .related-perfumes__title {
    font-size: clamp(1rem, 4vw + 0.5rem, 1.8rem);
    margin-bottom: clamp(0.75rem, 2.5vw + 0.25rem, 1.5rem);
  }

  .related-perfumes__grid {
    grid-template-columns: 1fr;
    gap: clamp(0.5rem, 2vw + 0.2rem, 1rem);
  }

  .related-perfume {
    padding: clamp(0.4rem, 1.5vw + 0.2rem, 1rem);
    min-height: clamp(160px, 35vw + 8rem, 280px);
  }

  .related-perfume__image img {
    height: clamp(100px, 20vw + 3rem, 180px);
  }

  .related-perfume__name {
    font-size: clamp(0.8rem, 2.5vw + 0.2rem, 1rem);
    margin-bottom: clamp(0.2rem, 0.5vw, 0.4rem);
  }

  .related-perfume__subtitle {
    font-size: clamp(0.65rem, 2vw + 0.15rem, 0.85rem);
    margin-bottom: clamp(0.4rem, 1.5vw, 0.8rem);
  }

  .btn--small {
    padding: clamp(0.4rem, 1.3vw + 0.2rem, 0.7rem) clamp(0.7rem, 2vw + 0.3rem, 1.1rem);
    font-size: clamp(0.65rem, 1.8vw + 0.2rem, 0.85rem);
    min-width: clamp(60px, 12vw, 100px);
  }
}

/* Extreme ultra-wide screens (4K+ monitors) */
@media screen and (min-width: 3840px) {
  .container {
    max-width: min(3000px, 70vw);
  }
  
  .perfume-hero__content {
    max-width: 2400px;
    gap: clamp(6rem, 10vw, 15rem);
  }
  
  .perfume-hero__image {
    max-width: clamp(600px, 15vw, 1000px);
  }
  
  .related-perfumes__grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    max-width: 2000px;
  }
}





/* ===== FORCE FOOTER LOGO CENTER - ALL MOBILE SIZES ===== */
@media screen and (max-width: 1024px) {
  .footer__logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: var(--spacing-md) !important;
    text-align: center !important;
  }

  .footer__logo-img {
    margin: 0 auto !important;
    display: block !important;
  }
}

/* ===== DESKTOP MENU CENTERED ===== */
@media screen and (min-width: 1025px) {
  .nav__menu {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 0 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .nav__actions {
    position: absolute !important;
    right: clamp(1rem, 3vw, 2rem) !important;
    top: 0 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
  }
}



