@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==================== VARIABLES & BASICS ==================== */
:root {
  --color-bg: #faf7f2;          /* Luxurious warm premium ivory cream background */
  --color-surface: #ffffff;     /* Pristine white for cards/drawers/modals */
  --color-surface-hover: #fcfbf8; /* Delicate soft ivory cream hover */
  --color-primary: #aa7c5c;     /* Polished warm metallic rose-gold from the logo */
  --color-primary-hover: #825b3e; /* Deep luxurious gold-copper on hover */
  --color-text: #2c2522;        /* Warm, elegant charcoal black with brown undertones */
  --color-text-muted: #7d726b;  /* Friendly warm soft gray-brown */
  --color-border: rgba(44, 37, 34, 0.09); /* Subtle delicate warm border */
  --color-border-hover: rgba(44, 37, 34, 0.2); /* Enhanced warm focus border */
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --color-nude: #F1DAD3;          /* Soft nude requested by user */
  --color-nude-hover: #e5beaf;    /* Deeper warm matching nude hover */
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--color-bg);
}

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

button, input, select {
  font-family: inherit;
  outline: none;
}

/* ==================== PAGE LOADER SPLASH ==================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s;
}

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

.loader-logo {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  animation: spinnerPulse 2s infinite ease-in-out;
}

.loader-logo svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 25px rgba(170, 124, 92, 0.25));
}

.loader-line-wrap {
  width: 160px;
  height: 2px;
  background: rgba(44, 37, 34, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.loader-line {
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  animation: loaderFill 2.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes spinnerPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(170, 124, 92, 0.15)); }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 20px rgba(170, 124, 92, 0.35)); }
}

@keyframes loaderFill {
  0% { width: 0%; left: 0; }
  50% { width: 100%; }
  100% { width: 100%; opacity: 0; }
}

/* ==================== HEADER & GLASSPHRE NAVIGATION ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  height: 70px;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.butterfly-nav-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
  filter: drop-shadow(0 2px 4px rgba(170, 124, 92, 0.15));
}

.brand:hover .butterfly-nav-svg {
  transform: scale(1.18) rotate(-4deg);
  filter: drop-shadow(0 6px 12px rgba(170, 124, 92, 0.3));
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--color-text) 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-icon {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
}

.cta-button {
  padding: 11px 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 40px;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: #1F1A18;
  transition: var(--transition-fast);
}

.cta-button:hover {
  background: var(--color-primary);
  color: #1F1A18;
  box-shadow: 0 5px 15px rgba(170, 124, 92, 0.25);
  transform: translateY(-2px);
}

/* Custom Desktop Navigation Enhancements - Cohesive Soft Nude Theme */
@media (min-width: 993px) {
  .header {
    background: rgba(254, 252, 251, 0.35); /* Translucent shimmery warm canvas */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(241, 218, 211, 0.25);
    transition: var(--transition-smooth);
  }

  .header.is-scrolled {
    background: rgba(241, 218, 211, 0.93) !important; /* Exquisite matching soft brand nude */
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(229, 190, 175, 0.5) !important;
    box-shadow: 0 4px 25px rgba(170, 124, 92, 0.08);
  }

  /* Coordinate Header CTA button perfectly with the product page's nude-button signature */
  .header .cta-button {
    background-color: var(--color-nude) !important;
    color: #1F1A18 !important;
    border-color: rgba(229, 190, 175, 0.4) !important;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(170, 124, 92, 0.05);
  }

  .header .cta-button:hover {
    background-color: var(--color-nude-hover) !important;
    color: #1F1A18 !important;
    border-color: var(--color-nude-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(170, 124, 92, 0.15) !important;
  }
}

/* Header action container */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Premium Search Wrapper */
.header-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(247, 237, 230, 0.45);
  border: 1px solid rgba(170, 124, 92, 0.22);
  border-radius: 50px;
  padding: 6px 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 240px;
  box-sizing: border-box;
}

.header-search-wrapper:focus-within,
.header-search-wrapper:hover {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(170, 124, 92, 0.12);
}

/* Width expansion ONLY on Desktop */
@media (min-width: 993px) {
  .header-search-wrapper:focus-within,
  .header-search-wrapper:hover {
    width: 280px;
  }
}

.header-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-search-icon {
  width: 15px;
  height: 15px;
  stroke: var(--color-text);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.header-search-wrapper:focus-within .header-search-icon {
  stroke: var(--color-primary);
  opacity: 1;
  transform: scale(1.05);
}

.header-search-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 8px;
}

#headerSearchInput {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--color-text);
  width: 100%;
  padding: 0;
  font-weight: 500;
}

#headerSearchInput::placeholder {
  color: var(--color-text-muted);
  font-weight: 400;
  opacity: 0.65;
}

