/* --- VARIABLES --- */
:root {
  --black: #111111;
  --dark-grey: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #e5c76b;
  --white: #ffffff;
  --grey: #888888;
  --light-grey: #f4f4f4;
  --border-color: rgba(212, 175, 55, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Playfair Display", serif;
}

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

ul {
  list-style: none;
}

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

@media (hover: hover) and (pointer: fine) {
  body.viktus-cursor-enabled,
  body.viktus-cursor-enabled * {
    cursor: none !important;
  }

  .viktus-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1000000;
    opacity: 0;
    transition: opacity 0.25s ease;
    mix-blend-mode: screen;
  }

  body.viktus-cursor-visible .viktus-cursor {
    opacity: 1;
  }

  /* 🔹 DOT (núcleo luminoso mais refinado) */
  .viktus-cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(
      circle,
      #ffffff 0%,
      rgba(255, 230, 150, 0.95) 40%,
      rgba(212, 175, 55, 0.9) 70%,
      rgba(212, 175, 55, 0.15) 100%
    );

    box-shadow:
      0 0 4px rgba(255, 255, 255, 0.9),
      0 0 12px rgba(255, 215, 120, 0.7),
      0 0 28px rgba(212, 175, 55, 0.4),
      0 0 60px rgba(212, 175, 55, 0.15);
  }

  /* 🔹 RING PRINCIPAL (efeito vidro + ouro) */
  .viktus-cursor-ring {
    width: 42px;
    height: 42px;
    border-radius: 999px;

    background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02) 40%,
      rgba(0, 0, 0, 0.15) 100%
    );

    border: 1px solid rgba(212, 175, 55, 0.35);

    box-shadow:
      0 0 30px rgba(212, 175, 55, 0.15),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05),
      inset 0 0 25px rgba(212, 175, 55, 0.05);

    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);

    position: relative;
    transform-origin: center;

    transition:
      width 0.25s cubic-bezier(0.22, 1, 0.36, 1),
      height 0.25s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.15s ease;
  }

  /* 🔹 ARO INTERNO */
  .viktus-cursor-ring::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;

    border: 1px solid rgba(212, 175, 55, 0.15);

    box-shadow:
      inset 0 0 10px rgba(255, 255, 255, 0.03),
      inset 0 0 20px rgba(212, 175, 55, 0.05);
  }

  /* 🔹 EFEITO LUXO GIRATÓRIO (mais subtil) */
  .viktus-cursor-ring::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 999px;

    background: conic-gradient(
      from 0deg,
      transparent 0%,
      transparent 65%,
      rgba(255, 255, 255, 0.15) 72%,
      rgba(212, 175, 55, 0.4) 78%,
      transparent 85%,
      transparent 100%
    );

    -webkit-mask: radial-gradient(
      farthest-side,
      transparent calc(100% - 2px),
      #000 calc(100% - 1px)
    );
    mask: radial-gradient(
      farthest-side,
      transparent calc(100% - 2px),
      #000 calc(100% - 1px)
    );

    opacity: 0.6;
    animation: viktusCursorSheen 4s linear infinite;
  }

  /* 🔹 TEXTO */
  .viktus-cursor-mark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Playfair Display", serif;
    font-size: 0.7rem;
    letter-spacing: 4px;

    color: rgba(212, 175, 55, 0.6);

    text-shadow:
      0 0 8px rgba(212, 175, 55, 0.25),
      0 0 18px rgba(212, 175, 55, 0.15);

    opacity: 0;
    transform: translateY(2px);

    transition: all 0.25s ease;
  }

  /* 🔥 HOVER (mais elegante, menos brusco) */
  body.viktus-cursor-hover .viktus-cursor-ring {
    width: 52px;
    height: 52px;

    border-color: rgba(212, 175, 55, 0.75);

    box-shadow:
      0 0 40px rgba(212, 175, 55, 0.25),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 0 35px rgba(212, 175, 55, 0.08);

    transform: scale(1.05);
  }

  body.viktus-cursor-hover .viktus-cursor-mark {
    opacity: 1;
    transform: translateY(0);
  }

  /* 🔥 CLICK (efeito pressão premium) */
  body.viktus-cursor-down .viktus-cursor-ring {
    width: 36px;
    height: 36px;
    transform: scale(0.92);
    border-color: rgba(212, 175, 55, 1);
  }

  body.viktus-cursor-hover .viktus-cursor-dot {
    box-shadow:
      0 0 6px rgba(255, 255, 255, 1),
      0 0 20px rgba(255, 215, 120, 0.9),
      0 0 40px rgba(212, 175, 55, 0.6);
  }

  @keyframes viktusCursorSheen {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .viktus-cursor {
    display: none;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(212, 175, 55, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 110%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.9) 100%),
    rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

html.js .page-loader {
  display: flex;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-card {
  width: min(340px, calc(100% - 40px));
  padding: 28px 26px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(10, 10, 10, 0.72);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-align: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.page-loader-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 55%
  );
  transform: rotate(12deg);
  pointer-events: none;
  opacity: 0.9;
}

.page-loader-bottle {
  width: 70px;
  height: 136px;
  margin: 0 auto 18px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 22px 22px 24px 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.01) 40%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: viktusBottleGlow 1.6s ease-in-out infinite;
}

