

html {
  scroll-behavior:smooth;
  scrollbar-gutter: stable;
}
body {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"p22-bangersfield",sans-serif;
  font-weight:700;
  font-style:normal;
  background-color:#FFFFFF;
  color:#3d3d3d;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}

body.sidebar-open,
body.cart-open {
  height: 100vh;
  overflow: hidden;

}

.nav-bar {
 
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:118px;
  z-index:9999;
  overflow:hidden;
  transition:transform 0.3s ease;
}
.nav-bar.hide {
  transform:translateY(-100%);
}
.nav-cloud-bg {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:118px;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}


  
.nav-container {
  color:#7EA7D2;
  width:100%;
  max-width:1380px;
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  position:relative;
  z-index:1;
}


.logo {
  top:10px;
  height:100px;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
}
.nav-icon {
  width:28px;
  height:28px;
  cursor:pointer;
  color:#7EA7D2;
  z-index:3;
}
.nav-icon.left {
  cursor: pointer;
  position: relative;
  z-index: 999; 
  top:30px;
}
.nav-icon.right {
  position: relative;
  width:25px;
  height:25px;
  top:30px;
}

.sidebar.active {
  transform: translateX(0);
  opacity: 1; 
}
.cart-sidebar.open {
  transform: translateX(0);
  opacity: 1;
}
.sidebar-overlay, .cart-overlay {
  transition: opacity 0.4s ease;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  overflow-y: hidden;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  text-align: center;
  opacity: 0; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar-header {
  background-color: #7EA7D2;
  padding: 60px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.sidebar-nav {
  padding: 40px 20px;
  flex: 1;


}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px
}
.sidebar-nav li {
  margin-bottom: 40px;
}
.sidebar-nav a {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  color: #7EA7D2;
  transition: color 0.3s;
}
.sidebar-nav a:hover {
  color: #F7DA85;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 888; 
  opacity: 0;
  visibility: hidden;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
    z-index: 10000; /* make sure it covers nav-bar */
  }

  .sidebar.active {
    z-index: 10001; /* Always above the overlay */
  }

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.social-links a {
  color: #7EA7D2;
  text-decoration: none;
}

.social-links a:hover .social-icon {
  transform: scale(1.1);
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0; 
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar input[type="number"] {
  font-size: 1.2rem; /* or larger */
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
}


.cart-header {
  background-color: #7EA7D2;
  padding: 20px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.cart-header h2 {
  margin: 0;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.close-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}

.cart-content {
  flex-grow: 1;
  padding: 30px;
  text-align: center;
}

.empty-cart-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.go-shop-btn {
  display: inline-block;
  color: #7EA7D2;
  text-decoration: underline;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Cart Footer */
.cart-footer {
  padding: 20px;
  background-color: #7EA7D2;
  color: white;
  text-align: center;
}

.cart-footer .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.checkout-btn {
  background: white;
  font-family:"p22-bangersfield",sans-serif;
  color: #7EA7D2;
  border: none;
  font-weight: bold;
  padding: 10px 0px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  width: 100%; 
  margin: 0 auto; 
  display: block; 
  text-decoration: none;
}

.checkout-page-btn {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 50px; /* Adjust this value as needed */
  font-size: 1.2rem; /* Optional: improves text visibility */
  background: #7EA7D2;
  font-family: "p22-bangersfield", sans-serif;
  color: #FFFFFF;
  border: none;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  margin: 5px auto 0;
  text-decoration: none;
}
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.cart-sidebar.open {
  /* 🔼 ADD THIS: */
  z-index: 10001; /* 🆙 above overlay */
}

.hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
}
.hero-img {
  width:100%;
  height:auto;
  display:block;
  position:relative;
  z-index:2;
  top:-80px
}
.hero-content {
  position:absolute;
  top:17%;
  left:50%;
  transform:translate(-50%,-40%);
  z-index:4;
  color:#fff;
  max-width:100%;
}
.hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#F0E9D7
}
.hero-content h1 span {
  font-size:4rem;
  color:#F0E9D7;
}
.button-beige {
  font-size:1rem;
  background-color:#F0E9D7;
  color:#7EA7D2;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration:none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}



.button-beige:hover {
  transform: scale(1.05);
}

/* Navigation Menu Section */
/* ======================= */
.navigation-menu {
  background-color:#F0E9D7;
  overflow:visible;
  margin-bottom:-100px
}
.menu-cloud-img {
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:0;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}
.cloud-buttons {
  padding:0;
  background-size:cover;
  padding:0px 20px 140px;
  text-align:center;
  position:relative;
  overflow:hidden;
  z-index:2;
  margin-top:-200px;
}
.cloud-buttons > * {
  position:relative;
  z-index:1;
}
.cloud {
  display:inline-block;
  font-weight:bold;
  text-decoration:none;
  transition:all 0.3s ease;
  position:absolute;
}
.cloud:hover {
  transform:scale(1.05);
  filter:drop-shadow(0 8px 14px rgba(0,0,0,0.25));
  z-index:10;
}
.cloud img {
  width:100px;
  /* or your preferred size */
  height:auto;
  display:block;
}
.cloud span {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:2rem;
  color:#7EA7D2;
  pointer-events:none;
 
}

.delay1 {
  top:20%;
  left:15%;
}
.delay2 {
  top:20%;
  left:65%;
}
.delay3 {
  top:35%;
  left:40%;
}
.delay4 {
  top:50%;
  left:15%;
}
.delay5 {
  top:50%;
  left:65%;
}
.delay1 img,.delay2 img,.delay3 img,.delay4 img,.delay5 img {
  width:300px;
  height:auto;
}
.delay2 span {
  transform:translate(-50%,-30%);
}
.delay4 span {
  transform:translate(-50%,-30%);
}
.delay5 span {
  transform:translate(-50%,-15%);
}

.instagram {
  position:relative;
  text-align:center;
  width:100%
  max-width:1000px;
  z-index:1;
  margin:0 auto;
  margin-bottom:100px;
  background-color: #F0E9D7;
  padding-bottom: 270px;
  padding-top: 30px
  
}
.instagram h2 {
  color:#7EA7D2;
  font-size:3rem;
  margin-bottom:30px;
}
/* Wrapper to hold the iframe and custom buttons */
.instagram-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Base style for buttons */
.ig-button {
  position: absolute;
  z-index: 100;
  pointer-events: none; /* Important: allow click-through */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Follow Button container */
.follow-button {
  top: 1rem;
  right: 6rem;
  width: 120px; /* Your cloud size */
  height: 60px;
  position: absolute;
}

/* Cloud image */
.follow-img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  position: absolute;
  top: 50;
  left: 20;
  z-index: 1; /* Cloud behind */
  pointer-events: none;
}

/* Follow text */
.follow-text {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  color: #7EA7D2;
  z-index: 2; /* Text in front */
  pointer-events: none;
  margin-top: 8px;
}

/* See More Button */
.see-more-button {
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7EA7D2;
  color: #fff;
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  pointer-events: none;
}

.see-more-button span {
  pointer-events: none;
}
.lightwidget-widget {
  z-index: 1;
  width: 800px;
  /* 👉 control how small you want */
  height:500px;
  /* 👉 IMPORTANT:control the height! */
  border:0;
  position: relative
  
}


.best-seller {
  background-color: #f5efdf;
  padding: 80px 20px;
  text-align: center;
}

.best-seller-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size:3rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.bouquet-section {
  text-align: center;
  padding: 120px 100px 300px;
  background-color: #F0E9D7;
}

.bouquet-title {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  font-family: 'p22-bangersfield', sans-serif;
}

.bouquet-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

}

.bouquet-item {
  text-align: center;
  width: 220px; /* fixed width */
  flex-shrink: 0;

}

.bouquet-card {
  width: 230px;
  height: 230px;
  border: 4px solid #7EA7D2;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.3s ease;  /* 🧠 smooth animation */
}

.bouquet-card:hover {
  transform: scale(1.05);           /* 💥 scale up slightly */
}

.bouquet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

.bouquet-label {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
  color: #7EA7D2;
  margin-top: 15px;

}

.view-all-card {
  width: 230px;
  height: 230px;
  background-color: #7EA7D2;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.view-all-card:hover {
  transform: scale(1.05);
}

.footer {
  position:relative;
  background-color:transparent;
  padding-top:250px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -320px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:30px;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:1rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:50px;
  max-width:1200px;
  /* Add this */
  margin:0 auto;
  /* Center it */
  padding:0 20px;
  /* (optional) add some side padding */
}
.footer-bottom {
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  /* Push left-center-right apart */
  align-items:center;
  flex-wrap:wrap;
  max-width:1100px;
  margin:40px auto 0 auto;
  /* Center the entire footer-bottom */
  padding:0 20px;
  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  /* Make them equal width */
  text-align:center;
  /* Center text inside each section */
}
/* Special for left and right */
.footer-left {
  text-align:left;
}
.footer-right {
  text-align:right;
}


.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.button-blue:hover {
  transform: scale(1.05);
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 80px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 4rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 70%;
    height: auto;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  

    .cafe-reserve {
      background-color: #f6eedb;
      padding: 100px 20px 80px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .reserve-title {
      font-family: 'p22-bangersfield', sans-serif;
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .reserve-subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }
    
    .reserve-img {
      max-width: 550px;
      height: auto;
      margin: 0 auto 40px;
    }
    
    .reserve-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
    }

    .reserve-form input[type="time"] {
      padding: 10px 15px;
  appearance: auto;
      -webkit-appearance: none;
      font-family: "p22-bangersfield", sans-serif;
  color: #333;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      box-sizing: border-box;
    }
    
    .reserve-form input[type="time"],
    .reserve-form input[type="date"],
    .reserve-form input[type="number"],
    .reserve-form input[type="text"] {
      height: 44px;
    }

    .reserve-form select {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
      background-color: white;
      color: #333333;
      height: 44px;
      text-align: center;
      
      /* Hide default arrow and add custom */
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 18px 18px;
    }
  
    .contact-section h1 {
  
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }

   
    
    .contact-img {
      width: 100%;
      max-width: 700px; /* or try 700px for even bigger */
      height: auto;
      display: block;
      margin: 30px auto 0;
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 300px;
      margin: 0 auto;
    }
    
    .contact-form input,
    .contact-form textarea {
      width: 50%;
      padding: 12px;
      border: 2px solid #7EA7D2;
      border-radius: 20px;
      font-size: 1rem;
      font-family: inherit;
      resize: none;
    }
    

/* Email Text */
.email-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

.email-text a {
  font-weight: bold;
  color:#7EA7D2;
  text-decoration: none
}

.email-text a:hover {
  text-decoration: underline;
  font-weight: bold;
  
}

/* Contact Section */
.contact-section {
  padding: 108px 20px 300px;
  text-align: center;
  background-color: #f0e9d7;;
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background-color: white;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
  border-radius: 20px;
}

.contact-form button {
  padding: 8px 20px;
  border: none;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  font-family:"p22-bangersfield",sans-serif;

}

.contact-form button:hover {
  transform: scale(1.05);
}



.about-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.about-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#fff;
  max-width:100%;
  margin-top: -150px
}
.about-hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#7EA7D2
}
.about-hero-content h1 span {
  font-size:4rem;
  color:#7EA7D2;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 30px;
}

.photo-strip-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: transparent;
  margin:380px 0px 70px;
}

.photo-strip-scroller {
  display: flex;
  animation: scroll-strip 40s linear infinite;
  width: fit-content;
}

.photo-strip-scroller img {
  width: 250px;
  height: 350px;
  margin-right: 20px;
  object-fit: cover;
  border: 8px solid white; 
  flex-shrink: 0;
}


.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.defloral-hero-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: #f0e9d7;
  width: 100%;
  max-width: 100%;
  margin-top: 420px;
  text-align: center;
}
.defloral-hero-content h1 {
  line-height:1;
  font-size:4rem;
  color:#7EA7D2;
  white-space: nowrap;
  margin-bottom: 15px;
}

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}


.collab-img {
  height: 300px;
  width: auto;
  object-fit: contain;
}


.about-cloud {
  background-color:#F0E9D7;
  padding: 100px 20px 250px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.about-menu-cloud-img {
  top:0%;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:999;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}

.our-story-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.defloral-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;

}

.defloral-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;
}

.story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 100px

}

.story-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-block h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold
}



.story-block p {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.6;
  margin: 0px 0px 20px -55px ;
  color: #f9f9f9;
  width: 450px;
}

.story-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cloud-icon {
  width: 40px;
  height: auto;
  margin-top: 25px;
}

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 20px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 200px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-cloud-img {
  width: 120%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1.2rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 50px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  width: 50%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.offer-item img {
  width: 50%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;  /* ✅ this ensures perfect centering */
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;


}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.success-modal .modal-content {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  animation: zoomIn 0.3s ease-out forwards;
  max-width: 100%;
  width: 300px;
  position: relative;
}


.success-modal .modal-content button {
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.success-modal .modal-content button:hover {
  transform: scale(1.05);

}


.merch-section {
  background-color: #f5efdf;
  text-align: center;
  padding: 120px 20px 350px;
}

.merch-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 4rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.merch-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.merch-item {
  text-align: center;
}

.merch-item a {
  text-decoration: none;
}

.merch-item a:hover {
  text-decoration: none;
}

.merch-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.merch-box img {
  max-height: 110%;
  max-width: 110%;
  object-fit: contain;
}

.merch-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.merch-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.merch-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 0;
}

.product-detail {
  background-color: #f5efdf;
  padding: 200px 20px 350px;
  display: flex;
  justify-content: center;
  font-family: 'p22-bangersfield', sans-serif;
}

.product-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-detail .product-container {
  margin-left: auto;
  margin-right: auto;
}

.product-image img {
  width: 300px;
  height: auto;
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  margin-top:50px
}

.product-info {
  color: #7EA7D2;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: -20px;
}

.product-price {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #7EA7D2;
}

.product-quantity label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  background-color: white;
  overflow: hidden;
  height: 40px;
  padding: 0 10px;
  gap: 15px;
}

.qty-btn {
  background-color: white;
  border: none;
  color: #7EA7D2;
  font-size: 1.2rem;
  padding: 0 10px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
}

#quantity {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 1rem;
  color: #7EA7D2;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 30px;
}

.bouquet-item {
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}



.add-to-cart {
  background-color: #7EA7D2;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-family: 'p22-bangersfield', sans-serif;
  margin-top:20px
}

.product-image img {
  /* Existing styles above */
}

.add-to-cart:hover {
  transform: scale(1.05);
}



.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.2rem;
  max-width: 300px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.product-color-section label {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.product-color {
  font-family: 'Fredoka', sans-serif;
  padding: 8px 12px;
  border: 2px solid #7EA7D2;
  border-radius: 10px;
  background-color: #F0E9D7;
  color: #7EA7D2;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}

.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.color-btn {
  padding: 8px 20px;
  border: 2px solid #7EA7D2;
  background-color: white;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.color-btn.active {
  background-color: #7EA7D2;
  color: white;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  position: relative;
  z-index: 1;
  padding: 250px 100px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

/* Customer Form Styles for Checkout Page */
.customer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}



.customer-form input,
.customer-form select {
  width: 100%;
  max-width: 1000px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: "p22-bangersfield", sans-serif;
  outline: none;
  background-color: white;
  box-sizing: border-box;
  margin-bottom: 0;
}

.customer-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #7EA7D2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  cursor: pointer;
}

.customer-form .name-fields {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
}

.customer-form .name-fields input {
  flex: 1;
}




.checkout-item {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  gap: 1rem;
}
.checkout-item img {
  width: 120px;
  height: auto;
  border: 2px solid #7EA7D2;
  margin-right: 1rem;
}
.item-info {
  margin-top: 10px;
  flex: 1;
  width: 300px
}
.item-info h3 {
  margin: 0 0 .5rem;
  color: #7EA7D2;

}
.item-info .item-price {
  margin: 0 0 1rem;
  color: #7EA7D2;
 
}

.item-info p.item-color {
  margin-top: 40px;
  color: #7EA7D2;
  width: 250px
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

hr {
  border: none;
  height: 2px;
  background-color: #7EA7D2;

    width: 100%;
    margin: 20px 0;  /* gives spacing above and below */

}

.qty-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  padding: 0.25rem 0.75rem;
  gap: 0.75rem;
  height: 40px;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: auto;
}
.qty-controls button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #7EA7D2;
}
.qty-controls input {
  width: 1.5rem;
  text-align: center;
  border: none;
  font-weight: bold;
  color: #7EA7D2;
  background: transparent;
  font-size: 1rem;
}
.add-note {
  display: inline-block;
  margin-top: .5rem;
  color: #7EA7D2;
  text-decoration: none;
  font-size: .9rem;
}
.item-note {
  width: 100%;
  margin-top: .5rem;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

#noteTextArea {
  margin-top: 10px;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  border: 2px solid #7EA7D2;
  border-radius: 20px;
  padding: 12px 16px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  resize: none; /* 🚫 prevent resizing */
  color: #3d3d3d;
  box-sizing: border-box;
}
.order-summary {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #7EA7D2;
}
.order-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0; /* more vertical spacing */
  gap: 1rem; /* spacing between left and right */
}

.summary-line span:last-child {
  min-width: 80px;
  text-align: right;
}
.total-line {
  font-weight: bold;
  border-top: 1px solid #ccc;
  margin-top: .5rem;
}

.checkout .qty-controls {
  font-size: 1rem;
  gap: 0.5rem;
  padding: 0rem 0.5rem;
  margin-right:10px;
}

.checkout .qty-controls button {
  font-size: 1rem;
}

.checkout .qty-display {
  font-size: 1rem;
  color: #7EA7D2;
  width: 30px;
  text-align: center;

}

.item-controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-width: 160px;
  gap: 0.5rem;
  flex-grow: 1;
}

.item-total {
  font-weight: bold;
  color: #333333;
  min-width: 100px;
  text-align: right;
  margin-top: 10px;
}


/* === Pickup Method Select Styling === */
select.pickup-method {
  font-family: "p22-bangersfield", sans-serif;
  background-color: #7EA7D2;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 1.2rem;
  margin: 10px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Custom white down arrow SVG as background */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z' clip-rule='evenodd' /></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  box-shadow: none;
}




select.pickup-method {
  margin-bottom: 1.5rem;
}

#receiptUpload::-webkit-file-upload-button {
  color: black;
}

#receiptUpload::file-selector-button {
  color: black;
}

#receiptUpload {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 12px 20px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  width: 100%;
  max-width: 700px;
  border: none;
  border-radius: 25px;
  box-sizing: border-box;
  text-align-last: center;
  display: none;/* ensure the text aligns center in some browsers */
}

/* Style the file upload container */
.file-upload-center {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}



/* Style the custom file upload button */
.custom-file-upload {
  display: inline-block;
  padding: 8px 20px;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  border: none;
  margin-bottom: 10px;
}

.custom-file-upload:hover {
  transform: scale(1.05);
}

/* Style for when a file is selected */
.file-selected {
  background-color: #F7DA85;
  color: #7EA7D2;
}

.delivery-details {
  width: 100%;
}



  .customer-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-direction: row;
    font-family: "p22-bangersfield", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    width: auto;
}


/* === Checkout Confirmation Section === */
.checkout-confirmation {
  max-width: 700px;
  margin: 220px auto 80px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(126,167,210,0.10);
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  text-align: center;
  font-family: "p22-bangersfield", sans-serif;
  color: #7EA7D2;
}
.checkout-confirmation h1 {
  font-size: 2.3rem;
  color: #7EA7D2;
  margin-bottom: 0.3rem;
}
.checkout-confirmation p {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.checkout-confirmation h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #7EA7D2;
}
.confirmation-box {
  background: #F0E9D7;
  border-radius: 16px;
  padding: 1.5rem 1rem 1.5rem 1rem;
  margin-bottom: 2rem;
}

@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



