:root {
    --color-primary-900: #541025;
    --color-primary-800: #66152d;
    --color-primary-700: #7c1733;
    --color-primary-600: #8d1d3c;
    --color-primary-500: #a53a55;
    --color-primary-200: #f4d8de;
    --color-primary-100: #f9e6eb;
    --color-surface: #ffffff;
    --color-background: #fdf8f4;
    --color-border: #d8c6ce;
    --color-focus: #7c1733;
    --color-text: #2f2432;
    --color-text-muted: #5c6474;
    --color-success: #1f8a4c;
    --shadow-soft: 0 18px 42px rgba(124, 23, 51, 0.12);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
}

.font-heading {
    font-family: 'Playfair Display', serif;
}

.surface-card {
    background-color: var(--color-surface);
    box-shadow: var(--shadow-soft);
    border-radius: 26px;
    border: 1px solid rgba(124, 23, 51, 0.05);
}

.maroon { background-color: var(--color-primary-700); }
.text-maroon { color: var(--color-primary-700); }
.border-maroon { border-color: var(--color-primary-700); }
.maroon-light { background-color: var(--color-primary-500); }
.maroon-lighter { background-color: var(--color-primary-200); }
.text-maroon-lighter { color: var(--color-primary-500); }

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-800));
    color: #ffffff;
    font-weight: 600;
    border-radius: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    box-shadow: 0 12px 24px rgba(124, 23, 51, 0.18);
}

.btn-primary:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(124, 23, 51, 0.22);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(124, 23, 51, 0.24);
    outline-offset: 3px;
}

.btn-primary:disabled {
    background: linear-gradient(135deg, rgba(124, 23, 51, 0.35), rgba(102, 21, 45, 0.35));
    box-shadow: none;
    cursor: not-allowed;
    filter: grayscale(10%);
}

.btn-disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-loading {
    opacity: 0.85;
    cursor: progress;
}

.btn-primary.btn-loading {
    box-shadow: none;
    transform: none;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-primary-100), var(--color-primary-200));
    color: var(--color-primary-700);
    font-weight: 600;
    border-radius: 14px;
    transition: filter 0.18s ease, transform 0.18s ease;
}

.btn-secondary:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: 3px solid rgba(124, 23, 51, 0.2);
    outline-offset: 3px;
}

.btn-secondary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: saturate(60%);
}

.google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-800));
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 14px 32px rgba(124, 23, 51, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.google-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 18px 38px rgba(124, 23, 51, 0.22);
}

.google-button:focus-visible {
    outline: 3px solid rgba(124, 23, 51, 0.28);
    outline-offset: 3px;
}

.google-button.btn-loading {
    filter: brightness(0.9);
    box-shadow: none;
}

.auth-input {
    border-radius: 14px;
    border: 1.5px solid transparent;
    background-color: var(--color-primary-100);
    transition: border 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    color: var(--color-text);
}

.auth-input:focus {
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 4px rgba(124, 23, 51, 0.12);
    background-color: var(--color-surface);
    outline: none;
}

.auth-input::placeholder {
    color: rgba(47, 36, 50, 0.52);
}

.auth-label {
    color: var(--color-text-muted);
    font-weight: 600;
}

.auth-divider {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}

.auth-support-text {
    color: var(--color-text-muted);
}

.phone-message-error {
    color: var(--color-primary-700);
    font-weight: 600;
}

.phone-message-success {
    color: var(--color-success);
    font-weight: 600;
}

.text-error {
    color: #b32b3a;
}

.text-success {
    color: var(--color-success);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.rich-text p {
    margin-bottom: 0.75rem;
}

.rich-text ul,
.rich-text ol {
    margin: 0.5rem 0 0.75rem 1.2rem;
    padding-left: 1.2rem;
}

.rich-text ul {
    list-style: disc;
}

.rich-text ol {
    list-style: decimal;
}

.rich-text li {
    margin-bottom: 0.35rem;
}

.product-image-frame {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    overflow: hidden;
}


.product-card-image {
    aspect-ratio: 1 / 1;
    width: 100%;
}

.product-card-image__img,
.product-hero-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 5px;
}

.product-hero-image {
    width: 100%;
    max-width: 520px;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.product-hero-image__img {
    height: 100%;
    max-height: none;
}

.product-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: #7b1e1e;
    border: 1px solid rgba(123, 30, 30, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-nav svg {
    width: 18px;
    height: 18px;
}

.gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.03);
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 0.75rem;
}

.gallery-thumbs--below {
    width: 100%;
}

.gallery-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.gallery-thumb.is-active {
    border-color: rgba(123, 30, 30, 0.6);
    box-shadow: 0 0 0 2px rgba(123, 30, 30, 0.12);
}