.header-search-clear {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.header-search-clear:hover {
  color: var(--color-primary);
}

/* Premium Search Backdrop Overlay */
.search-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43, 31, 25, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  z-index: 850;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Adaptive Search for Mobile Screens */
@media (max-width: 992px) {
  .header-search-wrapper {
    width: 160px;
  }
  .header-search-wrapper:focus-within,
  .header-search-wrapper:hover {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .header-search-wrapper {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    background: rgba(247, 237, 230, 0.65);
    border-radius: 50%;
    border: 1px solid rgba(170, 124, 92, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .header-search-wrapper:not(.expanded):focus-within,
  .header-search-wrapper:not(.expanded):hover {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(247, 237, 230, 0.9) !important;
    border-color: var(--color-primary) !important;
    box-shadow: none !important;
  }
  
  .header-search-container {
    display: none;
    margin-left: 0;
  }

  .header-search-wrapper.expanded {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 92%;
    height: 48px;
    padding: 0 16px;
    background: #ffffff;
    border-radius: 50px;
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(170, 124, 92, 0.25);
    z-index: 1010;
  }

  .header-search-wrapper.expanded .header-search-container {
    display: flex;
    margin-left: 10px;
    flex-grow: 1;
  }

  .header-search-wrapper.expanded .header-search-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    opacity: 1;
  }

  .header-search-wrapper.expanded #headerSearchInput {
    font-size: 14.5px !important;
  }

  .header-search-wrapper.expanded #headerSearchClear {
    display: flex !important;
    font-size: 20px;
    padding: 0;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(170, 124, 92, 0.08);
    color: var(--color-primary);
    margin-left: auto;
  }

  /* Make sure background search overlay on expand doesn't get squished */
  .header-search-wrapper.expanded .header-search-toggle {
    pointer-events: none;
  }
}

.cart-toggle {
  display: none !important;
}

.cart-toggle:hover {
  border-color: var(--color-primary);
  background: rgba(170, 124, 92, 0.06);
}

.cart-toggle-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-text);
}

.cart-toggle__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger lines trigger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-toggle:hover span,
.mobile-toggle.active span {
  background-color: var(--color-nude-hover);
}

/* Active hamburger transition */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==================== COLLAPSED MOBILE MENU OVERLAY ==================== */
body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: block;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s ease;
}

.mobile-menu.active {
  visibility: visible;
}

/* Beautiful dark translucent backdrop overlay as in reference image */
.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 37, 34, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: auto;
}

.mobile-menu.active .mobile-menu-overlay {
  opacity: 1;
}

/* Left Sliding Drawer Panel matching reference image width and height */
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 330px;
  max-width: 85vw;
  height: 100%;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  box-shadow: 15px 0 35px rgba(44, 37, 34, 0.15);
  box-sizing: border-box;
}

.mobile-menu.active .mobile-menu-panel {
  transform: translateX(0);
}

/* Block style row links matching the reference image layout precisely */
.mobile-menu-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--color-surface);
}

.mobile-menu-row {
  display: block;
  width: 100%;
  padding: 26px 36px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  background-color: var(--color-surface);
  border-bottom: 1.5px solid var(--color-border);
  text-decoration: none;
  text-align: left;
  transition: var(--transition-fast);
  box-sizing: border-box;
}

/* Active state gets the soft nude background and text */
.mobile-menu-row:hover,
.mobile-menu-row.active {
  background-color: var(--color-nude);
  color: var(--color-text);
  border-bottom-color: var(--color-nude-hover);
  font-weight: 600;
}

/* Luxury warm cream remaining height bottom section matching the image backdrop perfectly */
.mobile-menu-bottom {
  flex-grow: 1;
  background-color: var(--color-bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* Upper brand header section matching the majestic style */
.mobile-menu-header {
  padding: 50px 24px 35px 24px;
  background: var(--color-surface);
  border-bottom: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Two-line majestic serif branding layout matching the screenshot */
.mobile-menu-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.mobile-menu-letter {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
}

.mobile-menu-letter-sub {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
}

.mobile-menu-tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0;
  display: block;
  text-align: center;
  opacity: 0.75;
}

/* Force mobile navigation rules (?mobile=1) E2E suite support */
body.is-mobile-forced .navbar {
  display: none !important;
}

body.is-mobile-forced .mobile-toggle {
  display: flex !important;
  grid-column: 1 !important;
  justify-self: start !important;
}

body.is-mobile-forced .header {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  justify-content: stretch !important;
  padding: 0 4% !important;
}

body.is-mobile-forced .brand {
  grid-column: 2 !important;
  justify-self: center !important;
  margin: 0 auto !important;
}

body.is-mobile-forced .header-actions {
  grid-column: 3 !important;
  justify-self: end !important;
}

@media (max-width: 992px) {
  .navbar {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
    grid-column: 1 !important;
    justify-self: start !important;
  }
  .header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    justify-content: stretch !important;
    padding: 0 4% !important;
  }
  .brand {
    grid-column: 2 !important;
    justify-self: center !important;
    margin: 0 auto !important;
  }
  .header-actions {
    grid-column: 3 !important;
    justify-self: end !important;
  }
}

/* ==================== HERO DECORATED SPLIT EDITORIAL DESIGN ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7ede6; /* Warm premium beige matching the logo background */
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(6px) brightness(1.02) contrast(1.01); /* Soft, luxurious soft-focus bokeh, completely recognizable and readable but elegant */
  opacity: 0.65; /* Blends perfectly with the warm beige background without drawing focus card blockages */
  transform: scale(1.02);
  transition: all 0.6s ease;
}