@keyframes scroll-strip {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* === PHONES (Mobile) === */
@media (max-width: 480px) {
 
  html, body {
    overflow-x: hidden !important;
  }


  .nav-bar {
    height: 90px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:90px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 45%;
    top: 15px;
    transform: translateX(-50%);
    height: 70px;
    z-index: 2;
  }

  .nav-icon.left {
    position: absolute;
    left: 15px;
    top: 12px;
    z-index: 3;
  }
  
  .nav-icon.right {
    position: absolute;
    right: 55px;
    top: 15px;
    z-index: 3;
  }

  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 550px;
  display: block;
  position: relative;
  z-index: 2;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:26%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size: 2rem;
    line-height: 1;
   margin-bottom: 8px; /* instead of 25px */
    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 2.5rem;
    
  }


  .button-beige {

    font-size:0.9rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 5px 13px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  

  .button-beige:hover {
    transform: scale(1.05);
  }

  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 850px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 70px;
    width:400px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:2.5rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:2rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 400px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:290px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 100px;
    height: 150px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
  overflow-x: hidden;
    top:-71px;
    left:50%;
    transform:translateX(-50%);
    width: 252vw;
    max-width: 252vw;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:400px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 100px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:-350px;
    left:50%;
    transform:translateX(-50%);
    width: 252vw;
    max-width: 252vw;
    height:auto;
    z-index:10;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-right: 40px;
    z-index: 999
  }

  .story-atc {
    width: 250px;
    height: auto;
    margin-top: -440px;
    margin-left: 200px
  }
  
  .defloral-atc {
    width: 250px;
    height: auto;
    margin-top: -440px;
    margin-left: 200px
  }
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:-280px;
  
  }
  
  .story-text h1 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 600px
  }
  
  
  
  .story-block p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 0px -55px ;
    color: #FFFFFF;
    width: 370px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 40px;
    height: auto;
    margin-top: 18px;
  }
  
  .about-values {
    display: flex;
    justify-content: center;
    align-items: center; /* centers vertically */
    padding: 20px 50px 100px;
    background-color: #f0e9d7;
    flex-wrap: nowrap;
    text-align: center; /* aligns heading and text */
  }
  
  
  .values-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 200px;
    max-width: 1200px;
    margin: 50px auto;
  }
  
  .about-container {
    width: 300px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 50px
  }
  
  .about-container h1 {
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 30px;
    width: 300px

  }
  
  .about-cloud-box {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:-300px
    
  }
  
  .about-cloud-img {
    width: 105%;
    height: auto;
    display: block;
    margin-top: -100px
  }
  
  .about-cloud-text {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    font-size: 1rem;
    font-weight: 100;
    color: #7EA7D2;
    line-height: 1.4;
    text-align: center;
  }
  
  .what-we-offer {
    padding: 100px 50px 220px;
    text-align: center;
    background-color: #f0e9d7;
  }
  
  .what-we-offer h1 {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin: 0 auto 50px;
    display: block;
  }
  
 
  .offer-group {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .offer-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .offer-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 3px;
  }
  
  .offer-item p {
    font-size: 1rem;
    color: #7EA7D2;
  }
  
  .delay1 {
    position: absolute !important;
    top: 40% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 40% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 90% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top: 140% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top: 140% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 150px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 160px;
  }

  .cloud span {
    font-size: 1.2rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 

  .follow-button {
    right: 0.5rem;
    top: 1rem;
    width: 90px;
    height: 45px;
  }

  .see-more-button {
    font-size: 0.9rem;
    padding: 6px 14px;
  }

  .footer-columns {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
    justify-content: center;
    margin-bottom:20px;
  }

  .footer-bottom {
    margin-top:0px;
    flex-direction: column;
    text-align: center;

  }


  .footer-box h4 {
    font-size: 1.5rem;
    width:200px;
    color: #7EA7D2;
    margin-bottom: 8px;
  }
  .footer-box p {
    font-size: 0.9rem;
    color: #333333;
    margin-bottom: 30px;
  }


.button-blue {
  font-size: 0.9rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
    padding-top: 100px;
    padding-bottom: 170px;
  }

  .instagram h2 {
    font-size: 2rem;
  }

  .lightwidget-widget {
    width: 95%;
    height: 500px;
  }

  .footer {
    padding-top: 6px;   /* ↓ less space above words */
    margin-top: 0px;   /* ↑ move closer to Instagram section */
    z-index: 1;
    position: relative;
    overflow: visible;
  }

  .footer-bg {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 250%;
    height: auto;
    z-index: -88;
    pointer-events: none;
  }

  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 60px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 2rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 2.5rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 100%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 100px 20px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 300px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 120px 20px 350px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 100px 35px 250px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -70px;
margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


  

.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-right: 200px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:-180px;
  margin-left: 30px

}

.defloral-story-text h1 {
  margin-top:50px;
  margin-bottom: 0px;
}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    font-size: 1.8rem;
    width: 100%;
    color: #7EA7D2;
    margin: 80px auto 15px auto;
    text-align: center;
    white-space: normal;
  }

.defloral-hero-content p {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;

}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 0px;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 150px 20px 350px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 2rem;
  color: #7EA7D2;
  width:400px;
  margin-bottom: 60px;
}

.bouquet-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center !important;
    text-align: center;
}

.bouquet-container {
  justify-content: center;
  text-align: center;
}

.bouquet-item {
  margin-left: auto;
    margin-right: auto;
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}





.collab-img {
  height: 150px;
  width: auto;
  object-fit: contain;
}



.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1rem;
  max-width: 250px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 108px 20px 200px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 2.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 250px 20px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }
}


@media (min-width: 481px) and (max-width: 521px) {
 
  html, body {
    overflow-x: hidden !important;
  }

  .nav-bar {
    height: 90px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:90px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 45%;
    top: 15px;
    transform: translateX(-50%);
    height: 70px;
    z-index: 2;
  }

  .nav-icon.left {
    position: absolute;
    left: 15px;
    top: 12px;
    z-index: 3;
  }
  
  .nav-icon.right {
    position: absolute;
    right: 55px;
    top: 15px;
    z-index: 3;
  }

  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 550px;
  display: block;
  position: relative;
  z-index: 2;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:26%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size: 2rem;
    line-height: 1;
   margin-bottom: 8px; /* instead of 25px */
    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 2.5rem;
    
  }


  .button-beige {

    font-size:0.9rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 5px 13px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  

  .button-beige:hover {
    transform: scale(1.05);
  }

  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 850px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 70px;
    width:400px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:2.5rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:2rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 400px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:290px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 100px;
    height: 150px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
  
    top:-71px;
    left:50%;
    transform:translateX(-50%);
    width: 252vw;
    max-width: 252vw;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:400px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 100px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:-350px;
    left:50%;
    transform:translateX(-50%);
    width: 252vw;
    max-width: 252vw;
    height:auto;
    z-index:10;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-right: 40px;
    z-index: 999
  }

  .story-atc {
    width: 300px;
    height: auto;
    margin-top: -440px;
    margin-left: 200px
  }
  
  .defloral-atc {
    width: 300px;
    height: auto;
    margin-top: -440px;
    margin-left: 200px
  }
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:-180px;
  
  }
  
  .story-text h1 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 600px
  }
  
  
  
  .story-block p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 0px -55px ;
    color: #FFFFFF;
    width: 370px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 40px;
    height: auto;
    margin-top: 18px;
  }
  
  .about-values {
    display: flex;
    justify-content: center;
    align-items: center; /* centers vertically */
    padding: 150px 50px 100px;
    background-color: #f0e9d7;
    flex-wrap: nowrap;
    text-align: center; /* aligns heading and text */
  }
  
  
  .values-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 200px;
    max-width: 1200px;
    margin: 50px auto;
  }
  
  .about-container {
    width: 300px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 50px
  }
  
  .about-container h1 {
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 30px;
    width: 300px

  }
  
  .about-cloud-box {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:-300px
    
  }
  
  .about-cloud-img {
    width: 105%;
    height: auto;
    display: block;
    margin-top: -100px
  }
  
  .about-cloud-text {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    font-size: 1rem;
    font-weight: 100;
    color: #7EA7D2;
    line-height: 1.4;
    text-align: center;
  }
  
  .what-we-offer {
    padding: 100px 50px 220px;
    text-align: center;
    background-color: #f0e9d7;
  }
  
  .what-we-offer h1 {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin: 0 auto 50px;
    display: block;
  }
  
 
  .offer-group {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .offer-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .offer-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 3px;
  }
  
  .offer-item p {
    font-size: 1rem;
    color: #7EA7D2;
  }
  
  .delay1 {
    position: absolute !important;
    top: 40% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 40% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 105% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top: 160% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top: 160% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 150px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 180px;
  }

  .cloud span {
    font-size: 1.2rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 

  .follow-button {
    right: 0.5rem;
    top: 1rem;
    width: 90px;
    height: 45px;
  }

  .see-more-button {
    font-size: 0.9rem;
    padding: 6px 14px;
  }

  .footer-columns {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
    justify-content: center;
    margin-bottom:20px;
  }

  .footer-bottom {
    margin-top:0px;
    flex-direction: column;
    text-align: center;

  }


  .footer-box h4 {
    font-size: 1.5rem;
    width:200px;
    color: #7EA7D2;
    margin-bottom: 8px;
  }
  .footer-box p {
    font-size: 0.9rem;
    color: #333333;
    margin-bottom: 30px;
  }


.button-blue {
  font-size: 0.9rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
    padding-top: 200px;
    padding-bottom: 170px;
  }

  .instagram h2 {
    font-size: 2rem;
  }

  .lightwidget-widget {
    width: 95%;
    height: 500px;
  }

  .footer {
    padding-top: 6px;   /* ↓ less space above words */
    margin-top: 0px;   /* ↑ move closer to Instagram section */
    z-index: 1;
    position: relative;
    overflow: visible;
  }

  .footer-bg {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 250%;
    height: auto;
    z-index: -88;
    pointer-events: none;
  }

  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 60px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 2rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 2.5rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 100%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 100px 20px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 300px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 120px 20px 350px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 100px 35px 250px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -70px;
margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-right: 200px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:-110px;
  margin-left: 30px

}

.defloral-story-text h1 {
  margin-top:50px;
  margin-bottom: 0px;
}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    font-size: 1.8rem;
    width: 100%;
    color: #7EA7D2;
    margin: 80px auto 15px auto;
    text-align: center;
    white-space: normal;
  }

.defloral-hero-content p {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;

}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 200px 20px 0px;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 150px 20px 350px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 2rem;
  color: #7EA7D2;
  width:400px;
  
  margin: 0px auto 60px
}

.bouquet-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center !important;
    text-align: center;
}

.bouquet-container {
  justify-content: center;
  text-align: center;
}

.bouquet-item {
  margin-left: auto;
    margin-right: auto;
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}





.collab-img {
  height: 150px;
  width: auto;
  object-fit: contain;
}



.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1rem;
  max-width: 250px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 108px 20px 200px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 2.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 250px 20px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }
}


@media (min-width: 522px) and (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
  }


  .nav-bar {
    height: 105px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:105px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 47.5%;
    top: 10px;
    transform: translateX(-50%);
    height: 90px;
    z-index: 2;
  }

  .nav-icon.left {
    position: absolute;
    left: 20px;
    top: 12px;
    z-index: 3;
  }
  
  .nav-icon.right {
    position: absolute;
    right: 60px;
    top: 15px;
    z-index: 3;
  }

  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 800px;
  display: block;
  position: relative;
  z-index: 2;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:21%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size: 3rem;
    line-height: 1;
   margin-bottom: 20px; /* instead of 25px */
    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 2.5rem;
    
  }


  .button-beige {

    font-size:1rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 5px 13px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  

  .button-beige:hover {
    transform: scale(1.05);
  }

  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 1000px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 10px;
    width:768px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:3rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:2.5rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 300px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:350px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 150px;
    height: 200px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
  
    top:-110px;
    left:50%;
    transform:translateX(-50%);
    width: 200vw;
    max-width: 200vw;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:400px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 100px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:-350px;
    left:50%;
    transform:translateX(-50%);
    width: 252vw;
    max-width: 252vw;
    height:auto;
    z-index:10;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-right: 40px;
    z-index: 999
  }

  .story-atc {
    width: 450px;
    height: auto;
    margin-top: -400px;
    margin-left: 320px
  }
  
  .defloral-atc {
    width: 450px;
    height: auto;
    margin-top: -400px;
    margin-left: 190px
  }
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:-200px;
    margin-left: 60px;
  
  }
  
  .story-text h1 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 600px
  }
  
  
  
  .story-block p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 0px -55px ;
    color: #FFFFFF;
    width: 370px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 40px;
    height: auto;
    margin-top: 18px;
  }
  
  .about-values {
    display: flex;
    justify-content: center;
    align-items: center; /* centers vertically */
    padding: 20px 50px 100px;
    background-color: #f0e9d7;
    flex-wrap: nowrap;
    text-align: center; /* aligns heading and text */
  }
  
  
  .values-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 200px;
    max-width: 1200px;
    margin: 50px auto;
  }
  
  .about-container {
    width: 300px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 50px
  }
  
  .about-container h1 {
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 30px;
    width: 300px

  }
  
  .about-cloud-box {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:-300px
    
  }
  
  .about-cloud-img {
    width: 105%;
    height: auto;
    display: block;
    margin-top: -100px
  }
  
  .about-cloud-text {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    font-size: 1rem;
    font-weight: 100;
    color: #7EA7D2;
    line-height: 1.4;
    text-align: center;
  }
  
  .what-we-offer {
    padding: 100px 50px 220px;
    text-align: center;
    background-color: #f0e9d7;
  }
  
  .what-we-offer h1 {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin: 0 auto 50px;
    display: block;
  }
  
 
  .offer-group {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .offer-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .offer-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 3px;
  }
  
  .offer-item p {
    font-size: 1rem;
    color: #7EA7D2;
  }
  
  .delay1 {
    position: absolute !important;
    top: 21% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 21% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 58% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top: 90% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top: 90% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 380px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 200px;
  }

  .cloud span {
    font-size: 1.5rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 

  .follow-button {
    right: 0.5rem;
    top: 1rem;
    width: 90px;
    height: 45px;
  }

  .see-more-button {
    font-size: 1rem;
    padding: 6px 14px;
  }

  .footer-columns {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    gap: 0px;
    justify-content: center;
    justify-items: center;
    margin-bottom:20px;
  }

  .footer-bottom {
    margin-top:0px;
    flex-direction: column;
    text-align: center;

  }


  .footer-box h4 {
    font-size: 1.5rem;
    width:200px;
    color: #7EA7D2;
    margin-bottom: 8px;
  }
  .footer-box p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 30px;
  }


.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
   
    padding:100px 30px 270px
  }

  .instagram h2 {
    font-size: 3rem;
  }

  .lightwidget-widget {
    width: 95%;
    height: 500px;
  }

  .footer {
      /* ↑ move closer to Instagram section */
    z-index: 1;
    position: relative;
    overflow: visible;
    padding: -10rem 0 -20rem;

  
  }

  .footer-bg {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: auto;
    z-index: -88;
    pointer-events: none;
  }

  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 60px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 2rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 2.5rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 100%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 100px 20px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 300px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 120px 20px 350px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 100px 35px 250px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -70px;
margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-right: 200px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:-180px;
  margin-left: 30px

}

.defloral-story-text h1 {
  margin-top:50px;
  margin-bottom: 0px;
}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    font-size: 1.8rem;
    width: 100%;
    color: #7EA7D2;
    margin: 80px auto 15px auto;
    text-align: center;
    white-space: normal;
  }

.defloral-hero-content p {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;

}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 0px;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 150px 20px 350px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 2rem;
  color: #7EA7D2;
  width:400px;
  margin-bottom: 60px;
}

.bouquet-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center !important;
    text-align: center;
}

.bouquet-container {
  justify-content: center;
  text-align: center;
}

.bouquet-item {
  margin-left: auto;
    margin-right: auto;
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}





.collab-img {
  height: 150px;
  width: auto;
  object-fit: contain;
}



.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1rem;
  max-width: 250px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 108px 20px 200px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 2.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 250px 20px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }
}

@media (min-width: 769px) and (max-width: 900px) {

  html, body {
    overflow-x: hidden !important;
  }


  .nav-bar {
    height: 120px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:120px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 47.5%;
    top: 10px;
    transform: translateX(-50%);
    height: 90px;
    z-index: 2;
  }

  .nav-icon.left {
    position: absolute;
    left: 20px;
    top: 12px;
    z-index: 3;
  }
  
  .nav-icon.right {
    position: absolute;
    right: 60px;
    top: 15px;
    z-index: 3;
  }

  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 800px;
  display: block;
  position: relative;
  z-index: 2;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:21%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size: 3rem;
    line-height: 1;
   margin-bottom: 20px; /* instead of 25px */
    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 2.5rem;
    
  }


  .button-beige {

    font-size:1rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 5px 13px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  

  .button-beige:hover {
    transform: scale(1.05);
  }

  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 1000px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 10px;
    width:768px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:2.5rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:3rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 300px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:350px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 150px;
    height: 200px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
  
    top:-110px;
    left:50%;
    transform:translateX(-50%);
    width: 200vw;
    max-width: 200vw;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:400px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 100px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:-350px;
    left:50%;
    transform:translateX(-50%);
    width: 252vw;
    max-width: 252vw;
    height:auto;
    z-index:10;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-right: 40px;
    z-index: 999
  }

  .story-atc {
    width: 600px;
    height: auto;
    margin-top: -350px;
    margin-left: 250px
  }
  
  .defloral-atc {
    width: 550px;
    height: auto;
    margin-top: -350px;
    margin-left: 190px
  }
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:-130px;
    margin-left: 60px;
  
  }
  
  .story-text h1 {
    font-size: 3rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 600px
  }
  
  
  
  .story-block p {
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 20px -55px ;
    color: #FFFFFF;
    width: 600px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 40px;
    height: auto;
    margin-top: 23px;
  }
  
  .about-values {
    display: flex;
    justify-content: center;
    align-items: center; /* centers vertically */
    padding: 180px 50px 100px;
    background-color: #f0e9d7;
    flex-wrap: nowrap;
    text-align: center; /* aligns heading and text */
  }
  
  
  .values-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 200px;
    max-width: 1200px;
    margin: 50px auto;
  }
  
  .about-container {
    width: 300px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 50px
  }
  
  .about-container h1 {
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 30px;
    width: 300px

  }
  
  .about-cloud-box {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:-300px
    
  }
  
  .about-cloud-img {
    width: 105%;
    height: auto;
    display: block;
    margin-top: -100px
  }
  
  .about-cloud-text {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    font-size: 1rem;
    font-weight: 100;
    color: #7EA7D2;
    line-height: 1.4;
    text-align: center;
  }
  
  .what-we-offer {
    padding: 100px 50px 350px;
    text-align: center;
    background-color: #f0e9d7;
  }
  
  .what-we-offer h1 {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin: 0 auto 50px;
    display: block;
  }
  
 
  .offer-group {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .offer-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .offer-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 3px;
  }
  
  .offer-item p {
    font-size: 1rem;
    color: #7EA7D2;
  }
  
  .delay1 {
    position: absolute !important;
    top: 25% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 25% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 60% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top: 90% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top: 90% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 600px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 300px;
  }

  .cloud span {
    font-size: 1.5rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 

  .follow-button {
    right: 4.5rem;
    top: 1rem;
    width: 90px;
    height: 45px;
  }

  .see-more-button {
    font-size: 1rem;
    padding: 6px 14px;
  }

  .footer-columns {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    gap: 0px;
    justify-content: center;
    justify-items: center;
    margin-bottom:20px;
  }

  .footer-bottom {
    margin-top:0px;
    flex-direction: column;
    text-align: center;

  }


  .footer-box h4 {
    font-size: 1.5rem;
    width:200px;
    color: #7EA7D2;
    margin-bottom: 8px;
  }
  .footer-box p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 30px;
  }


