/* =========================================================================
   ROYAL MIST THEME
   Porcelain x Deep Maroon x Metallic Gold
   ========================================================================= */

:root {
  /* Imperial Palette */
  --bg-porcelain: #faf9f6;
  --bg-mist: #f0eeeb;
  --ink-maroon: #420808;
  /* Oxblood */
  --ink-charcoal: #0a0a0a;
  /* Deep Black */
  --accent-gold: #D4AF37;
  /* Metallic Gold */
  --glass-ice: rgba(255, 255, 255, 0.65);
  --glass-gold: rgba(212, 175, 55, 0.1);

  /* Typography */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Manrope", sans-serif;

  /* Ease */
  --ease-surreal: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fluid: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Mobile Performance Optimizations */
html {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background-color: var(--bg-porcelain);
  color: var(--ink-charcoal);
  font-family: var(--font-sans);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  /* Mobile performance boost */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
}


body.is-loading {
  overflow: hidden;
}

/* Ambient Background */
.ambient-light {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
  z-index: -2;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
}

/* Typography Base */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink-maroon);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Loader */
.dream-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-porcelain);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.dream-text {
  overflow: hidden;
  display: flex;
}

.dream-text .char {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--ink-maroon);
  transform: translateY(100%);
  opacity: 0;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 3rem;
  z-index: 100;
  transition: padding 0.5s var(--ease-surreal);
}

.nav.is-scrolled {
  padding: 1rem 3rem;
  background: rgba(250, 249, 246, 0.7);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 40px;
  /* Adjust based on navbar height */
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 3rem;
}

.nav-item {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-charcoal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink-maroon);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-fluid);
}

.nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-tools {
  display: flex;
  gap: 1.5rem;
}

.nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s;
  color: var(--ink-maroon);
  position: relative;
}

.nav-icon:hover {
  background: rgba(107, 15, 15, 0.05);
}

.cart-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: none;
}

.cart-dot:not(:empty) {
  display: block;
}

@media (max-width: 768px) {
  .nav {
    padding: 1.5rem 1rem;
  }

  .nav-menu {
    display: none;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(250, 249, 246, 0.8), rgba(240, 238, 235, 1));
}

.hero-seal {
  margin-bottom: 2rem;
  color: var(--accent-gold);
  opacity: 0;
  /* Animated in */
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero-container {
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  /* Larger */
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink-maroon);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-scroll-indicator {
  margin-top: 5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-maroon);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.6;
}

.line-drop {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--ink-maroon), transparent);
}

.btn-royal {
  background: var(--ink-maroon);
  color: var(--accent-gold);
  padding: 1.2rem 4rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-surreal);
  margin-top: 1rem;
}

.btn-royal:hover {
  background: var(--ink-charcoal);
  color: #fff;
  border-color: var(--ink-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Canvas/Silk Replacement */
.hero-bg-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(66, 8, 8, 0.03) 0%, transparent 60%),
    radial-gradient(circle at center, #faf9f6 0%, #f0eeeb 100%);
  opacity: 0.8;
  pointer-events: none;
}

/* Catalog */
.catalog {
  padding: 8rem 4rem;
  position: relative;
}

.catalog-header {
  margin-bottom: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
}

.catalog-header h2 {
  font-size: 4rem;
  line-height: 1;
}

.catalog-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: white;
  padding: 1rem 2rem;
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.search-bar input {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: none;
  background: transparent;
  padding: 0.5rem 0;
  width: 200px;
  color: var(--ink-charcoal);
  outline: none;
  text-transform: uppercase;
}

.search-bar input::placeholder {
  color: rgba(10, 10, 10, 0.4);
}

.filter-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.filter-group::before {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  margin-right: 1rem;
}

.filter-group select,
.filter-group button {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-charcoal);
  border: none;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.filter-group select:hover,
.filter-group button:hover {
  color: var(--ink-maroon);
}


/* Masonry Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 6rem 3rem;
}

/* Rich Product Cards */
.product-item {
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.image-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: #f4f4f4;
  margin-bottom: 1.5rem;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-surreal), opacity 0.5s ease;
  pointer-events: none;
  /* Prevent drag/open */
}