.page-loader-bottle::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 26px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    rgba(0, 0, 0, 0.18);
}

.page-loader-bottle::after {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 18px;
  border-radius: 8px 8px 6px 6px;
  background: linear-gradient(
    90deg,
    #8f6d17 0%,
    #d4af37 45%,
    #f0df9a 65%,
    #b98d23 100%
  );
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.page-loader-liquid {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background:
    linear-gradient(180deg, rgba(255, 230, 150, 0.12) 0%, transparent 40%),
    linear-gradient(
      180deg,
      rgba(212, 175, 55, 0.78) 0%,
      rgba(212, 175, 55, 0.18) 100%
    );
  animation: viktusFill 1.6s ease-in-out infinite;
}

.page-loader-liquid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 10px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.22) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
  opacity: 0.9;
  transform: translateY(-4px);
  animation: viktusSurface 1.6s ease-in-out infinite;
}

.page-loader-liquid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.22) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 55%
    );
  opacity: 0.75;
  animation: viktusShimmer 1.6s ease-in-out infinite;
}

.page-loader-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.page-loader-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

@keyframes viktusFill {
  0% {
    height: 10%;
  }
  50% {
    height: 78%;
  }
  100% {
    height: 10%;
  }
}

@keyframes viktusShimmer {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-6px);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
}

@keyframes viktusSurface {
  0% {
    transform: translateY(-4px) translateX(-2px);
    opacity: 0.75;
  }
  50% {
    transform: translateY(-6px) translateX(2px);
    opacity: 0.95;
  }
  100% {
    transform: translateY(-4px) translateX(-2px);
    opacity: 0.75;
  }
}

@keyframes viktusBottleGlow {
  0% {
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.55),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
  50% {
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.6),
      0 0 28px rgba(212, 175, 55, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  100% {
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.55),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-bottle,
  .page-loader-liquid,
  .page-loader-liquid::before,
  .page-loader-liquid::after {
    animation: none;
  }
  .page-loader {
    transition: none;
  }
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background-color: #c5a028;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: var(--gold);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-primary {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
}

.btn-primary:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128c7e;
  color: #fff;
}

/* --- HEADER --- */
header {
  background-color: rgba(11, 11, 11, 0.85) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  height: 85px !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex !important;
  align-items: center !important;
  transition: var(--transition);
}

.navbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo {
  flex-shrink: 0 !important;
  width: 180px !important;
  height: 65px !important;
  display: flex !important;
  align-items: center !important;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.logo a {
  display: block !important;
  height: 100% !important;
}

.logo img {
  height: 65px !important;
  width: auto !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  header {
    height: 70px !important;
    background-color: #0b0b0b !important;
    backdrop-filter: none;
  }
  .navbar {
    padding: 0 20px;
  }
  .logo {
    width: 140px !important;
    height: 45px !important;
  }
  .logo img {
    height: 45px !important;
  }
}

.logo span {
  font-weight: 300;
  font-size: 1.2rem;
  margin-left: 5px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  opacity: 0.9;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}

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

.nav-icons {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-left: 50px; /* Garante separação do menu */
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 25px; /* Reduz gap em ecrãs médios para não apertar */
  }
  .nav-icons {
    margin-left: 30px;
  }
}