.product-hero-block .price-block {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.price-row > div,
.price-row > span {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-video-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(124, 23, 51, 0.12);
    border: 1px solid rgba(124, 23, 51, 0.08);
    margin: 0;
}

.video-description-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

@media (min-width: 768px) {
    .video-description-card {
        padding: 0;
    }
}

.product-video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.pincode-loading {
    border: 2px solid transparent !important;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(120deg, rgba(190, 18, 60, 0.2), rgba(190, 18, 60, 0.85), rgba(190, 18, 60, 0.2)) border-box;
    background-size: 200% 100%;
    animation: pincodeBorderSweep 1s linear infinite;
}

.pincode-error {
    border-color: rgba(190, 18, 60, 0.85) !important;
    box-shadow: 0 0 0 2px rgba(190, 18, 60, 0.12);
}

.readonly-field {
    background-color: #f9fafb;
}

@keyframes pincodeBorderSweep {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.phone-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary-600);
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}

.phone-inline-note {
    margin-top: 0.65rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-primary-600);
    letter-spacing: 0.01em;
    text-align: left;
}

.phone-input-container {
    display: flex;
    align-items: stretch;
    background: var(--color-surface);
    border-radius: 16px;
    border: 1.5px solid rgba(124, 23, 51, 0.12);
    overflow: hidden;
    min-height: 52px;
    transition: border 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.phone-input-container:hover {
    border-color: rgba(124, 23, 51, 0.15);
}

.phone-input-container.has-digits {
    border-color: rgba(124, 23, 51, 0.2);
}

.phone-input-container.is-focused {
    border-color: var(--color-primary-500);
    background: var(--color-surface);
    box-shadow: 0 0 0 4px rgba(124, 23, 51, 0.12);
}

.phone-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary-700);
    background: rgba(124, 23, 51, 0.12);
    padding: 0 0.9rem;
    letter-spacing: 0.04em;
    border-right: 1px solid rgba(124, 23, 51, 0.15);
}

.phone-input-container.is-focused .phone-prefix {
    background: rgba(124, 23, 51, 0.18);
    border-right-color: rgba(124, 23, 51, 0.28);
}

.phone-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 0.9rem;
    color: var(--color-text);
}

.phone-input::placeholder {
    color: rgba(47, 36, 50, 0.4);
    font-style: italic;
}

.phone-input:focus {
    outline: none;
}