.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
   
    padding:200px 30px -100px
  }

  .instagram h2 {
    font-size: 2.5rem;
  }

  .lightwidget-widget {
    width: 85%;
    height: 500px;
  }

  .footer {
      /* ↑ move closer to Instagram section */
    z-index: 1;
    position: relative;
    overflow: hidden;
     padding: 250px 0 50px 0;  /* 50px top and bottom */


  
  }

  .footer-bg {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: auto;
    z-index: -88;
    pointer-events: none;
  }

  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 60px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 6rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 2.5rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 3rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 100%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 18rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 130px 20px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 300px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 120px 20px 350px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 2.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 130px 35px 300px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -20px;
    margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-right: 200px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:30px;
  margin-left: 180px

}

.defloral-story-text h1 {
  font-size:3rem;
  margin-top:10px;
  margin-bottom: 0px;
}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 900px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    font-size: 3rem;
    width: 100%;
    color: #7EA7D2;
    margin: 140px auto 15px auto;
    text-align: center;
    white-space: normal;
  }

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;


}

.collab-img {
  height: 180px;
  width: auto;
  object-fit: contain;
}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 120px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 60px 20px 350px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 2.5rem;
  color: #7EA7D2;
  width:400px;
  margin-bottom: 60px;
}

.bouquet-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 550px;
  margin: 0 auto;
  justify-content: center !important;
    text-align: center;
}

.bouquet-container {
  justify-content: center;
  text-align: center;
}

.bouquet-item {
  margin-left: auto;
    margin-right: auto;
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}








.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1rem;
  max-width: 250px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 108px 20px 200px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 2.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 250px 20px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }
}

@media (min-width: 901px) and (max-width: 1025px) {
  html, body {
    overflow-x: hidden !important;
  }


  .nav-bar {
    position: fixed;
    height: 100px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:100px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 47.8%;
    top: 3px;
    transform: translateX(-50%);
    height: 100px;
    z-index: 2;
  }

  .nav-icon.left {
    position: absolute;
    left: 30px;
    top: 10px;
    z-index: 3;
  }
  
  .nav-icon.right {
    position: absolute;
    right: 70px;
    top: 10px;
    z-index: 3;
  }

  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 800px;
  display: block;
  position: relative;
  z-index: 2;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:23%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size: 3rem;
    line-height: 1;
   margin-bottom: 20px; /* instead of 25px */

    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 3.5rem;


  }


  .button-beige {

    font-size:1rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 8px 20px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  



  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 820px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 30px;
    width:900px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:3.5rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:3rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 400px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:400px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 180px;
    height: 220px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:400px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 100px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    z-index: 999
  }
  
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:-430px;
    margin-left: 400px;
  
  
  }
  
  .story-text h1 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 900px
  }
  
  
  
  .story-block p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 0px -45px ;
    color: #FFFFFF;
    width: 370px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 30px;
    height: auto;
    margin-top: 18px;
  }
  
 
  

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 20px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
 
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
 
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}


.about-cloud-img {
  width: 110%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 50px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  width: 60%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}



.offer-item img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
}

  
  .delay1 {
    position: absolute !important;
    top: 18% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 18% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 70% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top: 120% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top:120% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 30px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 220px;
  }

  .cloud span {
    font-size: 1.5rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 

  .follow-button {
    right: 0.5rem;
    top: 1rem;
    width: 90px;
    height: 45px;
  }

  .see-more-button {
    font-size: 1rem;
    padding: 8px 20px;
  }



.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
 padding: 20px 40px 200px
  }

  .instagram h2 {
    font-size: 2.5rem;
  }

  .lightwidget-widget {
    width: 100%;
  
 
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 90px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 3.5rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 100%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 100px 20px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3.5rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 600px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 120px 40px 350px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 150px 35px 500px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -30px;
    margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


.footer {
  position:relative;
  background-color:transparent;
  padding-top:170px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -320px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:1.2rem;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:0.9rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:30px;
  max-width:1200px;
  /* Add this */
  margin:0 auto;
  /* Center it */

  /* (optional) add some side padding */
}
.footer-bottom {
  font-size:0.9rem;
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  max-width:100%;
  text-align: center;

  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  text-align:center;

}

.footer-left p {
  width:300px;
  text-align:center;
margin-left: 10px;
}
.footer-right p {
width:300px;
  text-align:center;
  margin-left: 10px;
}


.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-right: 200px;
  z-index: 999
}

.defloral-atc {
  margin-left:-200px;
 margin-top:-195px;
  width: 360px;
  height: auto;

}

.story-atc {
  margin-left:-350px;
 margin-top:-195px;
  width: 360px;
  height: auto;

}


.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:-400px;
  margin-left: 400px;
  

}

.defloral-story-text h1 {
  margin-top:50px;
  margin-bottom: 0px;

}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 770px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    width: 100%;
    color: #7EA7D2;
    margin: 300px auto 15px auto;
    text-align: center;
    white-space: normal;
    font-size: 3.5rem;
  }

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

}

.collab-img {
  height: 250px;
  width: auto;
  object-fit: contain;
}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 0px;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 150px 20px 400px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 3.5rem;
  color: #7EA7D2;
  width:600px;
  margin: 0 auto 30px auto;
}

.bouquet-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center !important;
    text-align: center;
    padding: 0px 100px;
}

.bouquet-container {
  justify-content: center;
  text-align: center;
}

.bouquet-item {
  margin-bottom: 10px;
  margin-left: auto;
    margin-right: auto;
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}


.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.5rem;
  max-width: 420px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 108px 20px 300px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 3.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}


.subtitle {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}


.contact-img {
  width: 100%;
  max-width: 400px; /* or try 700px for even bigger */
  height: auto;
  display: block;
  margin: 30px auto 0;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 250px 20px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }
}


  @media (min-width: 1026px) and (max-width: 1079px) {

  html, body {
    overflow-x: hidden !important;
  }

  .nav-bar {
    position: fixed;
    height: 115px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:115px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 47.8%;
    top: 10px;
    transform: translateX(-50%);
    height: 90px;
    z-index: 2;
  }

  .nav-icon.left {
    position: absolute;
    left: 20px;
    top: 12px;
    z-index: 3;
  }
  
  .nav-icon.right {
    position: absolute;
    right: 60px;
    top: 12px;
    z-index: 3;
  }

  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 800px;
  display: block;
  position: relative;
  z-index: 2;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:23%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size: 3rem;
    line-height: 1;
   margin-bottom: 20px; /* instead of 25px */

    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 3.5rem;


  }


  .button-beige {

    font-size:1rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 8px 20px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  



  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 820px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 30px;
    width:900px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:3.5rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:3rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 400px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:400px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 180px;
    height: 220px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:400px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 100px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    z-index: 999
  }
  
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:-100px;
    margin-left: 10px;
  
  
  }

  .story-atc {
  margin-left:30px;
 margin-top:-195px;
  width: 500px;
  height: auto;

}

  
  .story-text h1 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 900px
  }
  
  
  
  .story-block p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 0px -45px ;
    color: #FFFFFF;
    width: 370px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 30px;
    height: auto;
    margin-top: 18px;
  }
  
 
  

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 100px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
 
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
 
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}


.about-cloud-img {
  width: 110%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 50px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  width: 60%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}



.offer-item img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
}

  
  .delay1 {
    position: absolute !important;
    top: 18% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 18% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 70% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top: 120% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top:120% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 30px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 220px;
  }

  .cloud span {
    font-size: 1.5rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 

  .follow-button {
    right: 0.5rem;
    top: 1rem;
    width: 90px;
    height: 45px;
  }

  .see-more-button {
    font-size: 1rem;
    padding: 8px 20px;
  }



.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
 padding: 80px 50px 230px
  }

  .instagram h2 {
    font-size: 3rem;
  }

  .lightwidget-widget {
    width: 100%;
  
 
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 90px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 3.5rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 100%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 100px 20px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3.5rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 600px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 120px 40px 350px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 150px 35px 500px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -30px;
    margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


.footer {
  position:relative;
  background-color:transparent;
  padding-top:170px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -320px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:1.2rem;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:0.9rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:30px;
  max-width:1200px;
  /* Add this */
  margin:0 auto;
  /* Center it */

  /* (optional) add some side padding */
}
.footer-bottom {
  font-size:0.9rem;
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  max-width:100%;
  text-align: center;

  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  text-align:center;

}

.footer-left p {
  width:300px;
  text-align:center;
margin-left: 10px;
}
.footer-right p {
width:300px;
  text-align:center;
  margin-left: 10px;
}


.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-right: 200px;
  z-index: 999
}

.defloral-atc {
  margin-left:-200px;
 margin-top:-195px;
  width: 360px;
  height: auto;

}



.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:-400px;
  margin-left: 400px;
  

}

.defloral-story-text h1 {
  margin-top:50px;
  margin-bottom: 0px;

}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 770px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    width: 100%;
    color: #7EA7D2;
    margin: 300px auto 15px auto;
    text-align: center;
    white-space: normal;
    font-size: 3.5rem;
  }

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

}

.collab-img {
  height: 250px;
  width: auto;
  object-fit: contain;
}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 0px;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 150px 20px 400px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 3.5rem;
  color: #7EA7D2;
  width:600px;
  margin: 0 auto 30px auto;
}

.bouquet-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center !important;
    text-align: center;
    padding: 0px 100px;
}

.bouquet-container {
  justify-content: center;
  text-align: center;
}

.bouquet-item {
  margin-bottom: 10px;
  margin-left: auto;
    margin-right: auto;
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}


.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.5rem;
  max-width: 420px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 108px 20px 300px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 3.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}


.subtitle {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}


.contact-img {
  width: 100%;
  max-width: 400px; /* or try 700px for even bigger */
  height: auto;
  display: block;
  margin: 30px auto 0;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 250px 20px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  
 }
}

  @media (min-width: 1080px) and (max-width: 1439px) {
  html, body {
    overflow-x: hidden !important;
  }

  .nav-bar {
    position: fixed;
    height: 130px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:130px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 48.5%;
    top: 13px;
    transform: translateX(-50%);
    height: 100px;
    z-index: 2;
  }

  .nav-icon.left {
    position: absolute;
    left: 25px;
    top: 15px;
    z-index: 3;

  }
  
  .nav-icon.right {
    position: absolute;
    right: 60px;
    top: 15px;
    z-index: 3;
  }

  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 955px;
  display: block;
  position: relative;
  z-index: 2;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:19%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size: 3.5rem;
    line-height: 1;
   margin-bottom: 13px; /* instead of 25px */

    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 4rem;


  }


  .button-beige {

    font-size:1.1rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 8px 20px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  



  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 820px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 25px;
    width:900px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:4rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:3.5rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 400px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:400px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 180px;
    height: 220px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    padding-bottom: 100px;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:550px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 200px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:-100px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;

    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  


  
  .defloral-atc {
    margin-left:300px;
   margin-top:-100px;
    width: 500px;
    height: auto;
  
  }
  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    z-index: 999
  }
  
  .story-atc {
    margin-left:100px;
   margin-top:-100px;
    width: 500px;
    height: auto;
  
  }
  
  
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:-30px;
    margin-left: 30px;
  
  
  }
  
  .story-text h1 {
    font-size: 3rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 900px
  }
  
  
  
  .story-block p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 0px -45px ;
    color: #FFFFFF;
    width: 370px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 30px;
    height: auto;
    margin-top: 18px;
  }
  
 
  

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 10px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
 
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
 
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}


.about-cloud-img {
  width: 110%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 10px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  width: 60%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}



.offer-item img {
  width: 90%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
  margin-bottom: 100px;
}

  
  .delay1 {
    position: absolute !important;
    top: 50% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 50% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 130% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top: 200% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top:200% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 30px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 300px;
  }

  .cloud span {
    font-size: 2rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 

  .follow-button {
    right: 0.5rem;
    top: 1rem;
    width: 90px;
    height: 45px;
  }

  .see-more-button {
    font-size: 1.1rem;
    padding: 8px 20px;
  }



.button-blue {
  font-size: 1.1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
 padding: 100px 40px 280px
  }

  .instagram h2 {
    font-size: 4rem;
  }

  .lightwidget-widget {
    width: 100%;
  
 
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 90px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 3.5rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 4rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 90%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 100px 20px 150px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3.5rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 600px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 120px 40px 350px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 150px 35px 500px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -30px;
    margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


.footer {
  position:relative;
  background-color:transparent;
  padding-top:200px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -400px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:1.5rem;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:1.1rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:30px;
  max-width:1200px;
  /* Add this */
  margin:0 auto;
  /* Center it */

  /* (optional) add some side padding */
}
.footer-bottom {
  font-size:1rem;
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  max-width:100%;
  text-align: center;

  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  text-align:center;

}

.footer-left p {
  width:400px;
  text-align:center;
margin-left: 10px;
}
.footer-right p {
width:400px;
  text-align:center;
  margin-left: 10px;
}


.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-right: 200px;
  z-index: 999
}

.defloral-atc {
  margin-left:-250px;
 margin-top:-130px;
  width: 500px;
  height: auto;

}


.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:-470px;
  margin-left: 650px;
  

}

.defloral-story-text h1 {
  margin-top:50px;
  margin-bottom: 0px;
  font-size: 3rem;

}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 770px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    width: 100%;
    color: #7EA7D2;
    margin: 300px auto 15px auto;
    text-align: center;
    white-space: normal;
    font-size: 3.5rem;
  }

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

}

.collab-img {
  height: 250px;
  width: auto;
  object-fit: contain;
}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 0px;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 150px 20px 0px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 3.5rem;
  color: #7EA7D2;
  width:800px;
  margin: 0 auto 50px auto;
}

.bouquet-container {
  display: grid;

  gap: -10px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center !important;
    text-align: center;
    padding: 0px 10px;
}

.bouquet-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px; /* Adjust this to control spacing between items */
  text-align: center;
  padding: 0 300px;
}
.bouquet-item {
  margin-bottom: 0px;
  margin-left: auto;
    margin-right: auto;
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}


.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.5rem;
  max-width: 420px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 150px 20px 400px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 3.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}


.subtitle {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}


.contact-img {
  width: 100%;
  max-width: 400px; /* or try 700px for even bigger */
  height: auto;
  display: block;
  margin: 30px auto 0;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 250px 20px 350px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }
}

