@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&display=swap");

:root {
  --header-height: 80px;
  --bg-color: hsla(0, 100%, 1%, 0);
  --bg-color-light: hsl(0, 0%, 100%);
  --title-color: hsl(0, 0%, 0%);
  --text-color: hsl(0, 0%, 0%);
  --text-color-light: hsl(0, 0%, 0%);
  --body-color: hsl(220, 18%, 99%);
  --container-color: hsl(220, 18%, 97%);
  --body-font: 'Lora', serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
  --bg:#f8fafb;
  --muted:#6b7280;
  --accent:#0b0b0b;
  --glass: rgba(18,20,24,0.62);
  --glass-panel: rgba(255,255,255,0.12);
  --whatsapp:#000000;

}


html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  animation: none;
  animation-delay: 0s;
}

/* Smooth fade-in for main page sections - slider home screen fade-in after preloader */
.slider-wrapper {
  position: relative;
  width: 100vw;
  /* start a little above the end of the header so the slider appears slightly higher */
  /* moved 16px up previously; add additional 0.5cm upwards as requested */
  margin-top: calc(var(--header-height) - 16px - 0.5cm);
  margin-left: calc(-50vw + 50%);
  /* increase slider height accordingly so it still fills the remaining viewport */
  height: calc(100vh - var(--header-height) + 16px + 0.5cm);
  overflow: hidden;
  background: #000;
  display: block;
}

.slider-wrapper.show {
  display: block;
}

.section {
  opacity: 1;
  transform: translateX(-40px);
  transition: none;
}

.footer {
  opacity: 1;
  transition: none;
}

@keyframes slideDownFade {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.h1, h2, h3 {
  color: var(--title-color);
  font-weight: 600;
}

.ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.img {
  max-width: 100%;
  height: auto;
}


.scrollup{
  position: fixed;
  right: 1rem;
  bottom:-30%;
  background-color: var(--container-color);
  box-shadow: 0 8px 12px hsla(220, 18%, 45%, .15);
  display: inline-flex;
  padding: .35rem;
  color: var(--title-color);
  font-size: 1.1rem;
  border-radius: 5rem;
  transition:.3s;
  cursor: pointer;
  z-index: 100;
}

.scrollup:hover{
transform: translateY(-.25rem);
}

.show-scroll{
  bottom: 7.5rem;
}


.scrollup{
  right: 3rem;
}

.show-scroll{
  bottom: 3rem;
}


.slider-wrapper {
  position: relative;
  width: 100vw;
  /* start a little above the end of the header so the slider appears slightly higher */
  /* moved 16px up previously; add additional 0.5cm upwards as requested */
  margin-top: calc(var(--header-height) - 16px - 0.5cm);
  margin-left: calc(-50vw + 50%);
  /* increase slider height accordingly so it still fills the remaining viewport */
  height: calc(100vh - var(--header-height) + 16px + 0.5cm);
  overflow: hidden;
  background: #000;
  display: block;
}
            
.slider-track {
  display: flex;
  width: 100%; /* 3 videos → 300% */
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slider-track video {
  flex: 0 0 100%;
  width: 100%;
  height: 95vh;
  object-fit: cover;
}

/* Navigation Dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Navbar Styling */
.nav {
  width:100%;
  height: 80px;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  background: #eef3f8 160px;
  animation: none;
  animation-delay: 0s;
  transition: none;
  will-change: transform, background;
  transform: translateY(0);
}

.nav.nav-hidden { transform: translateY(0); pointer-events: auto; }

.nav.nav-scrolled {
  background: #eef3f8;
  box-shadow: 0 6px 22px rgba(6,10,15,0.08);
}
.nav-container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 10%;
}
.logo {
  font-size:24px;
  font-weight:600;
  letter-spacing:1.5px;
  color:#000;
  margin-top: -10px;
}
.fullscreen-menu.open ul li:nth-child(2){ transition-delay: 320ms; }
.fullscreen-menu.open ul li:nth-child(3){ transition-delay: 460ms; }

.fullscreen-menu.closing ul li { opacity: 0; transform: translateY(8px); transition-delay: 0ms; }

/* Fullscreen Menu */
.fullscreen-menu {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.88);
  backdrop-filter:blur(12px);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:9999;
  animation: none;
}