.hero-logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  height: 100%;
  text-align: center;
  animation: floatBrandLogo 6.5s ease-in-out infinite;
}

.hero-fallback-svg {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 10px 20px rgba(172, 125, 88, 0.08));
}

.hero-fallback-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

@keyframes floatBrandLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* A seamless editorial vignette fading into a delicate cream on the text column side */
  background: linear-gradient(to right, rgba(247, 237, 230, 0.95) 0%, rgba(247, 237, 230, 0.9) 30%, rgba(247, 237, 230, 0.4) 65%, rgba(247, 237, 230, 0.1) 100%);
  z-index: 2;
}

.hero-content-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-sizing: border-box;
}

/* Left Editorial Text Column (Completely transparent, clean luxury typography) */
.hero-text-col {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}

.hero-text-card {
  background: transparent; /* Removed the heavy, ugly solid white card backing */
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
  animation: heroTextEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroTextEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
  display: inline-block;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 300;
  color: #5d4f45; /* Slightly deepened for superior readability & premium feel */
  line-height: 1.8;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

.hero-divider {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(172, 125, 88, 0.1) 100%);
  margin: 32px 0;
}

.hero-footer-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: #7a6a5e;
  line-height: 1.75;
}

.hero-highlight {
  color: var(--color-primary);
  font-weight: 500;
}

.hero-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-nude);
  color: #1F1A18 !important;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(241, 218, 211, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 10px;
}

