/* ===========================
   AUREMIA Luxury Theme
   Colors: Deep Black & Rich Gold
   =========================== */

:root {
  --auremia-bg: #050508;
  --auremia-bg-soft: #101018;
  --auremia-bg-elevated: #151521;
  --auremia-gold: #e9c46a;
  --auremia-gold-soft: #f4d791;
  --auremia-gold-deep: #c1993a;
  --auremia-text-main: #f8f5f0;
  --auremia-text-muted: #b0abb0;
  --auremia-border-subtle: rgba(233, 196, 106, 0.2);

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition-fast: 0.25s ease-out;
  --transition-med: 0.4s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #14121a 0, #050508 50%, #000000 100%);
  color: var(--auremia-text-main);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */

h1,
h2,
h3,
.brand-main,
.footer-title {
  font-family: "Cinzel", "Poppins", serif;
  letter-spacing: 0.08em;
}

p {
  margin-bottom: 0;
}

/* Preloader */

#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1a161e, #050508 60%, #000 100%);
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  animation: float 3s ease-in-out infinite;
}

.preloader-img {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 16px 35px rgba(0, 0, 0, 0.75));
}

.preloader-text {
  font-family: "Cinzel", serif;
  letter-spacing: 0.5em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--auremia-gold);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Navbar */

.auremia-navbar {
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 8, 0.96),
    rgba(5, 5, 8, 0.8),
    transparent
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233, 196, 106, 0.2);
}

.navbar-brand {
  padding: 0.4rem 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--auremia-text-muted);
}

.nav-links .nav-link {
  position: relative;
  font-size: 0.9rem;
  padding-inline: 0.75rem;
  color: var(--auremia-text-muted);
  transition: color var(--transition-fast);
}

.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--auremia-gold),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--auremia-text-main);
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  transform: scaleX(1);
}

/* Hero */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1541643600914-78b084683601?w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  filter: grayscale(100%) brightness(0.3);
}

.hero-overlay {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 10% 0, rgba(233, 196, 106, 0.12) 0, transparent 55%),
    radial-gradient(circle at 80% 0, rgba(233, 196, 106, 0.06) 0, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(233, 196, 106, 0.08) 0, transparent 55%);
  opacity: 0.95;
  pointer-events: none;
}

.hero-bottom-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #050508 40%, #050508 100%);
  pointer-events: none;
}

.hero-text-block {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--auremia-gold-soft);
}

.hero-title {
  font-size: clamp(2.3rem, 3.1vw, 3.5rem);
  line-height: 1.2;
}

.gradient-gold {
  background: linear-gradient(135deg, #f4e3b0, #e9c46a, #f9f1d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--auremia-text-muted);
  font-size: 0.98rem;
  max-width: 32rem;
}

.hero-ctas .btn {
  font-size: 0.9rem;
  padding-inline: 1.7rem;
  padding-block: 0.6rem;
  border-radius: 999px;
}

.auremia-btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--auremia-gold), var(--auremia-gold-deep));
  color: #050508;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.75);
  font-weight: 600;
}

.auremia-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.auremia-btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--auremia-text-main);
  background: rgba(5, 5, 8, 0.7);
  backdrop-filter: blur(10px);
}

.auremia-btn-outline:hover {
  border-color: var(--auremia-gold);
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--auremia-text-muted);
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--auremia-gold-soft);
}

.meta-value {
  font-size: 0.85rem;
}

.hero-visual-block {
  position: relative;
  z-index: 1;
}

.glass-card {
  position: relative;
  background: radial-gradient(circle at top, #1b171f, #090712 56%, #050508 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 196, 106, 0.24);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 10% 0,
    rgba(233, 196, 106, 0.2),
    transparent 55%
  );
  opacity: 0.4;
  pointer-events: none;
}

.hero-logo-wrapper {
  position: relative;
  padding: 1rem;
}

.hero-logo-img {
  width: 120px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.9));
}