.nav-icons a {
  font-size: 1.1rem;
  opacity: 0.8;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icons a:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.nav-icons button {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-icons button:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.category-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 2000;
}

.category-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(380px, 92vw);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-right: 1px solid rgba(212, 175, 55, 0.18);
  transform: translateX(-105%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2001;
  display: flex;
  flex-direction: column;
}

body.category-drawer-open .category-drawer-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.category-drawer-open .category-drawer {
  transform: translateX(0);
}

.category-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-drawer-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--gold);
}

.category-drawer-close {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-drawer-close:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
}

.category-drawer-body {
  padding: 20px 22px 26px;
  overflow: auto;
}

.category-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-drawer-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.category-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
}

.category-drawer-link:hover,
.category-drawer-link.active {
  color: var(--gold);
}

.category-drawer-sublist {
  list-style: none;
  padding: 12px 0 0 12px;
  margin: 0;
  display: grid;
  gap: 10px;
}

.category-drawer-sublink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  padding-left: 12px;
  position: relative;
  transition: var(--transition);
}

.category-drawer-sublink::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.25);
  position: absolute;
  left: 0;
}

.category-drawer-sublink:hover,
.category-drawer-sublink.active {
  color: var(--gold);
}

.category-drawer-sublink:hover::before,
.category-drawer-sublink.active::before {
  background: rgba(212, 175, 55, 0.85);
}

.mobile-menu-btn {
  display: none;
}

.nav-overlay {
  display: none;
}