.hero-explore-btn:hover {
  background-color: var(--color-nude-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(241, 218, 211, 0.6);
}

.hero-explore-btn:active {
  transform: translateY(1px);
}

/* Right Sharp Logo Column (Perfect, borderless, crystal-clear logo display) */
.hero-logo-col {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.hero-logo-wrapper {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  background: transparent; /* Removed heavy white rounded box */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none; /* Removed heavy distracting shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* Let the beautiful glow shine naturally */
  box-sizing: border-box;
  animation: heroLogoEntrance 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroLogoEntrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
  filter: drop-shadow(0 15px 35px rgba(172, 125, 88, 0.18)); /* Elegant float drop shadow */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-brand-logo:hover {
  transform: scale(1.025) translateY(-4px);
}

.hero-logo-wrapper .hero-logo-fallback {
  filter: none !important;
}

/* Deep Responsive Breakpoints for Split Hero Section */
@media (max-width: 1024px) {
  .hero {
    height: 100vh !important;
    min-height: 640px;
    padding-top: 100px;
    padding-bottom: 50px;
    box-sizing: border-box;
  }

  .hero-overlay {
    background: linear-gradient(to right, rgba(247, 237, 230, 0.96) 0%, rgba(247, 237, 230, 0.92) 40%, rgba(247, 237, 230, 0.65) 75%, rgba(247, 237, 230, 0.15) 100%) !important;
  }

  .hero-content-container {
    flex-direction: row !important;
    gap: 30px !important;
    padding: 0 24px;
    text-align: left !important;
  }

  .hero-text-col {
    order: 1 !important;
    flex: 1.25 !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  .hero-logo-col {
    order: 2 !important;
    flex: 1 !important;
    max-width: 320px !important;
    display: flex !important;
    justify-content: center !important;
  }

  .hero-logo-wrapper {
    max-width: 100%;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  .hero-text-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .hero-tag {
    font-size: 11px !important;
    margin-bottom: 12px !important;
  }

  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.35;
    margin-bottom: 12px !important;
  }

  .hero-subtitle {
    font-size: 14.5px !important;
    line-height: 1.55;
  }

  .hero-divider {
    margin: 18px 0 !important;
  }

  .hero-footer-text {
    font-size: 13.5px !important;
    line-height: 1.55;
  }
}

@media (max-width: 820px) {
  .hero {
    height: 100vh !important;
    min-height: 100vh !important;
    padding-top: 100px;
    padding-bottom: 30px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-overlay {
    background: radial-gradient(circle at center, rgba(247, 237, 230, 0.91) 0%, rgba(247, 237, 230, 0.98) 100%) !important;
  }

  .hero-content-container {
    flex-direction: column-reverse !important;
    gap: 20px !important;
    padding: 0 24px !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-text-col {
    flex: none !important;
    width: 100% !important;
    max-width: 520px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .hero-text-card {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-logo-col {
    max-width: 150px !important;
    margin-bottom: 10px;
    flex: none !important;
    order: 2 !important; /* Visual top stack with column-reverse */
    display: flex !important;
    justify-content: center !important;
  }

  .hero-tag {
    font-size: 11px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }

  .hero-title {
    font-size: 1.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .hero-subtitle {
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    max-width: 440px;
    margin: 0 auto;
  }

  .hero-divider {
    margin: 14px auto !important;
    width: 60px !important;
  }

  .hero-footer-text {
    font-size: 13px !important;
    text-align: center !important;
  }

  .hero-actions {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    margin-top: 20px !important;
  }

  .hero-explore-btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 28px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 85px;
    min-height: 100vh !important;
  }

  .hero-content-container {
    padding: 0 20px !important;
    gap: 15px !important;
  }

  .hero-logo-col {
    max-width: 125px !important;
    margin-bottom: 2px;
  }

  .hero-title {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .hero-subtitle {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }

  .hero-divider {
    margin: 10px auto !important;
  }

  .hero-footer-text {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .hero-brand-logo {
    border-radius: 14px !important;
    filter: drop-shadow(0 8px 16px rgba(172, 125, 88, 0.12)) !important;
  }

  .hero-explore-btn {
    max-width: 100%;
    padding: 14px 20px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
  }
}

/* ==================== PRODUCTS SECTION & GRID ==================== */
.products-section {
  padding: 40px 5% 100px 5%;
  background: linear-gradient(180deg, rgba(244, 212, 215, 0.12) 0%, var(--color-bg) 100%);
  position: relative;
  display: none !important;
}

.products-section.is-revealed {
  display: block !important;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 4; /* Sits in front of the bubbles */
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.22rem;
  color: var(--color-text);
  margin-bottom: 15px;
}

/* Category Filter Rail */
.products-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
  position: relative;
  z-index: 4; /* Sits in front of the bubbles */
}

.products__filter {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.products__filter:hover, .products__filter.is-active {
  color: #1F1A18;
  border-color: var(--color-nude);
  background: var(--color-nude);
}

/* Products Grid layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 4; /* Sits in front of the bubbles */
}

/* Glassy Dynamic Product Card */
.products__card {
  position: relative;
  z-index: 5; /* Ensure cards render above container layers */
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px; /* Soft, incredibly polished rounded corners matching screenshot */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(44, 37, 34, 0.02);
  will-change: transform, opacity;
  content-visibility: auto;
  contain-intrinsic-size: 380px;
}

.products__card:hover {
  z-index: 6; /* Foreground raise on focus/hover */
  background: var(--color-surface);
  border-color: var(--color-border-hover);
  box-shadow: 0 16px 45px rgba(44, 37, 34, 0.08);
  transform: translateY(-6px) scale(1.02);
}

.products__card:hover .products__card-image {
  transform: scale(1.05);
}

.products__card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Consistent square 1:1 backdrop format */
  overflow: hidden;
  background-color: var(--color-bg);
}

.products__best-seller-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #B84A43; /* Sophisticated rose-red color */
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 5;
  pointer-events: none;
  font-family: inherit;
}

.products__card-image {
  position: absolute;
  top: 12px; /* Balanced border margin around the image */
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain; /* Displays the original high-resolution photo fully with absolutely no cropping */
  background-color: var(--color-bg); /* Seamless backdrop color blending */
  border-radius: 14px; /* Classy matching roundness */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(44, 37, 34, 0.02); /* Soft professional lift */
}

/* Heart Favorite Trigger Overlay */
.products__favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
}

.products__favorite-btn:hover {
  background-color: var(--color-surface);
  color: #ff4d6d;
  transform: scale(1.1);
}

.products__favorite-btn.is-favorited {
  color: #ff4d6d;
  background: rgba(255, 77, 109, 0.15);
  border-color: rgba(255, 77, 109, 0.4);
}

/* Card details metadata */
.products__card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.products__card-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.products__card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.products__card-price {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.products__card-colors {
  display: flex;
  gap: 6px;
  margin-top: 0px;
  margin-bottom: 18px;
  justify-content: flex-start;
  align-items: center;
}

.card-color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(44, 37, 34, 0.16);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.card-color-dot:hover {
  transform: scale(1.25);
}

/* Action button strip */
.products__card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.products__btn {
  padding: 13px 20px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-radius: 12px; /* Smooth elegant button curvature matching the screenshot */
  border: none;
  transition: var(--transition-fast);
}

.products__btn--primary {
  background: var(--color-nude);
  color: #1F1A18;
  flex: 1.4;
}

.products__btn--primary:hover {
  background: var(--color-nude-hover);
  box-shadow: 0 4px 12px rgba(241, 218, 211, 0.5);
}

.products__btn--secondary {
  background: transparent;
  border: 1px solid var(--color-border);
  color: #1F1A18;
  flex: 1;
}

.products__btn--secondary:hover {
  background: var(--color-nude);
  border-color: var(--color-nude-hover);
  color: #1F1A18;
}

.products__btn--whatsapp {
  background: #25D366;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1.3;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

.products__btn--whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

/* Secondary Button Favorite selection inside configurations */
.products__btn--secondary.is-favorited {
  background: rgba(255, 77, 109, 0.1);
  border-color: #ff4d6d !important;
  color: #ff4d6d !important;
}

/* ==================== MODAL OVERALL BASE SYSTEM ==================== */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.product-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 37, 34, 0.45);
  backdrop-filter: blur(12px);
}

.product-modal__container {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 60px rgba(44, 37, 34, 0.15);
  border-radius: 20px;
  z-index: 10;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(20px);
}

.product-modal.active .product-modal__container {
  transform: translateY(0);
}

.product-modal__close {
  display: none !important;
}

.product-modal__drag-handle {
  display: none;
}

@media (max-width: 768px) {
  .product-modal__drag-handle {
    display: block !important;
    width: 44px;
    height: 5px;
    background: rgba(0, 0, 0, 0.16) !important;
    border-radius: 10px !important;
    margin: 12px auto 4px auto !important;
    flex-shrink: 0 !important;
    cursor: grab !important;
    z-index: 100 !important;
  }
}

/* Two columns split in Modal details */
.product-modal__gallery {
  width: 45%;
  position: relative;
  background: var(--color-bg);
}

.product-modal__gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
}

.product-modal__details {
  width: 55%;
  padding: 35px;
}

.product-modal__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.product-modal__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 12px;
}

.product-modal__price {
  display: none !important;
}

.product-modal__description {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 25px;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .product-modal__container {
    flex-direction: column;
  }
  .product-modal__gallery, .product-modal__details {
    width: 100%;
  }
  .product-modal__gallery {
    height: 250px;
  }
  .product-modal__details {
    padding: 20px;
  }
}

/* ==================== ARRANGEMENT CUSTOMIZER ==================== */
.product-modal__configurator {
  margin: 25px 0 15px 0;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}

.config-title {
  font-size: 13.5px;
  color: var(--color-text);
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.config-field {
  margin-bottom: 16px;
}

.config-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 600;
}

.config-color-options {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.config-size-options {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.size-opt {
  position: relative;
  cursor: pointer;
}

.size-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: auto;
  min-height: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 16px;
  text-align: center;
  line-height: 1.4;
}

.size-opt input:checked + .size-pill {
  border-color: var(--color-primary);
  background: var(--color-surface-hover);
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(170, 124, 92, 0.12);
  transform: translateY(-1px);
}

.color-opt {
  position: relative;
}

.color-opt input {
  position: absolute;
  opacity: 0;
}

.color-dot {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  transition: var(--transition-fast);
}

.color-opt input:checked + .color-dot {
  transform: scale(1.15);
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(170, 124, 92, 0.35);
}

.config-select, .config-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  transition: var(--transition-fast);
}

.config-select:focus, .config-input:focus {
  border-color: var(--color-primary);
}

.config-review {
  padding: 8px 12px;
  background: rgba(170, 124, 92, 0.06);
  border-left: 2px solid var(--color-primary);
  font-size: 11px;
  color: var(--color-text);
  border-radius: 0 6px 6px 0;
  margin-top: 12px;
}

.product-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.product-modal__actions button {
  flex: 1;
}

/* ==================== CURATED GIFT SELECTION WIZARD ==================== */
.wizard-modal .wizard-container {
  max-width: 520px;
  width: 90%;
  padding: 30px;
  display: block;
}

.wizard-header {
  text-align: center;
  margin-bottom: 25px;
}

.wizard-logo {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.wizard-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.wizard-header p {
  font-size: 12px;
  color: var(--color-text-muted);
}

.wizard-progress {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 25px;
}

.wizard-progress-bar {
  height: 100%;
  background: var(--color-primary);
  width: 33%;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wizard-step {
  display: none;
  animation: modalIn 0.4s ease;
}

.wizard-step.active {
  display: block;
}

.wizard-step-title {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 600;
}

.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.wizard-opt-btn {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: #1F1A18;
  font-size: 14px;
  text-align: left;
  transition: var(--transition-fast);
}

.wizard-opt-btn:hover {
  background: var(--color-nude);
  border-color: var(--color-nude-hover);
  color: #1F1A18;
  transform: translateY(-2px);
}

.wizard-back-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 12px;
  display: block;
  margin: 10px auto 0 auto;
  transition: var(--transition-fast);
}

.wizard-back-btn:hover {
  color: var(--color-primary);
}

.wizard-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 15px;
  padding-right: 5px;
}

.wizard-match-card {
  display: flex;
  gap: 15px;
  padding: 10px;
  background: var(--color-surface);
  border-image: none;
  border-radius: 10px;
  align-items: center;
  border: 1px solid var(--color-border);
}

.wizard-match-img-wrap {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--color-bg);
}

.wizard-match-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.wizard-match-info {
  flex: 1;
}

.wizard-match-info h4 {
  font-size: 13.5px;
  color: var(--color-text);
  margin-bottom: 4px;
  font-family: var(--font-sans);
}

.wizard-match-price {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
}

.wizard-match-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.wizard-match-actions button {
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 6px;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== SLIDEOUT DRAWER CART ==================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  z-index: 1200;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  box-shadow: -15px 0 40px rgba(44, 37, 34, 0.08);
  display: flex;
  flex-direction: column;
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1150;
  background: rgba(44, 37, 34, 0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-drawer.active ~ .cart-drawer__overlay {
  opacity: 1;
  visibility: visible;
}

.cart-drawer__header {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__title {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.cart-drawer__close {
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-drawer__close:hover {
  opacity: 0.7;
}

.cart-drawer__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.cart-drawer__empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 14px;
  padding: 25px;
}

/* Cart Item Cards - Image 8 Style */
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 25px;
}

.cart-item {
  display: flex;
  gap: 16px;
  background: transparent;
  padding: 12px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(44, 37, 34, 0.06);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__image {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--color-bg);
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 4px;
}

.cart-item__name {
  font-size: 14px;
  color: var(--color-text);
  font-weight: bold;
}

.cart-item__remove {
  background: none;
  border: none;
  color: #cbc4bf;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-item__remove:hover {
  color: var(--color-primary);
}

.cart-item__price {
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #7c6e64;
  font-weight: 600;
}

.cart-item__qty-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  border: 1px solid rgba(44, 37, 34, 0.12);
  border-radius: 8px;
  padding: 4px 8px;
  width: fit-content;
  background-color: #faf9f6;
}

.cart-item__qty-btn {
  background: none;
  border: none;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #8b8077;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-fast);
  border-radius: 4px;
  padding: 0;
}

.cart-item__qty-btn:hover {
  background: var(--color-nude);
  color: #1F1A18;
}

.cart-item__qty-val {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  min-width: 16px;
  text-align: center;
}

/* Cart drawer footer */
.cart-drawer__footer {
  padding: 25px;
  border-top: 1px solid var(--color-border);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 24px;
}

.cart-drawer__view-cart {
  width: 100%;
  padding: 15px;
  background: #f5f4f0;
  border: none;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-drawer__view-cart:hover {
  background: #eae8e1;
}

.cart-drawer__checkout {
  width: 100%;
  padding: 15px;
  background: var(--color-nude);
  border: none;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  color: #1F1A18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-drawer__checkout:hover {
  background: var(--color-nude-hover);
  box-shadow: 0 4px 15px rgba(241, 218, 211, 0.5);
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.notification-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notification {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid rgba(170, 124, 92, 0.32);
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(44, 37, 34, 0.08);
  min-width: 280px;
  max-width: 360px;
  transform: translateX(50px);
  opacity: 0;
  animation: notificationIn 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s, opacity 0.4s;
}

.notification.fade-out {
  transform: translateX(50px);
  opacity: 0;
}

.notification-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(170, 124, 92, 0.12);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-message {
  font-size: 12.5px;
  color: var(--color-text);
  font-weight: 500;
}

@keyframes notificationIn {
  to { transform: translateX(0); opacity: 1; }
}

/* ==================== FOOTER SECTION ==================== */
.footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 85px 5% 50px 5%;
  position: relative;
  z-index: 99;
  display: none !important;
}

.footer.is-revealed {
  display: block !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.footer-brand-col {
  flex: 1.8;
  min-width: 280px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-logo {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.butterfly-footer-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(170, 124, 92, 0.15));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
}

.footer-brand:hover .butterfly-footer-svg {
  transform: scale(1.18) rotate(-4deg);
  filter: drop-shadow(0 6px 12px rgba(170, 124, 92, 0.3));
}

.footer-brand-text {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--color-text) 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 380px;
}

.footer-links-col {
  flex: 1;
  min-width: 180px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item {
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-link-item:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-link-item-static,
.footer-link-premium {
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom {
  max-width: 1200px;
  margin: 55px auto 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.copyright-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==================== RESPONSIVE OVERRIDES ==================== */
@media (max-width: 768px) {
  .header {
    padding: 0 4% !important;
  }
  .brand {
    gap: 8px !important;
  }
  .brand-text {
    font-size: 1.15rem !important;
    letter-spacing: 0.03em !important;
  }
  .products-section {
    padding: 24px 16px 60px 16px !important;
    opacity: 1 !important;
  }
  .products-section.is-revealed {
    padding: 24px 16px 60px 16px !important;
    opacity: 1 !important;
  }
  .products-filters {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding: 4px 16px 12px 16px !important;
    gap: 10px !important;
    margin-left: -5vw !important;
    margin-right: -5vw !important;
    margin-bottom: 25px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .products-filters::-webkit-scrollbar {
    display: none !important;
  }
  .products__filter {
    flex-shrink: 0 !important;
    padding: 8px 16px !important;
    font-size: 11px !important;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .products__card-info {
    padding: 12px 14px !important;
  }
  .products__card-category {
    font-size: 8px !important;
    margin-bottom: 4px !important;
  }
  .products__card-name {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }
  .products__card-price {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
  }
  .products__card-actions {
    flex-direction: column !important;
    gap: 6px !important;
  }
  .products__btn {
    padding: 10px 12px !important;
    font-size: 10px !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer {
    padding: 0 16px !important;
  }
  .footer.is-revealed {
    padding: 50px 16px 40px 16px !important;
  }
  .footer-container {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .footer-links-col {
    flex: 1 !important;
    min-width: unset !important;
  }
  .footer-title {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
  }
  .footer-link-item,
  .footer-link-item-static,
  .footer-link-premium {
    font-size: 11.5px !important;
  }
  .footer-links-list {
    gap: 8px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
    padding-top: 20px !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .cart-drawer {
    width: 100%;
  }
  .header {
    height: 70px !important;
    padding: 0 16px !important;
  }
  .brand-logo {
    width: 28px !important;
    height: 28px !important;
  }
  .brand {
    gap: 6px !important;
  }
  .brand-text {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
  }
  .header-actions {
    gap: 12px !important;
  }
  .cart-toggle {
    width: 38px !important;
    height: 38px !important;
  }
}

/* ==================== BACKGROUND FLOATING BUBBLES ==================== */
.floating-bubbles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3; /* Rendered above solid background but behind hero content */
  pointer-events: none;
  overflow: hidden;
}

.floating-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform, top, opacity;
}

.bubble-gloss {
  display: none;
}

.bubble-reflection {
  display: none;
}

.bubble-content-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary); /* Shimmer rose gold */
  opacity: 1; /* Rely entirely on randomized low-opacity set in JS */
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(170, 124, 92, 0.12)); /* Delicate, eye-safe drop-shadow */
  animation: bubble-content-wobble 7s ease-in-out infinite alternate;
  transform-style: preserve-3d;
  perspective: 100px;
}

.floating-bubble:nth-child(2n) .bubble-content-wrap {
  animation-duration: 5.5s;
  animation-delay: -1.2s;
}

.floating-bubble:nth-child(3n) .bubble-content-wrap {
  animation-duration: 8.5s;
  animation-delay: -2.4s;
}

.bubble-inner-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==================== INNER ICON ANIMATIONS ==================== */

/* Butterfly wings 3D fluttering */
.butterfly-wing, .butterfly-wing-accent {
  transform-origin: 32px 32px;
  backface-visibility: visible;
}

.wing-ul, .wing-ul-accent, .wing-ll {
  animation: flutter-left 0.14s ease-in-out infinite alternate;
}

.wing-ur, .wing-ur-accent, .wing-lr {
  animation: flutter-right 0.14s ease-in-out infinite alternate;
}

/* Natural randomized speeds for butterflies */
.floating-bubble:nth-child(2n) .wing-ul,
.floating-bubble:nth-child(2n) .wing-ul-accent,
.floating-bubble:nth-child(2n) .wing-ll {
  animation-duration: 0.11s;
}
.floating-bubble:nth-child(2n) .wing-ur,
.floating-bubble:nth-child(2n) .wing-ur-accent,
.floating-bubble:nth-child(2n) .wing-lr {
  animation-duration: 0.11s;
}

.floating-bubble:nth-child(3n) .wing-ul,
.floating-bubble:nth-child(3n) .wing-ul-accent,
.floating-bubble:nth-child(3n) .wing-ll {
  animation-duration: 0.17s;
}
.floating-bubble:nth-child(3n) .wing-ur,
.floating-bubble:nth-child(3n) .wing-ur-accent,
.floating-bubble:nth-child(3n) .wing-lr {
  animation-duration: 0.17s;
}

/* Bouquet rose breathing */
.rose-bloom {
  transform-origin: center;
}

.bloom-left {
  transform-origin: 20px 27px;
  animation: rose-breathe 3.6s ease-in-out infinite alternate;
  animation-delay: -1s;
}

.bloom-right {
  transform-origin: 44px 27px;
  animation: rose-breathe 4.4s ease-in-out infinite alternate;
  animation-delay: -2s;
}

.bloom-center {
  transform-origin: 32px 22px;
  animation: rose-breathe 4s ease-in-out infinite alternate;
  animation-delay: -0.5s;
}

/* Foliage sway */
.bouquet-leaf.leaf-l {
  transform-origin: 32px 44px;
  animation: leaf-sway-l 4.8s ease-in-out infinite alternate;
}

.bouquet-leaf.leaf-r {
  transform-origin: 32px 44px;
  animation: leaf-sway-r 4.8s ease-in-out infinite alternate;
  animation-delay: -2.4s;
}

/* KEYFRAMES FOR INNER ELEMENTS */
@keyframes flutter-left {
  0% {
    transform: rotateY(0deg) skewY(0deg);
  }
  100% {
    transform: rotateY(-56deg) skewY(-5deg);
  }
}

@keyframes flutter-right {
  0% {
    transform: rotateY(0deg) skewY(0deg);
  }
  100% {
    transform: rotateY(56deg) skewY(5deg);
  }
}

@keyframes rose-breathe {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1.08);
  }
}

@keyframes leaf-sway-l {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-6deg);
  }
}

@keyframes leaf-sway-r {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(6deg);
  }
}

@keyframes bubble-content-wobble {
  0% {
    transform: translate(0, 0) scale(0.95);
  }
  50% {
    transform: translate(3px, -4px) scale(1.03);
  }
  100% {
    transform: translate(-3px, -1px) scale(0.97);
  }
}

/* Gallery Control Hover Animations & Micro-Interactions */
.gallery-ctrl-btn {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.gallery-ctrl-btn:hover {
  background-color: rgba(124, 110, 100, 0.08) !important;
  color: var(--color-primary) !important;
  transform: scale(1.1) !important;
}
.gallery-ctrl-btn:active {
  transform: scale(0.95) !important;
}

.lightbox__btn {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.lightbox__btn:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  transform: scale(1.15) !important;
}
.lightbox__btn:active {
  transform: scale(0.9) !important;
}

.lightbox__close {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.lightbox__close:hover {
  background-color: #e07a5f !important;
  border-color: #e07a5f !important;
  color: #fff !important;
  transform: scale(1.08) rotate(90deg) !important;
}
.lightbox__close:active {
  transform: scale(0.9) rotate(90deg) !important;
}

/* Lightbox custom animations */
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ==================== IMMERSIVE FULLSREEN PRODUCT DETAIL MODAL ==================== */
#productModal {
  padding: 0 !important;
}

#productModal .product-modal__overlay {
  display: none !important; /* Opaque full screen surface container */
}

#productModal .product-modal__container {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  border-radius: 0 !important;
  border: none !important;
  margin: 0 !important;
  box-shadow: none !important;
  background: var(--color-surface) !important;
  transform: translateY(100%); /* Sleek slide up from bottom */
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

#productModal.active .product-modal__container {
  transform: translateY(0);
}

#productModal .product-modal__close {
  display: none !important;
}

/* Desktop Full-Screen Split Layout */
@media (min-width: 769px) {
  #productModal .product-modal__container {
    display: flex !important;
    overflow: hidden !important;
  }

  #productModal .product-modal__gallery {
    width: 50% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    background: var(--color-bg) !important;
    border-right: 1px solid var(--color-border) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  #productModal .product-modal__details {
    width: 50% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    padding: 80px 80px 60px 80px !important; /* Premium airy breathability */
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
  }

  /* Thin elegant custom scrollbar */
  #productModal .product-modal__details::-webkit-scrollbar {
    width: 6px !important;
  }
  
  #productModal .product-modal__details::-webkit-scrollbar-track {
    background: transparent !important;
  }
  
  #productModal .product-modal__details::-webkit-scrollbar-thumb {
    background: rgba(124, 110, 100, 0.2) !important;
    border-radius: 100px !important;
  }
  
  #productModal .product-modal__details::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 110, 100, 0.4) !important;
  }
}