.hero-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.hero-card-text {
  font-size: 0.88rem;
  color: var(--auremia-text-muted);
  margin-bottom: 0.6rem;
}

.hero-card-list {
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: var(--auremia-text-main);
}

.hero-card-list li {
  margin-bottom: 0.25rem;
}

.auremia-btn-gold {
  background: linear-gradient(135deg, var(--auremia-gold), var(--auremia-gold-soft));
  color: #050508;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
}

.auremia-btn-gold:hover {
  filter: brightness(1.05);
}

/* Sections */

.section-padding {
  padding-block: 5rem;
}

.section-dark {
  background: radial-gradient(circle at top, #15121c 0, #050508 45%, #020206 100%);
}

.section-light {
  background: radial-gradient(circle at top, #17141f 0, #090712 50%, #050508 100%);
}

.section-gradient {
  background: radial-gradient(circle at top, #22171c 0, #090712 55%, #050508 100%);
  position: relative;
  overflow: hidden;
}

.signature-background-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1595425970377-c97037db6271?w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: 0;
  filter: grayscale(100%) brightness(0.2);
  pointer-events: none;
}

.craft-background-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1615634260167-c8cdede054de?w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
  filter: grayscale(100%) brightness(0.15);
  pointer-events: none;
}

.section-heading .section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--auremia-gold-soft);
}

.section-title {
  font-size: 1.8rem;
  margin-top: 0.5rem;
}

.section-subtitle {
  color: var(--auremia-text-muted);
  font-size: 0.96rem;
  max-width: 34rem;
  margin-inline: auto;
}

/* Collections */

.collection-card {
  position: relative;
  background: linear-gradient(145deg, #111019, #050508);
  border-radius: var(--radius-md);
  padding: 0;
  border: 1px solid var(--auremia-border-subtle);
  min-height: 500px;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-fast), background 0.4s ease-out;
}

.collection-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7) contrast(1.1);
}

.collection-card:hover .collection-image {
  transform: scale(1.1);
  filter: brightness(0.8) contrast(1.2);
}

.collection-card > *:not(.collection-image-wrapper) {
  padding: 1.7rem 1.5rem;
  padding-top: 1.5rem;
}

.collection-badge {
  margin-top: 0;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 0 0,
    rgba(233, 196, 106, 0.18),
    transparent 55%
  );
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(233, 196, 106, 0.45);
}

.collection-card:hover::before {
  opacity: 1;
}

.collection-card-highlight {
  background: radial-gradient(circle at top, #231a22 0, #080810 60%, #050508 100%);
  border-color: rgba(233, 196, 106, 0.55);
}

.collection-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--auremia-gold-soft);
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  border: 1px solid rgba(233, 196, 106, 0.4);
  margin-bottom: 0.8rem;
}

.collection-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.collection-text {
  font-size: 0.85rem;
  color: var(--auremia-text-muted);
  margin-bottom: 0.5rem;
}

.collection-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.6rem;
}

.collection-notes li {
  font-size: 0.75rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(233, 196, 106, 0.35);
}

.collection-meta {
  font-size: 0.8rem;
  color: var(--auremia-text-muted);
}

/* Signature */

.signature-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.signature-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.signature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #f4e3b0, #e9c46a, #c1993a);
  box-shadow: 0 0 18px rgba(233, 196, 106, 0.8);
  margin-top: 0.35rem;
}

.signature-title {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.signature-text {
  font-size: 0.85rem;
  color: var(--auremia-text-muted);
}

.bottle-highlight {
  position: relative;
  padding: 2.5rem 2rem;
  min-height: 100%;
}

.bottle-ring {
  position: absolute;
  top: 8%;
  left: 8%;
  right: 8%;
  bottom: 8%;
  border-radius: 24px;
  opacity: 0.6;
  pointer-events: none;
}

.bottle-inner {
  position: relative;
  z-index: 1;
}

.bottle-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--auremia-gold-soft);
  margin-bottom: 1rem;
  font-weight: 600;
}

