/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: #5c4033; /* Dark Brown */
  background-color: #ffffff; /* White */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}


/* General Header Styling */
/* Transparent Navbar */

.transparent-navbar {
  background: transparent !important;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Semi-transparent white border */
}


/* Header Border as a Pseudo-Element */
.transparent-navbar::after {
  content: "";
  position: absolute;
  bottom: -1px; /* Position the border below the header */
  left: 0;
  width: 100%;
  height: 1px; /* Border thickness */
  background-color: #ffffff; /* White border color */
  z-index: 5; /* Ensure it is above the video */
  pointer-events: none; /* Prevent interaction */
}


/* Logo Styling */


/* Navigation Styling */
.navbar-nav {
  display: flex;
  gap: 20px; /* Space between nav links */
  justify-content: center; /* Center nav items */
}

.nav-link {
  color: #f2e8df !important; /* Off-white text */
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-link:hover {
  color: #b98b82 !important; /* Muted Mauve on hover */
  text-decoration: none;
}

/* Social Media Icons Styling */
.header-social {
  display: flex;
  gap: 20px; /* Space between icons */
}
.fix-menu-social .social-icon{
  color: #333;
  border: 1px solid #333;
}

/* Hero Section with Video */
.hero {
  position: relative;
  height: 100vh; /* Full viewport height */
  width: 100%; /* Full width */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.video-container {
  position: absolute;
  top: 0; /* Align video with the very top of the hero section */
  left: 0;
  width: 100%;
  height: 100%; /* Full height of the hero section */
  z-index: 1; /* Ensure video is below the overlay */
}

.small-video-container {
  position: absolute;
  top: 0; /* Align video with the very top of the hero section */
  left: 0;
  width: 100%;
  height: 30%; /* Full height of the hero section */
  z-index: 1; /* Ensure video is below the overlay */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire hero section */
}

/* Text Overlay */
.video-overlay {
  position: relative; /* Keeps the overlay above the video */
  z-index: 100; /* Ensures the text overlay is above the video */
  width: 100%;
  height: 100%; /* Full height of the hero section */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for readability */
  color: #f2e8df !important; /* Off-White text */
  padding: 0 15px; /* Prevent content from touching edges */
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  margin-top: 10px;
}

.btn-primary {
  background-color: #b98b82 !important; /* Muted Mauve */
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #8c7c70 !important; /* Taupe */
}

/* Fly-In and Hover Effects */

/* Shared Fly-In Styling */
.fly-in {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

.transition-effect {
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start below the viewport */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth transition */
}

/* Fly-In for Collection Title */
.collection-title {
  opacity: 0; /* Initially hidden */
  position: relative;
  z-index: 15;
  transform: translateY(50px); /* Start below the viewport */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.collection-title.fly-in {
  opacity: 1; /* Become visible */
  transform: translateY(0); /* Move to original position */
}

/* Fly-In for Product Cards */
.product-card {
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start below the viewport */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth transition */

}
/* Product Cards */

.product-card img {
  width: 100%;
  height: 325px; /* Fixed height */
  object-fit: cover;
}

/* Text Container with Background */
.text-container .card-text {
  font-size: 1rem;
  color: #8c7c70; /* Taupe */
  margin: 0;
}


.text-container {
  background-color: #ffffff;
  height: 200px;
  border-top: 2px solid #8c7c70; /* Taupe */
  padding: 15px;
  text-align: center;
  position: relative;
}

.text-container .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5c4033;
  margin-bottom: 8px;
}

.text-container .card-text {
  color: #8c7c70; /* Taupe */
}


.product-card.fly-in {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

/* Product Card Hover Effects */
.image-container {
  position: relative;
  width: 100%;
  height: 325px; /* Ensure consistent height */
  overflow: hidden; /* Prevent overflow */
}

.image-container .card-img-top {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure proper scaling */
  transition: opacity 0.3s ease-in-out; /* Smooth transition for hover */
}

.image-container .default-image {
  opacity: 1; /* Default image is visible initially */
}

.image-container .hover-image {
  opacity: 0; /* Hover image is hidden initially */
}

.image-container:hover .default-image {
  opacity: 0; /* Hide default image on hover */
}

.image-container:hover .hover-image {
  opacity: 1; /* Show hover image on hover */
}


/* About Section */
.about-overlay {
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
  padding: 20px;
  border-radius: 8px; /* Add rounded edges to overlay */
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-button {
  background-color: #b98b82 !important; /* Muted Mauve Button */
  border: none !important;
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #f2e8df !important; /* Off-white text */
  text-decoration: none;
}

.about-button:hover {
  background-color: #8c7c70 !important; /* Taupe Button Hover */
}

.about-section {
  transform: scale(1); /* Default scale */
  transition: transform 1.5s ease-in-out; /* Smooth zoom effect */
}

.about-section.zoomed {
  transform: scale(1.1); /* Zoomed-in scale */
}

/* Footer Styling */
/* Off-White Section Above Footer */
.footer-above {
  height: 10em;
}

.footer-above h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-above p {
  font-size: 1rem;
  margin-bottom: 0;
}

.footer {
  background-color: #001f3f; /* Navy Blue */
  color: #f2e8df; /* Off-white */
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensure responsiveness */
  gap: 20px; /* Space between flex items */
}

/* Navigation Links (Left) */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #f2e8df; /* Off-white text */
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
}

.footer-nav ul li a:hover {
  color: #b98b82; /* Muted Mauve on hover */
  text-decoration: underline;
}

/* Logo and Copyright (Center) */
.footer-center {
  text-align: center;
}

.footer-logo {
  width: 150px; /* Adjust logo size */
  height: auto;
  margin-bottom: 10px;
}

.footer-center p {
  font-size: 0.875rem;
  margin: 0;
  color: #eae3db; /* Slightly lighter off-white */
}

/* Footer2 Links Styling */
.footer2 ul li a {
    font-family: Poppins-Medium;
    font-size: 14px;
    padding: 5px 0px;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    text-decoration: none;  /* Removes underline */
    color: #b2b2b2;  /* Default color */
    transition: color 0.3s ease-in-out;  /* Smooth transition */
}

.footer2 ul li a:hover {
  color: #b98b82;  /* Changes color on hover */
}
/* Social Media Icons (Footer and Header) */
.social-icon {
  color: #f2e8df; /* Off-white for social icons */
  font-size: 1.2rem; /* Icon size */
  width: 40px;
  height: 40px;
  border: 1px solid #f2e8df; /* Thin circle border */
  border-radius: 50%; /* Make the border circular */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-icon:hover {
  color: #b98b82; /* Muted Mauve on hover */
  border-color: #b98b82; /* Border changes color on hover */
  transform: rotateY(180deg); /* Rotate 180 degrees */
}

/* Adjust spacing between social icons */
.footer-social {
  display: flex;
  gap: 15px; /* Space between icons */
}

.image-container .card-img-top {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure proper scaling */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */
}

.image-container .default-image {
  opacity: 1; /* Default image visible initially */
}

.image-container .hover-image {
  opacity: 0; /* Hover image hidden initially */
}

.image-container:hover .default-image {
  opacity: 0; /* Hide default image on hover */
}

.image-container:hover .hover-image {
  opacity: 1; /* Show hover image on hover */
}


.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f2e8df !important; /* Off-white */
}

.nav-link {
  color: #f2e8df !important;
  text-transform: uppercase;
  margin: 0 15px;
}

.nav-link:hover {
  color: #b98b82 !important; /* Muted Mauve */
  text-decoration: none;
}


/* Signup Section */
.signup {
  background-color: #f2e8df !important; /* Off-White Background */
  color: #5c4033; /* Dark Brown Text */
}

.signup h2 {
  color: #5c4033 !important; /* Dark Brown Heading */
  font-size: 2rem;
  margin-bottom: 20px;
}
#signup-anchor, #about{

  position: relative;
  z-index: 15;
}

.signup-form {
  max-width: 600px;
  margin: 0 auto;
}

.signup-form .form-control {
  border: 1px solid #8c7c70;
  border-radius: 4px;
  padding: 10px;
}

.signup-form .form-control:focus {
  border-color: #b98b82; /* Muted Mauve Focus */
  outline: none;
  box-shadow: 0 0 5px rgba(185, 139, 130, 0.5); /* Muted Mauve Glow */
}

.signup-form .btn-primary {
  background-color: #b98b82 !important; /* Muted Mauve Button */
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
}
.signup-form .btn-primary:hover {
  background-color: #8c7c70;
}

/* Footer Styling */
.footer {
  background-color: #001f3f; /* Navy Blue */
  color: #f2e8df; /* Off-white */
  padding: 30px 15px;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-nav ul li a {
  color: #f2e8df;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  color: #b98b82;
}

.footer-social {
  margin-top: 20px;
}

.footer-social .social-icon {
  font-size: 1.5rem;
  color: #f2e8df;
  margin: 0 10px;
}

.footer-social .social-icon:hover {
  color: #b98b82;
}


/* Heart Icon Styling */
.like-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px; /* Small circular size */
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem; /* Font size for the heart icon */
  color: #8c7c70; /* Taupe color for the heart */
  background-color: transparent; /* Transparent background */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.like-icon:hover {
  transform: scale(1.2); /* Slight zoom effect on hover */
  border-color: #b98b82; /* Mauve border on hover */
}

.like-icon .fa-heart {
  color: #b98b82; /* Filled mauve heart when liked */
}

.like-icon .fa-heart:hover {
  color: #8c7c70; /* Taupe heart on hover */
}


/* Blur overlay */
/* Make the entire page blurred by default */
.page-content {
    position: relative;
    filter: blur(8px); /* Applies blur to the whole page */
    pointer-events: none; /* Prevents interaction */
}

/* Add an overlay to block user interaction on the blurred page */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.7); /* Light transparent overlay */
    z-index: 1000;
}
@media (max-width: 991px){
  .blur-overlay{top:79px !important;}
}
.blur-overlay.fix-menu-desktop
{
  top:0 !important;
  height: 110vh !important;
}
/* Focus section */
/* Base Styling for Focus Section */
.focus-section {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1010;
  pointer-events: auto;
  text-align: center;

  /* Default width for large screens */
  width: 50%;
  max-width: 600px;
  min-width: 300px;
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
  .focus-section {
      width: 70%; /* Wider on tablets */
  }
}

@media (max-width: 768px) {
  .focus-section {
      width: 85%; /* Almost full width on smaller tablets */
  }
}

@media (max-width: 480px) {
  .focus-section {
      width: 95%; /* Nearly full width on mobile */
      padding: 15px; /* Adjust padding for smaller screens */
  }
}


.margin-top-30 {
  margin-top: 30px;
}

.product-img-size {
  width: 257px;
  height: 319px;
  object-fit: cover;
}

/* Limit main image size */
.product-gallery .image-gallery-slide img {
  max-height: 450px;
  object-fit: contain;
  width: 100%;
}

/* Optional: limit thumbnail size */
.product-gallery .image-gallery-thumbnail img {
  max-height: 75px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .full-page-section {
    padding: 0 20px 20px 40px !important;
  }
}
.full-page-section{
  min-height: 100vh;
}


/* spinner for shipping info page while fetching rates*/
.fullscreen-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85); /* semi-transparent white */
  backdrop-filter: blur(2px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.2s ease-in-out;
}

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

:root { --brand: #001f3f; }

/* ensure image shows */
.molu-card .product-img-size { display:block; width:100%; height:auto; }

/* default button look */
.molu-card .explore-btn {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .15s;
}

/* invert when hovering anywhere on the card (including the image) */
.molu-card:hover .explore-btn,
.molu-card:focus-within .explore-btn {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* optional modern fallback */
.molu-card:has(:hover) .explore-btn {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
/* pointer on the whole card */
.molu-card { cursor: pointer; }

/* ensure all inner elements keep the pointer, including images/overlays */
.molu-card * { cursor: inherit; }

/* if your theme has an image overlay like .hov-img0, force inherit */
.molu-card .block2-pic,
.molu-card .hov-img0 { cursor: inherit; }

/* Mobile-first: nice and wide on small screens */
.molu-etsy-btn {
  display: inline-flex;           /* keeps your flex-centering utilities happy */
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;               /* cap so it doesn’t get huge */
  margin: 20px;                 /* center */
  text-decoration: none;
}

/* >=576px (sm) */
@media (min-width: 576px) {
  .molu-etsy-btn { width: 60%; margin: 0 auto; }
}

/* >=768px (md) */
@media (min-width: 768px) {
  .molu-etsy-btn { width: 40%; }
}

/* >=992px (lg) */
@media (min-width: 992px) {
  .molu-etsy-btn { width: 28%; }
}

/* >=1200px (xl) */
@media (min-width: 1200px) {
  .molu-etsy-btn { width: 15%; }
}



.blurb-card {
  margin-top: 1.25rem;                 /* extra space from carousel */
  padding: 14px 16px;                  /* comfy padding */
  text-align: center;                  /* centered text */
  color: var(--brand);                 /* brand color */
  background: linear-gradient(180deg, rgba(0,31,63,0.05), rgba(0,31,63,0.025));
  border: 1px solid rgba(0,31,63,0.15);
  border-radius: 12px;                 /* soft corners */
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* Optional: tighten on very small screens */
@media (max-width: 420px) {
  .blurb-card { padding: 12px 12px; border-radius: 10px; }
}

/* Scope all fixes to just this gallery instance */
.molu-gallery.image-gallery {
  /* width of the left thumbnail rail */
  --thumb-col: 96px;
}

/* Make sure the left rail reserves space and the main slide uses the rest */
.molu-gallery .image-gallery-content.left .image-gallery-slide-wrapper {
  width: calc(100% - var(--thumb-col));
}
.molu-gallery .image-gallery-thumbnails-wrapper.left {
  width: var(--thumb-col);
  min-width: var(--thumb-col);
  flex: 0 0 var(--thumb-col);         /* keep it fixed */
  overflow-y: auto;                   /* scroll if tall */
}

/* Prevent thumbs from collapsing or stretching weirdly */
.molu-gallery .image-gallery-thumbnails {
  display: block;
}
.molu-gallery .image-gallery-thumbnails-container {
  padding: 4px 0;
}

/* Each thumbnail fills the rail’s width, with consistent height */
.molu-gallery .image-gallery-thumbnail {
  width: 100%;
  padding: 0;
  margin: 4px 0;
  border: none;                       /* optional: cleaner look */
}

/* The actual <img> inside the thumb */
.molu-gallery .image-gallery-thumbnail-image {
  display: block;
  width: 100%;
  height: 72px;                       /* set a consistent height */
  object-fit: cover;                  /* or 'contain' if you prefer letterboxing */
  border-radius: 4px;                 /* optional */
}

/* If your theme forces weird positioning, neutralize it here */
.molu-gallery .image-gallery-thumbnail,
.molu-gallery .image-gallery-thumbnail-image {
  position: static;
}


/* ===== Promo Offer Tab + Modal ===== */

/* ===== Red Tab (flush right, vertical text) ===== */
.promo-tab {
  position: fixed;
  top: 40%;
  right: 0;                          /* flush to the edge */
  z-index: 6000;                     /* below modal (which is 9999) */

  writing-mode: vertical-rl;
  text-orientation: mixed;

  background: #dc3545;
  color: #fff;
  border: 0;
  padding-block: 14px;
  padding-inline: 18px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: filter .15s ease;
}
.promo-tab:hover { filter: brightness(.95); }

/* Exposed ends rounded; edge side square */
.promo-tab {
  border-start-start-radius: 0;
  border-end-start-radius: 12px;
  border-start-end-radius: 0;
  border-end-end-radius: 12px;
}
@supports not (border-start-start-radius: 12px) {
  .promo-tab {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}
@media (max-width: 768px) {
  .promo-tab { font-size: 18px; padding-block: 12px; padding-inline: 16px; }
}

/* ===== Fullscreen Modal (portal) ===== */
.promo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);        /* translucent backdrop */
  display: grid;
  place-items: center;
  z-index: 9999;                     /* above anything else */
}
.promo-modal__content {
  position: relative;
  width: min(1100px, 92vw);
  height: min(720px, 90vh);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.promo-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 32px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 5;
}

/* Left: Form */
.promo-modal__left { display: grid; place-items: center; padding: 28px; overflow: auto; }
.promo-modal__left-inner { width: 100%; max-width: 520px; }

/* Right: Image */
.promo-modal__right { background: #f7f7f7; }
.promo-modal__right img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .promo-modal__content { grid-template-columns: 1fr; height: min(88vh, 680px); }
  .promo-modal__right { display: none; }
}

/* Show exactly 3 cards at a time (desktop), centered, with horizontal scroll */
:root {
  --family-card-w: 320px;  /* card width */
  --family-gap: 24px;      /* gap between cards */
}

/* Center the whole section */
#products .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Kill old scroller influence if still in the DOM/CSS */
.family-scroll, .family-track {
  all: unset;
}

/* 3-across GRID, centered */
.family-grid {
  display: grid !important; /* beat conflicting rules */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Make sure cards don't force full-width */
.family-card {
  min-width: 0;
  width: auto !important;   /* override any width:100% from old scroller/Bootstrap */
}

/* Images behave */
.family-card img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Responsive: 2-up tablet, 1-up phone */
@media (max-width: 991.98px) {
  .family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
  .family-grid { grid-template-columns: 1fr; }
}


/* Split hero: two images, 50/50 width, full viewport height */
/* ---------------- Mobile-first (STACK by default) ---------------- */
.split-hero {
  display: grid;
  grid-template-columns: 1fr;      /* stack by default */
  gap: 12px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.split-hero__col {
  min-width: 0;
  overflow: hidden;
}

/* Universal media safety */
img, video {
  max-width: 100%;
  height: auto;
}

.split-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.split-hero__img--contain {
  width: 100%;
  height: auto;
}

/* ----------- Up from tablets/desktop → two columns ----------- */
@media (min-width: 768px) {
  .split-hero {
    /* equal split; change to 2fr 3fr if you want 40/60 */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
  }
}

/* ----------- iOS Safari nudges (do NOT change columns here) ----------- */
@supports (-webkit-touch-callout: none) {
  .split-hero__img,
  .split-hero__img--contain {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}


.box-shadow-below{
  box-shadow: 6px 9px 30px 0px rgba(40, 32, 71, 0.05), 4px -14px 10px 0px rgba(163, 163, 176, 0.02), 0px 4px 4px 0px rgba(255, 255, 255, 0.46) inset;
}

/* Make each column stretch so all cards match height per row */
.isotope-grid > [class*="col-"] {
  display: flex;
}

/* Ensure card fills column height */
.molu-card {
  width: 100%;
}

/* Image sizing (optional: set a consistent aspect ratio) */
.product-img-size {
  width: 100%;
  height: auto;               /* or set a ratio: */
  /* aspect-ratio: 4 / 3;     /* uncomment to enforce ratio */
  /* object-fit: cover;       /* with aspect-ratio */
}

/* Title + blurb container:
   Set a fixed min-height so cards align regardless of blurb length.
   Tune --molu-textbox-minh to match your typography. */
.molu-textbox {
  width: 100%;
  /* Enough room for: title (1–2 lines) + blurb (up to 4 lines) + spacing */
  --molu-textbox-minh: 150px;
  min-height: var(--molu-textbox-minh);
}

/* Title styling */
.molu-name {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #001f3f;
  margin: 0;
  text-wrap: pretty;
}

/* Blurb: clamp to 4 lines and keep color consistent */
.molu-blurb {
  color: #001f3f;
  max-width: 320px;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;      /* clamp to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive tweak: adjust textbox height for smaller text on mobile if needed */
@media (max-width: 576px) {
  .molu-textbox {
    --molu-textbox-minh: 130px;
  }
}

.empty-top{
  padding-top: 52px;
  margin-top: 30px;
}

@media (max-width: 576px) {
.empty-top{
  padding-top: 0px;
  margin-top: 0px;
}
}