@media (min-width: 1440px) and (max-width: 1456x) {
  html, body {
    overflow-x: hidden !important;
  }

html {
  scroll-behavior:smooth;
  scrollbar-gutter: stable;
}
body {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"p22-bangersfield",sans-serif;
  font-weight:700;
  font-style:normal;
  background-color:#FFFFFF;
  color:#3d3d3d;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.sidebar-open,
body.cart-open {
  height: 100vh;
  overflow: hidden;

}

.nav-bar {
 
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:118px;
  z-index:9999;
  overflow:hidden;
  transition:transform 0.3s ease;
}
.nav-bar.hide {
  transform:translateY(-100%);
}
.nav-cloud-bg {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:118px;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}


  
.nav-container {
  color:#7EA7D2;
  width:100%;
  max-width:1380px;
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  position:relative;
  z-index:1;
}


.logo {
  top:10px;
  height:100px;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
}
.nav-icon {
  width:28px;
  height:28px;
  cursor:pointer;
  color:#7EA7D2;
  z-index:3;
}
.nav-icon.left {
  cursor: pointer;
  position: relative;
  z-index: 999; 
  top:30px;
}
.nav-icon.right {
  position: relative;
  width:25px;
  height:25px;
  top:30px;
}

.sidebar.active {
  transform: translateX(0);
  opacity: 1; 
}
.cart-sidebar.open {
  transform: translateX(0);
  opacity: 1;
}
.sidebar-overlay, .cart-overlay {
  transition: opacity 0.4s ease;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  overflow-y: hidden;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  text-align: center;
  opacity: 0; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar-header {
  background-color: #7EA7D2;
  padding: 60px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.sidebar-nav {
  padding: 40px 20px;
  flex: 1;


}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px
}
.sidebar-nav li {
  margin-bottom: 40px;
}
.sidebar-nav a {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  color: #7EA7D2;
  transition: color 0.3s;
}
.sidebar-nav a:hover {
  color: #F7DA85;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 888; 
  opacity: 0;
  visibility: hidden;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
    z-index: 10000; /* make sure it covers nav-bar */
  }

  .sidebar.active {
    z-index: 10001; /* Always above the overlay */
  }

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.social-links a {
  color: #7EA7D2;
  text-decoration: none;
}

.social-links a:hover .social-icon {
  transform: scale(1.1);
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0; 
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar input[type="number"] {
  font-size: 1.2rem; /* or larger */
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
}


.cart-header {
  background-color: #7EA7D2;
  padding: 20px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.cart-header h2 {
  margin: 0;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.close-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}

.cart-content {
  flex-grow: 1;
  padding: 30px;
  text-align: center;
}

.empty-cart-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.go-shop-btn {
  display: inline-block;
  color: #7EA7D2;
  text-decoration: underline;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Cart Footer */
.cart-footer {
  padding: 20px;
  background-color: #7EA7D2;
  color: white;
  text-align: center;
}

.cart-footer .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.checkout-btn {
  background: white;
  font-family:"p22-bangersfield",sans-serif;
  color: #7EA7D2;
  border: none;
  font-weight: bold;
  padding: 10px 0px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  width: 100%; 
  margin: 0 auto; 
  display: block; 
  text-decoration: none;
}

.checkout-page-btn {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 50px; /* Adjust this value as needed */
  font-size: 1.2rem; /* Optional: improves text visibility */
  background: #7EA7D2;
  font-family: "p22-bangersfield", sans-serif;
  color: #FFFFFF;
  border: none;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  margin: 5px auto 0;
  text-decoration: none;
}
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.cart-sidebar.open {
  /* 🔼 ADD THIS: */
  z-index: 10001; /* 🆙 above overlay */
}

.hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
}
.hero-img {
  width:100%;
  height:auto;
  display:block;
  position:relative;
  z-index:2;
  top:-80px
}
.hero-content {
  position:absolute;
  top:17%;
  left:50%;
  transform:translate(-50%,-40%);
  z-index:4;
  color:#fff;
  max-width:100%;
}
.hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#F0E9D7
}
.hero-content h1 span {
  font-size:4rem;
  color:#F0E9D7;
}
.button-beige {
  font-size:1rem;
  background-color:#F0E9D7;
  color:#7EA7D2;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration:none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}



.button-beige:hover {
  transform: scale(1.05);
}

/* Navigation Menu Section */
/* ======================= */
.navigation-menu {
  background-color:#F0E9D7;
  overflow:visible;
  margin-bottom:-100px
}
.menu-cloud-img {
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:0;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}
.cloud-buttons {
  padding:0;
  background-size:cover;
  padding:0px 20px 140px;
  text-align:center;
  position:relative;
  overflow:hidden;
  z-index:2;
  margin-top:-200px;
}
.cloud-buttons > * {
  position:relative;
  z-index:1;
}
.cloud {
  display:inline-block;
  font-weight:bold;
  text-decoration:none;
  transition:all 0.3s ease;
  position:absolute;
}
.cloud:hover {
  transform:scale(1.05);
  filter:drop-shadow(0 8px 14px rgba(0,0,0,0.25));
  z-index:10;
}
.cloud img {
  width:100px;
  /* or your preferred size */
  height:auto;
  display:block;
}
.cloud span {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:2rem;
  color:#7EA7D2;
  pointer-events:none;
 
}

.delay1 {
  top:20%;
  left:15%;
}
.delay2 {
  top:20%;
  left:65%;
}
.delay3 {
  top:35%;
  left:40%;
}
.delay4 {
  top:50%;
  left:15%;
}
.delay5 {
  top:50%;
  left:65%;
}
.delay1 img,.delay2 img,.delay3 img,.delay4 img,.delay5 img {
  width:300px;
  height:auto;
}
.delay2 span {
  transform:translate(-50%,-30%);
}
.delay4 span {
  transform:translate(-50%,-30%);
}
.delay5 span {
  transform:translate(-50%,-15%);
}

.instagram {
  position:relative;
  text-align:center;
  width:100%
  max-width:1000px;
  z-index:1;
  margin:0 auto;
  margin-bottom:100px;
  background-color: #F0E9D7;
  padding-bottom: 220px;
  padding-top: 30px
  
}
.instagram h2 {
  color:#7EA7D2;
  font-size:3rem;
  margin-bottom:30px;
}
/* Wrapper to hold the iframe and custom buttons */
.instagram-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Base style for buttons */
.ig-button {
  position: absolute;
  z-index: 100;
  pointer-events: none; /* Important: allow click-through */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Follow Button container */
.follow-button {
  top: 1rem;
  right: 6rem;
  width: 120px; /* Your cloud size */
  height: 60px;
  position: absolute;
}

/* Cloud image */
.follow-img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  position: absolute;
  top: 50;
  left: 20;
  z-index: 1; /* Cloud behind */
  pointer-events: none;
}

/* Follow text */
.follow-text {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  color: #7EA7D2;
  z-index: 2; /* Text in front */
  pointer-events: none;
  margin-top: 8px;
}

/* See More Button */
.see-more-button {
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7EA7D2;
  color: #fff;
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  pointer-events: none;
}

.see-more-button span {
  pointer-events: none;
}
.lightwidget-widget {
  z-index: 1;
  width: 800px;
  /* 👉 control how small you want */
  height:500px;
  /* 👉 IMPORTANT:control the height! */
  border:0;
  position: relative
  
}


.best-seller {
  background-color: #f5efdf;
  padding: 80px 20px;
  text-align: center;
}

.best-seller-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size:3rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.bouquet-section {
  text-align: center;
  padding: 120px 100px 300px;
  background-color: #F0E9D7;
}

.bouquet-title {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  font-family: 'p22-bangersfield', sans-serif;
}

.bouquet-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

}

.bouquet-item {
  text-align: center;
  width: 220px; /* fixed width */
  flex-shrink: 0;

}

.bouquet-card {
  width: 230px;
  height: 230px;
  border: 4px solid #7EA7D2;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.3s ease;  /* 🧠 smooth animation */
}

.bouquet-card:hover {
  transform: scale(1.05);           /* 💥 scale up slightly */
}

.bouquet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

.bouquet-label {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
  color: #7EA7D2;
  margin-top: 15px;

}

.view-all-card {
  width: 230px;
  height: 230px;
  background-color: #7EA7D2;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.view-all-card:hover {
  transform: scale(1.05);
}

.footer {
  position:relative;
  background-color:transparent;
  padding-top:250px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -320px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:30px;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:1rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:50px;
  max-width:1200px;
  /* Add this */
  margin:0 auto;
  /* Center it */
  padding:0 20px;
  /* (optional) add some side padding */
}
.footer-bottom {
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  /* Push left-center-right apart */
  align-items:center;
  flex-wrap:wrap;
  max-width:1100px;
  margin:40px auto 0 auto;
  /* Center the entire footer-bottom */
  padding:0 20px;
  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  /* Make them equal width */
  text-align:center;
  /* Center text inside each section */
}
/* Special for left and right */
.footer-left {
  text-align:left;
}
.footer-right {
  text-align:right;
}


.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.button-blue:hover {
  transform: scale(1.05);
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 80px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 4rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 70%;
    height: auto;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  

    .cafe-reserve {
      background-color: #f6eedb;
      padding: 100px 20px 80px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .reserve-title {
      font-family: 'p22-bangersfield', sans-serif;
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .reserve-subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }
    
    .reserve-img {
      max-width: 550px;
      height: auto;
      margin: 0 auto 40px;
    }
    
    .reserve-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
    }

    .reserve-form input[type="time"] {
      padding: 10px 15px;
  appearance: auto;
      -webkit-appearance: none;
      font-family: "p22-bangersfield", sans-serif;
  color: #333;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      box-sizing: border-box;
    }
    
    .reserve-form input[type="time"],
    .reserve-form input[type="date"],
    .reserve-form input[type="number"],
    .reserve-form input[type="text"] {
      height: 44px;
    }

    .reserve-form select {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
      background-color: white;
      color: #333333;
      height: 44px;
      text-align: center;
      
      /* Hide default arrow and add custom */
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 18px 18px;
    }
  
    .contact-section h1 {
  
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }

   
    
    .contact-img {
      width: 100%;
      max-width: 700px; /* or try 700px for even bigger */
      height: auto;
      display: block;
      margin: 30px auto 0;
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 300px;
      margin: 0 auto;
    }
    
    .contact-form input,
    .contact-form textarea {
      width: 50%;
      padding: 12px;
      border: 2px solid #7EA7D2;
      border-radius: 20px;
      font-size: 1rem;
      font-family: inherit;
      resize: none;
    }
    

/* Email Text */
.email-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

.email-text a {
  font-weight: bold;
  color:#7EA7D2;
  text-decoration: none
}

.email-text a:hover {
  text-decoration: underline;
  font-weight: bold;
  
}

/* Contact Section */
.contact-section {
  padding: 108px 20px 300px;
  text-align: center;
  background-color: #f0e9d7;;
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background-color: white;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
  border-radius: 20px;
}

.contact-form button {
  padding: 8px 20px;
  border: none;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  font-family:"p22-bangersfield",sans-serif;

}

.contact-form button:hover {
  transform: scale(1.05);
}



.about-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.about-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#fff;
  max-width:100%;
  margin-top: -150px
}
.about-hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#7EA7D2
}
.about-hero-content h1 span {
  font-size:4rem;
  color:#7EA7D2;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 30px;
}

.photo-strip-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: transparent;
  margin:380px 0px 70px;
}

.photo-strip-scroller {
  display: flex;
  animation: scroll-strip 40s linear infinite;
  width: fit-content;
}

.photo-strip-scroller img {
  width: 250px;
  height: 350px;
  margin-right: 20px;
  object-fit: cover;
  border: 8px solid white; 
  flex-shrink: 0;
}


.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.defloral-hero-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: #f0e9d7;
  width: 100%;
  max-width: 100%;
  margin-top: 420px;
  text-align: center;
}
.defloral-hero-content h1 {
  line-height:1;
  font-size:4rem;
  color:#7EA7D2;
  white-space: nowrap;
  margin-bottom: 15px;
}

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}


.collab-img {
  height: 300px;
  width: auto;
  object-fit: contain;
}


.about-cloud {
  background-color:#F0E9D7;
  padding: 100px 20px 250px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.about-menu-cloud-img {
  top:0%;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:999;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}

.our-story-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.defloral-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;

}

.defloral-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;
}

.story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.story-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-block h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold
}



.story-block p {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.6;
  margin: 0px 0px 20px -55px ;
  color: #f9f9f9;
  width: 450px;
}

.story-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cloud-icon {
  width: 40px;
  height: auto;
  margin-top: 25px;
}

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 20px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 200px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-cloud-img {
  width: 120%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1.2rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 50px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  width: 50%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.offer-item img {
  width: 50%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;  /* ✅ this ensures perfect centering */
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;


}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.success-modal .modal-content {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  animation: zoomIn 0.3s ease-out forwards;
  max-width: 100%;
  width: 300px;
  position: relative;
}


.success-modal .modal-content button {
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.success-modal .modal-content button:hover {
  transform: scale(1.05);

}


.merch-section {
  background-color: #f5efdf;
  text-align: center;
  padding: 120px 20px 350px;
}

.merch-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 4rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.merch-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.merch-item {
  text-align: center;
}

.merch-item a {
  text-decoration: none;
}

.merch-item a:hover {
  text-decoration: none;
}

.merch-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.merch-box img {
  max-height: 110%;
  max-width: 110%;
  object-fit: contain;
}

.merch-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.merch-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.merch-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 0;
}

.product-detail {
  background-color: #f5efdf;
  padding: 200px 20px 350px;
  display: flex;
  justify-content: center;
  font-family: 'p22-bangersfield', sans-serif;
}

.product-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-detail .product-container {
  margin-left: auto;
  margin-right: auto;
}

.product-image img {
  width: 300px;
  height: auto;
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  margin-top:50px
}

.product-info {
  color: #7EA7D2;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: -20px;
}

.product-price {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #7EA7D2;
}

.product-quantity label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  background-color: white;
  overflow: hidden;
  height: 40px;
  padding: 0 10px;
  gap: 15px;
}

.qty-btn {
  background-color: white;
  border: none;
  color: #7EA7D2;
  font-size: 1.2rem;
  padding: 0 10px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
}

#quantity {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 1rem;
  color: #7EA7D2;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 30px;
}

.bouquet-item {
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}



.add-to-cart {
  background-color: #7EA7D2;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-family: 'p22-bangersfield', sans-serif;
  margin-top:20px
}

.product-image img {
  /* Existing styles above */
}

.add-to-cart:hover {
  transform: scale(1.05);
}



.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.2rem;
  max-width: 300px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.product-color-section label {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.product-color {
  font-family: 'Fredoka', sans-serif;
  padding: 8px 12px;
  border: 2px solid #7EA7D2;
  border-radius: 10px;
  background-color: #F0E9D7;
  color: #7EA7D2;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}

.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.color-btn {
  padding: 8px 20px;
  border: 2px solid #7EA7D2;
  background-color: white;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.color-btn.active {
  background-color: #7EA7D2;
  color: white;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  position: relative;
  z-index: 1;
  padding: 250px 100px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

/* Customer Form Styles for Checkout Page */
.customer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}



.customer-form input,
.customer-form select {
  width: 100%;
  max-width: 1000px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: "p22-bangersfield", sans-serif;
  outline: none;
  background-color: white;
  box-sizing: border-box;
  margin-bottom: 0;
}

.customer-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #7EA7D2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  cursor: pointer;
}

.customer-form .name-fields {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
}

.customer-form .name-fields input {
  flex: 1;
}




.checkout-item {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  gap: 1rem;
}
.checkout-item img {
  width: 120px;
  height: auto;
  border: 2px solid #7EA7D2;
  margin-right: 1rem;
}
.item-info {
  margin-top: 10px;
  flex: 1;
  width: 300px
}
.item-info h3 {
  margin: 0 0 .5rem;
  color: #7EA7D2;

}
.item-info .item-price {
  margin: 0 0 1rem;
  color: #7EA7D2;
 
}

.item-info p.item-color {
  margin-top: 40px;
  color: #7EA7D2;
  width: 250px
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

hr {
  border: none;
  height: 2px;
  background-color: #7EA7D2;

    width: 100%;
    margin: 20px 0;  /* gives spacing above and below */

}

.qty-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  padding: 0.25rem 0.75rem;
  gap: 0.75rem;
  height: 40px;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: auto;
}
.qty-controls button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #7EA7D2;
}
.qty-controls input {
  width: 1.5rem;
  text-align: center;
  border: none;
  font-weight: bold;
  color: #7EA7D2;
  background: transparent;
  font-size: 1rem;
}
.add-note {
  display: inline-block;
  margin-top: .5rem;
  color: #7EA7D2;
  text-decoration: none;
  font-size: .9rem;
}
.item-note {
  width: 100%;
  margin-top: .5rem;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

#noteTextArea {
  margin-top: 10px;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  border: 2px solid #7EA7D2;
  border-radius: 20px;
  padding: 12px 16px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  resize: none; /* 🚫 prevent resizing */
  color: #3d3d3d;
  box-sizing: border-box;
}
.order-summary {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #7EA7D2;
}
.order-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0; /* more vertical spacing */
  gap: 1rem; /* spacing between left and right */
}

.summary-line span:last-child {
  min-width: 80px;
  text-align: right;
}
.total-line {
  font-weight: bold;
  border-top: 1px solid #ccc;
  margin-top: .5rem;
}

.checkout .qty-controls {
  font-size: 1rem;
  gap: 0.5rem;
  padding: 0rem 0.5rem;
  margin-right:10px;
}

.checkout .qty-controls button {
  font-size: 1rem;
}

.checkout .qty-display {
  font-size: 1rem;
  color: #7EA7D2;
  width: 30px;
  text-align: center;

}

.item-controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-width: 160px;
  gap: 0.5rem;
  flex-grow: 1;
}

.item-total {
  font-weight: bold;
  color: #333333;
  min-width: 100px;
  text-align: right;
  margin-top: 10px;
}


/* === Pickup Method Select Styling === */
select.pickup-method {
  font-family: "p22-bangersfield", sans-serif;
  background-color: #7EA7D2;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 1.2rem;
  margin: 10px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Custom white down arrow SVG as background */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z' clip-rule='evenodd' /></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  box-shadow: none;
}




select.pickup-method {
  margin-bottom: 1.5rem;
}

#receiptUpload::-webkit-file-upload-button {
  color: black;
}

#receiptUpload::file-selector-button {
  color: black;
}

#receiptUpload {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 12px 20px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  width: 100%;
  max-width: 700px;
  border: none;
  border-radius: 25px;
  box-sizing: border-box;
  text-align-last: center;
  display: none;/* ensure the text aligns center in some browsers */
}

/* Style the file upload container */
.file-upload-center {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}



/* Style the custom file upload button */
.custom-file-upload {
  display: inline-block;
  padding: 8px 20px;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  border: none;
  margin-bottom: 10px;
}

.custom-file-upload:hover {
  transform: scale(1.05);
}

/* Style for when a file is selected */
.file-selected {
  background-color: #F7DA85;
  color: #7EA7D2;
}

.delivery-details {
  width: 100%;
}



  .customer-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-direction: row;
    font-family: "p22-bangersfield", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    width: auto;
}


/* === Checkout Confirmation Section === */
.checkout-confirmation {
  max-width: 700px;
  margin: 220px auto 80px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(126,167,210,0.10);
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  text-align: center;
  font-family: "p22-bangersfield", sans-serif;
  color: #7EA7D2;
}
.checkout-confirmation h1 {
  font-size: 2.3rem;
  color: #7EA7D2;
  margin-bottom: 0.3rem;
}
.checkout-confirmation p {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.checkout-confirmation h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #7EA7D2;
}
.confirmation-box {
  background: #F0E9D7;
  border-radius: 16px;
  padding: 1.5rem 1rem 1.5rem 1rem;
  margin-bottom: 2rem;
}
}