.bottle-text {
  font-size: 0.9rem;
  color: var(--auremia-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.bottle-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.8rem;
  border-radius: 12px;
  background: rgba(5, 5, 8, 0.4);
  border: 1px solid rgba(233, 196, 106, 0.15);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.spec-item:hover {
  border-color: rgba(233, 196, 106, 0.35);
  background: rgba(5, 5, 8, 0.6);
}

.spec-label {
  color: var(--auremia-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 500;
}

.spec-value {
  color: var(--auremia-gold-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Best Sellers Carousel */

#bestsellers {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

#bestsellers .section-heading {
  margin-bottom: 5rem;
}

#bestsellers .section-title {
  margin-bottom: 1.5rem;
}

#bestsellers .section-subtitle {
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#perfumeCarousel {
  position: relative;
  padding: 3rem 0 6rem;
  margin: 0 auto;
  max-width: 1400px;
  padding-bottom: 8rem;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity, transform;
  transform: translateY(20px);
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transform: translateY(0);
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
  transform: translateY(-20px);
}

.carousel-item {
  padding: 1.5rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.perfume-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  padding: 2.5rem 2rem;
  margin-bottom: 0;
}

.perfume-bottle-wrapper {
  position: relative;
  width: 220px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfume-bottle-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 196, 106, 0.3) 0%,
    rgba(233, 196, 106, 0.1) 40%,
    transparent 70%
  );
  animation: pulse-glow 3s ease-in-out infinite;
  filter: blur(20px);
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.perfume-bottle {
  position: relative;
  width: 90px;
  height: 300px;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.bottle-cap {
  width: 55px;
  height: 28px;
  background: linear-gradient(135deg, #c1993a, #e9c46a, #f4d791);
  border-radius: 4px 4px 0 0;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(233, 196, 106, 0.4);
}

.bottle-body {
  width: 90px;
  height: 272px;
  background: linear-gradient(
    180deg,
    rgba(233, 196, 106, 0.15) 0%,
    rgba(5, 5, 8, 0.8) 30%,
    rgba(5, 5, 8, 0.95) 100%
  );
  border: 2px solid rgba(233, 196, 106, 0.4);
  border-radius: 0 0 12px 12px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.bottle-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(233, 196, 106, 0.25) 0%,
    transparent 100%
  );
}

.bottle-label-inner {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--auremia-gold-soft);
  text-align: center;
  font-weight: 600;
}

.perfume-content {
  padding: 2rem 0 1.5rem;
  padding-left: 2.5rem;
  padding-right: 1.5rem;
}

.perfume-badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--auremia-gold);
  background: rgba(233, 196, 106, 0.12);
  border: 1.5px solid rgba(233, 196, 106, 0.35);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(233, 196, 106, 0.15);
}

.perfume-badge:hover {
  background: rgba(233, 196, 106, 0.15);
  border-color: rgba(233, 196, 106, 0.5);
  transform: translateY(-1px);
}

.perfume-name {
  font-family: "Cinzel", serif;
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: var(--auremia-text-main);
  letter-spacing: 0.06em;
  line-height: 1.15;
  font-weight: 700;
}

.perfume-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--auremia-text-muted);
  margin-bottom: 2.5rem;
  max-width: 100%;
  padding-right: 1.5rem;
  font-weight: 400;
}

.perfume-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.note-tag {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  background: rgba(233, 196, 106, 0.1);
  border: 1px solid rgba(233, 196, 106, 0.25);
  border-radius: 999px;
  color: var(--auremia-gold-soft);
  font-weight: 500;
}