/* --- HERO SECTION --- */
.hero {
  height: 90vh;
  background-color: #0b0b0b;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/here-viktus.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-content {
  position: relative !important;
  z-index: 10 !important;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-content .subtitle {
  letter-spacing: 12px;
  opacity: 0.9;
  margin-bottom: 25px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.8rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-description {
  margin: 0 auto 50px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.8;
  color: var(--light-grey);
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* --- SECTION GENERAL --- */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-title .subtitle {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 3px;
  font-weight: 600;
}

/* --- PERFUME GRID --- */
.perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.perfume-card {
  background-color: var(--dark-grey);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.perfume-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.perfume-img {
  height: 350px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.perfume-img.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.08) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: viktusSkeleton 1.2s ease-in-out infinite;
}

.perfume-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.perfume-img.is-loading img {
  opacity: 0;
}

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

.perfume-card:hover .perfume-img img {
  transform: scale(1.1);
}

.perfume-info {
  padding: 25px;
  text-align: center;
}

.perfume-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.perfume-category {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.perfume-short-desc {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 20px;
}

/* --- ABOUT SECTION --- */
.about-summary {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-summary.reverse {
  flex-direction: row-reverse;
  margin-top: 100px;
}

.about-img {
  flex: 1;
  border: 1px solid var(--gold);
  padding: 15px;
}

.brand-values {
  background-color: var(--dark-grey);
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--grey);
}

/* --- BLOG GRID --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--dark-grey);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.blog-img {
  height: 250px;
  overflow: hidden;
}

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

.blog-content {
  padding: 25px;
}

.blog-date {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 20px;
}

/* --- FOOTER --- */
footer {
  background-color: #050505;
  padding: 100px 0 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.footer-logo span {
  color: var(--gold);
  font-size: 1.4rem;
  margin-left: 8px;
  font-weight: 300;
}

.footer-info p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.02);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--gold);
  letter-spacing: 1px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #888;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-contact p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.6;
}

.footer-contact p i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 4px;
}

.footer-newsletter p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-newsletter input {
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-bottom: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-newsletter button {
  width: 100%;
  padding: 15px;
}

.footer-bottom {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #030303;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  color: #666;
  font-size: 0.85rem;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: #666;
  transition: var(--transition);
}

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

.design-by {
  color: #666;
  font-weight: 500;
}

.design-by a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.design-by a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-contact p {
    justify-content: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .legal-links {
    justify-content: center;
    gap: 15px;
  }
}

/* --- PRODUCT DETAILS --- */
.product-details {
  padding: 100px 0;
}

.product-grid {
  display: grid !important;
  grid-template-columns: 450px 1fr !important;
  gap: 60px !important;
  align-items: start !important;
}

.product-image {
  background-color: var(--dark-grey);
  border: 1px solid var(--border-color);
  padding: 40px;
  text-align: center;
  position: sticky;
  top: 120px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.product-image.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.08) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: viktusSkeleton 1.2s ease-in-out infinite;
}

.product-image.is-loading img {
  opacity: 0;
}

.product-info h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.product-price {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.product-sizes-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.product-size-item {
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  min-width: 100px;
  transition: var(--transition);
}

.product-size-item:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.product-description {
  margin-bottom: 40px;
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

.olfactory-notes {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.02) !important;
  padding: 35px;
  border: 1px solid var(--border-color);
  display: block !important;
}

.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  background: rgba(212, 175, 55, 0.05);
  padding: 20px;
  border-left: 3px solid var(--gold);
}

.product-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.product-cta .btn {
  flex: 1;
  text-align: center;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .product-image {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --- CATALOG FILTERS --- */
.catalog-filters {
  margin-bottom: 50px;
  background-color: var(--dark-grey);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}

.filter-group.search {
  flex: 2;
  min-width: 250px;
}

.filter-group.select {
  flex: 1;
  min-width: 150px;
}

.filter-group label {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 12px;
  background-color: var(--black);
  border: 1px solid var(--border-color);
  color: var(--white);
  font-family: inherit;
  transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.product-catalog-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.product-catalog-sidebar {
  width: 260px;
  flex-shrink: 0;
  background-color: var(--dark-grey);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 22px;
}

.product-catalog-main {
  flex-grow: 1;
  min-width: 0;
}

.product-catalog-sidebar h3 {
  margin-bottom: 18px;
  font-size: 1.15rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.product-catalog-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-catalog-category-list li {
  margin-bottom: 6px;
}

.product-catalog-category-list a {
  color: var(--grey);
  transition: var(--transition);
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.product-catalog-category-list a:hover,
.product-catalog-category-list a.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.product-catalog-category-sublist {
  list-style: none;
  padding-left: 14px;
  margin-top: 6px;
  margin-bottom: 12px;
  border-left: 1px solid var(--border-color);
  margin-left: 12px;
}

.product-catalog-category-sublist a {
  font-size: 0.85rem;
  padding: 7px 12px;
}

.product-catalog-mobile-categories {
  display: none;
  margin-bottom: 14px;
}

.product-catalog-categories-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* --- CATALOGS PAGE --- */
.catalog-entry {
  margin-bottom: 100px;
  background-color: var(--dark-grey);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: stretch;
}

.catalog-cover {
  background-color: var(--black);
  padding: 40px;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.catalog-perfumes {
  padding: 40px;
}

.perfume-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.perfume-mini-card {
  background-color: var(--black);
  border: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.perfume-mini-card.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.08) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: viktusSkeleton 1.2s ease-in-out infinite;
}

.perfume-mini-card.is-loading img {
  opacity: 0;
}

.upcoming-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --- ABOUT PAGE --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.value-item {
  padding: 30px;
  border: 1px solid var(--border-color);
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  background-color: var(--dark-grey);
  padding: 50px;
  border: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--gold);
}

.contact-item h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-form {
  padding: 50px;
  border: 1px solid var(--border-color);
}

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

.map-section {
  padding: 0;
}

.map-placeholder {
  width: 100%;
  height: 450px;
  background-color: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border-color);
}

/* --- STORES PAGE --- */
.stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.store-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  background-color: var(--dark-grey);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.store-info {
  padding: 40px;
}

.store-details p {
  color: var(--grey);
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
}

.store-details i {
  color: var(--gold);
  margin-top: 4px;
}

.store-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.store-map {
  min-height: 420px;
  border-left: 1px solid var(--border-color);
  background: var(--black);
}

@media (max-width: 992px) {
  .store-card {
    grid-template-columns: 1fr;
  }
  .store-map {
    border-left: none;
    border-top: 1px solid var(--border-color);
    min-height: 360px;
  }
  .store-info {
    padding: 30px 20px;
  }
}

/* --- ADMIN PANEL SPECIFIC --- */
.admin-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background-color: var(--dark-grey);
  border: 1px solid var(--border-color);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--gold);
}

.form-control {
  width: 100%;
  padding: 12px;
  background-color: var(--black);
  border: 1px solid var(--border-color);
  color: var(--white);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

.admin-table th,
.admin-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  padding: 5px 10px;
  font-size: 0.8rem;
}

.btn-delete {
  color: #ff4d4d;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-grey);
  border-top: 1px solid var(--gold);
  padding: 20px 0;
  z-index: 999999;
  transform: translateY(100%);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  visibility: hidden;
  pointer-events: none;
}

.cookie-banner.active {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-btns {
    width: 100%;
    justify-content: center;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--black);
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    text-align: left;
    border-left: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-only {
    display: flex !important;
  }

  .nav-links li a {
    font-size: 1.2rem;
    font-family: "Playfair Display", serif;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
  }

  .mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
  }

  /* Hamburger Animation */
  .mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* --- Admin Table Responsive --- */
  .mobile-hide {
    display: none !important;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table,
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table tr {
    margin-bottom: 20px;
    background-color: var(--black);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 5px;
  }

  .admin-table td {
    text-align: right;
    padding: 12px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 45px;
  }

  .admin-table td img {
    width: 60px !important;
    height: 60px !important;
  }

  .admin-table td:last-child {
    border-bottom: none;
  }

  .admin-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    text-align: left;
    font-weight: 600;
    color: var(--grey);
    font-size: 0.8rem;
    text-transform: uppercase;
  }

  .admin-actions {
    justify-content: flex-end;
    padding-top: 15px !important;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .admin-actions .action-btn {
    padding: 10px 20px;
    flex: 1;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-content .subtitle {
    letter-spacing: 6px;
    font-size: 0.75rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .about-summary {
    flex-direction: column;
    gap: 30px;
  }

  .about-summary.reverse {
    flex-direction: column;
    margin-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  section {
    padding: 50px 0;
  }

  .container {
    padding: 0 15px;
  }

  /* --- Improved Mobile Styles --- */
  .section-title h2 {
    font-size: 2rem;
  }

  .perfume-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .perfume-img {
    height: 200px;
  }

  .perfume-info {
    padding: 15px;
  }

  .perfume-info h3 {
    font-size: 1.1rem;
  }

  .perfume-short-desc {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-img {
    height: 200px;
  }

  .nav-icons {
    gap: 15px;
  }

  .nav-icons a {
    font-size: 1.1rem;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }

  /* --- New Responsive Overrides --- */
  .product-details {
    padding: 60px 0;
  }

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

  .product-image {
    padding: 30px;
  }

  .product-info h1 {
    font-size: 2.5rem;
  }

  .product-meta {
    flex-direction: column;
    gap: 15px;
  }

  .catalog-filters {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
  }

  .filter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group.search,
  .filter-group.select {
    width: 100%;
  }

  .catalog-filters .btn {
    width: 100%;
    text-align: center;
  }

  .product-catalog-layout {
    flex-direction: column;
    gap: 18px;
  }

  .product-catalog-sidebar {
    display: none;
  }

  .product-catalog-mobile-categories {
    display: flex;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .product-catalog-categories-btn {
    width: 100%;
    border-radius: 999px;
    padding: 12px 16px;
    font-size: 0.78rem;
    letter-spacing: 3px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-cover {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 30px;
  }

  .catalog-perfumes {
    padding: 30px 20px;
  }

  .catalog-entry {
    margin-bottom: 50px;
  }

  .perfume-mini-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  /* --- Contact Responsive --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

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

  .map-placeholder {
    height: 300px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .perfume-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .perfume-img {
    height: 180px;
  }

  .perfume-info {
    padding: 12px;
  }

  .perfume-info h3 {
    font-size: 1rem;
  }

  .perfume-category {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }

  .perfume-card .action-btn {
    width: 100%;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .product-info h1,
  .article-header h1 {
    font-size: 2.2rem !important;
  }

  .product-image {
    padding: 20px !important;
  }

  .article-footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .article-footer .share-article {
    justify-content: center;
  }
}