@media (min-width: 1457px) and (max-width: 1549px) {
  html, body {
    overflow-x: hidden !important;
  }

html {
  scroll-behavior:smooth;
  scrollbar-gutter: stable;
}
body {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"p22-bangersfield",sans-serif;
  font-weight:700;
  font-style:normal;
  background-color:#FFFFFF;
  color:#3d3d3d;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.sidebar-open,
body.cart-open {
  height: 100vh;
  overflow: hidden;

}

.nav-bar {
 
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:128px;
  z-index:9999;
  overflow:hidden;
  transition:transform 0.3s ease;
}
.nav-bar.hide {
  transform:translateY(-100%);
}
.nav-cloud-bg {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:128px;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}


  
.nav-container {
  color:#7EA7D2;
  width:100%;
  max-width:1380px;
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  position:relative;
  z-index:1;
}


.logo {
  top:15px;
  height:100px;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
}
.nav-icon {
  width:28px;
  height:28px;
  cursor:pointer;
  color:#7EA7D2;
  z-index:3;
}
.nav-icon.left {
  cursor: pointer;
  position: relative;
  z-index: 999; 
  top:28px;
   left:-42px
}
.nav-icon.right {
  position: relative;
  width:25px;
  height:25px;
  top:28px;
  left:40px
}

.sidebar.active {
  transform: translateX(0);
  opacity: 1; 
}
.cart-sidebar.open {
  transform: translateX(0);
  opacity: 1;
}
.sidebar-overlay, .cart-overlay {
  transition: opacity 0.4s ease;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  overflow-y: hidden;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  text-align: center;
  opacity: 0; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar-header {
  background-color: #7EA7D2;
  padding: 60px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.sidebar-nav {
  padding: 40px 20px;
  flex: 1;


}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px
}
.sidebar-nav li {
  margin-bottom: 40px;
}
.sidebar-nav a {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  color: #7EA7D2;
  transition: color 0.3s;
}
.sidebar-nav a:hover {
  color: #F7DA85;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 888; 
  opacity: 0;
  visibility: hidden;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
    z-index: 10000; /* make sure it covers nav-bar */
  }

  .sidebar.active {
    z-index: 10001; /* Always above the overlay */
  }

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.social-links a {
  color: #7EA7D2;
  text-decoration: none;
}

.social-links a:hover .social-icon {
  transform: scale(1.1);
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0; 
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar input[type="number"] {
  font-size: 1.2rem; /* or larger */
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
}


.cart-header {
  background-color: #7EA7D2;
  padding: 20px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.cart-header h2 {
  margin: 0;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.close-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}

.cart-content {
  flex-grow: 1;
  padding: 30px;
  text-align: center;
}

.empty-cart-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.go-shop-btn {
  display: inline-block;
  color: #7EA7D2;
  text-decoration: underline;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Cart Footer */
.cart-footer {
  padding: 20px;
  background-color: #7EA7D2;
  color: white;
  text-align: center;
}

.cart-footer .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.checkout-btn {
  background: white;
  font-family:"p22-bangersfield",sans-serif;
  color: #7EA7D2;
  border: none;
  font-weight: bold;
  padding: 10px 0px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  width: 100%; 
  margin: 0 auto; 
  display: block; 
  text-decoration: none;
}

.checkout-page-btn {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 50px; /* Adjust this value as needed */
  font-size: 1.2rem; /* Optional: improves text visibility */
  background: #7EA7D2;
  font-family: "p22-bangersfield", sans-serif;
  color: #FFFFFF;
  border: none;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  margin: 5px auto 0;
  text-decoration: none;
}
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.cart-sidebar.open {
  /* 🔼 ADD THIS: */
  z-index: 10001; /* 🆙 above overlay */
}

.hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
}
.hero-img {
  width:100%;
  height:auto;
  display:block;
  position:relative;
  z-index:2;
  top:-80px
}
.hero-content {
  position:absolute;
  top:17%;
  left:50%;
  transform:translate(-50%,-40%);
  z-index:4;
  color:#fff;
  max-width:100%;
}
.hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#F0E9D7
}
.hero-content h1 span {
  font-size:4rem;
  color:#F0E9D7;
}
.button-beige {
  font-size:1rem;
  background-color:#F0E9D7;
  color:#7EA7D2;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration:none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}



.button-beige:hover {
  transform: scale(1.05);
}

/* Navigation Menu Section */
/* ======================= */
.navigation-menu {
  background-color:#F0E9D7;
  overflow:visible;
  margin-bottom:-100px
}
.menu-cloud-img {
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:0;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}
.cloud-buttons {
  padding:0;
  background-size:cover;
  padding:0px 20px 140px;
  text-align:center;
  position:relative;
  overflow:hidden;
  z-index:2;
  margin-top:-200px;
}
.cloud-buttons > * {
  position:relative;
  z-index:1;
}
.cloud {
  display:inline-block;
  font-weight:bold;
  text-decoration:none;
  transition:all 0.3s ease;
  position:absolute;
}
.cloud:hover {
  transform:scale(1.05);
  filter:drop-shadow(0 8px 14px rgba(0,0,0,0.25));
  z-index:10;
}
.cloud img {
  width:100px;
  /* or your preferred size */
  height:auto;
  display:block;
}
.cloud span {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:2rem;
  color:#7EA7D2;
  pointer-events:none;
 
}

.delay1 {
  top:20%;
  left:15%;
}
.delay2 {
  top:20%;
  left:65%;
}
.delay3 {
  top:35%;
  left:40%;
}
.delay4 {
  top:50%;
  left:15%;
}
.delay5 {
  top:50%;
  left:65%;
}
.delay1 img,.delay2 img,.delay3 img,.delay4 img,.delay5 img {
  width:300px;
  height:auto;
}
.delay2 span {
  transform:translate(-50%,-30%);
}
.delay4 span {
  transform:translate(-50%,-30%);
}
.delay5 span {
  transform:translate(-50%,-15%);
}

.instagram {
  position:relative;
  text-align:center;
  width:100%
  max-width:1000px;
  z-index:1;
  margin:0 auto;
  margin-bottom:100px;
  background-color: #F0E9D7;
  padding-bottom: 220px;
  padding-top: 30px
  
}
.instagram h2 {
  color:#7EA7D2;
  font-size:3rem;
  margin-bottom:30px;
}
/* Wrapper to hold the iframe and custom buttons */
.instagram-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Base style for buttons */
.ig-button {
  position: absolute;
  z-index: 100;
  pointer-events: none; /* Important: allow click-through */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Follow Button container */
.follow-button {
  top: 1rem;
  right: 6rem;
  width: 120px; /* Your cloud size */
  height: 60px;
  position: absolute;
}

/* Cloud image */
.follow-img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  position: absolute;
  top: 50;
  left: 20;
  z-index: 1; /* Cloud behind */
  pointer-events: none;
}

/* Follow text */
.follow-text {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  color: #7EA7D2;
  z-index: 2; /* Text in front */
  pointer-events: none;
  margin-top: 8px;
}

/* See More Button */
.see-more-button {
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7EA7D2;
  color: #fff;
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  pointer-events: none;
}

.see-more-button span {
  pointer-events: none;
}
.lightwidget-widget {
  z-index: 1;
  width: 800px;
  /* 👉 control how small you want */
  height:500px;
  /* 👉 IMPORTANT:control the height! */
  border:0;
  position: relative
  
}


.best-seller {
  background-color: #f5efdf;
  padding: 80px 20px;
  text-align: center;
}

.best-seller-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size:3rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.bouquet-section {
  text-align: center;
  padding: 120px 100px 300px;
  background-color: #F0E9D7;
}

.bouquet-title {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  font-family: 'p22-bangersfield', sans-serif;
}

.bouquet-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

}

.bouquet-item {
  text-align: center;
  width: 220px; /* fixed width */
  flex-shrink: 0;

}

.bouquet-card {
  width: 230px;
  height: 230px;
  border: 4px solid #7EA7D2;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.3s ease;  /* 🧠 smooth animation */
}

.bouquet-card:hover {
  transform: scale(1.05);           /* 💥 scale up slightly */
}

.bouquet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

.bouquet-label {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
  color: #7EA7D2;
  margin-top: 15px;

}

.view-all-card {
  width: 230px;
  height: 230px;
  background-color: #7EA7D2;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.view-all-card:hover {
  transform: scale(1.05);
}

.footer {
  position:relative;
  background-color:transparent;
  padding-top:250px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -320px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:30px;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:1rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:50px;
  max-width:1200px;
  /* Add this */
  margin:0 auto;
  /* Center it */
  padding:0 20px;
  /* (optional) add some side padding */
}
.footer-bottom {
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  /* Push left-center-right apart */
  align-items:center;
  flex-wrap:wrap;
  max-width:1100px;
  margin:40px auto 0 auto;
  /* Center the entire footer-bottom */
  padding:0 20px;
  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  /* Make them equal width */
  text-align:center;
  /* Center text inside each section */
}
/* Special for left and right */
.footer-left {
  text-align:left;
}
.footer-right {
  text-align:right;
}


.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.button-blue:hover {
  transform: scale(1.05);
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 80px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 4rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 70%;
    height: auto;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  

    .cafe-reserve {
      background-color: #f6eedb;
      padding: 100px 20px 80px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .reserve-title {
      font-family: 'p22-bangersfield', sans-serif;
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .reserve-subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }
    
    .reserve-img {
      max-width: 550px;
      height: auto;
      margin: 0 auto 40px;
    }
    
    .reserve-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
    }

    .reserve-form input[type="time"] {
      padding: 10px 15px;
  appearance: auto;
      -webkit-appearance: none;
      font-family: "p22-bangersfield", sans-serif;
  color: #333;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      box-sizing: border-box;
    }
    
    .reserve-form input[type="time"],
    .reserve-form input[type="date"],
    .reserve-form input[type="number"],
    .reserve-form input[type="text"] {
      height: 44px;
    }

    .reserve-form select {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
      background-color: white;
      color: #333333;
      height: 44px;
      text-align: center;
      
      /* Hide default arrow and add custom */
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 18px 18px;
    }
  
    .contact-section h1 {
  
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }

   
    
    .contact-img {
      width: 100%;
      max-width: 700px; /* or try 700px for even bigger */
      height: auto;
      display: block;
      margin: 30px auto 0;
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 300px;
      margin: 0 auto;
    }
    
    .contact-form input,
    .contact-form textarea {
      width: 50%;
      padding: 12px;
      border: 2px solid #7EA7D2;
      border-radius: 20px;
      font-size: 1rem;
      font-family: inherit;
      resize: none;
    }
    

/* Email Text */
.email-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

.email-text a {
  font-weight: bold;
  color:#7EA7D2;
  text-decoration: none
}

.email-text a:hover {
  text-decoration: underline;
  font-weight: bold;
  
}

/* Contact Section */
.contact-section {
  padding: 108px 20px 300px;
  text-align: center;
  background-color: #f0e9d7;;
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background-color: white;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
  border-radius: 20px;
}

.contact-form button {
  padding: 8px 20px;
  border: none;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  font-family:"p22-bangersfield",sans-serif;

}

.contact-form button:hover {
  transform: scale(1.05);
}



.about-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.about-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#fff;
  max-width:100%;
  margin-top: -150px
}
.about-hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#7EA7D2
}
.about-hero-content h1 span {
  font-size:4rem;
  color:#7EA7D2;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 30px;
}

.photo-strip-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: transparent;
  margin:380px 0px 70px;
}

.photo-strip-scroller {
  display: flex;
  animation: scroll-strip 40s linear infinite;
  width: fit-content;
}

.photo-strip-scroller img {
  width: 250px;
  height: 350px;
  margin-right: 20px;
  object-fit: cover;
  border: 8px solid white; 
  flex-shrink: 0;
}


.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.defloral-hero-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: #f0e9d7;
  width: 100%;
  max-width: 100%;
  margin-top: 420px;
  text-align: center;
}
.defloral-hero-content h1 {
  line-height:1;
  font-size:4rem;
  color:#7EA7D2;
  white-space: nowrap;
  margin-bottom: 15px;
}

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}


.collab-img {
  height: 300px;
  width: auto;
  object-fit: contain;
}


.about-cloud {
  background-color:#F0E9D7;
  padding: 100px 20px 250px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.about-menu-cloud-img {
  top:0%;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:999;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}

.our-story-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.defloral-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;

}

.defloral-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;
}

.story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.story-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-block h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold
}



.story-block p {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.6;
  margin: 0px 0px 20px -55px ;
  color: #f9f9f9;
  width: 450px;
}

.story-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cloud-icon {
  width: 40px;
  height: auto;
  margin-top: 25px;
}

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 20px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 200px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-cloud-img {
  width: 120%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1.2rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 50px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  width: 50%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.offer-item img {
  width: 50%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;  /* ✅ this ensures perfect centering */
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;


}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.success-modal .modal-content {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  animation: zoomIn 0.3s ease-out forwards;
  max-width: 100%;
  width: 300px;
  position: relative;
}


.success-modal .modal-content button {
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.success-modal .modal-content button:hover {
  transform: scale(1.05);

}


.merch-section {
  background-color: #f5efdf;
  text-align: center;
  padding: 120px 20px 350px;
}

.merch-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 4rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.merch-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.merch-item {
  text-align: center;
}

.merch-item a {
  text-decoration: none;
}

.merch-item a:hover {
  text-decoration: none;
}

.merch-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.merch-box img {
  max-height: 110%;
  max-width: 110%;
  object-fit: contain;
}

.merch-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.merch-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.merch-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 0;
}

.product-detail {
  background-color: #f5efdf;
  padding: 200px 20px 350px;
  display: flex;
  justify-content: center;
  font-family: 'p22-bangersfield', sans-serif;
}

.product-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-detail .product-container {
  margin-left: auto;
  margin-right: auto;
}

.product-image img {
  width: 300px;
  height: auto;
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  margin-top:50px
}

.product-info {
  color: #7EA7D2;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: -20px;
}

.product-price {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #7EA7D2;
}

.product-quantity label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  background-color: white;
  overflow: hidden;
  height: 40px;
  padding: 0 10px;
  gap: 15px;
}

.qty-btn {
  background-color: white;
  border: none;
  color: #7EA7D2;
  font-size: 1.2rem;
  padding: 0 10px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
}

#quantity {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 1rem;
  color: #7EA7D2;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 30px;
}

.bouquet-item {
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}



.add-to-cart {
  background-color: #7EA7D2;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-family: 'p22-bangersfield', sans-serif;
  margin-top:20px
}

.product-image img {
  /* Existing styles above */
}

.add-to-cart:hover {
  transform: scale(1.05);
}



.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.2rem;
  max-width: 300px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.product-color-section label {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.product-color {
  font-family: 'Fredoka', sans-serif;
  padding: 8px 12px;
  border: 2px solid #7EA7D2;
  border-radius: 10px;
  background-color: #F0E9D7;
  color: #7EA7D2;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}

.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.color-btn {
  padding: 8px 20px;
  border: 2px solid #7EA7D2;
  background-color: white;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.color-btn.active {
  background-color: #7EA7D2;
  color: white;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  position: relative;
  z-index: 1;
  padding: 250px 100px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

/* Customer Form Styles for Checkout Page */
.customer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}



.customer-form input,
.customer-form select {
  width: 100%;
  max-width: 1000px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: "p22-bangersfield", sans-serif;
  outline: none;
  background-color: white;
  box-sizing: border-box;
  margin-bottom: 0;
}

.customer-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #7EA7D2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  cursor: pointer;
}

.customer-form .name-fields {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
}

.customer-form .name-fields input {
  flex: 1;
}




.checkout-item {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  gap: 1rem;
}
.checkout-item img {
  width: 120px;
  height: auto;
  border: 2px solid #7EA7D2;
  margin-right: 1rem;
}
.item-info {
  margin-top: 10px;
  flex: 1;
  width: 300px
}
.item-info h3 {
  margin: 0 0 .5rem;
  color: #7EA7D2;

}
.item-info .item-price {
  margin: 0 0 1rem;
  color: #7EA7D2;
 
}

.item-info p.item-color {
  margin-top: 40px;
  color: #7EA7D2;
  width: 250px
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

hr {
  border: none;
  height: 2px;
  background-color: #7EA7D2;

    width: 100%;
    margin: 20px 0;  /* gives spacing above and below */

}

.qty-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  padding: 0.25rem 0.75rem;
  gap: 0.75rem;
  height: 40px;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: auto;
}
.qty-controls button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #7EA7D2;
}
.qty-controls input {
  width: 1.5rem;
  text-align: center;
  border: none;
  font-weight: bold;
  color: #7EA7D2;
  background: transparent;
  font-size: 1rem;
}
.add-note {
  display: inline-block;
  margin-top: .5rem;
  color: #7EA7D2;
  text-decoration: none;
  font-size: .9rem;
}
.item-note {
  width: 100%;
  margin-top: .5rem;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

#noteTextArea {
  margin-top: 10px;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  border: 2px solid #7EA7D2;
  border-radius: 20px;
  padding: 12px 16px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  resize: none; /* 🚫 prevent resizing */
  color: #3d3d3d;
  box-sizing: border-box;
}
.order-summary {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #7EA7D2;
}
.order-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0; /* more vertical spacing */
  gap: 1rem; /* spacing between left and right */
}

.summary-line span:last-child {
  min-width: 80px;
  text-align: right;
}
.total-line {
  font-weight: bold;
  border-top: 1px solid #ccc;
  margin-top: .5rem;
}

.checkout .qty-controls {
  font-size: 1rem;
  gap: 0.5rem;
  padding: 0rem 0.5rem;
  margin-right:10px;
}

.checkout .qty-controls button {
  font-size: 1rem;
}

.checkout .qty-display {
  font-size: 1rem;
  color: #7EA7D2;
  width: 30px;
  text-align: center;

}

.item-controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-width: 160px;
  gap: 0.5rem;
  flex-grow: 1;
}

.item-total {
  font-weight: bold;
  color: #333333;
  min-width: 100px;
  text-align: right;
  margin-top: 10px;
}


/* === Pickup Method Select Styling === */
select.pickup-method {
  font-family: "p22-bangersfield", sans-serif;
  background-color: #7EA7D2;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 1.2rem;
  margin: 10px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Custom white down arrow SVG as background */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z' clip-rule='evenodd' /></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  box-shadow: none;
}




select.pickup-method {
  margin-bottom: 1.5rem;
}

#receiptUpload::-webkit-file-upload-button {
  color: black;
}

#receiptUpload::file-selector-button {
  color: black;
}

#receiptUpload {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 12px 20px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  width: 100%;
  max-width: 700px;
  border: none;
  border-radius: 25px;
  box-sizing: border-box;
  text-align-last: center;
  display: none;/* ensure the text aligns center in some browsers */
}

/* Style the file upload container */
.file-upload-center {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}



/* Style the custom file upload button */
.custom-file-upload {
  display: inline-block;
  padding: 8px 20px;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  border: none;
  margin-bottom: 10px;
}

.custom-file-upload:hover {
  transform: scale(1.05);
}

/* Style for when a file is selected */
.file-selected {
  background-color: #F7DA85;
  color: #7EA7D2;
}

.delivery-details {
  width: 100%;
}



  .customer-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-direction: row;
    font-family: "p22-bangersfield", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    width: auto;
}


/* === Checkout Confirmation Section === */
.checkout-confirmation {
  max-width: 700px;
  margin: 220px auto 80px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(126,167,210,0.10);
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  text-align: center;
  font-family: "p22-bangersfield", sans-serif;
  color: #7EA7D2;
}
.checkout-confirmation h1 {
  font-size: 2.3rem;
  color: #7EA7D2;
  margin-bottom: 0.3rem;
}
.checkout-confirmation p {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.checkout-confirmation h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #7EA7D2;
}
.confirmation-box {
  background: #F0E9D7;
  border-radius: 16px;
  padding: 1.5rem 1rem 1.5rem 1rem;
  margin-bottom: 2rem;
}
}
  


  
@media (min-width: 1550px) and (max-width:1919px) {

  html, body {
    overflow-x: hidden !important;
  }

  .nav-bar {
    position: fixed;
    height: 130px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:130px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    height: 120px;
    z-index: 2;
  }

  .nav-icon {
  width:30px;
  height:30px;
  cursor:pointer;
  color:#7EA7D2;
  z-index:3;
}

  .nav-icon.left {
    position: absolute;
    left: -35px;
    top: 30px;
    z-index: 3;
  }
  
  .nav-icon.right {
    position: absolute;
    right: -30px;
    top: 30px;
    z-index: 3;
  }


  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 1500px;
  display: block;
  position: relative;
  z-index: 2;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:16%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size:4.5rem;
    line-height: 1;
   margin-bottom: 20px; /* instead of 25px */

    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 5rem;


  }


  .button-beige {

    font-size:1.2rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 8px 20px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  



  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 820px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 60px;
    width:900px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:4rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:3.5rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 430px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:430px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 200px;
    height: 300px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
    top:-300px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    padding-bottom: 100px;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:900px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 100px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:40px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;

    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  


  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    z-index: 999
  }
  
  .story-atc {
    margin-left:-200px;
   margin-top:-00px;
    width: 800px;
    height: auto;
  
  }
  
  
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:150px;
    margin-left: 40px;
  
  
  }
  
  .story-text h1 {
    font-size: 3rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 900px
  }
  
  
  
  .story-block p {
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 0px -45px ;
    color: #FFFFFF;
    width: 500px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 30px;
    height: auto;
    margin-top: 18px;
  }
  
 
  

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 100px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
 
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
 
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}


.about-cloud-img {
  width: 110%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1.2rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 10px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  flex-wrap: nowrap;
  width: 40%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}



.offer-item img {
  width: 90%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
  margin-bottom: 100px;
}

  
  .delay1 {
    position: absolute !important;
    top: 50% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 50% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 140% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top:250% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top:250% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 30px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 450px;
  }

  .cloud span {
    font-size: 2rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 /* Follow text */
.follow-text {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1.2rem;
  color: #7EA7D2;
  z-index: 2; /* Text in front */
  pointer-events: none;
  margin-top: 8px;
}


  /* Base style for buttons */
.ig-button {
  position: absolute;
  z-index: 100;
  pointer-events: none; /* Important: allow click-through */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Follow Button container */
.follow-button {
  top: 1rem;
  right: 6rem;
  width: 120px; /* Your cloud size */
  height: 60px;
  position: absolute;
}

/* Cloud image */
.follow-img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  position: absolute;
  top: 50;
  left: 20;
  z-index: 1; /* Cloud behind */
  pointer-events: none;
}
  .see-more-button {
    font-size: 1.2rem;
    padding: 8px 20px;
  }



.button-blue {
  font-size: 1.2rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
 padding: 100px 40px 270px
  }

  .instagram h2 {
    font-size: 4rem;
  }

  .lightwidget-widget {
    width: 100%;
  
 
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 90px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 8rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 4.5rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 5rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 90%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1.2rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 150px 20px 150px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 4rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 600px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 180px 40px 400px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 250px 35px 400px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -30px;
    margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


.footer {
  position:relative;
  background-color:transparent;
  padding-top:300px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -400px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:1.5rem;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:1.1rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:50px;
  max-width:1920px;
  /* Add this */
  margin:0 auto;
  /* Center it */

  /* (optional) add some side padding */
}
.footer-bottom {
  font-size:1rem;
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  max-width:100%;
  text-align: center;
  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  text-align:center;

}

.footer-left p {
  width:400px;
  text-align:center;
margin-left: 50px;
}
.footer-right p {
width:400px;
  text-align:center;
  margin-left: 10px;
}


.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
margin-left: 200px;
  margin-right: 100px;
  z-index: 999
}

.defloral-atc {
    margin-left:-280px;
   margin-top:30px;
    width: 700px;
    height: auto;
  
  }



  
  .defloral-story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:200px;
    margin-left: -20px;
  
  
  }

.defloral-story-text h1 {
  margin-top:50px;
  margin-bottom: 0px;
  font-size: 3rem;

}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 770px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    width: 100%;
    color: #7EA7D2;
    margin: 300px auto 15px auto;
    text-align: center;
    white-space: normal;
    font-size: 3.5rem;
  }

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 60px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

}

.collab-img {
  height: 250px;
  width: auto;
  object-fit: contain;
}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 180px 20px 0px;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 150px 100px 0px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 3.5rem;
  color: #7EA7D2;
  width:1000px;
  margin: 0 auto 50px auto;
}
.bouquet-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Adjust this to control spacing between items */
  text-align: center;
  padding: 0 300px;
}



.bouquet-item {
  margin-bottom: 0px;
  margin-left: auto;
    margin-right: auto;
  text-align: center;
  max-width: 200px;
  width: 100%;
  box-sizing: border-box;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}


.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.2rem;
  max-width: 300px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 150px 20px 400px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 3.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}


.subtitle {

  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
   font-size: 1.2rem !important;
}


.contact-img {
  width: 100%;
  max-width: 700px; /* or try 700px for even bigger */
  height: auto;
  display: block;
  margin: 30px auto 0;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 300px 20px 400px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }

  /* Email Text */
.email-text {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #333;
}

.email-text a {
  font-weight: bold;
  color:#7EA7D2;
  text-decoration: none
}

