/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
  --paper: #f5f0e7;
  --ink: #181510;
  --line: rgba(24, 21, 16, 0.18);
  --theme-bg: #ece4d7;
  --theme-text: #1C1A17;
  --theme-muted: #55524D;
  --overlay-bg: rgba(28, 26, 23, 0.6);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  color: inherit;
}

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

:where(a, button, input):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

/* ==========================================================================
   2. HEADER & DESKTOP NAVIGATION
   ========================================================================== */
/* ==========================================================================
   2. HEADER & DESKTOP NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300; /* Raised so hamburger icon stays above dark mobile menu */
  width: 100%;
  height: 96px;
  padding: 0 3.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(236, 228, 215, 0.96);
  border-bottom: 1px solid #cecac3;
  box-shadow: 0 4px 18px rgba(24, 21, 16, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

main {
  padding-top: 96px;
}


.logo {
  font: 38px var(--serif);
  letter-spacing: -.07em;
}

.logo img { 
  width: 140px;
  margin-top: 14px;
}

.desktop-nav {
  display: flex;
  gap: 4vw;
  white-space: nowrap;
  margin-left: auto;
 
}

.desktop-nav a,
.header-actions > a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-actions > a span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid;
  border-radius: 50%;
  margin-left: 8px;
}

/* Mobile Toggle Hamburger Button */
.menu-button {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 310; /* Ensures it stays clickable on top */
}

.menu-button i {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--ink); /* Dark color so it stays visible on the cream header */
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Morphing animation into 'X' when menu is open */
.menu-button.active i:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-button.active i:nth-child(2) {
  opacity: 0;
}

.menu-button.active i:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
/* ==========================================================================
   3. MOBILE NAVIGATION SLIDE-OUT MENU
   ========================================================================== */
.mobile-menu {
  position: fixed;
  z-index: 200; /* Sits under .header (300) */
  inset: 0;
  background: #1c1915;
  color: #f5eee3;
  padding: 13vh 10vw;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu > a {
  font: clamp(24px, 5vw, 44px) var(--serif);
  padding: 14px 0;
  border-bottom: 1px solid #514b42;
}

.mobile-menu small {
  display: inline-block;
  width: 58px;
  font: 10px var(--sans);
}

.menu-close {
  display: none; /* Hide standard close button since hamburger morphs into 'X' */
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    position: relative;
    overflow: hidden;
    background: #181510;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fits container dimensions without stretching */
    object-position: center;
    border: 0;
    outline: none;
    display: block;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 11%;
  top: 19%;
}

.hero-copy h1 {
  font-size: clamp(64px, 6.1vw, 98px);
  line-height: .91;
  letter-spacing: -.045em;
  margin-bottom: 36px;
}

.hero-copy > p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 34px;
  padding-left: 7px;
 
}

.product-placeholder {
  position: absolute;
  z-index: 2;
  left: 54%;
  bottom: 8%;
  width: 150px;
  height: 430px;
  border: 1px dashed rgba(24, 21, 16, .55);
  border-radius: 8px 8px 28px 28px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10px;
  letter-spacing: .12em;
}

.product-placeholder:before {
  content: "";
  position: absolute;
  width: 45%;
  height: 100px;
  bottom: 100%;
  border: 1px dashed rgba(24, 21, 16, .55);
}

/* ==========================================================================
   5. GENERAL COMPONENTS & IMAGES
   ========================================================================== */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 11px;
  border-bottom: 1px solid;
  font-size: 11px;
  font-weight: 700;
}

.arrow-link span {
  font-size: 19px;
}