.fullscreen-menu.closing {
  animation: none;
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.98); }
}

.fullscreen-menu ul {
  list-style:none;
  text-align:center;
  padding:0;
}

.fullscreen-menu ul li {
  margin:18px 0;
}

.fullscreen-menu ul li a {
  font-size:32px;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.fullscreen-menu ul li a:hover {
  letter-spacing:2px;
  color:#e5e5e5;
}

.close-menu {
  position:absolute;
  top:40px;
  right:60px;
  font-size:50px;
  color:#fff;
  background:none;
  border:none;
  cursor:pointer;
}

@keyframes fadeIn {
  from {opacity:0;} to {opacity:1;}
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: linear-gradient(180deg,var(--bg), #eef3f8 160px);
  color: #111;
  -webkit-font-smoothing:antialiased;
  padding:36px;
  animation: none;
}

@keyframes pageLoadFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Container */
.container {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:72px;
}

/* Section (each row) */
.section {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:36px;
  align-items:center;
  opacity:1;
  transform: translateX(0);
  transition: none;
}

/* reverse order for zigzag */
.section.reverse { transform: translateX(0); }

.section.in-view { opacity:1; transform: translateX(0); }

/* Slider wrapper reveal to match sections/footer */
.slider-wrapper {
  opacity: 0;
  transform: translateY(30px) scale(0.997);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.slider-wrapper.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* reverse order for zigzag */
.section.reverse .media { order:2 }
.section.reverse .text  { order:1 }

/* media image */
.media {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}

.media img {
  width:15cm;
  height:20cm;
  object-fit:cover;
  border-radius:0px;
  display:block;
  box-shadow: 0 20px 50px rgba(12,18,25,0.06);
  transition: transform .45s ease, box-shadow .3s, opacity .3s ease;
  cursor: pointer;
}

.media img:hover { 
  transform:scale(1.02); 
  box-shadow: 0 30px 70px rgba(12,18,25,0.10); 
}

/* Image navigation arrows */
.media::before,
.media::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  border-radius: 50%;
}

.media:hover::before,
.media:hover::after {
  opacity: 1;
}

.media::before {
  content: '❮';
  left: 10px;
}

.media::after {
  content: '❯';
  right: 10px;
}

/* text */
.text { padding:12px; }
.title { font-size:32px; font-weight:700; margin:0 0 8px; }
.desc { color:var(--muted); line-height:1.6; margin:0 0 20px; max-width:760px; }

/* Product card size and color options */
.text .label { 
  font-size:14px; 
  color: var(--accent); 
  margin-top:16px; 
  font-weight:600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text .sizes { 
  display:flex; 
  gap:10px; 
  margin-top:8px; 
  margin-bottom:20px;
  flex-wrap:wrap; 
}

.text .size { 
  padding:8px 14px; 
  border-radius:8px; 
  background:rgba(0,0,0,0.05); 
  color:#000; 
  border:1px solid rgba(0,0,0,0.1); 
  cursor:pointer;
  font-weight: 500;
  transition: none;
}

.text .size.selected { 
  background:#000; 
  color:#fff; 
  border-color:#000;
}

.text .colors { 
  display:flex; 
  gap:12px; 
  margin-top:8px; 
  align-items:center; 
}

.text .colorDot { 
  width:32px; 
  height:32px; 
  border-radius:50%; 
  border:2px solid rgba(0,0,0,0.2); 
  cursor:pointer;
  transition: none;
}

.text .colorDot.selected { 
  transform:scale(1.1); 
  border-color:#000;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
}

/* controls */
.controls { display:inline-flex; gap:16px; align-items:center; margin-top:10px; text-decoration:none;}
.btn {
  padding:10px 20px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  border:1px solid rgba(0,0,0,0.06);
  background:#fff;
  color:var(--accent);
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
  transition: none;
  will-change: transform, box-shadow;
}
.btn.primary {
  background:var(--accent);
  color:#fff;
  border:none;
  box-shadow: 0 12px 30px rgba(2,6,23,0.12);
  transition: none;
}
.btn.ghost {
  background:transparent;
  color:var(--accent);
  border:1px solid rgba(11,11,11,0.08);
  transition: none;
}

/* Hover effects only on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(2,6,23,0.14);
  }

  .btn.primary:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(2,6,23,0.18);
  }
}

.btn:active {
  transform: translateY(-2px) scale(0.995) !important;
  box-shadow: 0 8px 22px rgba(2,6,23,0.08) !important;
}

.btn:focus-visible {
  outline: 3px solid rgba(11,11,11,0.08);
  outline-offset: 3px;
}

/* Modal backdrop (glass) */
.backdrop {
  position:fixed; inset:0; display:none; z-index:2000;
  align-items:center; justify-content:center;
  background: rgba(2,6,23,0);
  backdrop-filter: blur(0px);
  padding:22px;
  animation: none;
  transition: all 0.3s ease-out;
}

.backdrop[aria-hidden="false"] {
  animation: none;
}

.backdrop.closing {
  animation: none;
}

@keyframes backdropFadeIn {
  from {
    background: rgba(2,6,23,0);
    backdrop-filter: blur(0px);
  }
  to {
    background: rgba(2,6,23,0.55);
    backdrop-filter: blur(10px) saturate(120%);
  }
}

@keyframes backdropFadeOut {
  from {
    background: rgba(2,6,23,0.55);
    backdrop-filter: blur(10px) saturate(120%);
  }
  to {
    background: rgba(2,6,23,0);
    backdrop-filter: blur(0px);
  }
}

/* Modal panel */
.modal {
  width:100%; max-width:1180px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 120px rgba(2,6,23,0.55);
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:22px;
  padding:18px;
  position:relative;
  color: #e9eef3;
  overflow:hidden;
  animation: none;
}

@keyframes modalScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* left sidebar (dark translucent) */
/* thumbnail small preview at very top */
.sidebar .topThumb {
  width:64px; height:64px; border-radius:10px; overflow:hidden; background:#222; display:none; align-items:center; justify-content:center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.sidebar .topThumb img{ width:100%; height:100%; object-fit:cover; }

/* product info */
.sidebar .name { font-size:20px; font-weight:700; color:#fff; margin-top:6px; }
.sidebar .short { color:rgba(230,235,240,0.7); font-size:13px; line-height:1.4; }

/* out of stock indicator */
.out-of-stock { border:2px solid #dc2626; color:#dc2626; padding:12px 16px; border-radius:8px; margin:12px 0; font-weight:600; font-size:14px; text-align:center; }
.out-of-stock .stock-text { display:inline-block; }

/* vertical thumbnails */
.thumbs { display:flex; flex-direction:column; gap:12px; margin-top:8px; }
.thumbs img {
  width:72px; height:72px; object-fit:cover; border-radius:10px; cursor:pointer; border:2px solid transparent;
  transition: all .14s ease;
}
.thumbs img.active { border-color: rgba(255,255,255,0.18); transform:scale(1.04); box-shadow: 0 10px 24px rgba(0,0,0,0.4); }

/* selectors area */
.label { font-size:13px; color:rgba(230,235,240,0.9); margin-top:10px; font-weight:600; }
.sizes { display:flex; gap:10px; margin-top:8px; flex-wrap:wrap; }
.size { padding:8px 12px; border-radius:999px; background:rgba(255,255,255,0.04); color:#e7eef3; border:1px solid rgba(255,255,255,0.04); cursor:pointer; }
.size.selected { background:#111; color:#fff; box-shadow: 0 10px 24px rgba(0,0,0,0.5); border-color:transparent; }

.colors { display:flex; gap:10px; margin-top:8px; align-items:center; }
.colorDot { width:28px; height:28px; border-radius:50%; border:2px solid rgba(255,255,255,0.08); cursor:pointer; box-shadow: 0 6px 14px rgba(0,0,0,0.35); }
.colorDot.selected { transform:scale(1.06); box-shadow: 0 16px 36px rgba(0,0,0,0.5); border-color:transparent; }

.size:hover { transform:translateY(-3px); transition: none; }
.colorDot:hover { transform:translateY(-3px); transition: none; }
.buyBtn:hover { transform:translateY(-3px); transition: none; }


/* buy button in sidebar */
.buyBtn {
  margin-top:16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:10px;
  background:var(--whatsapp);
  color:#fff;
  font-weight:700;
  text-decoration:none;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}

/* Modal Buy button: match page button hover/shadow behavior */
.buyBtn {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  will-change: transform, box-shadow;
}

@media (hover: hover) and (pointer: fine) {
  .buyBtn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(2,6,23,0.18);
  }
}

.buyBtn:active {
  transform: translateY(-2px) scale(0.995) !important;
  box-shadow: 0 8px 22px rgba(2,6,23,0.08) !important;
}

.buyBtn:focus-visible {
  outline: 3px solid rgba(11,11,11,0.08);
  outline-offset: 3px;
}

/* right side big image */
.viewWrap { display:flex; align-items:center; justify-content:center; height:100%; }
.mainImageWrap { width:100%; height:100%; border-radius:12px; overflow:hidden; background:#111; display:flex; align-items:center; justify-content:center; }
.mainImage {
  width:100%;
  height:600px;
  object-fit:cover;
  transition: transform .45s ease, filter .3s;
  transform-origin:center center;
  border-radius:12px;
}
.mainImage.zoomed { transform: scale(1.06); filter:brightness(1.02); }

/* close icon */
.modal .close {
  position:absolute; right:12px; top:12px; background:rgba(226, 221, 221, 0.438);
  color:#000000; border-radius:999px; width:40px; height:40px; border:0;
  display:flex; align-items:center; justify-content:center; font-size:18px; cursor:pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal .close:hover {
  background: rgba(226, 221, 221, 0.7);
  transform: scale(1.1) rotate(90deg);
}

.modal .close:active {
  transform: scale(0.95);
}

/* small-screen */
@media (max-width:980px){
  .container { padding:18px; gap:40px; }
  .section { grid-template-columns:1fr; gap:18px; }
  .media img { height:320px; border-radius:10px; }
  .modal { grid-template-columns: 1fr; padding:14px; max-height:92vh; overflow:auto; gap:16px;  }
  .thumbs { flex-direction:row; order:2; overflow:auto; }
  .thumbs img { margin-right:8px; }
  .mainImage { height:360px; }
}

/* very small */
@media (max-width:620px){
  .mainImage { height:240px; }
  .media img { height:220px; }
  .title { font-size:22px; }
}

.footer {
  padding:100px 0% 24px; /* more top padding for spacious look, smaller bottom padding to bring .bottom closer */
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr; /* give logo column extra width */
  gap:100px; /* increase gap between columns for a more spacious layout */
  background:linear-gradient(180deg, #0d0d0d00 0%, #14141400 100%);
  position:relative;
  overflow:hidden;
  align-items: start; /* make columns align from the top */
}

/* Footer column helpers */
.footer > div {
  display:flex;
  flex-direction:column;
  gap:0px;
}
.footer .logo {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.footer .logo img {
  display:block;
  margin-bottom:12px;
}

/* Responsive: stack footer columns on smaller screens */
@media (max-width:980px){
  .footer {
    grid-template-columns: 1fr;
    padding:40px 6%;
    gap:36px;
  }
  .footer > div { align-items:flex-start; }
}

.footer::before {
  content:"";
  position:fixed;
  width:500px;
  height:500px;
  background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 70%);
  top:-200px;
  left:-200px;
  filter:blur(80px);
  animation: none;
}
.footer::before { pointer-events: none; }
.controls { position: relative; z-index: 5; }

@keyframes floatGlow {
  0% {transform:translateY(0);}    
  50% {transform:translateY(40px);}   
  100% {transform:translateY(0);}   
}

.logo h1 {
  font-size:32px;
  letter-spacing:2px;
  margin:0 0 15px;
}

.logo p {
  max-width:420px; /* allow more breathing room for the description */
  line-height:1.6;
  color:var(--muted);
}
  
h3 {
  font-size:20px;
  margin-bottom:18px;
}
  
ul {
  list-style:none;
  padding:0;
  margin:0;
}
  
ul li {
  margin:8px 0;
}
  
ul li a {
  color:var(--muted);
  text-decoration:none;
  transition:0.3s;
}

ul li a:hover {
  color:var(--accent);
  letter-spacing:1px;
}
  
.socials {
  display:flex;
  gap:5px;
}

.socials a {
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#eef3f8 160px;;
  backdrop-filter:blur(8px);
  color:var(--accent);
  font-size:18px;
  transition:0.3s;
}

.socials a:hover {
  transform:translateY(-4px);
  background:rgba(3, 3, 3, 0.349);
}
  
.bottom {
  text-align:center;
  padding-top:17px; /* further decrease bottom bar height */
  margin-top:-20px; /* ensure no extra spacing */
  font-size:13px;
  color:var(--muted);
  background: #eef3f8 160px;
  border-top: 2px solid rgba(0,0,0,0.04); /* subtle separator */
}
  
.modal1 {
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0);
  backdrop-filter:blur(0px);
  align-items:center;
  justify-content:center;
  z-index:9999;
  animation: none;
}

.modal1[style*="display: flex"] {
  animation: none;
}
  
  .modal-content1 {
    background:linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.88));;
    padding:30px;
    border-radius:20px;
    width:350px;
    color:#333232;
    box-shadow:0 0 20px rgba(97, 92, 92, 0.589);
    animation: none;
  }.modal1close {
  position:absolute; right:12px; top:12px; background:rgba(226, 221, 221, 0.438);
  color:#000000; border-radius:999px; width:40px; height:40px; border:0;
  display:flex; align-items:center; justify-content:center; font-size:18px; cursor:pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Return Policy intro uses the same typography as the footer description */
.policy-intro {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

/* Large Policy Modals - Match product modal size */
.modal-policy {
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0);
  backdrop-filter:blur(0px);
  -webkit-backdrop-filter:blur(0px);
  align-items:center;
  justify-content:center;
  z-index:9999;
  animation: none;
  padding: 22px;
}

.modal-content-policy {
  width:100%;
  max-width:1180px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.88));
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 8px 32px rgba(31,38,135,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding:40px;
  border-radius:20px;
  height:auto;
  max-height:92vh;
  overflow-y: auto;
  color:#1a1a1a;
  animation: none;
  position: relative;
  transition: max-height 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-content-policy h2 {
  font-size: 32px;
  margin-bottom: 24px;
  margin-top: 0;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.policy-section {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-intro {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.policy-content {
  font-size: 15px;
  line-height: 1.8;
  color: #424242;
  margin-bottom: 16px;
}

.read-more-btn {
  background: transparent;
  border: none;
  color: #0b0b0b;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 0;
  font-size: 13px;
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  min-height: 24px;
}

.read-more-btn:hover {
  color: #666;
  transform: translateX(4px);
}

.read-more-btn::before {
  content: '';
  display: inline-block;
  width: 11px;
  text-align: center;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 11px;
  order: 2;
}

.read-less-btn {
  background: transparent;
  border: none;
  color: #0b0b0b;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 0;
  font-size: 13px;
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
  letter-spacing: 0.5px;
  margin-top: 24px;
  border-top: 2px solid rgba(0,0,0,0.06);
  padding-top: 20px;
}

.read-less-btn:hover {
  color: #666;
  transform: translateX(4px);
}

.policy-expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 0;
}

.policy-expanded-content.show {
  max-height: 800px;
  margin-top: 14px;
}

.modal1close:hover {
  background: rgba(226, 221, 221, 0.7);
  transform: scale(1.1) rotate(90deg);
}

.modal1close:active {
  transform: scale(0.95);
}

@keyframes pop {
  0% {transform:scale(0.7); opacity:0;}
  100% {transform:scale(1); opacity:1;}
}

@keyframes popSlideUp {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes popSlideDown {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
}

@keyframes modal1FadeIn {
  from {
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
  }
  to {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
  }
}

@keyframes modal1FadeOut {
  from {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
  }
  to {
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
  }
}

  
/* Our Collections title centering */
.collections-title {
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:10vh;
  margin:100px 0;
  font-size:36px;
  font-weight:700;
}

/* When inside the .section grid, make the title span both columns */
  
.section > .collections-title {
  grid-column: 1 / -1;
}

/* Footer reveal animation (replayable) */
.footer {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.footer.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger footer columns for smoother entrance */
.footer > div {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.footer > div.in-view {
  opacity: 1;
  transform: translateY(0);
}