.email-text a:hover {
  text-decoration: underline;
  font-weight: bold;
  
}
}
  
  
@media (min-width: 1920px) and (max-width:2560px) {

  html, body {
    overflow-x: hidden !important;
  }

  .nav-bar {
    position: fixed;
    height: 160px;
  }
  
  .nav-container {
    height: 90px;
    padding: 0 20px;
  }
  .nav-cloud-bg {
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    height:160px;
    z-index:0;
    pointer-events:none;
    
  }

  .sidebar {
    width: 428px;
  }

  .cart-sidebar {
    width: 428px;
  
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    height: 140px;
    z-index: 2;
  }

  .nav-icon {
  width:30px;
  height:30px;
  cursor:pointer;
  color:#7EA7D2;
  z-index:3;
}

  .nav-icon.left {
    position: absolute;
    left: -200px;
    top: 40px;
    z-index: 3;
  }
  
  .nav-icon.right {
    position: absolute;
    right: -200px;
    top: 40px;
    z-index: 3;
  }


  .hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
      width: 100vw;
      margin: 0;
      padding: 0;
  
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }
 .hero-img {
  width: auto;
  height: 1500px;
  display: block;
  position: relative;
  z-index: 2;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
  .hero-content {
    position:absolute;
    top:16%;
    left:50%;
    transform:translate(-50%,-40%);
    z-index:4;
    color:#fff;
    max-width:100%;
  }
  .hero-content h1 {
    white-space: nowrap;
    font-size:4.5rem;
    line-height: 1;
   margin-bottom: 20px; /* instead of 25px */

    }

  
  .hero-content h1 span {
    display: inline;
    font-size: 5rem;


  }


  .button-beige {

    font-size:1.2rem;
    background-color:#F0E9D7;
    color:#7EA7D2;
    padding: 8px 20px;
    border-radius:30px;
    text-decoration:none;
    display: inline-block; /* 🧠 important for transform */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  



  .about-hero {
    position:relative;
    text-align:center;
    background-color:#F0E9D7;
    overflow:hidden;
    margin-top:0;
    height: 820px;
    z-index: 1;
  }
  
  .about-hero-content {
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    color:#fff;
    max-width:100%;
    margin-top: 60px;
    width:900px
  }
  .about-hero-content h1 {
    margin-bottom:12px;
    line-height:1;
    font-size:4rem;
    color:#7EA7D2
  }
  .about-hero-content h1 span {
    font-size:3.5rem;
    color:#7EA7D2;

  }
  
  .about-hero-content p {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 430px


  }
  
  .photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    margin:430px 0px 10px;
  }
  
  .photo-strip-scroller {
    display: flex;
    animation: scroll-strip 40s linear infinite;
    width: fit-content;
  }
  
  .photo-strip-scroller img {
    width: 180px;
    height: 220px;
    margin-right: 20px;
    object-fit: cover;
    border: 5px solid white; 
    flex-shrink: 0;
  }
  

  .menu-cloud-img {
    top:-300px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    padding-bottom: 100px;
  
    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }

  .navigation-menu {
    background-color:#F0E9D7;
    overflow:visible;
    padding-bottom:900px
  }

  .about-cloud {
    background-color:#F0E9D7;
    padding: 100px 20px 200px;
    position: relative;
    overflow: visible;
    z-index: 9;
  }
  
  .about-menu-cloud-img {
    top:-100px;
    left:50%;
    transform:translateX(-50%);
    width: 100vw;
    max-width: 100vw;

    height:auto;
    z-index:1;
    pointer-events:none;
    object-fit:cover;
    position:absolute;
  }
  
  .our-story-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  


  
  .story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    z-index: 999
  }
  
  .story-atc {
    margin-left:-200px;
   margin-top:-00px;
    width: 800px;
    height: auto;
  
  }
  
  
  
  .story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:150px;
    margin-left: 40px;
  
  
  }
  
  .story-text h1 {
    font-size: 3rem;
    margin-bottom: 0px;
  }
  
  .story-block h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 900px
  }
  
  
  
  .story-block p {
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.6;
    margin: 0px 0px 0px -45px ;
    color: #FFFFFF;
    width: 500px;
  }
  
  .story-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cloud-icon {
    width: 30px;
    height: auto;
    margin-top: 28px;
  }
  
 
  

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 100px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
 
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
 
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}


.about-cloud-img {
  width: 110%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1.2rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 10px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  flex-wrap: nowrap;
  width: 40%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}



.offer-item img {
  width: 90%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
  margin-bottom: 100px;
}

  
  .delay1 {
    position: absolute !important;
    top: 50% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay2 {
    position: absolute !important;
    top: 50% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  } 
  
  .delay3 {
    position: absolute !important;
    top: 140% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay4 {
    position: absolute !important;
    top:250% !important;
    left: 25% !important;
    transform: translate(-50%, -50%) !important;
  }
  .delay5 {
    position: absolute !important;
    top:250% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
  }


  .cloud-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 190px 0 30px;
    gap: 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: visible;
  }

  .cloud {
    position: absolute;
    transform: translate(-50%, -50%);
  }


  .cloud img {
    width: 450px;
  }

  .cloud span {
    font-size: 2rem;
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #7EA7D2;
    border-radius: 999px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    appearance: none;
  }

 /* Follow text */
.follow-text {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1.2rem;
  color: #7EA7D2;
  z-index: 2; /* Text in front */
  pointer-events: none;
  margin-top: 8px;
}


  /* Base style for buttons */
.ig-button {
  position: absolute;
  z-index: 100;
  pointer-events: none; /* Important: allow click-through */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Follow Button container */
.follow-button {
  top: 1rem;
  right: 6rem;
  width: 120px; /* Your cloud size */
  height: 60px;
  position: absolute;
}

/* Cloud image */
.follow-img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  position: absolute;
  top: 50;
  left: 20;
  z-index: 1; /* Cloud behind */
  pointer-events: none;
}
  .see-more-button {
    font-size: 1.2rem;
    padding: 8px 20px;

  }



.button-blue {
  font-size: 1.2rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .instagram {
 padding: 100px 40px 300px
  }

  .instagram h2 {
    font-size: 4rem;
  }

  .lightwidget-widget {
    width: 100%;
  
 
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 90px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;

    
  }
  
  .menu-title {
    text-align: center;
    margin-top: 8rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 4.5rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 5rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 90%;
    height: auto;
    margin: 0.5rem 0 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1.2rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  



  .cafe-reserve {
    background-color: #f6eedb;
    padding: 150px 20px 150px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .reserve-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 4rem;
    color: #7EA7D2;
    margin-bottom: 10px;
  }
  
  .reserve-subtitle {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .reserve-img {
    max-width: 600px;
    height: auto;
    margin: 0 auto 40px;
  }

  .reserve-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
  }

  .reserve-form input[type="time"] {
    padding: 10px 15px;
appearance: auto;
    -webkit-appearance: none;
    font-family: "p22-bangersfield", sans-serif;
color: #333;
  }
  
  .reserve-form input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    box-sizing: border-box;
  }
  
  .reserve-form input[type="time"],
  .reserve-form input[type="date"],
  .reserve-form input[type="number"],
  .reserve-form input[type="text"] {
    height: 44px;
  }

  .reserve-form select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #7EA7D2;
    font-size: 1rem;
    outline: none;
    width: 150px;
    font-family: "p22-bangersfield", sans-serif;
    background-color: white;
    color: #333333;
    height: 44px;
    text-align: center;
    
    /* Hide default arrow and add custom */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }



  .merch-section {
    background-color: #f5efdf;
    text-align: center;
    padding: 180px 40px 400px;
  }
  
  .merch-title {
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 3.5rem;
    color: #7EA7D2;
    margin-bottom: 40px;
  }
  
  .merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  
  .merch-item a {
    text-decoration: none;
  }
  
  .merch-item a:hover {
    text-decoration: none;
  }
  
  .merch-box {
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    height: 220px;
    width:220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
  }
  
  .merch-box img {
    max-height: 110%;
    max-width: 110%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  .merch-box.coming-soon {
    background-color: #f4f4f4;
    color: #7EA7D2;
    font-family: 'p22-bangersfield', sans-serif;
    font-size: 1.2rem;
  }
  
  .merch-name {
    font-family: 'p22-bangersfield', sans-serif;
    color: #7EA7D2;
    margin: 12px 0 0;
  }
  
  .merch-price {
    font-weight: bold;
    color: #7EA7D2;
    margin: 4px 0 0;
  }

  .product-detail {
    background-color: #f5efdf;
    padding: 250px 35px 400px;
    display: flex;
    justify-content: center;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  .product-container {
    
    gap: 60px;
   
    max-width: 1000px;
  
  }
  
  .product-image img {
    width: 350px;
    height: auto;
    border: 3px solid #7EA7D2;
    border-radius: 4px;
    margin-top:50px;
    display: flex;
    justify-content: center;
    margin-bottom:20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .product-info {

    margin-top: -30px;
    margin-left:10px;
    color: #7EA7D2;
  }
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7EA7D2;
  }
  
  .product-quantity label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    background-color: white;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .qty-btn {
    background-color: white;
    border: none;
    color: #7EA7D2;
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
  }
  
  #quantity {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    color: #7EA7D2;
    font-weight: bold;
    font-family: 'p22-bangersfield', sans-serif;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  


/* Checkout Confirmation */
.checkout {
  background-color: #f3ebd8;
  padding: 40px 20px;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}

.checkout-confirmation h1 {
  font-size: 36px;
  color: #5d84c0;
  margin-bottom: 10px;
}

.checkout-confirmation p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.checkout-confirmation h3 {
  font-size: 18px;
  color: #5d84c0;
  margin-bottom: 30px;
}

.confirmation-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
  border: 2px solid #c4d1e0;
}

.confirm-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.confirm-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
  border: 1px solid #c4d1e0;
  border-radius: 10px;
}

.confirm-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}

.confirm-summary strong {
  font-weight: 700;
}

.confirm-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.confirm-footer h4 {
  color: #5d84c0;
  margin-bottom: 5px;
}

.confirm-footer p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


.footer {
  position:relative;
  background-color:transparent;
  padding-top:300px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -400px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:1.5rem;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:1.1rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:50px;
  max-width:1920px;
  /* Add this */
  margin:0 auto;
  /* Center it */

  /* (optional) add some side padding */
}
.footer-bottom {
  font-size:1rem;
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  max-width:100%;
  text-align: center;
  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  text-align:center;

}

.footer-left p {
  width:400px;
  text-align:center;
margin-left: 50px;
}
.footer-right p {
width:400px;
  text-align:center;
  margin-left: 10px;
}


.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
margin-left: 200px;
  margin-right: 100px;
  z-index: 999
}

.defloral-atc {
    margin-left:-280px;
   margin-top:30px;
    width: 700px;
    height: auto;
  
  }



  
  .defloral-story-text {
    flex: 2;
    color: #fff;
    z-index: 999;
    margin-top:200px;
    margin-left: -20px;
  
  
  }

.defloral-story-text h1 {
  margin-top:50px;
  margin-bottom: 0px;
  font-size: 3rem;

}

.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 770px;
  z-index: 1;
}

.defloral-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#f0e9d7;
  max-width:100%;
  margin-top: 250px;
}
  .defloral-hero-content h1 {
    line-height: 1.2;
    width: 100%;
    color: #7EA7D2;
    margin: 300px auto 15px auto;
    text-align: center;
    white-space: normal;
    font-size: 3.5rem;
  }

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 60px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

}

.collab-img {
  height: 250px;
  width: auto;
  object-fit: contain;
}


.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 180px 20px 0px;
}

.bouquet-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 250px 100px 600px;
}

.bouquet-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 3.5rem;
  color: #7EA7D2;
  width:1000px;
  margin: 0 auto 50px auto;
}
.bouquet-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Adjust this to control spacing between items */
  text-align: center;
  padding: 0 300px;
}



.bouquet-item {
  margin-bottom: 0px;
  margin-left: auto;
    margin-right: auto;
  text-align: center;
  max-width: 200px;
  width: 100%;
  box-sizing: border-box;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}


.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.2rem;
  max-width: 300px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 150px 20px 400px;
  text-align: center;
  background-color: #f0e9d7;;
}


.contact-section h1 {
  
  font-size: 3.5rem;
  color: #7EA7D2;
  margin-bottom: 10px;
}


.subtitle {

  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
   font-size: 1.2rem !important;
}


.contact-img {
  width: 100%;
  max-width: 700px; /* or try 700px for even bigger */
  height: auto;
  display: block;
  margin: 30px auto 0;
}

.subtitle {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  font-family: 'p22-bangersfield', sans-serif;
  position: relative;
  z-index: 1;
  padding: 300px 20px 400px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

.item-info h3 {
  font-size: 1rem;
text-align: left;
}

.item-info p {
  font-size: 1rem;
  text-align: left;
  
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7EA7D2;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    gap: 0.75rem;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .qty-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #7EA7D2;
  }
  .qty-controls input {
    width: 1.5rem;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #7EA7D2;
    background: transparent;
    font-size: 1rem;
  }
  .add-note {
    display: inline-block;
    margin-top: .5rem;
    color: #7EA7D2;
    text-decoration: none;
    font-size: .9rem;
  }
  .item-note {
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }

  /* Email Text */
.email-text {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #333;
}

.email-text a {
  font-weight: bold;
  color:#7EA7D2;
  text-decoration: none
}

.email-text a:hover {
  text-decoration: underline;
  font-weight: bold;
  
}
}


@media (min-width: 1500px) and (max-width: 1536px) and (max-height: 864px) {
  /* Lenovo LOQ 15irh8 (1536 x 864) only */


body.is-loq {
  /* override styles just for LOQ */
}
   html, body {
    overflow-x: hidden !important;
  }

html {
  scroll-behavior:smooth;
  scrollbar-gutter: stable;
}
body {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"p22-bangersfield",sans-serif;
  font-weight:700;
  font-style:normal;
  background-color:#FFFFFF;
  color:#3d3d3d;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.sidebar-open,
body.cart-open {
  height: 100vh;
  overflow: hidden;

}

.nav-bar {
 
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:128px;
  z-index:9999;
  overflow:hidden;
  transition:transform 0.3s ease;
}
.nav-bar.hide {
  transform:translateY(-100%);
}
.nav-cloud-bg {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:128px;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}


  
.nav-container {
  color:#7EA7D2;
  width:100%;
  max-width:1380px;
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  position:relative;
  z-index:1;
}


.logo {
  top:15px;
  height:100px;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
}
.nav-icon {
  width:28px;
  height:28px;
  cursor:pointer;
  color:#7EA7D2;
  z-index:3;
}
.nav-icon.left {
  cursor: pointer;
  position: relative;
  z-index: 999; 
  top:28px;
   left:-42px
}
.nav-icon.right {
  position: relative;
  width:25px;
  height:25px;
  top:28px;
  left:40px
}

.sidebar.active {
  transform: translateX(0);
  opacity: 1; 
}
.cart-sidebar.open {
  transform: translateX(0);
  opacity: 1;
}
.sidebar-overlay, .cart-overlay {
  transition: opacity 0.4s ease;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  overflow-y: hidden;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  text-align: center;
  opacity: 0; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar-header {
  background-color: #7EA7D2;
  padding: 60px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.sidebar-nav {
  padding: 40px 20px;
  flex: 1;


}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px
}
.sidebar-nav li {
  margin-bottom: 40px;
}
.sidebar-nav a {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  color: #7EA7D2;
  transition: color 0.3s;
}
.sidebar-nav a:hover {
  color: #F7DA85;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 888; 
  opacity: 0;
  visibility: hidden;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
    z-index: 10000; /* make sure it covers nav-bar */
  }

  .sidebar.active {
    z-index: 10001; /* Always above the overlay */
  }

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.social-links a {
  color: #7EA7D2;
  text-decoration: none;
}

.social-links a:hover .social-icon {
  transform: scale(1.1);
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0; 
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar input[type="number"] {
  font-size: 1.2rem; /* or larger */
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
}


.cart-header {
  background-color: #7EA7D2;
  padding: 20px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.cart-header h2 {
  margin: 0;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.close-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}

.cart-content {
  flex-grow: 1;
  padding: 30px;
  text-align: center;
}

.empty-cart-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.go-shop-btn {
  display: inline-block;
  color: #7EA7D2;
  text-decoration: underline;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Cart Footer */
.cart-footer {
  padding: 20px;
  background-color: #7EA7D2;
  color: white;
  text-align: center;
}

.cart-footer .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.checkout-btn {
  background: white;
  font-family:"p22-bangersfield",sans-serif;
  color: #7EA7D2;
  border: none;
  font-weight: bold;
  padding: 10px 0px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  width: 100%; 
  margin: 0 auto; 
  display: block; 
  text-decoration: none;
}

.checkout-page-btn {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 50px; /* Adjust this value as needed */
  font-size: 1.2rem; /* Optional: improves text visibility */
  background: #7EA7D2;
  font-family: "p22-bangersfield", sans-serif;
  color: #FFFFFF;
  border: none;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  margin: 5px auto 0;
  text-decoration: none;
}
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.cart-sidebar.open {
  /* 🔼 ADD THIS: */
  z-index: 10001; /* 🆙 above overlay */
}

.hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
}
.hero-img {
  width:100%;
  height:auto;
  display:block;
  position:relative;
  z-index:2;
  top:-80px
}
.hero-content {
  position:absolute;
  top:17%;
  left:50%;
  transform:translate(-50%,-40%);
  z-index:4;
  color:#fff;
  max-width:100%;
}
.hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#F0E9D7
}
.hero-content h1 span {
  font-size:4rem;
  color:#F0E9D7;
}
.button-beige {
  font-size:1rem;
  background-color:#F0E9D7;
  color:#7EA7D2;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration:none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}



.button-beige:hover {
  transform: scale(1.05);
}

/* Navigation Menu Section */
/* ======================= */
.navigation-menu {
  background-color:#F0E9D7;
  overflow:visible;
  margin-bottom:-100px
}
.menu-cloud-img {
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:0;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}
.cloud-buttons {
  padding:0;
  background-size:cover;
  padding:0px 20px 140px;
  text-align:center;
  position:relative;
  overflow:hidden;
  z-index:2;
  margin-top:-200px;
}
.cloud-buttons > * {
  position:relative;
  z-index:1;
}
.cloud {
  display:inline-block;
  font-weight:bold;
  text-decoration:none;
  transition:all 0.3s ease;
  position:absolute;
}
.cloud:hover {
  transform:scale(1.05);
  filter:drop-shadow(0 8px 14px rgba(0,0,0,0.25));
  z-index:10;
}
.cloud img {
  width:100px;
  /* or your preferred size */
  height:auto;
  display:block;
}
.cloud span {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:2rem;
  color:#7EA7D2;
  pointer-events:none;
 
}

.delay1 {
  top:20%;
  left:15%;
}
.delay2 {
  top:20%;
  left:65%;
}
.delay3 {
  top:35%;
  left:40%;
}
.delay4 {
  top:50%;
  left:15%;
}
.delay5 {
  top:50%;
  left:65%;
}
.delay1 img,.delay2 img,.delay3 img,.delay4 img,.delay5 img {
  width:300px;
  height:auto;
}
.delay2 span {
  transform:translate(-50%,-30%);
}
.delay4 span {
  transform:translate(-50%,-30%);
}
.delay5 span {
  transform:translate(-50%,-15%);
}

.instagram {
  position:relative;
  text-align:center;
  width:100%
  max-width:1000px;
  z-index:1;
  margin:0 auto;
  margin-bottom:100px;
  background-color: #F0E9D7;
  padding-bottom: 220px;
  padding-top: 30px
  
}
.instagram h2 {
  color:#7EA7D2;
  font-size:3rem;
  margin-bottom:30px;
}
/* Wrapper to hold the iframe and custom buttons */
.instagram-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Base style for buttons */
.ig-button {
  position: absolute;
  z-index: 100;
  pointer-events: none; /* Important: allow click-through */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Follow Button container */
.follow-button {
  top: 1rem;
  right: 6rem;
  width: 120px; /* Your cloud size */
  height: 60px;
  position: absolute;
}

/* Cloud image */
.follow-img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  position: absolute;
  top: 50;
  left: 20;
  z-index: 1; /* Cloud behind */
  pointer-events: none;
}

/* Follow text */
.follow-text {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  color: #7EA7D2;
  z-index: 2; /* Text in front */
  pointer-events: none;
  margin-top: 8px;
}

/* See More Button */
.see-more-button {
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7EA7D2;
  color: #fff;
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  pointer-events: none;
}

.see-more-button span {
  pointer-events: none;
}
.lightwidget-widget {
  z-index: 1;
  width: 800px;
  /* 👉 control how small you want */
  height:500px;
  /* 👉 IMPORTANT:control the height! */
  border:0;
  position: relative
  
}


.best-seller {
  background-color: #f5efdf;
  padding: 80px 20px;
  text-align: center;
}

.best-seller-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size:3rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.bouquet-section {
  text-align: center;
  padding: 120px 100px 300px;
  background-color: #F0E9D7;
}

.bouquet-title {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  font-family: 'p22-bangersfield', sans-serif;
}

.bouquet-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

}

.bouquet-item {
  text-align: center;
  width: 220px; /* fixed width */
  flex-shrink: 0;

}

.bouquet-card {
  width: 230px;
  height: 230px;
  border: 4px solid #7EA7D2;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.3s ease;  /* 🧠 smooth animation */
}

.bouquet-card:hover {
  transform: scale(1.05);           /* 💥 scale up slightly */
}

.bouquet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

.bouquet-label {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
  color: #7EA7D2;
  margin-top: 15px;

}

.view-all-card {
  width: 230px;
  height: 230px;
  background-color: #7EA7D2;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.view-all-card:hover {
  transform: scale(1.05);
}

.footer {
  position:relative;
  background-color:transparent;
  padding-top:250px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -320px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:30px;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:1rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:50px;
  max-width:1200px;
  /* Add this */
  margin:0 auto;
  /* Center it */
  padding:0 20px;
  /* (optional) add some side padding */
}
.footer-bottom {
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  /* Push left-center-right apart */
  align-items:center;
  flex-wrap:wrap;
  max-width:1100px;
  margin:40px auto 0 auto;
  /* Center the entire footer-bottom */
  padding:0 20px;
  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  /* Make them equal width */
  text-align:center;
  /* Center text inside each section */
}
/* Special for left and right */
.footer-left {
  text-align:left;
}
.footer-right {
  text-align:right;
}


.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.button-blue:hover {
  transform: scale(1.05);
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 80px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 4rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 70%;
    height: auto;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  

    .cafe-reserve {
      background-color: #f6eedb;
      padding: 100px 20px 80px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .reserve-title {
      font-family: 'p22-bangersfield', sans-serif;
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .reserve-subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }
    
    .reserve-img {
      max-width: 550px;
      height: auto;
      margin: 0 auto 40px;
    }
    
    .reserve-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
    }

    .reserve-form input[type="time"] {
      padding: 10px 15px;
  appearance: auto;
      -webkit-appearance: none;
      font-family: "p22-bangersfield", sans-serif;
  color: #333;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      box-sizing: border-box;
    }
    
    .reserve-form input[type="time"],
    .reserve-form input[type="date"],
    .reserve-form input[type="number"],
    .reserve-form input[type="text"] {
      height: 44px;
    }

    .reserve-form select {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
      background-color: white;
      color: #333333;
      height: 44px;
      text-align: center;
      
      /* Hide default arrow and add custom */
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 18px 18px;
    }
  
    .contact-section h1 {
  
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }

   
    
    .contact-img {
      width: 100%;
      max-width: 700px; /* or try 700px for even bigger */
      height: auto;
      display: block;
      margin: 30px auto 0;
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 300px;
      margin: 0 auto;
    }
    
    .contact-form input,
    .contact-form textarea {
      width: 50%;
      padding: 12px;
      border: 2px solid #7EA7D2;
      border-radius: 20px;
      font-size: 1rem;
      font-family: inherit;
      resize: none;
    }
    

/* Email Text */
.email-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

.email-text a {
  font-weight: bold;
  color:#7EA7D2;
  text-decoration: none
}

.email-text a:hover {
  text-decoration: underline;
  font-weight: bold;
  
}

/* Contact Section */
.contact-section {
  padding: 108px 20px 300px;
  text-align: center;
  background-color: #f0e9d7;;
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background-color: white;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
  border-radius: 20px;
}

.contact-form button {
  padding: 8px 20px;
  border: none;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  font-family:"p22-bangersfield",sans-serif;

}

.contact-form button:hover {
  transform: scale(1.05);
}



.about-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.about-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#fff;
  max-width:100%;
  margin-top: -150px
}
.about-hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#7EA7D2
}
.about-hero-content h1 span {
  font-size:4rem;
  color:#7EA7D2;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 30px;
}

.photo-strip-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: transparent;
  margin:380px 0px 70px;
}

.photo-strip-scroller {
  display: flex;
  animation: scroll-strip 40s linear infinite;
  width: fit-content;
}

.photo-strip-scroller img {
  width: 250px;
  height: 350px;
  margin-right: 20px;
  object-fit: cover;
  border: 8px solid white; 
  flex-shrink: 0;
}


.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.defloral-hero-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: #f0e9d7;
  width: 100%;
  max-width: 100%;
  margin-top: 420px;
  text-align: center;
}
.defloral-hero-content h1 {
  line-height:1;
  font-size:4rem;
  color:#7EA7D2;
  white-space: nowrap;
  margin-bottom: 15px;
}

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}


