:root {
  --bg: #f9f8f6;
  --surface: #ffffff;
  --text-main: #111111;
  --text-muted: #555555;
  --accent: #111111;
  --border: #e5e5e5;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--text-main);
}

.serif-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.serif-title em {
  font-style: italic;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 20px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.site-logo {
  height: 46px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.brand:hover .site-logo {
  transform: scale(1.02);
  opacity: 0.9;
}

.brand h1 {
  display: none;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-main);
  display: none;
}

.header-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: 60px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.main-nav a:hover {
  opacity: 0.6;
}

.desktop-only {
  display: inline;
}

.mobile-only {
  display: none;
}

.controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  padding: 8px;
  position: relative;
  transition: transform 0.2s;
}

.icon-btn:hover {
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: -4px;
  background: var(--text-main);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checkbox inside header */
.minimal-checkbox {
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}

.minimal-checkbox input {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  background: var(--bg);
}

.minimal-checkbox input:checked + .checkmark {
  background: var(--text-main);
  border-color: var(--text-main);
}

.minimal-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.minimal-select {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  outline: none;
}
.minimal-select option {
  color: #111;
}

/* Hero Section */
.hero {
  padding: 24px;
  height: 95vh;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.hero-title {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  z-index: 2;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* General Section Styling */
section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  text-align: center;
  max-width: 900px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-desc {
  margin: 32px auto 0;
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.about-cta-btn {
  margin-top: 40px;
}

/* ── Loyalty Section ── */
.loyalty-section {
  text-align: center;
  max-width: 860px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.loyalty-subtitle {
  margin: 16px auto 40px;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.loyalty-card-img-wrap {
  margin: 0 auto 48px;
  max-width: 560px;
  width: 100%;
}

.loyalty-card-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: block;
}

.loyalty-card-visual {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 48px 24px;
  margin-bottom: 56px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.loyalty-stamp-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.loyalty-stamp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s;
}

.loyalty-stamp.filled {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.loyalty-stamp.reward {
  background: linear-gradient(135deg, #c9a96e, #e8c98a);
  border-color: #c9a96e;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 2px 12px rgba(201,169,110,0.35);
}

.loyalty-card-hint {
  margin-top: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.loyalty-options {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.loyalty-option {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}

.loyalty-option-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.loyalty-option h5 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.loyalty-option p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.loyalty-option-divider {
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Founder Section */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: contain;
  display: block;
}

.small-title {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.small-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.founder-name {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

/* Pricing Section */
.pricing-section {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 80px;
  margin-bottom: 80px;
}

.pricing-classic-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 80px 24px;
  text-align: center;
}



.pricing-classic-content {
  position: relative;
  z-index: 1;
}

.pricing-classic-content .serif-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
.pricing-classic-content .serif-title em {
  font-style: italic;
}
.pricing-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 60px;
  line-height: 1.4;
}

.vol-list {
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vol-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-main);
}
.vol-size {
  min-width: 60px;
  text-align: left;
}
.vol-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 0 16px;
}
.vol-price {
  min-width: 90px;
  text-align: right;
}

.aroma-box-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px;
}

.aroma-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.aroma-content {
  position: relative;
  z-index: 1;
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 400px;
}

.aroma-content h4 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 16px;
}

.aroma-content p {
  margin: 0 0 16px;
}

.aroma-content .sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Catalog */
.catalog-section {
  padding-bottom: 120px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Filters */
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.filter-btn.active {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}

/* Redesigned Card */
.card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  height: auto;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-notes-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover .card-notes-overlay {
  opacity: 1;
}

.note-item {
  color: #fff;
  font-size: 0.9rem;
  margin: 4px 0;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.card h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: auto;
  line-height: 1.2;
}

.card-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-add {
  flex: 1;
  background: var(--text-main);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-add:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-add:active {
  transform: scale(0.95);
}

.btn-view {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.box-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  text-align: left;
  background: rgba(0, 0, 0, 0.04);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-col h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-main);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 4px;
}

.pricing-col p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .box-pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Care Grid */
.care-section {
  padding-bottom: 120px;
}

.center {
  text-align: center;
}

.care-grid.minimal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.minimal-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.minimal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.care-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.care-icon svg {
  transition: transform 0.3s;
}

.minimal-card:hover .care-icon svg {
  transform: scale(1.1);
}

.care-item h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.care-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Locations */
.locations-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 120px;
}

.locations-list {
  border-top: 1px solid var(--border);
}

.loc-row {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
}

.loc-addr {
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--bg);
  padding: 80px 40px;
  text-align: center;
}

.footer-content h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.social-link {
  color: var(--text-main);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  color: #555;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Modal / Cart Logic/* Cart Panel */
.cart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--surface);
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart.open {
  right: 0;
}

.cart-header {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.close-cart {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.close-cart:hover {
  color: var(--text-main);
  transform: rotate(90deg);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  background: var(--bg);
  padding: 16px;
  border-radius: 16px;
  align-items: center;
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.cart-item-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.remove {
  background: transparent;
  border: none;
  color: #ff4d4f;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  opacity: 0.8;
}

.remove:hover {
  opacity: 1;
}

.cart-summary {
  padding: 32px;
  background: var(--surface);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.total-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.btn-primary {
  background: var(--text-main);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.97);
}

.cart-wa-btn {
  background: #25D366;
  color: white;
}
.cart-wa-btn:hover {
  background: #128C7E;
}

.full-width {
  width: 100%;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.glass-modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  padding: 0;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  transform: translateY(0) scale(1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.hidden .glass-modal {
  transform: translateY(20px) scale(0.95);
}

#modalBody {
  display: flex;
  width: 100%;
}

.modal-img-hero {
  width: 50%;
  object-fit: cover;
  min-height: 400px;
}

.modal-details {
  padding: 48px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.modal .close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  background: var(--surface);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-details h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cat {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: block;
}

.notes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.notes-tags span {
  background: var(--bg);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 90;
  backdrop-filter: blur(2px);
}
.overlay.hidden {
  display: none;
}
.hidden {
  display: none !important;
}

/* Contacts grid */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.contact-card {
  padding: 16px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.checkout-content {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
}

@media (max-width: 1024px) {
  .founder-section, .locations-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #modalBody {
    flex-direction: column;
  }
  .modal-img-hero {
    width: 100%;
    min-height: auto;
    height: 250px;
  }
  .modal-details {
    width: 100%;
    padding: 24px;
  }
  .care-grid.minimal {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
  }
  
  .site-logo {
    height: 56px;
    max-width: 195px;
  }

  .header-container {
    padding: 0;
  }
  
  .menu-btn {
    display: block;
    z-index: 1001;
  }
  
  .header-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 24px 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .header-content.open {
    right: 0;
  }
  
  .main-nav {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
    gap: 24px;
    text-align: left;
    margin-bottom: 40px;
  }
  
  .main-nav a {
    font-size: 1.25rem;
  }
  
  .controls {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
  
  .box-controls {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  
  .card h4 {
    font-size: 1.2rem;
  }
  
  .card-body {
    padding: 16px;
  }
  
  .card-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-add {
    width: 100%;
  }
  
  .btn-view {
    width: 100%;
  }
  
  #viewCart {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--text-main);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    z-index: 999;
    border: none;
    animation: pulseCart 2s infinite;
  }
  
  @keyframes pulseCart {
    0% { transform: scale(1); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
    50% { transform: scale(1.05); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
    100% { transform: scale(1); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: inline;
  }
  
  .cart-icon {
    font-size: 1.5rem;
  }
  
  #cartCount {
    position: absolute;
    top: 0;
    right: 0;
    background: #C4A484;
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(25%, -25%);
  }
  .hero {
    padding: 0;
    height: auto;
  }
  .hero-image-wrapper {
    border-radius: 0;
    height: 60vw;
    min-height: 260px;
    max-height: 420px;
  }
  .hero-overlay {
    display: none;
  }
  .hero-title {
    display: none;
  }
  .serif-title {
    font-size: 2.5rem;
  }
  .site-header {
    padding: 16px 16px;
  }
  section {
    padding: 60px 16px;
  }
  .pricing-section {
    padding: 40px 16px;
    border-radius: 0;
  }

  .pricing-classic-content .serif-title {
    font-size: 2.8rem;
  }
  .loyalty-options {
    flex-direction: column;
    gap: 0;
  }
  .loyalty-option-divider {
    padding: 16px 0;
    justify-content: center;
  }
  .loyalty-card-visual {
    padding: 28px 24px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .care-grid.minimal {
    grid-template-columns: 1fr;
  }
  .aroma-box-banner {
    padding: 0;
    min-height: auto;
    flex-direction: column;
    min-height: auto;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .aroma-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 260px;
    object-fit: cover;
    z-index: 0;
    flex-shrink: 0;
  }
  .aroma-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 32px 24px;
  }
  .aroma-content .aroma-desc {
    color: var(--text-muted) !important;
  }
}



/* ==========================================================================
   LUXURY REDESIGN: HEADER CART BUTTON (DESKTOP)
   ========================================================================== */
.header-cart-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #121316 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 9999px !important;
  padding: 8px 18px 8px 14px !important;
  font-family: inherit !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.header-cart-btn:hover {
  background: #000000 !important;
  border-color: #C8A97E !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(200, 169, 126, 0.28) !important;
}

.header-cart-btn:active {
  transform: translateY(0) !important;
}

.header-cart-icon-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.header-cart-icon {
  stroke: #C8A97E !important;
  transition: stroke 0.25s ease !important;
}

.header-cart-btn:hover .header-cart-icon {
  stroke: #E5CA9E !important;
}

.header-cart-badge {
  position: absolute !important;
  top: -8px !important;
  right: -10px !important;
  background: #C8A97E !important;
  color: #111111 !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  min-width: 18px !important;
  height: 18px !important;
  border-radius: 9999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 4px !important;
  border: 2px solid #121316 !important;
  line-height: 1 !important;
}

.header-cart-text {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #F3F4F6 !important;
}

/* ==========================================================================
   LUXURY REDESIGN: CATALOG PRODUCT GRID & CARDS
   ========================================================================== */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 28px !important;
  padding: 24px 0 64px !important;
}

.card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  cursor: pointer !important;
  position: relative !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03) !important;
}

.card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(200, 169, 126, 0.45) !important;
}

.card-media {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  background: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 16px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.card-badge-sku {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #374151 !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  z-index: 2 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card:hover .card-img {
  transform: scale(1.06) !important;
}

.card-media-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(18, 18, 20, 0.2) !important;
  backdrop-filter: blur(2px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  z-index: 3 !important;
}

.card:hover .card-media-overlay {
  opacity: 1 !important;
}

.card-quick-view-btn {
  background: #FFFFFF !important;
  color: #111111 !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  padding: 8px 18px !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(8px) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease !important;
}

.card:hover .card-quick-view-btn {
  transform: translateY(0) !important;
}

.card-info {
  padding: 18px 18px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.card-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 8px !important;
}

.card-tag {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  padding: 2px 7px !important;
  border-radius: 4px !important;
}

.card-cat-tag {
  background: #F3F4F6 !important;
  color: #4B5563 !important;
}

.card-group-tag {
  background: #FAF5EE !important;
  color: #9A7B4F !important;
  border: 1px solid rgba(200, 169, 126, 0.25) !important;
  max-width: 140px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.card-name {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 1.22rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  line-height: 1.35 !important;
  margin: 0 0 14px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 2.7em !important;
}

.card-bottom {
  margin-top: auto !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.card-price-box {
  display: flex !important;
  align-items: baseline !important;
  gap: 4px !important;
}

.card-price-label {
  font-size: 0.78rem !important;
  color: #6B7280 !important;
  font-weight: 400 !important;
}

.card-price-val {
  font-family: var(--font-sans, inherit) !important;
  font-size: 1.18rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.card-vols-pill {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: #6B7280 !important;
  background: #F9FAFB !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  letter-spacing: 0.02em !important;
}

/* ==========================================================================
   LUXURY REDESIGN: MODAL (POPUP & BOTTOM SHEET)
   ========================================================================== */
.modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  opacity: 1 !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: rgba(10, 10, 12, 0.65) !important;
  backdrop-filter: blur(8px) !important;
}

.modal.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

.glass-modal {
  background: #FFFFFF !important;
  border-radius: 24px !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25) !important;
  padding: 0 !important;
  max-width: 920px !important;
  width: 100% !important;
  max-height: 90vh !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  transform: scale(1) translateY(0) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.modal.hidden .glass-modal {
  transform: scale(0.96) translateY(20px) !important;
}

.modal .close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 20 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #374151 !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

.modal .close:hover {
  background: #111111 !important;
  color: #FFFFFF !important;
  transform: rotate(90deg) !important;
}

#modalBody {
  display: flex !important;
  width: 100% !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
}

.modal-layout {
  display: flex !important;
  width: 100% !important;
  min-height: 520px !important;
}

.modal-visual-pane {
  width: 44% !important;
  background: linear-gradient(180deg, #FAFAFA 0%, #F3F4F6 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 36px !important;
  position: relative !important;
  border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.modal-bottle-frame {
  width: 100% !important;
  max-width: 320px !important;
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.modal-sku-chip {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #1F2937 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 4px 10px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
}

.modal-bottle-img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.1)) !important;
}

.modal-detail-pane {
  width: 56% !important;
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: #FFFFFF !important;
  overflow-y: auto !important;
}

.modal-meta-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.modal-category-badge {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  background: #F3F4F6 !important;
  color: #4B5563 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
}

.modal-group-badge {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  background: #FAF5EE !important;
  color: #9A7B4F !important;
  border: 1px solid rgba(200, 169, 126, 0.3) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
}

.modal-perfume-title {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 1.85rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  line-height: 1.25 !important;
  margin: 0 0 22px 0 !important;
}

.modal-pyramid-block {
  background: #FAFAF9 !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  margin-bottom: 26px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.pyramid-stage {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.stage-name {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #9A7B4F !important;
}

.stage-notes {
  font-size: 0.88rem !important;
  color: #374151 !important;
  line-height: 1.4 !important;
}

.modal-purchase-block {
  margin-top: auto !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.vol-selector-heading {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #6B7280 !important;
  margin-bottom: 12px !important;
}

.vol-selector-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

.vol-chip {
  background: #FFFFFF !important;
  border: 1.5px solid #E5E7EB !important;
  border-radius: 12px !important;
  padding: 10px 8px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-family: inherit !important;
}

.vol-chip:hover {
  border-color: #C8A97E !important;
  background: #FCFAF7 !important;
}

.vol-chip.active {
  border-color: #111827 !important;
  background: #111827 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.vol-chip-ml {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.vol-chip.active .vol-chip-ml {
  color: #FFFFFF !important;
}

.vol-chip-price {
  font-size: 0.78rem !important;
  color: #6B7280 !important;
  font-weight: 500 !important;
}

.vol-chip.active .vol-chip-price {
  color: #C8A97E !important;
}

.modal-action-row {
  display: flex !important;
  gap: 12px !important;
}

.modal-primary-btn {
  flex: 1 !important;
  background: #111827 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 16px 24px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.modal-primary-btn:hover {
  background: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22) !important;
}

.modal-primary-btn:active {
  transform: translateY(0) !important;
}

.modal-primary-btn.added {
  background: #059669 !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   MOBILE RESPONSIVE TWEAKS (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px 0 40px !important;
  }

  .card {
    border-radius: 14px !important;
  }

  .card-media {
    padding: 10px !important;
  }

  .card-badge-sku {
    top: 6px !important;
    left: 6px !important;
    font-size: 0.65rem !important;
    padding: 2px 6px !important;
  }

  .card-media-overlay {
    display: none !important;
  }

  .card-info {
    padding: 10px 10px 10px !important;
  }

  .card-meta {
    margin-bottom: 4px !important;
    gap: 4px !important;
  }

  .card-tag {
    font-size: 0.6rem !important;
    padding: 1px 5px !important;
  }

  .card-group-tag {
    max-width: 85px !important;
  }

  .card-name {
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
    margin: 0 0 6px 0 !important;
    min-height: 2.5em !important;
  }

  .card-bottom {
    padding-top: 8px !important;
  }

  .card-price-label {
    font-size: 0.68rem !important;
  }

  .card-price-val {
    font-size: 0.95rem !important;
  }

  .card-vols-pill {
    font-size: 0.62rem !important;
    padding: 2px 4px !important;
  }

  /* Modal on Mobile: Drawer / Bottom sheet */
  .modal {
    padding: 0 !important;
    align-items: flex-end !important;
  }

  .glass-modal {
    border-radius: 24px 24px 0 0 !important;
    max-height: 90vh !important;
    width: 100% !important;
    transform: translateY(0) !important;
    border-bottom: none !important;
  }

  .modal.hidden .glass-modal {
    transform: translateY(100%) !important;
  }

  .modal .close {
    top: 14px !important;
    right: 14px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 1.2rem !important;
  }

  .modal-layout {
    flex-direction: column !important;
    min-height: auto !important;
  }

  .modal-visual-pane {
    width: 100% !important;
    padding: 24px 20px 12px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: #FAFAFA !important;
  }

  .modal-bottle-frame {
    max-width: 180px !important;
    height: 160px !important;
    margin: 0 auto !important;
  }

  .modal-detail-pane {
    width: 100% !important;
    padding: 18px 16px 28px !important;
    max-height: 60vh !important;
  }

  .modal-perfume-title {
    font-size: 1.35rem !important;
    margin-bottom: 14px !important;
  }

  .modal-pyramid-block {
    padding: 12px 14px !important;
    margin-bottom: 16px !important;
    gap: 8px !important;
  }

  .stage-notes {
    font-size: 0.8rem !important;
  }

  .vol-selector-row {
    gap: 6px !important;
    margin-bottom: 14px !important;
  }

  .vol-chip {
    padding: 6px 4px !important;
    border-radius: 10px !important;
  }

  .vol-chip-ml {
    font-size: 0.82rem !important;
  }

  .vol-chip-price {
    font-size: 0.7rem !important;
  }

  .modal-primary-btn {
    padding: 14px 18px !important;
    font-size: 0.92rem !important;
    border-radius: 12px !important;
  }
}

/* ==========================================================================
   CARE COSMETICS (SOAP & CREAMS) STYLES
   ========================================================================== */
.care-intro-text {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.care-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.care-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.care-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.15);
}

.care-card-media {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect ratio */
  background: #F9F9FB;
  overflow: hidden;
}

.care-card-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.care-card:hover .care-card-media img {
  transform: scale(1.05);
}

.care-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.care-card-content {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.care-category-tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.care-card h5 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text-main);
  line-height: 1.3;
}

.care-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 18px;
  flex-grow: 1;
}

.care-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}

.care-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.btn-care-select {
  background: var(--text-main);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-care-select:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.care-home-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.care-home-row .minimal-card {
  padding: 28px 24px;
}

.care-home-row .care-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.care-home-row h5 {
  margin-bottom: 4px;
}

.care-home-row p {
  margin: 0;
  font-size: 0.9rem;
}

/* Modal Format Switcher (Perfume / Soap / Cream) */
.modal-formats-block {
  margin-bottom: 20px;
  background: #F8F9FA;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.modal-formats-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.modal-format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-format-chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 13px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.modal-format-chip:hover {
  border-color: #121212;
}

.modal-format-chip.active {
  background: #121212;
  color: #fff;
  border-color: #121212;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.modal-format-chip .chip-sub {
  font-size: 0.78rem;
  opacity: 0.75;
}

/* Care Scent Selection inside Care Modal */
.care-scents-wrapper {
  margin-bottom: 22px;
}

.care-scents-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.care-scents-label span {
  font-weight: 400;
  color: var(--text-main);
}

.care-scents-filter-input {
  width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease;
}

.care-scents-filter-input:focus {
  border-color: #121212;
}

.care-scents-scroll-grid {
  max-height: 155px;
  overflow-y: auto;
  padding-right: 4px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.modal-purchase-block {
  margin-top: 12px;
  padding-bottom: 8px;
}

.care-scents-scroll-grid::-webkit-scrollbar {
  width: 5px;
}
.care-scents-scroll-grid::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.care-scent-btn {
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.care-scent-btn:hover {
  background: #F0F0F0;
  border-color: #bbb;
}

.care-scent-btn.active {
  background: #121212;
  color: #fff;
  border-color: #121212;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.care-scent-btn .scent-sku {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.care-scent-btn.active .scent-sku {
  opacity: 0.85;
  color: #e0e0e0;
}

.care-scent-btn .scent-name {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .care-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .care-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .care-home-row {
    grid-template-columns: 1fr;
  }
  
  .care-scents-scroll-grid {
    grid-template-columns: 1fr;
    max-height: 180px;
  }
}

/* ==========================================================================
   ATMOSPHERE & BOUTIQUES PHOTO CAROUSEL
   ========================================================================== */
.carousel-section {
  padding: 20px 0 100px;
}

.carousel-header {
  text-align: center;
  margin-bottom: 28px;
}

.carousel-subtitle {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.carousel-outer-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 20px;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: #121212;
  color: #fff;
  border-color: #121212;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

.carousel-track-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 20px;
  width: 100%;
}

.carousel-track-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 8px 4px 16px;
}

.carousel-card-slide {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
}

.carousel-card-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #F3F4F6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

.carousel-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.carousel-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-card-inner:hover img {
  transform: scale(1.05);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 44px 20px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.82) 100%);
  color: #fff;
  transition: opacity 0.3s ease;
}

.carousel-caption-tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
  display: block;
  font-weight: 600;
}

.carousel-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  margin: 0;
  color: #fff;
  letter-spacing: 0.01em;
}

.carousel-indicators-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(0, 0, 0, 0.4);
}

.carousel-dot.active {
  width: 28px;
  border-radius: 20px;
  background: var(--text-main, #121212);
}

@media (max-width: 992px) {
  .carousel-card-slide {
    flex: 0 0 calc(50% - 10px);
  }
  .carousel-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .carousel-card-slide {
    flex: 0 0 82%;
  }
  .carousel-outer-wrapper {
    margin: 24px 0 16px;
    gap: 8px;
  }
  .care-scents-scroll-grid {
    grid-template-columns: 1fr;
    max-height: 180px;
  }
}

/* ==========================================================================
   LUXURY BOX BUILDER MODAL (КОНСТРУКТОР AROMA BOX)
   ========================================================================== */
.box-builder-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2100 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  background: rgba(10, 10, 12, 0.72) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  animation: fadeIn 0.25s ease-out !important;
}

.box-builder-modal.hidden {
  display: none !important;
}

.box-builder-content {
  width: 100% !important;
  max-width: 820px !important;
  height: min(88vh, 780px) !important;
  max-height: 92vh !important;
  background: #FFFFFF !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25) !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.box-builder-close {
  position: absolute !important;
  top: 14px !important;
  right: 16px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.95rem !important;
  color: #111827 !important;
  cursor: pointer !important;
  z-index: 20 !important;
  transition: all 0.2s ease !important;
}

.box-builder-close:hover {
  background: #111827 !important;
  color: #FFFFFF !important;
  transform: rotate(90deg) !important;
}

/* Header & Controls - Compact Luxury */
.box-builder-header {
  background: linear-gradient(180deg, #FAF7F2 0%, #F5EFE6 100%) !important;
  border-bottom: 1px solid rgba(200, 169, 126, 0.25) !important;
  padding: 16px 20px 12px !important;
  flex-shrink: 0 !important;
}

.box-builder-topbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-right: 36px !important;
}

.box-builder-heading {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.box-builder-badge {
  display: inline-block !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #9A7B4F !important;
  background: rgba(200, 169, 126, 0.18) !important;
  padding: 2px 8px !important;
  border-radius: 9999px !important;
}

.box-builder-title {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.box-builder-subtitle {
  font-size: 0.78rem !important;
  color: #6B7280 !important;
  margin: 4px 0 10px !important;
  line-height: 1.3 !important;
}

/* Size Selector Tabs - Sleek Segmented Control */
.box-size-selector {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
  margin-bottom: 10px !important;
}

.box-size-btn {
  background: #FFFFFF !important;
  border: 1.5px solid #E5E7EB !important;
  border-radius: 10px !important;
  padding: 6px 12px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 6px !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-height: 36px !important;
  box-sizing: border-box !important;
}

.box-size-btn:hover {
  border-color: #C8A97E !important;
  background: #FAF7F2 !important;
}

.box-size-btn.active {
  background: #111827 !important;
  border-color: #111827 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
}

.box-size-btn .size-count {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  white-space: nowrap !important;
}

.box-size-btn.active .size-count {
  color: #FFFFFF !important;
}

.box-size-btn .size-volume {
  display: none !important;
}

.box-size-btn .size-price {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #9A7B4F !important;
  white-space: nowrap !important;
}

.box-size-btn.active .size-price {
  color: #E2C799 !important;
}

/* Slots Bar - Compact & Refined */
.box-slots-wrapper {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02) !important;
}

.box-slots-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 5px !important;
  font-size: 0.76rem !important;
  gap: 8px !important;
}

.box-slots-status {
  color: #374151 !important;
  white-space: nowrap !important;
}

.box-slots-status strong {
  color: #111827 !important;
  font-weight: 700 !important;
}

.box-slots-hint {
  font-size: 0.72rem !important;
  color: #9A7B4F !important;
  font-style: italic !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.box-progress-bar {
  height: 3px !important;
  background: #F3F4F6 !important;
  border-radius: 9999px !important;
  overflow: hidden !important;
  margin-bottom: 6px !important;
}

.box-progress-fill {
  height: 100% !important;
  background: linear-gradient(90deg, #C8A97E, #111827) !important;
  border-radius: 9999px !important;
  transition: width 0.25s ease !important;
}

.box-slots-grid {
  display: grid !important;
  gap: 6px !important;
}

.box-slots-grid[data-slots="3"] {
  grid-template-columns: repeat(3, 1fr) !important;
}

.box-slots-grid[data-slots="4"] {
  grid-template-columns: repeat(4, 1fr) !important;
}

.box-slots-grid[data-slots="5"] {
  grid-template-columns: repeat(5, 1fr) !important;
}

/* Individual Slot Card - Compact & Clean */
.box-slot-card {
  border-radius: 8px !important;
  position: relative !important;
  height: 44px !important;
  min-height: 44px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.box-slot-card.empty {
  border: 1.5px dashed #D1D5DB !important;
  background: #FAFAFA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 2px 6px !important;
}

.box-slot-card.empty .slot-icon {
  font-size: 0.8rem !important;
  opacity: 0.5 !important;
}

.box-slot-card.empty .slot-num {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  color: #9CA3AF !important;
  white-space: nowrap !important;
}

.box-slot-card.empty .slot-text {
  display: none !important;
}

.box-slot-card.filled {
  border: 1.5px solid #C8A97E !important;
  background: #FFFDF9 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 3px 6px !important;
  padding-right: 22px !important;
  box-shadow: 0 1px 4px rgba(200, 169, 126, 0.12) !important;
  animation: slotPop 0.2s ease-out !important;
}

@keyframes slotPop {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.box-slot-card.filled .slot-thumb {
  width: 22px !important;
  height: 32px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

.box-slot-card.filled .slot-details {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.box-slot-card.filled .slot-sku {
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  color: #9A7B4F !important;
  line-height: 1 !important;
}

.box-slot-card.filled .slot-name {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.2 !important;
}

.box-slot-card.filled .slot-vol {
  display: none !important;
}

.box-slot-card.filled .slot-remove {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 4px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.08) !important;
  border: none !important;
  font-size: 0.62rem !important;
  color: #4B5563 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  padding: 0 !important;
}

.box-slot-card.filled .slot-remove:hover {
  background: #EF4444 !important;
  color: #FFFFFF !important;
  transform: translateY(-50%) scale(1.1) !important;
}

/* Catalog Selection Area - Generous Scroll */
.box-catalog-area {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 12px 20px !important;
  background: #FFFFFF !important;
  -webkit-overflow-scrolling: touch !important;
}

.box-catalog-controls {
  position: sticky !important;
  top: 0 !important;
  background: #FFFFFF !important;
  z-index: 5 !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #F3F4F6 !important;
  margin-bottom: 10px !important;
}

.box-search-box {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #F9FAFB !important;
  border: 1.5px solid #E5E7EB !important;
  border-radius: 10px !important;
  padding: 6px 12px !important;
  margin-bottom: 8px !important;
  height: 38px !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease !important;
}

.box-search-box:focus-within {
  border-color: #111827 !important;
  background: #FFFFFF !important;
}

.box-search-box input {
  flex: 1 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-family: inherit !important;
  font-size: 0.82rem !important;
  color: #111827 !important;
}

.box-search-clear {
  background: none !important;
  border: none !important;
  color: #9CA3AF !important;
  cursor: pointer !important;
  font-size: 0.85rem !important;
  padding: 0 !important;
}

.box-search-clear:hover {
  color: #111827 !important;
}

.box-filter-chips {
  display: flex !important;
  gap: 6px !important;
  overflow-x: auto !important;
  padding-bottom: 3px !important;
  scrollbar-width: none !important;
}

.box-filter-chips::-webkit-scrollbar {
  display: none !important;
}

.box-chip {
  background: #F3F4F6 !important;
  border: 1px solid transparent !important;
  border-radius: 9999px !important;
  padding: 4px 10px !important;
  font-family: inherit !important;
  font-size: 0.74rem !important;
  font-weight: 500 !important;
  color: #4B5563 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.box-chip:hover {
  background: #E5E7EB !important;
  color: #111827 !important;
}

.box-chip.active {
  background: #111827 !important;
  color: #FFFFFF !important;
}

/* Fragrance Grid Inside Builder */
.box-perfumes-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
  gap: 8px !important;
}

.box-perfume-card {
  background: #FFFFFF !important;
  border: 1.5px solid #F3F4F6 !important;
  border-radius: 10px !important;
  padding: 6px 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-align: left !important;
  height: 54px !important;
  box-sizing: border-box !important;
}

.box-perfume-card:hover {
  border-color: #C8A97E !important;
  background: #FAF7F2 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05) !important;
}

.box-perfume-card .p-thumb {
  width: 32px !important;
  height: 42px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

.box-perfume-card .p-info {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

.box-perfume-card .p-meta {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.box-perfume-card .p-sku {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  background: #F3F4F6 !important;
  padding: 1px 4px !important;
  border-radius: 3px !important;
  line-height: 1.1 !important;
}

.box-perfume-card .p-cat {
  font-size: 0.62rem !important;
  text-transform: uppercase !important;
  color: #9A7B4F !important;
  font-weight: 600 !important;
}

.box-perfume-card .p-name {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.2 !important;
}

.box-perfume-card .p-notes {
  font-size: 0.68rem !important;
  color: #6B7280 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.1 !important;
}

.box-perfume-card .p-add-btn {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  border: 1px solid #E5E7EB !important;
  background: #FFFFFF !important;
  color: #111827 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  flex-shrink: 0 !important;
  transition: all 0.15s ease !important;
}

.box-perfume-card:hover .p-add-btn {
  background: #111827 !important;
  color: #FFFFFF !important;
  border-color: #111827 !important;
}

.box-perfume-card.in-box {
  border-color: rgba(200, 169, 126, 0.45) !important;
  background: #FFFDF9 !important;
}

.box-perfume-card.in-box .p-add-btn {
  background: #9A7B4F !important;
  color: #FFFFFF !important;
  border-color: #9A7B4F !important;
}

/* Footer & Add to Cart */
.box-builder-footer {
  background: #FFFFFF !important;
  border-top: 1px solid #E5E7EB !important;
  padding: 12px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04) !important;
}

.box-footer-summary {
  display: flex !important;
  flex-direction: column !important;
  flex-shrink: 0 !important;
}

.box-footer-label {
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #6B7280 !important;
  font-weight: 600 !important;
}

.box-footer-price {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.1 !important;
}

.box-add-cart-btn {
  background: #111827 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 10px 20px !important;
  font-family: inherit !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.box-add-cart-btn:not(:disabled):hover {
  background: #000000 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
}

.box-add-cart-btn:disabled {
  background: #E5E7EB !important;
  color: #9CA3AF !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Cart styling for Aroma Box */
.cart-box-banner-action {
  padding: 10px 14px !important;
  background: #FAF7F2 !important;
  border-bottom: 1px solid rgba(200, 169, 126, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
}

.cart-box-banner-text {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.cart-box-emoji {
  font-size: 1.2rem !important;
}

.cart-box-title {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.cart-box-subtitle {
  font-size: 0.7rem !important;
  color: #6B7280 !important;
}

.cart-box-btn {
  background: #FFFFFF !important;
  color: #9A7B4F !important;
  border: 1px solid #C8A97E !important;
  border-radius: 9999px !important;
  padding: 5px 12px !important;
  font-family: inherit !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.cart-box-btn:hover {
  background: #9A7B4F !important;
  color: #FFFFFF !important;
}

/* Cart Item for Complete Box */
.cart-item-box {
  background: #FCFAF7 !important;
  border: 1px solid rgba(200, 169, 126, 0.3) !important;
  border-radius: 12px !important;
  padding: 12px !important;
  margin-bottom: 12px !important;
}

.cart-item-box-header {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
}

.cart-item-box-img {
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
}

.cart-item-box-title-wrap {
  flex: 1 !important;
}

.cart-item-box-badge {
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  color: #9A7B4F !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.cart-item-box-title {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 1px 0 !important;
}

.cart-item-box-price {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.cart-box-fragrances-list {
  background: #FFFFFF !important;
  border-radius: 8px !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  padding: 6px 10px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  margin-bottom: 6px !important;
}

.cart-box-fragrance-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.75rem !important;
  color: #374151 !important;
}

.cart-box-fragrance-sku {
  font-weight: 700 !important;
  color: #9A7B4F !important;
  font-size: 0.68rem !important;
  background: #FAF7F2 !important;
  padding: 1px 4px !important;
  border-radius: 3px !important;
}

/* ==========================================================================
   Comprehensive Responsive Overhaul for Box Builder
   ========================================================================== */

/* Tablets & Small Laptops */
@media (max-width: 768px) {
  .box-builder-content {
    max-height: 94vh !important;
    border-radius: 16px !important;
  }
  .box-builder-header {
    padding: 14px 16px 10px !important;
  }
  .box-catalog-area {
    padding: 10px 16px !important;
  }
}

/* Mobile Screens (Phones, e.g. iPhone, Samsung, Xiaomi) */
@media (max-width: 640px) {
  .box-builder-modal {
    padding: 0 !important;
    align-items: flex-end !important;
  }
  
  .box-builder-content {
    max-width: 100% !important;
    width: 100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 18px 18px 0 0 !important;
    border: none !important;
  }
  
  .box-builder-close {
    top: 10px !important;
    right: 12px !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
  }
  
  .box-builder-header {
    padding: 12px 14px 8px !important;
  }
  
  .box-builder-topbar {
    padding-right: 32px !important;
  }
  
  .box-builder-title {
    font-size: 1.15rem !important;
  }
  
  .box-builder-subtitle {
    display: none !important;
  }
  
  .box-size-selector {
    gap: 6px !important;
    margin-bottom: 8px !important;
  }
  
  .box-size-btn {
    padding: 5px 6px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1px !important;
    min-height: 34px !important;
  }
  
  .box-size-btn .size-count {
    font-size: 0.74rem !important;
  }
  
  .box-size-btn .size-price {
    font-size: 0.68rem !important;
  }
  
  .box-slots-wrapper {
    padding: 6px 8px !important;
    border-radius: 10px !important;
  }
  
  .box-slots-header {
    font-size: 0.72rem !important;
    margin-bottom: 4px !important;
  }
  
  .box-slots-status strong {
    font-size: 0.85rem !important;
  }
  
  .box-slots-grid[data-slots="3"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .box-slots-grid[data-slots="4"] {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  
  .box-slots-grid[data-slots="5"] {
    grid-template-columns: repeat(5, 1fr) !important;
  }
  
  .box-slot-card {
    height: 40px !important;
    min-height: 40px !important;
    padding: 2px 4px !important;
    border-radius: 6px !important;
  }
  
  .box-slot-card.empty .slot-icon {
    font-size: 0.72rem !important;
  }
  
  .box-slot-card.empty .slot-num {
    font-size: 0.62rem !important;
  }
  
  .box-slot-card.filled {
    padding: 2px 4px !important;
    padding-right: 18px !important;
  }
  
  .box-slot-card.filled .slot-thumb {
    width: 18px !important;
    height: 28px !important;
  }
  
  .box-slot-card.filled .slot-sku {
    font-size: 0.58rem !important;
  }
  
  .box-slot-card.filled .slot-name {
    font-size: 0.62rem !important;
  }
  
  .box-slot-card.filled .slot-remove {
    width: 15px !important;
    height: 15px !important;
    font-size: 0.55rem !important;
    right: 2px !important;
  }
  
  .box-catalog-area {
    padding: 8px 12px !important;
  }
  
  .box-search-box {
    height: 34px !important;
    padding: 4px 10px !important;
    margin-bottom: 6px !important;
  }
  
  .box-search-box input {
    font-size: 0.78rem !important;
  }
  
  .box-chip {
    padding: 3px 8px !important;
    font-size: 0.7rem !important;
  }
  
  .box-perfumes-grid {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  
  .box-perfume-card {
    height: 48px !important;
    padding: 4px 8px !important;
  }
  
  .box-perfume-card .p-thumb {
    width: 28px !important;
    height: 36px !important;
  }
  
  .box-perfume-card .p-name {
    font-size: 0.74rem !important;
  }
  
  .box-perfume-card .p-notes {
    font-size: 0.64rem !important;
  }
  
  .box-perfume-card .p-add-btn {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.8rem !important;
  }
  
  .box-builder-footer {
    padding: 10px 14px !important;
    padding-bottom: max(12px, env(safe-area-inset-bottom)) !important;
    gap: 10px !important;
  }
  
  .box-footer-label {
    display: none !important;
  }
  
  .box-footer-price {
    font-size: 1.15rem !important;
  }
  
  .box-add-cart-btn {
    flex: 1 !important;
    padding: 9px 12px !important;
    font-size: 0.8rem !important;
    justify-content: center !important;
    gap: 6px !important;
    border-radius: 10px !important;
  }
  
  .box-add-cart-btn svg {
    width: 15px !important;
    height: 15px !important;
  }
}

/* Very Short Viewports (Laptops with 125-150% scaling, Landscape Phones) */
@media (max-height: 720px) {
  .box-builder-content {
    height: 94vh !important;
    max-height: 94vh !important;
  }
  .box-builder-header {
    padding: 10px 14px 6px !important;
  }
  .box-builder-subtitle {
    display: none !important;
  }
  .box-size-selector {
    margin-bottom: 6px !important;
  }
  .box-size-btn {
    min-height: 30px !important;
    padding: 4px 8px !important;
  }
  .box-slots-wrapper {
    padding: 6px 8px !important;
  }
  .box-slot-card {
    height: 38px !important;
    min-height: 38px !important;
  }
  .box-catalog-area {
    padding: 8px 14px !important;
  }
  .box-builder-footer {
    padding: 8px 14px !important;
  }
}