/* Mobile Full-Screen Layout */
@media (max-width: 768px) {
  #productModal .product-modal__container {
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    height: 100vh !important;
    max-height: 100vh !important;
  }

  #productModal .product-modal__gallery {
    width: 100% !important;
    height: 50vh !important;
    min-height: 50vh !important;
    max-height: 50vh !important;
    position: relative !important;
    border-bottom: 1px solid var(--color-border) !important;
  }

  #productModal .product-modal__details {
    width: 100% !important;
    padding: 36px 28px 48px 28px !important;
    flex-shrink: 0 !important;
    background: var(--color-surface) !important;
  }
}

/* Elegant and Responsive Footer Social Buttons with micro-interactions */
.footer-social-btn {
  color: var(--color-text-muted) !important;
  border: 1px solid var(--color-border) !important;
  background: transparent !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.footer-social-btn:hover {
  background-color: var(--color-nude) !important;
  border-color: var(--color-nude-hover) !important;
  color: var(--color-text) !important;
  transform: translateY(-3px) scale(1.06) !important;
  box-shadow: 0 4px 12px rgba(241, 218, 211, 0.5) !important;
}

.footer-social-btn:active {
  transform: translateY(-1px) scale(0.97) !important;
}

/* Elegant responsive layout optimization for mobile screens (max-width: 600px) */
@media (max-width: 600px) {
  .footer {
    padding: 60px 24px 40px 24px !important;
  }
  .footer.is-revealed {
    padding: 60px 24px 40px 24px !important;
  }
  .footer-container {
    flex-direction: column !important;
    gap: 44px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-links-col {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-width: unset !important;
    flex: unset !important;
  }
  .footer-title {
    font-size: 1.15rem !important;
    margin-bottom: 20px !important;
    position: relative !important;
    display: inline-block !important;
    font-weight: 600 !important;
  }
  /* Soft indicator line below headings on mobile for high-end boutique feeling */
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 1.5px;
    background-color: var(--color-primary);
  }
  .footer-links-list {
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .footer-link-item,
  .footer-link-item-static,
  .footer-link-premium {
    font-size: 14px !important;
    justify-content: center !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .footer-socials {
    justify-content: center !important;
    margin-top: 24px !important;
    width: 100% !important;
  }
}

/* --- High-Performance Image Lazy Loading Transitions --- */
.products__card-image.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.products__card-image.lazy-image-loaded {
  opacity: 1 !important;
}

/* Elegant shimmering effect for the parent wrapper when loading */
.products__card-image-wrapper.is-loading {
  position: relative;
}

.products__card-image-wrapper.is-loading::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer-effect 1.6s infinite ease-in-out;
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmer-effect {
  100% {
    transform: translateX(100%);
  }
}