.collab-img {
  height: 300px;
  width: auto;
  object-fit: contain;
}


.about-cloud {
  background-color:#F0E9D7;
  padding: 100px 20px 250px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.about-menu-cloud-img {
  top:0%;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:999;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}

.our-story-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.defloral-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;

}

.defloral-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;
}

.story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.story-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-block h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold
}



.story-block p {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.6;
  margin: 0px 0px 20px -55px ;
  color: #f9f9f9;
  width: 450px;
}

.story-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cloud-icon {
  width: 40px;
  height: auto;
  margin-top: 25px;
}

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 20px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 200px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-cloud-img {
  width: 120%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1.2rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 50px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  width: 50%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.offer-item img {
  width: 50%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;  /* ✅ this ensures perfect centering */
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;


}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.success-modal .modal-content {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  animation: zoomIn 0.3s ease-out forwards;
  max-width: 100%;
  width: 300px;
  position: relative;
}


.success-modal .modal-content button {
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.success-modal .modal-content button:hover {
  transform: scale(1.05);

}


.merch-section {
  background-color: #f5efdf;
  text-align: center;
  padding: 120px 20px 350px;
}

.merch-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 4rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.merch-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.merch-item {
  text-align: center;
}

.merch-item a {
  text-decoration: none;
}

.merch-item a:hover {
  text-decoration: none;
}

.merch-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.merch-box img {
  max-height: 110%;
  max-width: 110%;
  object-fit: contain;
}

.merch-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.merch-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.merch-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 0;
}

.product-detail {
  background-color: #f5efdf;
  padding: 200px 20px 350px;
  display: flex;
  justify-content: center;
  font-family: 'p22-bangersfield', sans-serif;
}

.product-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-detail .product-container {
  margin-left: auto;
  margin-right: auto;
}

.product-image img {
  width: 300px;
  height: auto;
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  margin-top:50px
}

.product-info {
  color: #7EA7D2;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: -20px;
}

.product-price {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #7EA7D2;
}

.product-quantity label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  background-color: white;
  overflow: hidden;
  height: 40px;
  padding: 0 10px;
  gap: 15px;
}

.qty-btn {
  background-color: white;
  border: none;
  color: #7EA7D2;
  font-size: 1.2rem;
  padding: 0 10px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
}

#quantity {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 1rem;
  color: #7EA7D2;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 30px;
}

.bouquet-item {
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}



.add-to-cart {
  background-color: #7EA7D2;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-family: 'p22-bangersfield', sans-serif;
  margin-top:20px
}

.product-image img {
  /* Existing styles above */
}

.add-to-cart:hover {
  transform: scale(1.05);
}



.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.2rem;
  max-width: 300px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.product-color-section label {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.product-color {
  font-family: 'Fredoka', sans-serif;
  padding: 8px 12px;
  border: 2px solid #7EA7D2;
  border-radius: 10px;
  background-color: #F0E9D7;
  color: #7EA7D2;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}

.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.color-btn {
  padding: 8px 20px;
  border: 2px solid #7EA7D2;
  background-color: white;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.color-btn.active {
  background-color: #7EA7D2;
  color: white;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  position: relative;
  z-index: 1;
  padding: 250px 100px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

/* Customer Form Styles for Checkout Page */
.customer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}



.customer-form input,
.customer-form select {
  width: 100%;
  max-width: 1000px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: "p22-bangersfield", sans-serif;
  outline: none;
  background-color: white;
  box-sizing: border-box;
  margin-bottom: 0;
}

.customer-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #7EA7D2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  cursor: pointer;
}

.customer-form .name-fields {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
}

.customer-form .name-fields input {
  flex: 1;
}




.checkout-item {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  gap: 1rem;
}
.checkout-item img {
  width: 120px;
  height: auto;
  border: 2px solid #7EA7D2;
  margin-right: 1rem;
}
.item-info {
  margin-top: 10px;
  flex: 1;
  width: 300px
}
.item-info h3 {
  margin: 0 0 .5rem;
  color: #7EA7D2;

}
.item-info .item-price {
  margin: 0 0 1rem;
  color: #7EA7D2;
 
}

.item-info p.item-color {
  margin-top: 40px;
  color: #7EA7D2;
  width: 250px
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

hr {
  border: none;
  height: 2px;
  background-color: #7EA7D2;

    width: 100%;
    margin: 20px 0;  /* gives spacing above and below */

}

.qty-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  padding: 0.25rem 0.75rem;
  gap: 0.75rem;
  height: 40px;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: auto;
}
.qty-controls button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #7EA7D2;
}
.qty-controls input {
  width: 1.5rem;
  text-align: center;
  border: none;
  font-weight: bold;
  color: #7EA7D2;
  background: transparent;
  font-size: 1rem;
}
.add-note {
  display: inline-block;
  margin-top: .5rem;
  color: #7EA7D2;
  text-decoration: none;
  font-size: .9rem;
}
.item-note {
  width: 100%;
  margin-top: .5rem;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

#noteTextArea {
  margin-top: 10px;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  border: 2px solid #7EA7D2;
  border-radius: 20px;
  padding: 12px 16px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  resize: none; /* 🚫 prevent resizing */
  color: #3d3d3d;
  box-sizing: border-box;
}
.order-summary {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #7EA7D2;
}
.order-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0; /* more vertical spacing */
  gap: 1rem; /* spacing between left and right */
}

.summary-line span:last-child {
  min-width: 80px;
  text-align: right;
}
.total-line {
  font-weight: bold;
  border-top: 1px solid #ccc;
  margin-top: .5rem;
}

.checkout .qty-controls {
  font-size: 1rem;
  gap: 0.5rem;
  padding: 0rem 0.5rem;
  margin-right:10px;
}

.checkout .qty-controls button {
  font-size: 1rem;
}

.checkout .qty-display {
  font-size: 1rem;
  color: #7EA7D2;
  width: 30px;
  text-align: center;

}

.item-controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-width: 160px;
  gap: 0.5rem;
  flex-grow: 1;
}

.item-total {
  font-weight: bold;
  color: #333333;
  min-width: 100px;
  text-align: right;
  margin-top: 10px;
}


/* === Pickup Method Select Styling === */
select.pickup-method {
  font-family: "p22-bangersfield", sans-serif;
  background-color: #7EA7D2;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 1.2rem;
  margin: 10px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Custom white down arrow SVG as background */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z' clip-rule='evenodd' /></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  box-shadow: none;
}




select.pickup-method {
  margin-bottom: 1.5rem;
}

#receiptUpload::-webkit-file-upload-button {
  color: black;
}

#receiptUpload::file-selector-button {
  color: black;
}

#receiptUpload {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 12px 20px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  width: 100%;
  max-width: 700px;
  border: none;
  border-radius: 25px;
  box-sizing: border-box;
  text-align-last: center;
  display: none;/* ensure the text aligns center in some browsers */
}

/* Style the file upload container */
.file-upload-center {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}



/* Style the custom file upload button */
.custom-file-upload {
  display: inline-block;
  padding: 8px 20px;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  border: none;
  margin-bottom: 10px;
}

.custom-file-upload:hover {
  transform: scale(1.05);
}

/* Style for when a file is selected */
.file-selected {
  background-color: #F7DA85;
  color: #7EA7D2;
}

.delivery-details {
  width: 100%;
}



  .customer-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-direction: row;
    font-family: "p22-bangersfield", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    width: auto;
}


/* === Checkout Confirmation Section === */
.checkout-confirmation {
  max-width: 700px;
  margin: 220px auto 80px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(126,167,210,0.10);
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  text-align: center;
  font-family: "p22-bangersfield", sans-serif;
  color: #7EA7D2;
}
.checkout-confirmation h1 {
  font-size: 2.3rem;
  color: #7EA7D2;
  margin-bottom: 0.3rem;
}
.checkout-confirmation p {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.checkout-confirmation h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #7EA7D2;
}
.confirmation-box {
  background: #F0E9D7;
  border-radius: 16px;
  padding: 1.5rem 1rem 1.5rem 1rem;
  margin-bottom: 2rem;
}
}