.product-img-hover {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.2s var(--ease-surreal);
  pointer-events: none;
  /* Prevent drag/open */
}

.product-item:hover .product-img {
  transform: scale(1.05);
}

.product-item:hover .product-img-hover {
  opacity: 1;
  transform: scale(1);
}

/* Card Badges & Actions */
.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  color: var(--ink-charcoal);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  z-index: 2;
  opacity: 0.9;
}

.card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-surreal);
  z-index: 2;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-item:hover .card-actions {
  transform: translateY(0);
}

.action-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-maroon);
  font-weight: 600;
}

.product-info {
  text-align: left;
  padding: 0 0.5rem;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink-charcoal);
}

.product-price {
  font-size: 1rem;
  color: var(--ink-maroon);
  font-family: var(--font-sans);
  font-weight: 600;
}

.product-sub {
  font-size: 0.8rem;
  color: rgba(10, 10, 10, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Modal - Glass Ice */
.modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  /* Flex when active */
  justify-content: center;
  align-items: center;
}

.modal-wrapper.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.modal-card {
  width: 90vw;
  height: 90vh;
  background: var(--glass-ice);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 80px rgba(107, 15, 15, 0.1);
  position: relative;
  z-index: 2;
  border-radius: 4px;
  /* Minimal radius */
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink-maroon);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-maroon);
  transition: 0.3s;
}

.modal-close:hover {
  background: var(--ink-maroon);
  color: white;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Strict 50/50 split */
  height: 100%;
  overflow: hidden;
  /* Prevent body scroll */
}

.modal-visual {
  background: #f7f7f7;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.modal-visual>img#modalImage {
  max-width: 80%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Navigation Arrows */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--ink-maroon);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-nav:hover {
  background: var(--ink-maroon);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.modal-nav-prev {
  left: 1rem;
}

.modal-nav-next {
  right: 1rem;
}

/* Thumbnail Strip */
.modal-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.modal-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.modal-thumb:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.modal-thumb.active {
  opacity: 1;
  border-color: var(--accent-gold);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.modal-details {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(107, 15, 15, 0.05);
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 5;
  height: 100%;
  overflow-y: auto;
  /* Scroll ONLY details if needed */
  opacity: 1 !important;
  transform: none !important;
}

.modal-details>* {
  opacity: 1 !important;
  transform: none !important;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.modal-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.modal-desc {
  color: var(--ink-charcoal);
  opacity: 0.8;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 400px;
}

.modal-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  color: var(--ink-maroon);
  font-size: 0.9rem;
  border-top: 1px solid rgba(107, 15, 15, 0.1);
  padding-top: 1rem;
}

.modal-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ink-maroon);
  margin-bottom: 3rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: max-content;
}

.btn-primary {
  background: var(--ink-maroon);
  color: white;
  padding: 1rem 3rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: 0.4s var(--ease-surreal);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 15, 15, 0.3);
}

.btn-text {
  text-align: center;
  font-size: 0.9rem;
  text-decoration: underline;
  color: var(--ink-charcoal);
}

/* About Section */
.about {
  padding: 8rem 4rem;
  background: var(--bg-porcelain);
  position: relative;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h2 {
  font-size: 3.5rem;
  color: var(--ink-maroon);
}

.about-content {
  font-size: 1.1rem;
  color: var(--ink-charcoal);
  line-height: 1.8;
}

.lead-text {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  color: var(--ink-maroon);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-style: italic;
}

.about-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin: 4rem 0;
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--ink-maroon);
}

.feature-list,
.promise-list {
  list-style: none;
}