.perfume-specs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.5rem 2rem;
  background: rgba(5, 5, 8, 0.6);
  border: 1.5px solid rgba(233, 196, 106, 0.3);
  border-radius: 20px;
  margin-top: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.perfume-specs:hover {
  border-color: rgba(233, 196, 106, 0.4);
  background: rgba(5, 5, 8, 0.6);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.spec-name {
  color: var(--auremia-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.spec-value {
  color: var(--auremia-gold-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Carousel Controls */
.auremia-control {
  width: 56px;
  height: 56px;
  background: rgba(5, 5, 8, 0.85);
  border: 2px solid rgba(233, 196, 106, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.auremia-control:hover {
  opacity: 1;
  border-color: var(--auremia-gold);
  background: rgba(5, 5, 8, 0.95);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(233, 196, 106, 0.3);
}

.auremia-control:active {
  transform: translateY(-50%) scale(0.95);
}

.auremia-control .carousel-control-prev-icon,
.auremia-control .carousel-control-next-icon {
  width: 22px;
  height: 22px;
  background-size: 100% 100%;
  filter: brightness(0) saturate(100%) invert(85%) sepia(30%) saturate(500%)
    hue-rotate(5deg) brightness(1.1);
  transition: transform 0.3s ease;
}

.auremia-control:hover .carousel-control-prev-icon,
.auremia-control:hover .carousel-control-next-icon {
  transform: scale(1.15);
}

.auremia-control.prev {
  left: -30px;
}

.auremia-control.next {
  right: -30px;
}

/* Carousel Indicators - Elegant Minimal Design */
.auremia-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  width: auto;
  z-index: 10;
  background: rgba(5, 5, 8, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(233, 196, 106, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.auremia-indicators button {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(233, 196, 106, 0.4);
  border: 1px solid rgba(233, 196, 106, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: block;
}

.indicator-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--auremia-gold);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.indicator-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  border: 1px solid rgba(233, 196, 106, 0.5);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.auremia-indicators button:hover .indicator-dot {
  background: rgba(233, 196, 106, 0.6);
  border-color: rgba(233, 196, 106, 0.5);
  transform: scale(1.2);
}

.auremia-indicators button:hover .indicator-dot::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.3;
}

.auremia-indicators button:hover .indicator-dot::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.6;
}

.auremia-indicators button.active .indicator-dot {
  width: 10px;
  height: 10px;
  background: var(--auremia-gold);
  border-color: var(--auremia-gold);
  box-shadow: 0 0 15px rgba(233, 196, 106, 0.8),
    0 0 25px rgba(233, 196, 106, 0.5),
    0 0 35px rgba(233, 196, 106, 0.3);
  animation: pulse-indicator 2s ease-in-out infinite;
}

.auremia-indicators button.active .indicator-dot::before {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0.4;
}

.auremia-indicators button.active .indicator-dot::after {
  transform: translate(-50%, -50%) scale(2.5);
  opacity: 0.3;
  border-color: rgba(233, 196, 106, 0.6);
}

@keyframes pulse-indicator {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(233, 196, 106, 0.8),
      0 0 25px rgba(233, 196, 106, 0.5),
      0 0 35px rgba(233, 196, 106, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(233, 196, 106, 1),
      0 0 35px rgba(233, 196, 106, 0.7),
      0 0 50px rgba(233, 196, 106, 0.4);
  }
}

/* Craft */

.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.craft-item {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(233, 196, 106, 0.22);
  background: radial-gradient(circle at top left, #201723 0, #070711 60%);
}

.craft-item h3 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.craft-item p {
  font-size: 0.8rem;
  color: var(--auremia-text-muted);
}

.timeline {
  position: relative;
  padding-inline-start: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  inset-block: 0.4rem;
  inset-inline-start: 0.5rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(233, 196, 106, 0.7),
    rgba(233, 196, 106, 0.15)
  );
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-dot {
  position: absolute;
  inset-inline-start: 0;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #f4e3b0, #c1993a);
  box-shadow: 0 0 16px rgba(233, 196, 106, 0.85);
}

.timeline-content {
  margin-inline-start: 1.4rem;
}

.timeline-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--auremia-gold-soft);
  margin-bottom: 0.15rem;
}

.timeline-content h3 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--auremia-text-muted);
}

/* Stories */

.story-card {
  position: relative;
  background: linear-gradient(145deg, #12101a, #050508);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--auremia-border-subtle);
  min-height: 210px;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-fast);
}

.story-card::before {
  content: "“";
  position: absolute;
  font-family: "Cinzel", serif;
  font-size: 5rem;
  top: -1.7rem;
  inset-inline-start: 0.6rem;
  color: rgba(233, 196, 106, 0.12);
}

.story-card-highlight {
  border-color: rgba(233, 196, 106, 0.6);
  background: radial-gradient(circle at top left, #241821 0, #06040f 55%);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(233, 196, 106, 0.55);
}

.story-text {
  font-size: 0.86rem;
  color: var(--auremia-text-muted);
  margin-bottom: 1rem;
}

.story-meta {
  font-size: 0.8rem;
}

.story-name {
  color: var(--auremia-text-main);
}

.story-label {
  color: var(--auremia-gold-soft);
}

/* Contact */

.contact-section {
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 10% 0,
    rgba(233, 196, 106, 0.14),
    transparent 50%
  );
  opacity: 0.8;
  pointer-events: none;
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.86rem;
  color: var(--auremia-text-muted);
}

.contact-list li {
  margin-bottom: 0.25rem;
}

.contact-card {
  padding: 1.7rem 1.5rem;
}

.contact-form .form-label {
  font-size: 0.8rem;
  color: var(--auremia-text-main);
}

.contact-form .form-control,
.contact-form .form-select {
  background-color: rgba(5, 5, 8, 0.9);
  border: 1px solid rgba(233, 196, 106, 0.35);
  color: var(--auremia-text-main);
  font-size: 0.8rem;
}

.contact-form .form-control::placeholder {
  color: rgba(176, 171, 176, 0.8);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--auremia-gold-soft);
  box-shadow: 0 0 0 0.15rem rgba(233, 196, 106, 0.25);
}

.form-note {
  font-size: 0.75rem;
  color: var(--auremia-text-muted);
}

/* Footer */

.footer-section {
  padding-block: 1.7rem;
  border-top: 1px solid rgba(233, 196, 106, 0.24);
}

.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-title {
  font-size: 0.9rem;
}

.footer-subtitle {
  font-size: 0.7rem;
  color: var(--auremia-text-muted);
}

.footer-text {
  font-size: 0.77rem;
  color: var(--auremia-text-muted);
}

.footer-links {
  font-size: 0.8rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--auremia-text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--auremia-gold-soft);
}

/* Back to top */

.back-to-top {
  position: fixed;
  inset-inline-end: 1.2rem;
  bottom: 1.3rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(233, 196, 106, 0.6);
  background: radial-gradient(circle, #f4e3b0, #e9c46a, #c1993a);
  color: #050508;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast),
    transform var(--transition-fast);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top span {
  margin-top: -2px;
}

/* Scroll animations (fade-on-scroll) */

.fade-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced fade for carousel items */
#perfumeCarousel .fade-on-scroll {
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */

/* Tablet (768px - 991px) */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero-meta {
    flex-direction: column;
    gap: 1rem !important;
  }

  .glass-card {
    margin-top: 2rem;
    padding: 1.8rem;
  }

  .section-padding {
    padding-block: 4rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .collection-card {
    min-height: auto;
    padding: 1.5rem 1.3rem;
  }

  .signature-list {
    gap: 1.5rem;
  }

  .bottle-highlight {
    margin-top: 2rem;
  }

  .contact-card {
    margin-top: 2rem;
  }

  /* Best Sellers Carousel Tablet */
  #bestsellers {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #bestsellers .section-heading {
    margin-bottom: 4rem;
  }

  #perfumeCarousel {
    padding: 2.5rem 0 5rem;
    max-width: 100%;
  }

  .carousel-item {
    min-height: 550px;
    padding: 1.2rem 0;
  }

  .perfume-visual {
    min-height: 480px;
    padding: 2rem 1.5rem;
  }

  .perfume-bottle-wrapper {
    width: 200px;
    height: 350px;
  }

  .perfume-bottle {
    width: 80px;
    height: 280px;
  }

  .bottle-body {
    width: 80px;
    height: 255px;
  }

  .perfume-content {
    padding: 1.8rem 0 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1rem;
  }

  .perfume-visual {
    min-height: 380px;
    padding: 2rem 1.5rem;
  }

  .perfume-bottle-wrapper {
    width: 180px;
    height: 320px;
  }

  .perfume-content {
    padding: 1.5rem 0 1rem;
    padding-left: 1rem;
  }

  .perfume-name {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }

  .perfume-description {
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
    padding-right: 0.5rem;
  }

  .perfume-notes {
    margin-bottom: 2rem;
  }

  .perfume-specs {
    padding: 1.8rem 1.5rem;
  }

  .auremia-indicators {
    margin-bottom: 2.5rem;
  }

  .auremia-control {
    width: 50px;
    height: 50px;
  }

  .auremia-control.prev {
    left: -20px;
  }

  .auremia-control.next {
    right: -20px;
  }
}

/* Mobile (max-width: 767.98px) */
@media (max-width: 767.98px) {
  /* Navbar */
  .navbar-brand {
    padding: 0.3rem 0;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-main {
    font-size: 0.85rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .nav-links .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
    line-height: 1.3;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    margin-top: 1rem;
  }

  .hero-ctas {
    margin-top: 1.5rem;
  }

  .hero-ctas .btn {
    font-size: 0.85rem;
    padding-inline: 1.5rem;
    padding-block: 0.65rem;
  }

  .hero-meta {
    margin-top: 1.5rem;
    font-size: 0.75rem;
  }

  .meta-label {
    font-size: 0.68rem;
  }

  .meta-value {
    font-size: 0.8rem;
  }

  .hero-visual-block {
    margin-top: 2rem;
  }

  .glass-card {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .hero-logo-img {
    width: 100px;
  }

  .hero-card-title {
    font-size: 1rem;
  }

  .hero-card-text {
    font-size: 0.85rem;
  }

  .hero-card-list {
    font-size: 0.8rem;
    padding-left: 1rem;
    margin-bottom: 0.8rem;
  }

  /* Sections */
  .section-padding {
    padding-block: 3rem;
  }

  .section-heading {
    margin-bottom: 2rem !important;
  }

  .section-title {
    font-size: 1.5rem;
    margin-top: 0.4rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
    margin-top: 0.5rem;
  }

  /* Collections */
  .collection-card {
    min-height: 420px;
  }

  .collection-image-wrapper {
    height: 160px;
  }

  .collection-card > *:not(.collection-image-wrapper) {
    padding: 1.4rem 1.2rem;
    padding-top: 1.2rem;
  }

  .collection-badge {
    font-size: 0.65rem;
    padding: 0.18rem 0.75rem;
    margin-bottom: 0.7rem;
  }

  .collection-title {
    font-size: 1rem;
  }

  .collection-text {
    font-size: 0.82rem;
  }

  .collection-notes {
    gap: 0.25rem;
    margin: 0.5rem 0 0.8rem;
  }

  .collection-notes li {
    font-size: 0.7rem;
    padding: 0.18rem 0.6rem;
  }

  .collection-meta {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 0.3rem;
  }

  /* Signature Scents */
  .signature-list {
    gap: 1.2rem;
  }

  .signature-item {
    gap: 0.7rem;
  }

  .signature-dot {
    width: 10px;
    height: 10px;
    margin-top: 0.3rem;
  }

  .signature-title {
    font-size: 0.9rem;
  }

  .signature-text {
    font-size: 0.82rem;
  }

  .bottle-highlight {
    padding: 1.8rem 1.4rem;
    margin-top: 2rem;
  }

  .bottle-label {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }

  .bottle-text {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .bottle-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.2rem;
  }

  .spec-item {
    padding: 0.7rem;
    gap: 0.35rem;
  }

  .spec-label {
    font-size: 0.65rem;
  }

  .spec-value {
    font-size: 0.8rem;
  }

  /* Craftsmanship */
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .craft-item {
    padding: 0.75rem 0.8rem;
  }

  .craft-item h3 {
    font-size: 0.85rem;
  }

  .craft-item p {
    font-size: 0.75rem;
  }

  .timeline {
    padding-inline-start: 1.2rem;
    margin-top: 1.5rem;
  }

  .timeline::before {
    inset-inline-start: 0.35rem;
  }

  .timeline-dot {
    width: 8px;
    height: 8px;
  }

  .timeline-content {
    margin-inline-start: 1.2rem;
  }

  .timeline-label {
    font-size: 0.65rem;
  }

  .timeline-content h3 {
    font-size: 0.88rem;
  }

  .timeline-content p {
    font-size: 0.8rem;
  }

  /* Stories */
  .story-card {
    padding: 1.4rem 1.2rem;
    min-height: auto;
  }

  .story-card::before {
    font-size: 4rem;
    top: -1.2rem;
    inset-inline-start: 0.5rem;
  }

  .story-text {
    font-size: 0.82rem;
    margin-bottom: 0.9rem;
  }

  .story-meta {
    font-size: 0.75rem;
  }

  /* Contact */
  .contact-list {
    font-size: 0.82rem;
    margin-top: 0.8rem;
  }

  .contact-card {
    padding: 1.5rem 1.3rem;
    margin-top: 1.5rem;
  }

  .contact-form .form-label {
    font-size: 0.75rem;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .form-note {
    font-size: 0.7rem;
  }

  /* Footer */
  .footer-section {
    padding-block: 1.5rem;
  }

  .footer-logo {
    width: 30px;
    height: 30px;
  }

  .footer-title {
    font-size: 0.85rem;
  }

  .footer-subtitle {
    font-size: 0.65rem;
  }

  .footer-text {
    font-size: 0.72rem;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer-links {
    justify-content: center;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  /* Back to top */
  .back-to-top {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    inset-inline-end: 1rem;
    bottom: 1rem;
  }

  /* Background images responsive */
  .hero-background-image,
  .signature-background-image,
  .craft-background-image {
    opacity: 0.08;
  }

  .collection-image-wrapper {
    height: 150px;
  }

  /* Best Sellers Carousel Mobile */
  #bestsellers {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #bestsellers .section-heading {
    margin-bottom: 3rem;
  }

  #bestsellers .section-title {
    margin-bottom: 1.2rem;
  }

  #perfumeCarousel {
    padding: 2rem 0 5rem;
    max-width: 100%;
  }

  .carousel-item {
    padding: 0.8rem 0;
    min-height: auto;
  }

  .perfume-visual {
    min-height: 300px;
    padding: 1.8rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .perfume-bottle-wrapper {
    width: 160px;
    height: 300px;
  }

  .perfume-bottle {
    width: 65px;
    height: 240px;
  }

  .bottle-cap {
    width: 42px;
    height: 22px;
  }

  .bottle-body {
    width: 65px;
    height: 218px;
  }

  .perfume-bottle-glow {
    width: 200px;
    height: 200px;
  }

  .bottle-label-inner {
    font-size: 0.55rem;
  }

  .perfume-content {
    padding: 0;
    padding-left: 0;
    text-align: center;
  }

  .perfume-badge {
    font-size: 0.7rem;
    padding: 0.35rem 1rem;
    margin-bottom: 1.2rem;
  }

  .perfume-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .perfume-description {
    font-size: 0.88rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
    padding-right: 0;
    line-height: 1.65;
  }

  .perfume-notes {
    gap: 0.5rem;
    margin-bottom: 1.8rem;
    justify-content: center;
  }

  .note-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .perfume-specs {
    padding: 1.5rem 1.2rem;
    gap: 0.8rem;
    margin-top: 0;
  }

  .spec-row {
    font-size: 0.82rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .spec-name {
    font-size: 0.68rem;
  }

  .spec-value {
    font-size: 0.82rem;
  }

  .auremia-indicators {
    bottom: 1.5rem;
    gap: 0.9rem;
    padding: 0.8rem 1.2rem;
  }

  .indicator-dot {
    width: 7px;
    height: 7px;
  }

  .auremia-indicators button.active .indicator-dot {
    width: 9px;
    height: 9px;
  }

  #perfumeCarousel {
    padding-bottom: 7rem;
  }

  .auremia-control {
    width: 44px;
    height: 44px;
  }

  .auremia-control.prev {
    left: -12px;
  }

  .auremia-control.next {
    right: -12px;
  }

  .auremia-control .carousel-control-prev-icon,
  .auremia-control .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .bottle-specs {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .bottle-highlight {
    padding: 1.6rem 1.2rem;
  }

  .bottle-ring {
    top: 4%;
    left: 4%;
    right: 4%;
    bottom: 4%;
  }

  .spec-item {
    padding: 0.65rem;
  }

  .collection-card {
    min-height: 400px;
  }

  .collection-image-wrapper {
    height: 140px;
  }

  .collection-card > *:not(.collection-image-wrapper) {
    padding: 1.3rem 1.1rem;
    padding-top: 1.1rem;
  }

  .story-card {
    padding: 1.3rem 1.1rem;
  }

  .glass-card {
    padding: 1.3rem;
  }

  .contact-card {
    padding: 1.3rem 1.1rem;
  }

  .hero-ctas .btn {
    font-size: 0.82rem;
    padding-inline: 1.3rem;
  }

  /* Best Sellers Carousel Small Mobile */
  .perfume-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.8rem;
  }

  .perfume-name {
    font-size: 1.3rem;
  }

  .perfume-description {
    font-size: 0.82rem;
  }

  .note-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  .perfume-specs {
    padding: 1rem;
  }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .brand-main {
    font-size: 0.8rem;
  }

  .brand-sub {
    font-size: 0.6rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .hero-ctas .btn {
    font-size: 0.8rem;
    padding-inline: 1.2rem;
    padding-block: 0.6rem;
  }

  /* Best Sellers Carousel Extra Small */
  #bestsellers .section-heading {
    margin-bottom: 2rem;
  }

  #perfumeCarousel {
    padding: 1.5rem 0 4.5rem;
    max-width: 100%;
  }

  .carousel-item {
    padding: 0.5rem 0;
  }

  .perfume-visual {
    min-height: 260px;
    padding: 1.5rem 1rem;
  }

  .perfume-bottle-wrapper {
    width: 140px;
    height: 280px;
  }

  .perfume-bottle {
    width: 60px;
    height: 220px;
  }

  .bottle-cap {
    width: 40px;
    height: 20px;
  }

  .bottle-body {
    width: 60px;
    height: 200px;
  }

  .perfume-bottle-glow {
    width: 180px;
    height: 180px;
  }

  .perfume-content {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .perfume-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.85rem;
  }

  .perfume-name {
    font-size: 1.3rem;
    margin-bottom: 0.9rem;
  }

  .perfume-description {
    font-size: 0.85rem;
    margin-bottom: 1.3rem;
  }

  .perfume-notes {
    margin-bottom: 1.5rem;
  }

  .note-tag {
    font-size: 0.7rem;
    padding: 0.28rem 0.65rem;
  }

  .perfume-specs {
    padding: 1.2rem 1rem;
  }

  .auremia-control {
    width: 40px;
    height: 40px;
  }

  .auremia-control.prev {
    left: -8px;
  }

  .auremia-control.next {
    right: -8px;
  }
}