.photo {
  min-height: 280px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  background: #d4c8b5;
  color: #655c4e;
  font-size: 10px;
  letter-spacing: .14em;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.story, .india, .dist, .sip01, .sip02, .sip03, .sip04, .sip05, .hero-background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story { background-image: url('images/palasa_2.jpg'); }
.india { background-image: url('images/palasa_4.jpg'); }
.dist { background-image: url('images/palasa_5.jpg'); }
.sip01 { background-image: url('images/palasa_6.jpg'); }
.sip02 { background-image: url('images/palasa_7.jpg'); }
.sip03 { background-image: url('images/palasa_8.jpg'); }
.sip04 { background-image: url('images/palasa_9.jpg'); }
.sip05 { background-image: url('images/palasa_7.jpg'); }

/* ==========================================================================
   6. PAGE SECTIONS (Story, Features, Ritual, Collection, Find, Footer)
   ========================================================================== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
  border-bottom: 1px solid var(--line);
}

.two-column > .photo {
  min-height: 450px;
}

.content {
  padding: 30px 3.5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.content > p:not(.tag) {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 34px;
}

.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.tag span {
  margin-right: 15px;
}

.space{padding: 0px 3.5%}
.deskleft{margin-left: 3.3%}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 410px;
}

.feature:first-child {
  border-right: 1px solid var(--line);
}

.feature .content {
  padding: 8% 11%;
}

.feature h2 {
  font-size: clamp(32px, 3vw, 52px);
    padding-right: 30px;
}

.feature .content > p:not(.tag) {
  font-size: 12px;
}

.ritual-section {
  padding: 44px 3.3% 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.ritual-intro {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.section-heading .tag {
  margin-bottom: 10px;
}

.slider-controls {
  display: none;
  gap: 9px;
}

.slider-controls button,
.collection-next {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.story-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: visible;
  scroll-snap-type: none;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.card {
  min-width: 0;
  scroll-snap-align: start;
  border-right: 1px solid var(--line);
}

.card:last-child {
  border-right: 0;
}

.card .photo {
  min-height: 260px;
}

.card-copy {
  position: relative;
  min-height: 140px;
  padding: 18px;
}

.card-copy h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.card-copy p {
  font-size: 11px;
  line-height: 1.5;
}

.card-copy button {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 30px;
  height: 30px;
  border: 1px solid;
  border-radius: 50%;
  background: transparent;
  display:none;}
.PTP30{padding: 30px 0px;}
.PTP40{padding: 40px 0px;}
.experience {
  border-bottom: 1px solid var(--line);
}

.experience > .content {
  width: 100%;
  padding: 50px 3.5%;
}

.experience h2 {
  white-space: nowrap;
  margin-bottom: 30px;
}

.photo2 {
  position: relative;
  width: 100%;
  /* `exp.mp4` and its poster are a 1500 × 350 banner.  Reserving that
     ratio prevents cropping on wide screens and layout jumps on mobile. */
  aspect-ratio: 1500 / 350;
  min-height: 0;
  margin-bottom: 30px;
  overflow: hidden;
}

.experience-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 0;
  outline: none;
}

.collection {
  display: grid;
  grid-template-columns: 29% 1fr 60px;
  min-height: 330px;
  border-bottom: 1px solid var(--line);
}

.collection-heading {
  padding: 42px 3.5vw;
  border-right: 1px solid var(--line);
}

.collection-heading h2 {
  font-size: 44px;
}