.section {
    display: none;
}
.section.active {
    display: block;
}
/* Custom scrollbar for a better look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdf8f4;
}
::-webkit-scrollbar-thumb {
    background: #a0435b;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7c1733;
}
@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fade-in 0.5s ease-out forwards;
}

.product-hidden {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton-shimmer {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 2000px 104px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.nav-links-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#auth-ui-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 0.75rem;
}

.auth-link {
  transition: opacity 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-link-hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.auth-link-visible {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
}

@media (max-width: 768px) {
  #auth-ui-container {
    display: none;
  }
}

header nav a.font-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.1;
}

header nav a.font-heading img {
  transition: transform 0.2s ease;
}

.mobile-nav-toggle {
  background-color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.mobile-nav-toggle:active {
  transform: scale(0.96);
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 82vw);
  background: #ffffff;
  box-shadow: -18px 0 40px rgba(15, 23, 42, 0.18);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.2s ease;
  z-index: 60;
}

.mobile-nav-panel.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(1px);
  z-index: 50;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(124, 23, 51, 0.12);
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.35rem;
  background: transparent;
  color: var(--color-text);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.mobile-nav-link,
.mobile-sub-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.25rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: 8px;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-sub-link:hover {
  color: var(--color-primary-700);
}

.mobile-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  padding: 0.75rem 0.25rem;
  border: none;
  background: transparent;
  color: var(--color-text);
}

.mobile-accordion[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-accordion-panel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 0.75rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.mobile-accordion-panel.open {
  max-height: 240px;
  opacity: 1;
}

.mobile-sub-link {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  header nav a.font-heading {
    font-size: 1.4rem;
    gap: 0.4rem;
  }

  header nav a.font-heading img {
    height: 2.4rem;
    width: auto;
    margin-right: 0.15rem;
  }

  .brand-link {
    font-size: 1.5rem;
    gap: 0.4rem;
  }

  .brand-logo {
    height: 2.5rem;
    width: 2.5rem;
    margin-right: 0.35rem;
  }

  .brand-text {
    font-size: 1.35rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .delivery-main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .delivery-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  }

  #profile-section h2,
  #address-section h2 {
    font-size: 1.35rem;
  }

  .address-action-row {
    position: sticky;
    bottom: 0;
    padding: 0.75rem 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    backdrop-filter: none;
  }

  #add-new-address-btn,
  #continue-btn {
    width: 100%;
  }

  #continue-btn {
    box-shadow: 0 12px 24px rgba(124, 23, 51, 0.35);
  }
}

#mobile-menu.mobile-menu-enhanced {
  text-align: left;
  padding-top: 0.75rem;
  padding-bottom: 1.5rem;
}

#mobile-menu.mobile-menu-enhanced > a {
  display: block;
}

#mobile-menu.mobile-menu-enhanced .mobile-nav-link {
  font-weight: 600;
  color: var(--color-text);
  padding: 0.75rem 0.25rem;
  text-align: left;
  border-radius: 0.65rem;
  border-bottom: 1px solid rgba(124, 23, 51, 0.08);
}

#mobile-menu.mobile-menu-enhanced .mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-accordion-wrapper {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(124, 23, 51, 0.08);
}

.mobile-accordion-wrapper:last-child {
  border-bottom: none;
}

.mobile-accordion .accordion-label {
  font-weight: 600;
}

#mobile-profile-panel {
  padding-top: 0.35rem;
}

#mobile-profile-panel a {
  display: block;
  padding: 0.5rem 0.35rem;
  border-radius: 0.65rem;
  font-weight: 600;
  color: var(--color-text);
}

#mobile-profile-panel a:hover {
  color: var(--color-primary-700);
}

#mobile-auth-links #mobile-guest-links a {
  margin-top: 0.45rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-500));
  color: #fff;
}

#mobile-auth-links #mobile-guest-links a:hover {
  color: #fff;
  filter: brightness(1.05);
}

.luxury-page {
  background:
    radial-gradient(circle at top left, rgba(128, 26, 63, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(232, 193, 104, 0.1), transparent 24%),
    linear-gradient(180deg, #fffdfd 0%, #f8f4f7 45%, #f4f5fb 100%);
  min-height: 100vh;
}

.site-header {
  background: rgba(255, 251, 252, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(96, 0, 41, 0.06);
  box-shadow: 0 10px 35px rgba(47, 36, 50, 0.06);
}

.site-header-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
  position: relative;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-nav-link {
  color: rgba(47, 36, 50, 0.78);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

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

.site-nav-link-active {
  position: relative;
}

.site-nav-link-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary-700), rgba(232, 193, 104, 0.9));
}

.header-icon-button {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(47, 36, 50, 0.82);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(96, 0, 41, 0.08);
  box-shadow: 0 10px 24px rgba(47, 36, 50, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.header-icon-button:hover {
  color: var(--color-primary-700);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(47, 36, 50, 0.1);
}

.site-auth-link {
  color: rgba(47, 36, 50, 0.78);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-auth-link:hover {
  color: var(--color-primary-700);
}

.site-mobile-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(96, 0, 41, 0.07);
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(47, 36, 50, 0.12);
  padding: 1rem;
}

.site-mobile-link {
  display: block;
  padding: 0.8rem 0.6rem;
  color: rgba(47, 36, 50, 0.82);
  font-weight: 500;
  border-radius: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-mobile-link:hover {
  background: rgba(128, 26, 63, 0.07);
  color: var(--color-primary-700);
}

.hero-wash {
  background:
    radial-gradient(circle at 22% 28%, rgba(128, 26, 63, 0.14), transparent 26%),
    radial-gradient(circle at 78% 10%, rgba(232, 193, 104, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 253, 0.4), transparent 100%);
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(96, 0, 41, 0.72);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #2f2432;
}

.section-body,
.hero-lead {
  color: rgba(47, 36, 50, 0.72);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metric-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(96, 0, 41, 0.08);
  border-radius: 1.35rem;
  padding: 1rem;
  box-shadow: 0 20px 45px rgba(47, 36, 50, 0.07);
}

.hero-metric-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--color-primary-700);
  margin-bottom: 0.35rem;
}

.hero-metric-label {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(47, 36, 50, 0.68);
}

.hero-visual {
  position: relative;
  min-height: 28rem;
  padding: 1.5rem 0 2rem;
}

.hero-image-card {
  position: relative;
  z-index: 2;
  border-radius: 2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(47, 36, 50, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-image-main {
  width: 100%;
  height: 36rem;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  left: -1.25rem;
  bottom: 0.5rem;
  z-index: 3;
  max-width: 18rem;
  background: rgba(255, 251, 252, 0.92);
  border: 1px solid rgba(96, 0, 41, 0.08);
  border-radius: 1.5rem;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 20px 45px rgba(47, 36, 50, 0.13);
}

.hero-floating-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(96, 0, 41, 0.62);
  margin-bottom: 0.6rem;
}

.hero-accent-orb {
  position: absolute;
  right: -1rem;
  top: -0.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(232, 193, 104, 0.42), rgba(232, 193, 104, 0.05));
  filter: blur(4px);
}

.premium-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(96, 0, 41, 0.08);
  border-radius: 2rem;
  box-shadow: 0 24px 60px rgba(47, 36, 50, 0.08);
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 247, 0.92));
  border: 1px solid rgba(96, 0, 41, 0.06);
  border-radius: 1.6rem;
  padding: 1.6rem;
  box-shadow: 0 16px 36px rgba(47, 36, 50, 0.06);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(128, 26, 63, 0.1);
  color: var(--color-primary-700);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2f2432;
  margin-bottom: 0.75rem;
}

.feature-copy {
  color: rgba(47, 36, 50, 0.68);
  line-height: 1.8;
}

.products-hero-shell {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.products-hero-aside {
  display: flex;
  justify-content: flex-start;
}

.products-hero-note {
  max-width: 24rem;
  padding: 1rem 1.2rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(96, 0, 41, 0.08);
  color: rgba(47, 36, 50, 0.68);
  box-shadow: 0 18px 40px rgba(47, 36, 50, 0.07);
}

.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(96, 0, 41, 0.09);
  color: rgba(47, 36, 50, 0.76);
  font-weight: 600;
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-pill:hover {
  color: var(--color-primary-700);
  border-color: rgba(96, 0, 41, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(47, 36, 50, 0.06);
}

.luxury-search-input {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(96, 0, 41, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 28px rgba(47, 36, 50, 0.06);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.luxury-search-input:focus {
  outline: none;
  border-color: rgba(96, 0, 41, 0.35);
  box-shadow: 0 0 0 4px rgba(128, 26, 63, 0.08), 0 16px 32px rgba(47, 36, 50, 0.08);
}

.catalog-section {
  margin-bottom: 4rem;
}

.catalog-heading-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.catalog-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
  color: #2f2432;
}

.catalog-intro {
  max-width: 36rem;
  color: rgba(47, 36, 50, 0.68);
  line-height: 1.8;
}

.product-grid {
  align-items: stretch;
}

.product-card-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 248, 0.98));
  border: 1px solid rgba(96, 0, 41, 0.08);
  box-shadow: 0 20px 48px rgba(47, 36, 50, 0.08);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card-shell:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(47, 36, 50, 0.12);
  border-color: rgba(96, 0, 41, 0.14);
}

.product-card-image {
  aspect-ratio: 4 / 4.5;
  width: 100%;
}

.product-card-image.product-card-frame {
  background:
    radial-gradient(circle at top right, rgba(232, 193, 104, 0.18), transparent 28%),
    linear-gradient(180deg, #fffefc 0%, #f7f1f4 100%);
  padding: 1.1rem;
  border-bottom: 1px solid rgba(96, 0, 41, 0.06);
}

.product-card-image__img {
  border-radius: 1.1rem;
  background: #fff;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.4rem;
}

.product-card-brow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.product-card-category {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(128, 26, 63, 0.08);
  color: var(--color-primary-700);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card-price {
  color: var(--color-primary-700);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1;
}

.product-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  line-height: 1.15;
  color: #2f2432;
  margin-bottom: 0.7rem;
}

.product-card-description {
  color: rgba(47, 36, 50, 0.68);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(96, 0, 41, 0.07);
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-card-old-price {
  color: rgba(47, 36, 50, 0.35);
  font-size: 0.9rem;
  text-decoration: line-through;
}

.product-card-cta {
  white-space: nowrap;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(128, 26, 63, 0.92);
  color: #fff;
  padding: 0.45rem 0.75rem;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(96, 0, 41, 0.2);
}

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(232, 193, 104, 0.12), transparent 18%),
    linear-gradient(135deg, #5d0629 0%, #7b1b3f 100%);
}

.footer-link {
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
  opacity: 0.92;
  color: #fff8d8;
}

.site-footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: center;
  color: rgba(255, 244, 246, 0.82);
}

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
    padding-top: 0;
  }

  .hero-image-main {
    height: 26rem;
  }

  .hero-floating-card {
    left: 1rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .products-hero-shell,
  .catalog-heading-row {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .products-hero-aside {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .site-header-shell {
    min-height: 4.85rem;
  }

  .site-brand {
    max-width: calc(100vw - 8.5rem);
  }

  .site-brand span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-image-main {
    height: 21rem;
  }

  .hero-floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .premium-panel,
  .product-card-shell {
    border-radius: 1.35rem;
  }

  .product-card-body {
    padding: 1.15rem;
  }

  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card-cta {
    width: 100%;
    justify-content: center;
  }
}