/* =========================================
   Mobile Responsiveness
   ========================================= */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {

  /* Navigation */
  .nav {
    padding: 1rem;
    background: rgba(250, 249, 246, 0.9);
    /* Solid bg for mobile readability */
  }

  .nav-menu {
    display: none;
    /* Hide desktop menu items */
  }

  .nav-inner {
    justify-content: space-between;
  }

  /* Hero */
  .hero {
    padding: 0 1rem;
    min-height: 80vh;
  }

  .hero-container {
    width: 100%;
  }

  .hero-title {
    font-size: 3rem;
    /* Significantly reduce unit for mobile */
    letter-spacing: -0.02em;
  }

  .btn-royal {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .hero-scroll-indicator {
    margin-top: 3rem;
  }

  /* Catalog */
  .catalog {
    padding: 4rem 1rem;
  }

  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .catalog-header h2 {
    font-size: 2.5rem;
  }

  .catalog-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1rem;
    padding: 1.5rem;
  }

  .search-bar input {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .filter-group {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .filter-group::before {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 2rem 1rem;
  }

  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      /* 1 column on very small screens */
    }
  }

  .product-title {
    font-size: 1.1rem;
  }

  .product-price {
    font-size: 0.9rem;
  }

  /* Modal - Mobile Friendly */
  .modal-card {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Allow full modal scroll */
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.8);
  }

  .modal-body {
    display: block;
    /* Stack */
    height: auto;
    overflow: visible;
  }

  .modal-visual {
    height: 40vh;
    padding: 1rem;
  }

  .modal-visual img {
    max-height: 100%;
    max-width: 100%;
  }

  .modal-details {
    height: auto;
    padding: 2rem 1.5rem;
    border-left: none;
    border-top: 1px solid rgba(107, 15, 15, 0.1);
    background: var(--bg-porcelain);
  }

  .modal-title {
    font-size: 2rem;
  }

  .modal-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-desc {
    font-size: 0.95rem;
  }

  .modal-buttons {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* About */
  .about {
    padding: 4rem 1rem;
  }

  .about-header h2 {
    font-size: 2.5rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}



.feature-list li,
.promise-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.feature-list li::before,
.promise-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1.2;
}

.about-promise {
  background: white;
  padding: 4rem;
  border: 1px solid var(--accent-gold);
  text-align: center;
  margin-top: 4rem;
}

.about-promise h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--ink-maroon);
}

.promise-list {
  display: inline-block;
  text-align: left;
  margin-bottom: 2rem;
}

.closing-statement {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink-maroon);
  margin-top: 2rem;
  font-style: italic;
}

/* Contact Section */
.contact {
  padding: 8rem 4rem;
  background: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.contact-card {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.calendly-container {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.calendly-container h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  color: var(--ink-maroon);
}

.contact-card h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-card p {
  color: var(--ink-charcoal);
  opacity: 0.8;
  margin-bottom: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.form-group input {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(107, 15, 15, 0.2);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink-charcoal);
  outline: none;
  background: transparent;
  text-align: center;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: var(--ink-maroon);
}

.form-group input::placeholder {
  color: rgba(107, 15, 15, 0.4);
  font-style: italic;
}

.contact-direct {
  border-top: 1px solid rgba(107, 15, 15, 0.1);
  padding-top: 2rem;
}

.phone-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ink-maroon);
  margin-top: 0.5rem;
}

/* =========================================================================
   CART & CHECKOUT
   ========================================================================= */

.cart-page,
.checkout-page {
  padding: 8rem 4rem;
  background: var(--bg-porcelain);
  min-height: 100vh;
}

.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Cart Items */
.cart-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cart-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(107, 15, 15, 0.1);
  align-items: center;
}

.cart-item-img {
  width: 120px;
  aspect-ratio: 0.8;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cart-item-meta {
  font-size: 0.9rem;
  color: var(--ink-charcoal);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(107, 15, 15, 0.2);
  border-radius: 50px;
  padding: 0.2rem 0.5rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--ink-maroon);
}