@media (min-width: 2000px) and (max-width: 2100px) and (max-height: 1300px) {
  /* Near-2048×1280 logic — target high-DPI scaled displays */

body.legion-16ahp9 {
  /* Custom styles */
}


html {
  scroll-behavior:smooth;
  scrollbar-gutter: stable;
}
body {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"p22-bangersfield",sans-serif;
  font-weight:700;
  font-style:normal;
  background-color:#FFFFFF;
  color:#3d3d3d;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.sidebar-open,
body.cart-open {
  height: 100vh;
  overflow: hidden;

}

.nav-bar {
 
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:170px;
  z-index:9999;
  overflow:hidden;
  transition:transform 0.3s ease;
}
.nav-bar.hide {
  transform:translateY(-100%);
}
.nav-cloud-bg {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:170px;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}


  
.nav-container {
  color:#7EA7D2;
  width:100%;
  max-width:1380px;
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  position:relative;
  z-index:1;
}


.logo {
  top:15px;
  height:140px;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
}
.nav-icon {
  width:40px;
  height:40px;
  cursor:pointer;
  color:#7EA7D2;
  z-index:3;
}
.nav-icon.left {
  cursor: pointer;
  position: relative;
  z-index: 999; 
  top:40px;
   left:-280px
}
.nav-icon.right {
  position: relative;
  width:40px;
  height:40px;
  top:40px;
  left:280px
}

.sidebar.active {
  transform: translateX(0);
  opacity: 1; 
}
.cart-sidebar.open {
  transform: translateX(0);
  opacity: 1;
}
.sidebar-overlay, .cart-overlay {
  transition: opacity 0.4s ease;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  overflow-y: hidden;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  text-align: center;
  opacity: 0; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar-header {
  background-color: #7EA7D2;
  padding: 60px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar-logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.sidebar-nav {
  padding: 40px 20px;
  flex: 1;


}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 70px;
  margin-bottom: 100px
}
.sidebar-nav li {
  margin-bottom: 60px;
}
.sidebar-nav a {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1.8rem;
  text-decoration: none;
  color: #7EA7D2;
  transition: color 0.3s;
}
.sidebar-nav a:hover {
  color: #F7DA85;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 888; 
  opacity: 0;
  visibility: hidden;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
    z-index: 10000; /* make sure it covers nav-bar */
  }

  .sidebar.active {
    z-index: 10001; /* Always above the overlay */
  }

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.social-links a {
  color: #7EA7D2;
  text-decoration: none;
}

.social-links a:hover .social-icon {
  transform: scale(1.1);
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 600px;
  height: 100%;
  background-color: #F0E9D7;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0; 
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar input[type="number"] {
  font-size: 1.2rem; /* or larger */
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
}


.cart-header {
  background-color: #7EA7D2;
  padding: 20px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.cart-header h2 {
  margin: 0;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.close-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}

.cart-content {
  flex-grow: 1;
  padding: 30px;
  text-align: center;
}

.empty-cart-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.go-shop-btn {
  display: inline-block;
  color: #7EA7D2;
  text-decoration: underline;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Cart Footer */
.cart-footer {
  padding: 20px;
  background-color: #7EA7D2;
  color: white;
  text-align: center;
}

.cart-footer .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.checkout-btn {
  background: white;
  font-family:"p22-bangersfield",sans-serif;
  color: #7EA7D2;
  border: none;
  font-weight: bold;
  padding: 10px 0px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  width: 100%; 
  margin: 0 auto; 
  display: block; 
  text-decoration: none;
}

.checkout-page-btn {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 50px; /* Adjust this value as needed */
  font-size: 1.2rem; /* Optional: improves text visibility */
  background: #7EA7D2;
  font-family: "p22-bangersfield", sans-serif;
  color: #FFFFFF;
  border: none;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  margin: 5px auto 0;
  text-decoration: none;
}
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.cart-sidebar.open {
  /* 🔼 ADD THIS: */
  z-index: 10001; /* 🆙 above overlay */
}

.hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;

}
.hero-img {
  width:100%;
  height:auto;
  display:block;
  position:relative;
  z-index:2;
  top:-30px
}
.hero-content {
  position:absolute;
  top:20%;
  left:50%;
  transform:translate(-50%,-40%);
  z-index:2;
  color:#fff;
  max-width:100%;
}
.hero-content h1 {
  margin-bottom:30px;
  line-height:1;
  font-size:5rem;
  color:#F0E9D7
}
.hero-content h1 span {
  font-size:6rem;
  color:#F0E9D7;
}
.button-beige {
  font-size:1.5rem;
  background-color:#F0E9D7;
  color:#7EA7D2;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration:none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}



.button-beige:hover {
  transform: scale(1.05);
}

/* Navigation Menu Section */
/* ======================= */
.navigation-menu {
  background-color:#F0E9D7;
  padding-bottom: 200px;
  

}
.menu-cloud-img {
  top:-360px;
  left:50%;
  transform:translateX(-50%);
  width:200vw;
  height:auto;
  z-index:4;
  position:absolute;
}
.cloud-buttons {
 
  min-height: 900px;  /* Try 900-1200px, or whatever makes all clouds show */
  height: 100vh;      /* For testing! */
  overflow: visible !important;
  z-index: 10;
  position: relative !important;
  height: 1000px !important;
}
.cloud-buttons > * {
  position:relative;
  z-index:1;
}
.cloud {
  display:inline-block;
  font-weight:bold;
  text-decoration:none;
  transition:all 0.3s ease;
   position: absolute !important;
  top: 0;
  left: 0;
}
.cloud:hover {
  transform:scale(1.05);
  filter:drop-shadow(0 8px 14px rgba(0,0,0,0.25));
  z-index:10;
}
.cloud img {
  width:500px;
  /* or your preferred size */
  height:auto;
  display:block;
}
.cloud span {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:3rem;
  color:#7EA7D2;
  pointer-events:none;
 
}

.delay1 { top:20% !important; left:25% !important; }
.delay2 { top:20% !important; left:75% !important; }
.delay3 { top:40% !important; left:50% !important; }
.delay4 { top:60% !important; left:25% !important; }
.delay5 { top:60% !important; left:75% !important; }

.delay1 img,.delay2 img,.delay3 img,.delay4 img,.delay5 img {
  width:500px;
  height:auto;
}
.delay2 span {
  transform:translate(-50%,-30%);
}
.delay4 span {
  transform:translate(-50%,-30%);
}
.delay5 span {
  transform:translate(-50%,-15%);
}

.instagram {
  position:relative;
  text-align:center;
  width:100%;
  max-width:1000px;
  z-index:1;
  margin:0 auto;
  margin-bottom:100px;
  background-color: #F0E9D7;
  padding-bottom: 520px;
  padding-top: 30px
  
}
.instagram h2 {
  color:#7EA7D2;
  font-size:5rem;
  margin-bottom:30px;
}
/* Wrapper to hold the iframe and custom buttons */
.instagram-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Base style for buttons */
.ig-button {
  position: absolute;
  z-index: 100;
  pointer-events: none; /* Important: allow click-through */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Follow Button container */
.follow-button {
  top: 1rem;
  right: 6rem;
  width: 120px; /* Your cloud size */
  height: 60px;
  position: absolute;
}

/* Cloud image */
.follow-img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  position: absolute;
  top: 50;
  left: 20;
  z-index: 1; /* Cloud behind */
  pointer-events: none;
}

/* Follow text */
.follow-text {
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1.5rem;
  color: #7EA7D2;
  z-index: 2; /* Text in front */
  pointer-events: none;
  margin-top: 8px;
}

/* See More Button */
.see-more-button {
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7EA7D2;
  color: #fff;
  font-family:"p22-bangersfield",sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  pointer-events: none;
}

.see-more-button span {
  pointer-events: none;
}
.lightwidget-widget {
  z-index: 1;
  width: 800px;
  /* 👉 control how small you want */
  height:500px;
  /* 👉 IMPORTANT:control the height! */
  border:0;
  position: relative
  
}


.best-seller {
  background-color: #f5efdf;
  padding: 80px 20px;
  text-align: center;
}

.best-seller-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size:3rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.bouquet-section {
  text-align: center;
  padding: 120px 100px 300px;
  background-color: #F0E9D7;
}

.bouquet-title {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  font-family: 'p22-bangersfield', sans-serif;
}

.bouquet-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

}

.bouquet-item {
  text-align: center;
  width: 220px; /* fixed width */
  flex-shrink: 0;

}

.bouquet-card {
  width: 230px;
  height: 230px;
  border: 4px solid #7EA7D2;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.3s ease;  /* 🧠 smooth animation */
}

.bouquet-card:hover {
  transform: scale(1.05);           /* 💥 scale up slightly */
}

.bouquet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

.bouquet-label {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
  color: #7EA7D2;
  margin-top: 15px;

}

.view-all-card {
  width: 230px;
  height: 230px;
  background-color: #7EA7D2;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.view-all-card:hover {
  transform: scale(1.05);
}

.footer {
  position:relative;
  background-color:transparent;
  padding-top:250px;
  padding-bottom:50px;
  margin:0;
  text-align:center;
  z-index:10;
  overflow:visible;
  margin-top: -320px; /* 💥 Pull the whole footer upward */
  overflow: hidden;

}
.footer-bg {
  position:absolute;
  width:100%;
  height:auto;
  pointer-events:none;
  top: 100px; 
    left: 0;
    width: 100%;
    z-index: 1; /* Behind everything else */
    pointer-events: none;


}
.footer-box h4 {
  font-size:30px;
  color:#7EA7D2;
  margin-bottom:10px;
}
.footer-box p {
  font-size:1rem;
  color:#333333;
}
.footer-columns {
  position: relative;
  z-index: 5;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  gap:50px;
  max-width:1200px;
  /* Add this */
  margin:0 auto;
  /* Center it */
  padding:0 20px;
  /* (optional) add some side padding */
}
.footer-bottom {
  position: relative;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  /* Push left-center-right apart */
  align-items:center;
  flex-wrap:wrap;
  max-width:1100px;
  margin:40px auto 0 auto;
  /* Center the entire footer-bottom */
  padding:0 20px;
  color:#7EA7D2;
  text-align:center;
  margin-bottom: 0px;
}
.footer-left,.footer-center,.footer-right {
  flex:1;
  /* Make them equal width */
  text-align:center;
  /* Center text inside each section */
}
/* Special for left and right */
.footer-left {
  text-align:left;
}
.footer-right {
  text-align:right;
}


.button-blue {
  font-size: 1rem;
  background-color: #7EA7D2;
  color:white;
  padding: 8px 20px;
  border-radius:30px;
  text-decoration: none;
  display: inline-block; /* 🧠 important for transform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.button-blue:hover {
  transform: scale(1.05);
  }


  .cafe-menu {
    text-align: center;
    margin-top: 0px;
    padding: 80px 20px;
    background-color: #f0e9d7;
    z-index: 2;
    position: relative;
  }
  
  .menu-title {
    text-align: center;
    margin-top: 5rem;
    line-height: 1;
    display: block;
    color: #7EA7D2;
  }


  .menu-top {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    color: #7EA7D2;
  }
  
   .menu-bottom {
    font-size: 4rem;
    display: block;
    color: #7EA7D2;
  }

  .menu-image {
    max-width: 70%;
    height: auto;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 250px
  }

  .button-reserve {
    display: inline-block;
    z-index: 9999;
    margin-top:2rem;
    margin-bottom: 15rem;
    background-color: #7EA7D2;
    color:white;
    padding: 8px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "p22-bangersfield", sans-serif; 
    font-weight: bold

  }
  
  .button-reserve:hover {
    transform: scale(1.05);
    }

    .button-menu {
      display: inline-block;
      z-index: 9999;
      margin-top:0.5rem;
      margin-bottom: 2rem;
      background-color: #7EA7D2;
      color:white;
      padding: 8px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "p22-bangersfield", sans-serif; 
      font-weight: bold
  
    }
    
    .button-menu:hover {
      transform: scale(1.05);
      }

  

    .cafe-reserve {
      background-color: #f6eedb;
      padding: 100px 20px 80px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .reserve-title {
      font-family: 'p22-bangersfield', sans-serif;
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .reserve-subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }
    
    .reserve-img {
      max-width: 550px;
      height: auto;
      margin: 0 auto 40px;
    }
    
    .reserve-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
    }

    .reserve-form input[type="time"] {
      padding: 10px 15px;
  appearance: auto;
      -webkit-appearance: none;
      font-family: "p22-bangersfield", sans-serif;
  color: #333;
    }
    
    .reserve-form input {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      box-sizing: border-box;
    }
    
    .reserve-form input[type="time"],
    .reserve-form input[type="date"],
    .reserve-form input[type="number"],
    .reserve-form input[type="text"] {
      height: 44px;
    }

    .reserve-form select {
      padding: 10px 15px;
      border-radius: 25px;
      border: 2px solid #7EA7D2;
      font-size: 1rem;
      outline: none;
      width: 150px;
      font-family: "p22-bangersfield", sans-serif;
      background-color: white;
      color: #333333;
      height: 44px;
      text-align: center;
      
      /* Hide default arrow and add custom */
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg fill="%237EA7D2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 18px 18px;
    }
  
    .contact-section h1 {
  
      font-size: 4rem;
      color: #7EA7D2;
      margin-bottom: 10px;
    }
    
    .subtitle {
      font-size: 1.2rem;
      color: #333333;
      font-weight: 500;
      margin-bottom: 30px;
    }

   
    
    .contact-img {
      width: 100%;
      max-width: 700px; /* or try 700px for even bigger */
      height: auto;
      display: block;
      margin: 30px auto 0;
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 300px;
      margin: 0 auto;
    }
    
    .contact-form input,
    .contact-form textarea {
      width: 50%;
      padding: 12px;
      border: 2px solid #7EA7D2;
      border-radius: 20px;
      font-size: 1rem;
      font-family: inherit;
      resize: none;
    }
    

/* Email Text */
.email-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

.email-text a {
  font-weight: bold;
  color:#7EA7D2;
  text-decoration: none
}

.email-text a:hover {
  text-decoration: underline;
  font-weight: bold;
  
}

/* Contact Section */
.contact-section {
  padding: 108px 20px 300px;
  text-align: center;
  background-color: #f0e9d7;;
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background-color: white;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
  border-radius: 20px;
}

.contact-form button {
  padding: 8px 20px;
  border: none;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  font-family:"p22-bangersfield",sans-serif;

}

.contact-form button:hover {
  transform: scale(1.05);
}



.about-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.about-hero-content {
  position:absolute;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  color:#fff;
  max-width:100%;
  margin-top: -150px
}
.about-hero-content h1 {
  margin-bottom:12px;
  line-height:1;
  font-size:3rem;
  color:#7EA7D2
}
.about-hero-content h1 span {
  font-size:4rem;
  color:#7EA7D2;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 30px;
}

.photo-strip-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: transparent;
  margin:380px 0px 70px;
}

.photo-strip-scroller {
  display: flex;
  animation: scroll-strip 40s linear infinite;
  width: fit-content;
}

.photo-strip-scroller img {
  width: 250px;
  height: 350px;
  margin-right: 20px;
  object-fit: cover;
  border: 8px solid white; 
  flex-shrink: 0;
}


.defloral-hero {
  position:relative;
  text-align:center;
  background-color:#F0E9D7;
  overflow:hidden;
  margin-top:0;
  height: 850px;
  z-index: 1;
}

.defloral-hero-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: #f0e9d7;
  width: 100%;
  max-width: 100%;
  margin-top: 420px;
  text-align: center;
}
.defloral-hero-content h1 {
  line-height:1;
  font-size:4rem;
  color:#7EA7D2;
  white-space: nowrap;
  margin-bottom: 15px;
}

.defloral-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}


.collab-img {
  height: 300px;
  width: auto;
  object-fit: contain;
}


.about-cloud {
  background-color:#F0E9D7;
  padding: 100px 20px 250px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.about-menu-cloud-img {
  top:0%;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:auto;
  z-index:999;
  pointer-events:none;
  object-fit:cover;
  position:absolute;
}

.our-story-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 999
}

.defloral-story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.defloral-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;

}

.defloral-atc {
  width: 600px;
  height: auto;
  margin-top: 30px;
}

.story-text {
  flex: 2;
  color: #fff;
  z-index: 999;
  margin-top:100px;
  margin-left: 30px

}

.story-text h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.story-block h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold
}



.story-block p {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.6;
  margin: 0px 0px 20px -55px ;
  color: #f9f9f9;
  width: 450px;
}

.story-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cloud-icon {
  width: 40px;
  height: auto;
  margin-top: 25px;
}

.about-values {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically */
  padding: 20px 50px 100px;
  background-color: #f0e9d7;
  flex-wrap: nowrap;
  text-align: center; /* aligns heading and text */
}


.values-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 200px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  width: 300px;
  text-align: center;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.about-cloud-box {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-cloud-img {
  width: 120%;
  height: auto;
  display: block;
}

.about-cloud-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1.2rem;
  font-weight: 100;
  color: #7EA7D2;
  line-height: 1.4;
  text-align: center;
}

.what-we-offer {
  padding: 50px 50px 300px;
  text-align: center;
  background-color: #f0e9d7;
}

.what-we-offer h1 {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #7EA7D2;
  margin: 0 auto 50px;
  display: block;
}

.about-container h1 {
  font-size: 3rem;
  color: #7EA7D2;
  margin-bottom: 50px;
  width: 300px
}

.offer-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  width: 50%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.offer-item img {
  width: 50%;
  height: auto;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 1.2rem;
  color: #7EA7D2;
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;  /* ✅ this ensures perfect centering */
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;


}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.success-modal .modal-content {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  animation: zoomIn 0.3s ease-out forwards;
  max-width: 100%;
  width: 300px;
  position: relative;
}


.success-modal .modal-content button {
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.success-modal .modal-content button:hover {
  transform: scale(1.05);

}


.merch-section {
  background-color: #f5efdf;
  text-align: center;
  padding: 120px 20px 350px;
}

.merch-title {
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 4rem;
  color: #7EA7D2;
  margin-bottom: 40px;
}

.merch-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.merch-item {
  text-align: center;
}

.merch-item a {
  text-decoration: none;
}

.merch-item a:hover {
  text-decoration: none;
}

.merch-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.merch-box img {
  max-height: 110%;
  max-width: 110%;
  object-fit: contain;
}

.merch-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.merch-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.merch-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 0;
}

.product-detail {
  background-color: #f5efdf;
  padding: 200px 20px 350px;
  display: flex;
  justify-content: center;
  font-family: 'p22-bangersfield', sans-serif;
}

.product-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-detail .product-container {
  margin-left: auto;
  margin-right: auto;
}

.product-image img {
  width: 300px;
  height: auto;
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  margin-top:50px
}

.product-info {
  color: #7EA7D2;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: -20px;
}

.product-price {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #7EA7D2;
}

.product-quantity label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  background-color: white;
  overflow: hidden;
  height: 40px;
  padding: 0 10px;
  gap: 15px;
}

.qty-btn {
  background-color: white;
  border: none;
  color: #7EA7D2;
  font-size: 1.2rem;
  padding: 0 10px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
}

#quantity {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 1rem;
  color: #7EA7D2;
  font-weight: bold;
  font-family: 'p22-bangersfield', sans-serif;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.defloral-categories-section {
  background-color: #F0E9D7;
  text-align: center;
  padding: 20px 20px 30px;
}

.bouquet-item {
  text-align: center;
}

.bouquet-item a {
  text-decoration: none;
}

.bouquet-item a:hover {
  text-decoration: none;
}

.bouquet-box {
  border: 3px solid #7EA7D2;
  border-radius: 4px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

.bouquet-box img {
  max-height: 130%;
  max-width: 130%;
  object-fit: contain;
}

.bouquet-box.coming-soon {
  background-color: #f4f4f4;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  font-size: 1.2rem;
}

.bouquet-name {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  margin: 12px 0 0;
}

.bouquet-price {
  font-weight: bold;
  color: #7EA7D2;
  margin: 4px 0 5px;
}



.add-to-cart {
  background-color: #7EA7D2;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-family: 'p22-bangersfield', sans-serif;
  margin-top:20px
}

.product-image img {
  /* Existing styles above */
}

.add-to-cart:hover {
  transform: scale(1.05);
}



.custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.confirm-box {
  background-color: #FFFFFF;
  padding: 3rem 5rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'p22-bangersfield', sans-serif;
  color: #333333;
  font-size: 1.2rem;
  max-width: 300px;
}

.confirm-buttons button {
  margin:5px;
  background-color: #7EA7D2;
  color: white;
  font-family: 'p22-bangersfield', sans-serif;
  padding: 8px 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.confirm-buttons button:hover {
  transform: scale(1.05);
}

.product-color-section label {
  font-family: 'p22-bangersfield', sans-serif;
  color: #7EA7D2;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.product-color {
  font-family: 'Fredoka', sans-serif;
  padding: 8px 12px;
  border: 2px solid #7EA7D2;
  border-radius: 10px;
  background-color: #F0E9D7;
  color: #7EA7D2;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}

.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.color-btn {
  padding: 8px 20px;
  border: 2px solid #7EA7D2;
  background-color: white;
  color: #7EA7D2;
  font-family: 'p22-bangersfield', sans-serif;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.color-btn.active {
  background-color: #7EA7D2;
  color: white;
}

/* === Checkout Section === */
.checkout {
  background-color: #F0E9D7;
  max-width: auto;
  position: relative;
  z-index: 1;
  padding: 250px 100px 300px;
}

.checkout-card {
  background-color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 3rem 1rem;
  border-radius: 20px;
  position: relative;
  top: -3rem;
}
.checkout h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}

/* Customer Form Styles for Checkout Page */
.customer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}



.customer-form input,
.customer-form select {
  width: 100%;
  max-width: 1000px;
  padding: 12px 20px;
  border: 2px solid #7EA7D2;
  border-radius: 25px;
  font-size: 1rem;
  font-family: "p22-bangersfield", sans-serif;
  outline: none;
  background-color: white;
  box-sizing: border-box;
  margin-bottom: 0;
}

.customer-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #7EA7D2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  cursor: pointer;
}

.customer-form .name-fields {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
}

.customer-form .name-fields input {
  flex: 1;
}




.checkout-item {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  gap: 1rem;
}
.checkout-item img {
  width: 120px;
  height: auto;
  border: 2px solid #7EA7D2;
  margin-right: 1rem;
}
.item-info {
  margin-top: 10px;
  flex: 1;
  width: 300px
}
.item-info h3 {
  margin: 0 0 .5rem;
  color: #7EA7D2;

}
.item-info .item-price {
  margin: 0 0 1rem;
  color: #7EA7D2;
 
}

.item-info p.item-color {
  margin-top: 40px;
  color: #7EA7D2;
  width: 250px
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

hr {
  border: none;
  height: 2px;
  background-color: #7EA7D2;

    width: 100%;
    margin: 20px 0;  /* gives spacing above and below */

}

.qty-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7EA7D2;
  border-radius: 30px;
  padding: 0.25rem 0.75rem;
  gap: 0.75rem;
  height: 40px;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: auto;
}
.qty-controls button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #7EA7D2;
}
.qty-controls input {
  width: 1.5rem;
  text-align: center;
  border: none;
  font-weight: bold;
  color: #7EA7D2;
  background: transparent;
  font-size: 1rem;
}
.add-note {
  display: inline-block;
  margin-top: .5rem;
  color: #7EA7D2;
  text-decoration: none;
  font-size: .9rem;
}
.item-note {
  width: 100%;
  margin-top: .5rem;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

#noteTextArea {
  margin-top: 10px;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  border: 2px solid #7EA7D2;
  border-radius: 20px;
  padding: 12px 16px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  resize: none; /* 🚫 prevent resizing */
  color: #3d3d3d;
  box-sizing: border-box;
}
.order-summary {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #7EA7D2;
}
.order-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #7EA7D2;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0; /* more vertical spacing */
  gap: 1rem; /* spacing between left and right */
}

.summary-line span:last-child {
  min-width: 80px;
  text-align: right;
}
.total-line {
  font-weight: bold;
  border-top: 1px solid #ccc;
  margin-top: .5rem;
}

.checkout .qty-controls {
  font-size: 1rem;
  gap: 0.5rem;
  padding: 0rem 0.5rem;
  margin-right:10px;
}

.checkout .qty-controls button {
  font-size: 1rem;
}

.checkout .qty-display {
  font-size: 1rem;
  color: #7EA7D2;
  width: 30px;
  text-align: center;

}

.item-controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-width: 160px;
  gap: 0.5rem;
  flex-grow: 1;
}

.item-total {
  font-weight: bold;
  color: #333333;
  min-width: 100px;
  text-align: right;
  margin-top: 10px;
}


/* === Pickup Method Select Styling === */
select.pickup-method {
  font-family: "p22-bangersfield", sans-serif;
  background-color: #7EA7D2;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 1.2rem;
  margin: 10px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Custom white down arrow SVG as background */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z' clip-rule='evenodd' /></svg>");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  padding-right: 3rem;
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  box-shadow: none;
}




select.pickup-method {
  margin-bottom: 1.5rem;
}

#receiptUpload::-webkit-file-upload-button {
  color: black;
}

#receiptUpload::file-selector-button {
  color: black;
}

#receiptUpload {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 12px 20px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  width: 100%;
  max-width: 700px;
  border: none;
  border-radius: 25px;
  box-sizing: border-box;
  text-align-last: center;
  display: none;/* ensure the text aligns center in some browsers */
}

/* Style the file upload container */
.file-upload-center {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}



/* Style the custom file upload button */
.custom-file-upload {
  display: inline-block;
  padding: 8px 20px;
  background-color: #7EA7D2;
  color: white;
  border-radius: 30px;
  font-family: "p22-bangersfield", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  border: none;
  margin-bottom: 10px;
}

.custom-file-upload:hover {
  transform: scale(1.05);
}

/* Style for when a file is selected */
.file-selected {
  background-color: #F7DA85;
  color: #7EA7D2;
}

.delivery-details {
  width: 100%;
}



  .customer-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-direction: row;
    font-family: "p22-bangersfield", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    width: auto;
}


/* === Checkout Confirmation Section === */
.checkout-confirmation {
  max-width: 700px;
  margin: 220px auto 80px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(126,167,210,0.10);
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  text-align: center;
  font-family: "p22-bangersfield", sans-serif;
  color: #7EA7D2;
}
.checkout-confirmation h1 {
  font-size: 2.3rem;
  color: #7EA7D2;
  margin-bottom: 0.3rem;
}
.checkout-confirmation p {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.checkout-confirmation h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #7EA7D2;
}
.confirmation-box {
  background: #F0E9D7;
  border-radius: 16px;
  padding: 1.5rem 1rem 1.5rem 1rem;
  margin-bottom: 2rem;
}
}
  





