:root {
  --gold: #d4af37;
  --dark-bg: #0a0a0a;
  --card-bg: #141414;
  --text-light: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 30%),
    var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 5%;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  padding: 10px 18px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 8px;
}

.nav-btn:hover,
.nav-btn.active {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

/* MENU */

.menu-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: var(--gold);
  z-index: 10002;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  padding: 7px 12px;
  border-radius: 10px;
  line-height: 1;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  z-index: 10003;
  padding: 20px;
  pointer-events: none;
}

.side-menu.open {
  right: 0;
  pointer-events: auto;
}

.side-menu a {
  color: var(--gold);
  font-size: 24px;
  text-decoration: none;
  margin: 15px 0;
  text-align: center;
  font-weight: bold;
  display: block;
  position: relative;
  z-index: 10004;
  pointer-events: auto;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 42px;
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
  z-index: 10004;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("hero.jpg");
  background-repeat: no-repeat;
  background-position: center 15%;
  background-size: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.brand-name {
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 6px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.hero-text {
  color: #d8c27a;
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.gold-btn {
  background: linear-gradient(45deg, #d4af37, #f3d078);
  color: #000;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

/* TITLES / SEARCH */

.section-title {
  text-align: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin: 15px 0 22px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.search-wrap {
  width: 100%;
  padding: 0 5%;
  margin-bottom: 24px;
}

.search-box {
  width: 100%;
  max-width: 650px;
  display: block;
  margin: 0 auto;
  padding: 15px 18px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: #111;
  color: #fff;
  outline: none;
  text-align: center;
  font-size: 15px;
}

/* PRODUCTS */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 20px 5% 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--card-bg);
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  text-align: center;
  border-radius: 14px;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #0f0f0f;
}

.product-card h3 {
  font-size: 1.2rem;
  min-height: 48px;
  color: #d4af37;
  margin-bottom: 10px;
}

.product-card a {
  color: #ffffff !important;
}

.product-img {
  cursor: pointer;
  display: block;
  width: 100%;
  transition: 0.3s ease;
}

.product-img:hover {
  transform: scale(1.03);
}

.wa-btn {
  display: inline-block;
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
}

.wa-btn:hover {
  background: var(--gold);
  color: #000;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 30px;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.28);
}

/* MAP */

.map-section {
  padding: 30px 5% 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.map-section h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 2px;
}

/* CONTACT */

.contact {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #222;
  background: #0b0b0b;
}

.contact h2 {
  color: #d4af37;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.contact-item {
  margin: 10px 0;
  font-size: 16px;
  color: #ccc;
}

.contact-item .icon {
  margin-right: 8px;
  font-size: 18px;
}

.contact-section {
  padding: 60px 5% 40px;
  background: linear-gradient(to bottom, #0b0b0b, #111);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.contact-title {
  text-align: center;
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.contact-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info strong {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
}

.contact-info span {
  color: #d6d6d6;
  font-size: 0.95rem;
}

/* INTRO */

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeOut 2.5s ease forwards;
  animation-delay: 2s;
}

#intro h1 {
  color: #d4af37;
  font-size: 40px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

#intro p {
  color: #aaa;
  font-size: 16px;
  letter-spacing: 2px;
}

/* SPECIAL */

.special-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.special-card h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

/* ANIMATIONS */

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* PERFUME SLIDER */

.perfume-slider-section {
  width: 100%;
  padding: 20px 0 30px;
  background: transparent;
  overflow: hidden;
}

.perfume-slider-title {
  text-align: center;
  color: #d4af37;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.perfume-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.perfume-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: perfumeSlide 35s linear infinite;
}

.perfume-slider:hover .perfume-track {
  animation-play-state: paused;
}

.perfume-card {
  min-width: 160px;
  max-width: 160px;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 18px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perfume-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.18);
}

.perfume-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  border-radius: 12px;
  background: #111;
  margin-bottom: 10px;
}

.perfume-card p {
  color: #d4af37;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

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

/* ADVANTAGES */

.advantages {
  text-align: center;
  padding: 40px 20px;
  margin-top: -20px;
}

.advantages h2 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.adv-card {
  background: #0f0f0f;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 16px 14px;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.06);
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.adv-card h3 {
  color: #d4af37;
  font-size: 16px;
  margin-bottom: 8px;
}

.adv-card p {
  color: #c9c9c9;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* SIDE PERFUMES */

.side-perfumes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.side-perfume {
  position: absolute;
  width: 120px;
  opacity: 0.6;
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.6));
}

/* SOL */
.left1 {
  left: 2%;
  top: 5%;
  animation: float1 10s ease-in-out infinite;
}

.left2 {
  left: 6%;
  top: 30%;
  animation: float2 14s ease-in-out infinite;
}

.left3 {
  left: 3%;
  top: 55%;
  animation: float3 12s ease-in-out infinite;
}

.left4 {
  left: 7%;
  top: 80%;
  animation: float4 16s ease-in-out infinite;
}

/* SAG */
.right1 {
  right: 2%;
  top: 8%;
  animation: float2 11s ease-in-out infinite;
}

.right2 {
  right: 6%;
  top: 35%;
  animation: float3 15s ease-in-out infinite;
}

.right3 {
  right: 3%;
  top: 60%;
  animation: float1 13s ease-in-out infinite;
}

.right4 {
  right: 7%;
  top: 82%;
  animation: float4 17s ease-in-out infinite;
}

/* FLOAT ANIMATIONS */
@keyframes float1 {
  0% { transform: translateY(-25px) rotate(-3deg); }
  50% { transform: translateY(40px) rotate(3deg); }
  100% { transform: translateY(-25px) rotate(-3deg); }
}

@keyframes float2 {
  0% { transform: translateY(35px) rotate(4deg); }
  50% { transform: translateY(-30px) rotate(-4deg); }
  100% { transform: translateY(35px) rotate(4deg); }
}

@keyframes float3 {
  0% { transform: translateY(-20px); }
  50% { transform: translateY(30px); }
  100% { transform: translateY(-20px); }
}

@keyframes float4 {
  0% { transform: translateY(25px); }
  50% { transform: translateY(-35px); }
  100% { transform: translateY(25px); }
}

/* FOOTER */

footer {
  padding: 24px 20px 30px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  color: #777;
  font-size: 0.85rem;
  background: #0a0a0a;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero {
    height: 85vh;
    padding: 0 16px 25px;
    background-position: center 0%;
    background-size: 110%;
  }

  .hero-content {
    max-width: 100%;
    padding: 20px 14px;
  }

  .logo-img {
    width: 600px;
    max-width: 98%;
    margin: 100px auto 10px;
  }

  .brand-name {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
  }

  .hero-text {
    max-width: 100%;
    margin: 80 auto 18px;
    color: #d8c27a;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
    text-align: center;
  }

  .gold-btn {
    padding: 11px 22px;
    font-size: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-menu a {
    font-size: 20px;
  }

  .contact-title {
    font-size: 1.4rem;
  }

  .contact-card {
    padding: 16px;
    border-radius: 14px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 21px;
  }

  .contact-info strong {
    font-size: 0.95rem;
  }

  .contact-info span {
    font-size: 0.88rem;
  }

  .perfume-card {
    min-width: 135px;
    max-width: 135px;
    padding: 10px;
  }

  .perfume-card img {
    height: 145px;
  }

  .perfume-card p {
    font-size: 13px;
  }

  .perfume-track {
    gap: 14px;
    animation: perfumeSlide 28s linear infinite;
  }

  .advantages {
    padding: 20px 10px;
  }

  .advantages h2 {
    font-size: 20px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .adv-card {
    padding: 14px 12px;
  }

  .adv-card h3 {
    font-size: 15px;
  }

  .adv-card p,
  .adv-text {
    font-size: 12.5px;
  }

  .side-perfume {
    width: 68px;
    opacity: 0.65;
  }

  .left1 { left: 1%; top: 8%; }
  .left2 { left: 4%; top: 28%; }
  .left3 { left: 2%; top: 52%; }
  .left4 { left: 5%; top: 78%; }

  .right1 { right: 1%; top: 10%; }
  .right2 { right: 4%; top: 32%; }
  .right3 { right: 2%; top: 58%; }
  .right4 { right: 5%; top: 82%; }
}

@media(max-width:768px){

.official-text{
top:20%;
font-size:14px;
letter-spacing:4px;
}

.official-text{
  position:absolute;
  top:28% !important;
  left:50%;
  transform:translateX(-50%) !important;
  color:#d4af37;
  font-size:18px;
  letter-spacing:6px;
  text-transform:uppercase;
  font-weight:bold;
  z-index:9999;
  white-space:nowrap;
}
}