.qty-val {
  font-family: var(--font-serif);
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  font-size: 0.8rem;
  text-decoration: underline;
  color: var(--ink-charcoal);
  opacity: 0.6;
  transition: 0.3s;
}

.remove-btn:hover {
  opacity: 1;
  color: var(--ink-maroon);
}

/* Order Summary */
.order-summary {
  background: white;
  padding: 3rem;
  border: 1px solid rgba(107, 15, 15, 0.1);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.summary-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--ink-maroon);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--ink-charcoal);
}

.summary-total {
  border-top: 1px solid rgba(107, 15, 15, 0.2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink-maroon);
}

.btn-block {
  width: 100%;
  margin-top: 2rem;
}

/* Checkout Form */
.checkout-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.checkout-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(107, 15, 15, 0.1);
  padding-bottom: 0.5rem;
}

.form-row {
  display: flex;
  gap: 2rem;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-radio {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

.payment-radio:hover,
.payment-radio.active {
  border-color: var(--ink-maroon);
  background: rgba(107, 15, 15, 0.05);
}

.payment-radio input {
  accent-color: var(--ink-maroon);
}

@media (max-width: 900px) {

  .cart-grid,
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    margin-top: 2rem;
  }
}

/* Policy/Terms Page */
.policy-page {
  padding: 8rem 2rem;
  background: var(--bg-porcelain);
  min-height: 100vh;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-container h1 {
  font-size: 3rem;
  font-family: var(--font-serif);
  color: var(--ink-maroon);
  margin-bottom: 2rem;
  text-align: center;
}

.policy-intro {
  font-size: 1.1rem;
  color: var(--ink-charcoal);
  margin-bottom: 3rem;
  line-height: 1.6;
  text-align: center;
  opacity: 0.9;
}

.policy-section {
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(107, 15, 15, 0.05);
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--ink-maroon);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(107, 15, 15, 0.1);
  padding-bottom: 0.5rem;
}

.policy-section ul {
  padding-left: 1.5rem;
  list-style: none;
}

.policy-section ul li {
  margin-bottom: 0.8rem;
  position: relative;
  color: var(--ink-charcoal);
  opacity: 0.9;
}

.policy-section ul li::before {
  content: '•';
  position: absolute;
  left: -1.2rem;
  color: var(--accent-gold);
}

.policy-section ul ul {
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.policy-section ul ul li::before {
  content: '-';
}

/* Footer */
.footer {
  background-color: var(--ink-maroon);
  color: white;
  padding: 6rem 4rem 2rem;
  font-family: var(--font-sans);
  border-top: none;
  margin-top: 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col p {
  opacity: 0.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-phone {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0;
  opacity: 1 !important;
}

.footer-col a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-hours {
  margin-top: 1.5rem;
}

.footer-hours .label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}

.footer-hours .value {
  font-weight: 600;
}

.footer-socials {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background: white;
  color: var(--ink-maroon);
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 0.8rem;
}

.footer-links-list a {
  font-size: 0.95rem;
  opacity: 0.8;
  text-transform: capitalize;
  letter-spacing: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 2rem;
  }

  .footer-columns {
    flex-direction: column;
    gap: 3rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .modal-body {
    grid-template-columns: 1fr;
    overflow-y: scroll;
  }

  .modal-visual {
    height: 50vh;
    padding: 2rem;
  }

  .modal-details {
    padding: 2rem;
  }

  .catalog {
    padding: 4rem 1.5rem;
  }

  .catalog-header h2 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .gallery-grid {
    gap: 2rem;
  }

  .product-item:nth-child(even) {
    margin-top: 0;
  }
}

/* Utilities */
/* =========================================
   Butterfly Particles - Removed
   ========================================= */

/* =========================================
   Floating WhatsApp Button
   ========================================= */

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-surreal);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
  }
}