.product {
  flex: 0 0 33.333%;
  min-width: 190px;
  padding: 35px 12px 20px;
  border-right: 1px solid var(--line);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-placeholder.small {
  position: relative;
  left: auto;
  bottom: auto;
  width: 72px;
  height: 150px;
  border-radius: 5px 5px 14px 14px;
}

.product-placeholder.small:before {
  height: 36px;
}

.product h3 {
  font: 700 10px var(--sans);
  letter-spacing: .08em;
  margin: 16px 0 4px;
}

.product p {
  font: 12px var(--serif);
}

.collection-next {
  align-self: center;
  justify-self: center;
}

.find {
  display: grid;
  grid-template-columns: 29% 1fr;
  min-height: 195px;
  border-bottom: 1px solid var(--line);
}

.find-heading {
  padding: 30px 3.5vw;
  border-right: 1px solid var(--line);
}

.find-heading .tag {
  margin-bottom: 14px;
}



.find-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.find-links a {
  border-right: 1px solid var(--line);
  min-width: 0;
  padding: 20px 8px;
  display: grid;
  grid-template-rows: 72px auto;
  place-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

.find-links .find-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 52px/1 var(--serif);
}

.find-links .find-label {
  line-height: 1.2;
}

.footer {
  min-height: 200px;
  position: relative;
  display: grid;
  /* Keep the logo left while the footer information forms a compact right cluster. */
  grid-template-columns: 1fr max-content max-content max-content;
  padding: 36px 3.5%;
  column-gap: clamp(32px, 6vw, 80px);
  background: #ece4d7;
}

.footer > * {
  min-width: 0;
}

.footer .logo img {
  display: block;
  width: 140px;
  height: auto;
}

.newsletter h3 {
  font: 700 11px var(--sans);
  margin-bottom: 7px;
}

.newsletter p {
  font-size: 11px;
  line-height: 16px;
  overflow-wrap: anywhere;
}

/* Keep every comma-delimited part of the address readable on desktop. */
.footer-address .address-break {
  display: block;
}

.newsletter form {
  display: flex;
  width: 100%;
  max-width: 200px;
  height: 38px;
  border: 1px solid var(--line);
}

.newsletter form:focus-within {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 12px;
  font-size: 11px;
}

.newsletter input:focus-visible {
  outline: none;
}

.newsletter button {
  width: 38px;
  border: 0;
  background: transparent;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-links a {
  font-size: 10px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal-row {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  align-self: end;
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-copyright {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  color: var(--theme-muted);
}

.footer-cookie-settings {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--theme-muted);
  font: 700 10px/1.4 var(--sans);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.footer-social-link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-muted);
  border-radius: 50%;
  color: var(--theme-muted);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-social-link .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* ===========================================================================
   7. MODAL WINDOWS (Reusable Clean Logic)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--overlay-bg);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-container {
  background-color: var(--theme-bg);
  color: var(--theme-text);
  width: 100%;
  max-width: 580px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fixed Header */
.modal-header {
  padding: 30px 30px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  background-color: var(--theme-bg);
  z-index: 2;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--theme-text);
  cursor: pointer;
  padding: 0 0 0 16px;
  transition: transform 0.2s ease;
      margin-top: -10px;
}

.modal-close:hover {
  transform: scale(1.15);
}

/* Scrollable Body */
.modal-body {
  padding: 0 30px 40px 30px;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-subtitle {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--theme-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.modal-header h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.modal-body p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.2;
  color: var(--theme-muted);
  margin-bottom: 16px;
}

.ingredient-copy > p:first-child {
  line-height: 1.5;
  margin-bottom: 30px;
}

.ingredient-item {
  padding: 22px 0 6px;
  border-top: 1px solid var(--line);
}

.ingredient-item h3 {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.25;
}

.ingredient-item h3 span {
  margin-right: 10px;
  font: 700 10px var(--sans);
  letter-spacing: 0.08em;
}

.ingredient-item p {
  margin-bottom: 10px;
  line-height: 1.45;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  font: 700 12px var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-copy h3:first-of-type {
  margin-top: 8px;
}

.legal-copy h4 {
  margin: 18px 0 8px;
  font: 700 12px var(--sans);
  color: var(--theme-text);
}

.legal-copy ul {
  margin: -4px 0 18px;
  padding-left: 20px;
  color: var(--theme-muted);
}

.legal-copy li {
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1.35;
}

.legal-copy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.age-gate-container {
  max-width: 500px;
  text-align: center;
}

.age-gate-logo {
  padding-top: 40px;
}

.age-gate-header {
  justify-content: center;
  padding: 18px 30px 24px;
}

.age-gate-header h2 {
  font-size: 32px;
}

.age-gate-body {
  padding-top: 4px;
}

#age-gate-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.age-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 390px;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.age-confirmation input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--ink);
  cursor: pointer;
}

.age-gate-submit {
  min-width: 170px;
  padding: 12px 28px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.age-gate-submit:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

/* ==========================================================================
   8. MEDIA QUERIES (Responsiveness)
   ========================================================================== */
@media(max-width: 1100px) {
  .slider-controls {
    display: flex;
  }

  .story-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .card {
    flex: 0 0 34%;
    min-width: 270px;
  }

  .card:last-child {
    border-right: 1px solid var(--line);
  }

  .footer {
    grid-template-columns:
      minmax(140px, 0.9fr)
      minmax(185px, 1.3fr)
      minmax(150px, 1fr)
      minmax(100px, 0.75fr);
    column-gap: 16px;
  }
}

@media(max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;/* Reveal mobile hamburger button */
  }

  

  .mobile-menu {
    display: flex; /* Enable flex layout for mobile navigation overlay */
  }

  .hero-copy {
    left: 7%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .collection {
    grid-template-columns: 35% 1fr 55px;
  }

  .product {
    flex-basis: 50%;
  }

  .footer {
    grid-template-columns:
      minmax(100px, 0.8fr)
      minmax(150px, 1.3fr)
      minmax(130px, 1fr)
      minmax(90px, 0.7fr);
    column-gap: 12px;
  }

  .experience h2 {
    white-space: normal;
  }

  .photo2 {
    min-height: 0;
  }
}

/* Full-bleed Experience video on portrait and landscape tablets. */
@media (min-width: 641px) and (max-width: 1100px) {
  html,
  body {
    overflow-x: hidden;
  }

  /* iPad Mini, Air and portrait Pro: keep the logo left and group footer details right. */
  .footer {
    grid-template-columns: minmax(140px, 1fr) max-content max-content max-content;
    column-gap: clamp(42px, 3vw, 40px);
  }

  .experience h2 {
    white-space: normal;
  }

  .experience .photo2 {
    width: calc(100% + 7vw);
    max-width: 100vw;
    min-height: 0;
  }
}

/* Two columns keep each footer item readable on small tablets. */
@media (min-width: 641px) and (max-width: 724px) {
  .footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 28px 24px;
  }

  .footer > .logo,
  .footer > .newsletter,
  .footer-legal-row {
    grid-column: 1 / -1;
  }
 
}

@media(max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  .space{padding: 0px 0px}
  .deskleft{margin-left: 0px}
  .arrow-link {
   
    gap: 10px;
    padding-bottom: 5px;
    
    font-size: 11px;
    
}
.content > p:not(.tag) {
    font-size: 14px;

}
.feature .content > p:not(.tag) {
    font-size: 14px;
}
.ritual-intro {
    font-size: 14px;
}
.card-copy p {
    font-size: 14px;
}
.newsletter p {
    font-size: 12px;
        margin-bottom: 0px;
        padding: 0px;
}

  /* Let the address reflow naturally on narrow screens. */
  .footer-address .address-break {
    display: none;
  }
  .PTP30 {
    padding: 0px 0px;
}
.PTP40 {
    padding: 0px 0px;
}

.product-placeholder.small {
   
    left: 0px;
}

  .hero-copy > p {
  width: 140px!important;
 
}

 
 .header {
    height: 76px;
    padding: 0 22px;
  }

  main {
    padding-top: 76px;
  }

  .header-actions > a {
    display: none;
  }

  .hero-copy {
    left: 23px;
    top: 120px;
  }


  .hero-copy h1 {
    font-size: 50px;
  }

  .product-placeholder {
    left: auto;
    right: 28px;
    bottom: 50px;
    width: 85px;
    height: 240px;
  }

  .product-placeholder:before {
    height: 55px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .two-column > .photo {
    min-height: 220px;
    margin:25px 25px 0px 25px;
  }

  .content {
    padding: 30px 25px!important;
    min-height: auto;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature .content {
    order: 2;
  }

  .feature .photo {
    min-height: 220px;
    margin:25px 25px 0px 25px;
  }

  .ritual-section {
    padding: 30px 25px 0;
  }

  .card {
    flex-basis: 86%;
  }

  .experience {
    min-height: 0;
  }

  .experience h2 {
    white-space: normal;
  }

  .photo2 {
    min-height: 0;
  }

  .collection {
    grid-template-columns: 1fr 50px;
  }

  .collection-heading {
    grid-column: 1/-1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 50px 23px;
  }

  .product {
    flex-basis: 60%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .find {
    grid-template-columns: 1fr;
  }

  .find-heading {
    border-right: 0;
    padding: 30px 23px 0px 23px;
  }

  .find-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .find-links a {
    min-height: 125px;
    border-top: 1px solid var(--line);
  }

  .find-links a:last-child {
    grid-column: 1/-1;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
    padding: 40px 23px;
  }

  .footer > .logo,
  .newsletter {
    grid-column: 1/-1;
  }

  /* Modal Adjustments for Small Mobile Viewports */
  .modal-container {
    max-height: 85vh;
  }

  .modal-header {
    padding: 28px 24px 16px 24px;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-body {
    padding: 0 24px 28px 24px;
  }
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  width: 100%;
  background: var(--theme-bg);
  border-top: 1px solid var(--line);
  padding: 16px 4vw max(16px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1100;
  transform: translate3d(0, 100%, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0.4s;
}

.clist li{ font-size: 12px;}

.cookie-banner.show {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.cookie-banner p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--theme-text);
}

.cookie-banner a {
  text-decoration: underline;
  font-weight: 700;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  min-width: 122px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
}

.btn-accept,
.btn-decline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-accept:hover,
.btn-decline:hover,
.btn-accept:focus-visible,
.btn-decline:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 640px) {

  .newsletter form {
    display: flex;
    max-width: 320px;
   
}
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px max(20px, env(safe-area-inset-bottom));
  }
  
  .cookie-banner-actions {
    width: 100%;
  }
  
  .btn-cookie {
    flex: 1;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
