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

:root {
    /* Primary Colors */
    --clr-primary: #FAF3D5;
    --clr-primary-dark: #2C2C2B;
  
    /* Neutral Colors */
    --clr-bg: #FAF3D5;
    --clr-light: #f5f5f5;
    --clr-dark: #222;
  
    /* Text Colors */
    --clr-text: #BD9746;
    --clr-text-dark: #444;
  
    /* Accent Colors */
    --clr-accent: #ff4081;
    --clr-warning: #ffc107;
    --clr-success: #4caf50;
    --clr-error: #f44336;
  }
  
  @font-face {
    font-family: 'FranklinGothic';
    src: url('../assets/fonts/ITCFranklinGothicStd-Demi.woff') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'FranklinGothic-med';
    src: url('../assets/fonts/ITCFranklinGothicStd-Med.woff') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'LookingFlowers';
    src: url('../assets/fonts/LookingFlowers-Caps.woff') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
	  overflow-x: hidden;
  }
  
  body {
    font-family: 'FranklinGothic-med', sans-serif;
    background: var(--clr-bg);
    color: #222;
    line-height: 1.6;
    background-image: url(../assets/images/body-bg.png);
    overflow-x: hidden;
  }
  /* Reset for sections */
div, section, article, aside, header, footer, nav, main {
  display: block;
}
h3{
  font-size: 38px;
  line-height: 38px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h4{
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h5{
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
}
p{
  font-size:16px;
  line-height:24px;
  color:#2C2C2B;
  font-family: 'Poppins', sans-serif;
}
.nav-item.d-none{
  display: none;
}

  .section{
    display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically (optional) */
  width: 100%;
  }
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Grid System */
  .grid {
    display: grid;
    gap: 2rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .grid-4col img{
    width: 100%;
  }
  @media (max-width: 960px) {
    .grid-4col {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 768px) {
    .grid-2 {
      grid-template-columns: 1fr;
    }
    .grid-4col {
      grid-template-columns: 1fr;
    }
    .grid-4col img{
      width: 280px;
    }
  }
  
  /* Responsive Typography */
  h1, h2 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'FranklinGothic', sans-serif;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  /* Utility spacing */
  .mt-2 { margin-top: 2rem; }
  .mb-2 { margin-bottom: 2rem; }
  
  /* Buttons */
  .btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #333;
  }
  /* Reset// */

/* nav bar/header */
.navbar {
    padding: 0;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--clr-primary);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  /* Active class after scroll */
  .navbar::after, .abt-2nd-block::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -27px;
    width: 100%;
    height: 50px;
    background: url(../assets/images/section-boarder.svg);
    background-size: contain;
    background-repeat: repeat-x;
    z-index: -9;
}
.nav-center{
	padding:10px;
}
.jurny::before{
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  background: url(../assets/images/section-boarder.svg);
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 9;
  transform: rotate(180deg);
  top: -40px;
}
 
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .logo img {
    width: 184px;
    transition: width 0.4s ease;
  }
  .navbar.scrolled .logo img {
    width: 100px;
    transition: width 0.4s ease;
  }
  
  .nav-links a {
    color: var(--clr-primary-dark);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 2rem;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'FranklinGothic-med';
	z-index: 99;
	padding: 30px 40px;
	overflow:visible;
	min-width:170px;
	  text-align:center;
  }
  
  .nav-links a:hover {
    color: #fff;
  }
  
  .menu-toggle {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
  }
  
  .nav-item {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    color: white;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
  }
  
  .nav-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/menu-hover.svg'); /* replace with your image */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.2s ease, opacity 0.3s ease;
    z-index: -1;
    transform: scale(0);
    opacity: 0;
  }
  
  .nav-item:hover::before,
  .nav-item:focus::before {
    transform: scale(1.2);
    opacity: 1;
  }
  
  .nav-item:active::before {
    transform: scale(1.1);
    opacity: 1;
  }
  .nav-item:focus{
    color: #fff;
  }
  /* hero */
  .hero {
    height: 1014px;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-image: url(../assets/images/hero-main-bg.png);
    background-size: 1270px;
    color: #fff;
    position: relative;
    background-repeat: repeat-x;
    background-position: bottom left;

  }
  .hill-bg {
    position: absolute;
    right: 0;
    top: 230px; /* adjust based on hero-main-bg height */
    width: 940px;
    max-width: 90%; /* responsive scaling */
    height: auto;
    z-index: 1;
  }
  .hero-content{
    padding-bottom: 50px;
    z-index: 2;
    position: relative;
  }
  .hero-content h1 {
    font-size: 80px;
    margin-bottom: 0px;
    color: var(--clr-text);
    line-height: 70px;
  }
  
  .hero-content p {
    font-size: 68px;
    line-height: 38px;
    margin: 0 auto;
    color: #2c2c2b;
    font-family: 'LookingFlowers';
    max-width: 420px;
}
  
  .hero-products {
    z-index: 2;
    position: relative;
    width: fit-content;
    margin: auto;
}
  
  /* Base image style */
  .product-img {
    width: 250px;
    margin: 0 -40px;
    transition: transform 0.3s ease;
  }
  
  /* Center image scaled by default */
  .center-img {
    transform: scale(1.1);
    z-index: 1;
    position: relative;
    transform-origin: bottom 5px;
  }
  
  /* When any image is hovered, shrink all */
  .hero-products:hover .product-img {
    transform: scale(1);
    z-index: 0;
    position: relative;
    transform-origin: bottom 5px;
  }
  
  /* ...but scale up the one you're actually hovering */
  .hero-products .product-img:hover {
    transform: scale(1.1);
    z-index: 2;
    position: relative;
    transform-origin: bottom 5px;
  
  }
  
  
  /* hom-png-pop-animation */
  .hom-pop-fly{
    position: absolute;
    left: -25px;
    top: 14vh;
  }
  .video-wrapper {
  position: relative;
  margin-top: -50px;
  text-align: center;
}

.video-thumbnail {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.video-poster {
  width: 300px;
}

.play-btn {
  position: absolute;
 
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

.deco {
  position: absolute;
  width: 60px;
}

.deco-left {
  top: -30px;
  left: -30px;
}

.deco-right {
  top: -30px;
  right: -30px;
}

/* Modal Styles */
.video-body{
  float: left;
  width: 100%;
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.video-modal .close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}


.video-thumbnail {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.video-poster {
  width: 100%;
  border-radius: 12px;
  z-index: 1;
  position: relative;
}

.play-btn {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    text-shadow: 0 0 10px #000;
    pointer-events: none;
    z-index: 2;
    width: 93.5%;
    border-radius: 0;
    height: 90%;
    margin: auto;
}
.lottie-box{
  width: 160px;
  margin: auto;
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
}

.deco {
  position: absolute;
  top: -140px;
  width: auto;
}

.deco-left {
  left: 150px;
}

.deco-right {
  top: -300px;
  right: -160px;
  position: absolute;
  z-index: 1;

}

.video-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  background: #000;
  padding: 20px;
  border-radius: 12px;
  max-width: 90%;
  width: 600px;
  position: relative;
}

.video-modal .close {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 22px;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
  box-shadow: 0 0 10px #000;
  color: #000;
}
/* 2col */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* space between columns */
  align-items: center;
}
.img-full{
  width: 100%;
}

/* 2col-end */
/* 3col */
.grid-3 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 100%;
}
.grid-3 .grid-item{
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  text-align: center;
}
/* 3col-end */
/* card */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 60px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card img{
  height: 264px;
  object-fit: cover;
  display: block;
  margin: auto;
}
/* sweet card */
.card .item-pop {
  padding: 40px;
  background-size: 20%; /* instead of 0 */
  background-repeat: no-repeat;
  background-position: center;
  
  transition: background-size 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sweet .item-pop{
  background-image: url(../assets/images/sweet-bg.png);
}
.salty .item-pop{
  background-image: url(../assets/images/salt-bg.png);
}
.sweet-salty .item-pop{
  background-image: url(../assets/images/sweet-salt-bg.png);
}
.sweet:hover{
  background-color: #F0DCFF;
}
.salty:hover{
  background-color: #d7ebff;
}
.sweet-salty:hover{
  background-color: #f0dcff;
}
.card:hover .item-pop {
  background-size: 120%;
}
.sweet .btn-prime, .pop-red .btn-prime{
  background-color: #E6061A;
  color: #fff;
}
.pop-blue .btn-prime{
  background-color: #7BB1E2;
  color: #fff;
}
.pop-violet .btn-prime{
  background-color: #7622BD;
  color: #fff;
}
.salty .btn-prime{
  background-color: #7bb1e2;
  color: #fff;
}
.sweet-salty .btn-prime{
  background-color: #7622bd;
  color: #fff;
}
.sweet .btn-prime:hover{
  background-color: #fff;
  color: #E6061A;
}
.salty .btn-prime:hover{
  background-color: #fff;
  color: #7bb1e2;
}
.sweet-salty .btn-prime:hover{
  background-color: #fff;
  color: #7622bd;
}
.card .item-pop img {
  transition: transform 0.4s ease;
}

.card:hover .item-pop img {
  transform: scale(1.05);
}

/* salt card */

.title-a h3{
  margin-bottom: 0px;
}
.title-a p{
  font-weight: 500;
  text-transform: uppercase;
}
/* card end */
/* general */
.text-center{
  text-align: center;
}
.p-80{
  padding: 80px 0;
}
/* general end */

.tesco .grid-item {
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
  text-align: center;
  height: 184px;
  display: flex
;
  align-items: center;
  justify-content: center;
}
.tesc0 .img-box {
  display: flex;
  height: 150px;
  align-items: center;
  justify-content: center;
}
.social-share .img-box {
  width: 100%;
  height: 184px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.social-share .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.social-share .img-box:hover img {
  transform: scale(1.05);
}

/* Remove border where needed */

/* 1st item - no top, no left */
.tesco .grid-item:nth-child(1) {
  border-top: none;
  border-left: none;
}

/* 2nd item - no top */
.tesco .grid-item:nth-child(2) {
  border-top: none;
}

/* 3rd item - no top, no right */
.tesco .grid-item:nth-child(3) {
  border-top: none;
  border-right: none;
}

/* 4th item - no left, no bottom */
.tesco .grid-item:nth-child(4) {
  border-left: none;
  border-bottom: none;
}

/* 5th item - no bottom */
.tesco .grid-item:nth-child(5) {
  border-bottom: none;
}

/* 6th item - no right, no bottom */
.tesco .grid-item:nth-child(6) {
  border-right: none;
  border-bottom: none;
}
.tesco{
  gap: 0;
  padding-top: 20px;
}
.social-share{
  padding-top: 20px;
}

  /* footer */
  .footer {
    background-color: var(--clr-primary-dark);
    color: var(--clr-text);
    padding: 6rem 0rem 0rem;
    text-align: center;
    position: relative;
    float: left;
    width: 100%;
  }
  
  .footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--clr-primary);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
    padding: 4rem 0;
  }
  
  .footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--clr-primary);
    text-transform: capitalize;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 0.5rem;
    color: var(--clr-primary);
  }
  
  .footer-col ul li a {
    color: var(--clr-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
  }
  
  .footer-col ul li a:hover {
    color: var(--clr-primary);
  }
  .footer-col p {
    color: var(--clr-primary);
  }
  .footer-copy {
    margin: 0rem;
    font-size: 0.875rem;
    color: var(--clr-text-dark);
  }
  .footertop{
    position: absolute;
    top: -20px;
    left: 0;
    background-size: contain;
    background-repeat: repeat;
    height: 50px;
    background-image: url('../assets/images/footer-bg.svg');
    width: 100%;
  }
 
  .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: start;
    margin-top: 1rem;
  }
  /* footer bottom */
  .footer-bottom {
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #FAF3D5;
    font-size: 14px;
    
  }
  .bottom-inner{
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  .footer-left {
    color: var(--clr-primary);
  }
  
  .footer-right {
    display: flex;
    gap: 20px;
  }
  
  .footer-right a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .map-view a{
    text-decoration: none;
    transition: color 0.3s ease;
    color: #000;
  }
  .footer-right a:hover {
    color: var(--clr-primary); /* or your brand color */
  }
 footer a, footer span{
    position: relative;
    color: var(--clr-primary);
    text-decoration: none;
    padding-bottom: 4px;
    transition: color 0.3s ease;
  }
  .map-view a {
    position: relative;
    text-decoration: none;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }
  
  footer a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary); /* or your brand color */
    transition: width 0.4s ease;
  }
  .map-view a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000; /* or your brand color */
    transition: width 0.4s ease;
  }
  .map-view a:hover::after{
    width: 100%;
  }
  footer a:hover {
    color: var(--clr-primary);
  }
  
  footer a:hover::after {
    width: 100%;
  }
  
  /* footer bottm */
  .social-icons a {
    color: var(--clr-primary);
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .map-view .social-icons a{
    color: #000;
  }
  .map-view .social-icons a:hover{
    color: #000;
  }
  
  .social-icons a:hover {
    color: var(--clr-primary);
    transform: scale(1.1);
  }
  .connect-btn {
    padding: 12px 22px 8px;
    font-size: 24px;
    color: var(--clr-primary-dark);
    border: none;
    background-color: var(--clr-primary);
    border-radius: 16px;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
	  text-decoration:none;
}
.connect-btn:after{
	content:none;
}
  .connect-btn:hover {
    transform: scale(1.05);
	  
  }
  /* Primary Button */
.btn-prime {
  font-size: 20px;
  color: var(--clr-primary);
  background-color: var(--clr-text);
  border: 2px solid rgb(0 0 0 / 0%);
  border-radius: 16px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
	padding: 12px 22px 8px;
	text-decoration:none;
}

.btn-prime:hover {
  background-color:#000;
  color: #fff;
  transform: translateY(-2px);
}


/* Secondary Button */
.btn-secondary {
  padding: 12px 22px 8px;
  font-size: 24px;
  color: var(--clr-text);
  background-color: var(--clr-primary);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background-color: var(--clr-text);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

/* Outline Button */

.btn-outline {
  padding: 12px 22px 8px;
	text-decoration:none;
    font-size: 20px;
    color: var(--clr-text);
    background-color: transparent;
    border: 2px solid var(--clr-text);
    border-radius: 16px;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.pop-red .btn-outline{
  border-color:#E6061A ;
  color: #E6061A;

}
.pop-blue .btn-outline{
  border-color:#7BB1E2 ;
  color: #7BB1E2;

}
.pop-violet .btn-outline{
  border-color:#7622BD ;
  color: #7622BD;

}
.btn-outline:hover {
  background-color: transparent;
  color: #000;
  transform: translateY(-2px);
  border-color: #000;
}

  /* cloud animation start */
  .cloud {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 400px;
    height: 100px;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0.8;
    z-index: 1;
  }
  
  /* Cloud 1 – slow horizontal drift */
  .cloud-1 {
    top: 100px;
    left: 10%;
    background-image: url('../assets/images/hero-cloud-a.svg');
    animation-name: cloudMove1;
  }
  
  /* Cloud 2 – float up and down */
  .cloud-2 {
    top: 200px;
    background-image: url('../assets/images/hero-cloud-b.svg');
    animation-name: cloudFloat;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
  }
  
  /* Cloud 3 – combine float + move */
  .cloud-3 {
    top: 40px;
    left: 75%;
    background-image: url('../assets/images/hero-cloud-c.svg');
    animation-name: cloudMove2;
  }
  
  /* Keyframes for horizontal drift */
  @keyframes cloudMove1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(100vw); }
  }
  
  /* Keyframes for floating motion */
  @keyframes cloudFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  /* Keyframes for diagonal floating + slight scale */
  @keyframes cloudMove2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -15px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
  }
  
  /* cloud animation end */

/* product section start */
.pop-red::before{
  background-image: url(../assets/images/love-bg.svg) !important;
  background-color: #ffdeeb !important;
  z-index: 9;
}
.pop-blue::before{
  background-image: url(../assets/images/b-bg-wawe.svg) !important;
  background-color: #d7ebff !important;
  z-index: 9;
}
.pop-violet::before{
  background-image: url(../assets/images/violet-bg.svg) !important;
  background-color: #f0dcff !important;
  z-index: 9;
}
.product-detail, .infotable, .infotable::after{
  position: relative;
}

.product-detail::before, .infotable::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  border-top: 30px solid transparent; /* only top border */
  border-image: url('../assets/images/light-border.png') 30 fill repeat;
  background: #ffffff;
  bottom: 0;
  z-index: -1;
}
.infotable::before, .infotable::after  {
  height: 100%;
}
.product-detail::after, .infotable::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  border-bottom: 30px solid transparent; /* only top border */
  border-image: url('../assets/images/light-top.png') 30 fill repeat;
  z-index: -1;
  bottom: 0;
 
}
.contact::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  border-bottom: 20px solid transparent; /* only top border */
  border-image: url('../assets/images/light-top.png') 30 fill repeat;
  z-index: 1;
  bottom: 0;
 
}
.product-detail .product-img {
  width: 440px;
  margin: auto;
  transition: transform 0.3s ease;
  display: block;
}
.product-detail .card h4{
    font-size: 20px;
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
}
.product-detail .card p{
  margin-bottom: 24px;
}
.size-tetail{
  padding: 10px 0;
}
.product-detail .size-tetail p{
  margin-bottom: 5px;
}
.btn-group{
  padding: 24px 0px;
}
.inner-title{
  margin-bottom: 40px;
}
.inner-title h1{
  font-size: 64px;
  text-transform: uppercase;
  color: var(--clr-text);
  line-height: 64px;
  margin-bottom: 0;
}
.inner-title h2{
  font-size: 68px;
  line-height: 38px;
  margin: 0 auto;
  color: #2c2c2b;
  font-family: 'LookingFlowers';
  font-weight: normal;
  margin-bottom: 20px;
}
.inner-title p{
  margin-bottom: 20px;
}
.inner-title{
  display: block;
  margin-bottom: 60px;
}
.col-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0; /* no gap since we're using borders */
  border-collapse: collapse;
}

.col {
  padding: 1rem;
  text-align: center;
  border-left: 2px solid #ccc; /* border between columns */
}
.pop-red .col{
  border-left: 2px solid #e6081b;
}
.pop-blue .col{
  border-left: 2px solid #7BB1E2;
}
.pop-violet .col{
  border-left: 2px solid #7622BD;
}
/* Remove border from first column */
.col:first-child {
  border-left: none;
}
.incredients h2{
    font-size: 42px;
    text-transform: uppercase;
    line-height: 42px;
}
.incredients.pop-red h2{
  color: #e6081b;
}
.incredients.pop-blue h2{
  color: #7BB1E2;
}
.incredients.pop-violet h2{
  color: #7622BD;
}
/* product section end */
/* table-costom with esponsive */
.elara-table-wrapper {
  max-width: 900px;
  margin: auto;
  overflow-x: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.elara-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif !important;
}

.elara-thead {
  background-color: #333;
  color: #fff;
}
.pop-red .elara-thead{
  background-color: #E6061A !important;
}
.pop-blue .elara-thead{
  background-color: #7BB1E2 !important;
}
.pop-violet .elara-thead{
  background-color: #7622BD !important;
}
.pop-red .elara-tbody .elara-tr:nth-child(odd) {
  background-color: #fff;
}
.pop-red .elara-tbody .elara-tr:nth-child(even) {
  background-color: #ffeef5;
}
.pop-blue .elara-tbody .elara-tr:nth-child(even) {
  background-color: #d7ebff;
}
.pop-violet .elara-tbody .elara-tr:nth-child(even) {
  background-color: #f0dcff;
}
.pop-red .elara-tbody .elara-tr:hover {
      background-color: #bd9846;
    cursor: pointer;
    color: #fff;
}
.pop-blue .elara-tbody .elara-tr:hover {
    background-color: #bd9846;
    cursor: pointer;
    color: #fff;
	
}
.pop-violet .elara-tbody .elara-tr:hover {
      background-color: #bd9846;
    cursor: pointer;
    color: #fff;
}
.elara-th, .elara-td {
  padding: 1rem;
  text-align: left;
  font-weight: 300;
}

.elara-tbody .elara-tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.elara-tbody .elara-tr:nth-child(even) {
  background-color: #e9e9e9;
}

.elara-tbody .elara-tr:hover {
  background-color: #d0ebff;
  cursor: pointer;
}
/* effect-styles */
/* Floating animation */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

/* Apply animation */
.shape1 {
  top: 10%;
  left: 15%;
/*   animation: floatUpDown 6s ease-in-out infinite; */
}

.shape2 {
  bottom: 10%;
  right: 20%;
/*   animation: floatLeftRight 8s ease-in-out infinite; */
}
.pop-red .left-ef{
  position: absolute;
    top: 25%;
    left: -215px;
}
.about .left-ef{
  position: absolute;
  left: -140px;
}
.ab-2 .left-ef {
    position: absolute;
    left: -140px;
    bottom: -25%;
    z-index: 9;
}
.ab-2 .right-b-ef {
    position: absolute;
    right: 0px;
    bottom: -25%;
	z-index:11
}
.right-b-ef img{
	width:250px
}
.pop-blue .left-ef{
  position: absolute;
  left: -140px;
}
.pop-violet .left-ef img{
  position: absolute;
  width: 200px;
  left: 0px !important;
}
.right-ef{
  position: absolute;
  top: 0%;
  right: -30px;
}
.right-ef img{
  width: 140px;
}
.bt-right-ef{
  position: absolute;
  bottom: -60px;
  right: -50px;
}
.bt-right-ef1{
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.bt-right-ef1 img{
  width: 17vh;
}
.bt-right-ef img{
  width: 170px;
}
.left-ef1{
    position: absolute;
    top: -80px;
    left: 0;
}
.left-ef1 img{
  width: 140px;
}
section{
  position: relative;
}
.left-ef2{
  position: absolute;
  top: 100px;
  left: 0;
}
.left-ef2 img{
  width: 200px;
}
/* effect-styles */

/* contact form */
.elara-contact-form {
  padding: 5rem;
  max-width: 728px;
  margin: auto;
	position:relative;
	z-index:11;
}
.elara-contact-form .btn-prime{
  width: 100%;
}
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
}
.title-form{
  text-align: center;
  margin-bottom: 40px;
}
.title-form h2{
  font-size: 38px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #000;
    border-radius: 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #bd9846;
  outline: none;
}

.detail-a {
  padding: 1rem;
}
.detail-a h5{
  font-family: 'FranklinGothic-med', sans-serif;
    font-size: 28px;
    margin-bottom: 16px;
}
.elara-btn:hover {
  background: #434190;
}
.about p{
  padding: 1rem;
}
.about .inner-title {
  margin-bottom: 30px;
}
/* roll back 2 image about */
.img-container {
  width: 100%;
  height: 300px;
  background-color: #fff; 
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}.img-container.one{
  background-image: url(../assets/images/b-bg-wawe.svg);
  background-color: #d7ebff;
}
.img-container.two{
  background-image: url(../assets/images/violet-bg.svg);
  background-color: #f0dcff;
}
.img-container.three{
  background-image: url(../assets/images/love-bg.svg);
  background-color: #ffdeeb;
}
.team{
  color: #fff;
  background-color: #BD9746;
}
.img-container img { 
  height: auto;
  position: absolute;
  transition: opacity 0.5s ease;
}

.img-container img.hover-img {
  opacity: 0;
}

.img-container:hover img.default-img {
  opacity: 0;
}

.img-container:hover img.hover-img {
  opacity: 1;
}
.name-block h6{
  font-size: 16px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    line-height: 12px;
}
.name-block p{
  color: #fff;
  margin-top: 8px;
}
/* roll back 2 image about end */
.title-b h3{
  margin-bottom: 40px;
}
.select-opt {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
}
.contact{
  background-image: url(../assets/images/contact-bg.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
/* map goooogle */
.card.map-view {
  padding: 0;
  padding-bottom: 30px;
  overflow: hidden;
}
.map-view .footer-grid{
  padding: 4rem;
}
.map-view h2{
  font-size: 20px;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
}
.contact-detail ul{
  list-style: none;
}
.contact-grid{
  padding: 4rem;
  display: flex;
}
.d-flex{
  display: flex;
}
.contact-grid .d-flex div, .contact-grid .row {
  width: 50%;
}

/* contact form */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-table td {
  padding: 0px;
  vertical-align: top;
  font-family: 'Poppins', sans-serif;
}

.responsive-table td:first-child {
  width: 50%;
}
/* carousal */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  margin-right: -130px;
  cursor:all-scroll;
}
.carousel-wrapper .inner-title p {
  max-width: 160px;
  margin: auto;
}
.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  scroll-snap-align: start;
}

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

.carousel-item {
  user-select: none;
  transition: transform 0.5s ease;
  text-align: center;
}
.carousel-item img{
  width: 50px;
}
.carousel-wrapper::before{
  content:'';
  position: absolute;
  width: 100%;
  height: 50px;
  background-image: url(../assets/images/carousal-track.svg);
  background-repeat: no-repeat;
  top: 50px;
  z-index: -1;
}

@media (min-width: 600px) {
  .carousel-item {
    min-width: 45%;
    max-width: 45%;
  }
}

@media (min-width: 1024px) {
  .carousel-item {
    min-width: 20%;
    max-width: 20%;
  }
}

.carousel::after {
  content: "";
  flex: 0 0 60px; /* for peek */
}

/* Carousal end */

@media (max-width: 800px) {
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    display: block;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
  }

  .responsive-table td:first-child {
    font-weight: bold;
    margin-bottom: 0.25rem;
  }
}
/* Mobile responsive */
@media (max-width: 768px) {
  .elara-table,
  .elara-thead,
  .elara-tbody,
  .elara-th,
  .elara-td,
  .elara-tr {
    display: block;
    width: 100%;
    border: none;
  }

  .elara-thead {
    display: none;
  }

  .elara-tr {
    margin-bottom: 0rem;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
}

  .elara-td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: none;
    padding-top: 5;
    padding-bottom: 5;
  }

  .elara-td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    text-align: left;
    color: #555;
  }

  .elara-td:last-child {
    border-bottom: none;
  }
}
/* table costom with responsive end */
  /* Responsive */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      text-align: center;
    }
    
  }
  
  @media (max-width: 480px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* footer end */

  @media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #111;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        display: none;
        text-align: center;
      }
    
      .nav-links.show {
        display: flex;
      }
    
      .nav-links a {
        margin: 2rem 0;
        display: block;
      }
      .navbar .logo{
        margin: 0;
      }
      .navbar .nav-container{
        justify-content: space-between;
      }
      .menu-toggle {
        display: block;
        color: var(--clr-primary-dark);
      }
      .grid-container, .grid-3 {
       display: block;
       margin-top: 30px;
      }
      .grid-3 .grid-item {
        margin-bottom: 20px;
        max-width: 100%;
        text-align: center;
      }
      /* product section */
      .col-5-grid {
        grid-template-columns: 1fr;
      }
    
      .col {
        border-left: none; /* no vertical borders on mobile */
        order: 2; /* default order */
      }
    
      .col:nth-child(3) {
        order: 1; /* bring middle column to top */
      }
      /* product section end */
      .hero-content h1 {
        font-size: 48px;
        line-height: 48px;
    }
    .hero-content p {
      font-size: 48px;
      line-height: 30px;
    }
    .product-img {
      width: 180px;
    }
    .hom-pop-fly, .hill-bg, .deco-right{
      display: none;
    }
    .hero-products {
      z-index: 3;
      top: -25px;
  }
    .cloud{
      display: none;
    }
    .hero {
      height: 75vh;
      background-size: 500px;
  }
  h3 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 8px;
}
.btn-prime, .btn-outline{
  font-size: 14px;
	        width: 100%;
        display: block;
        text-align: center;
}
	  .card .item-pop {
    padding: 15px;
	  }
.tesco{
  display: flex;
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 0;
}
.tesco img{
  width: 100%;
}
.tesco .grid-item{
  height: 70px;
  margin-bottom: 0;
}
.tesco .grid-item .img-box{
  padding: 10px;
}
.p-80 {
  padding: 40px 0;
}
.social-share{
  margin-top: 0;
  padding-top: 0;
  display: flex;
  gap: 10px;
}
.social-share .img-box {
  height: 100px;
}
h4 {
  font-size: 18px;
  line-height: 18px;
}
.footertop{
  top: -10px;
}
.about .d-flex{
  display: block;
}
.inner-title h1 {
  font-size: 48px;
  line-height: 48px;
  }
  .inner-title h2 {
    font-size: 56px;
    line-height: 28px;
  }
  .about p {
    padding: .5rem;
    text-align: center;
}
.jurny{
  overflow: hidden;
}
.img-container {
  width: 280px;
  margin: auto;
  margin-bottom: 10px;
}
.social-icons{
  justify-content: center;
}
.bottom-inner {
  display: block;
  max-width: max-content;
  margin: auto;
  text-align: center;
  width: auto;
}
.elara-contact-form {
  padding: 2rem;
}
.title-form h2 {
  font-size: 28px;
  line-height: normal;
}
.contact-grid {
  padding: 2rem;
  display: block;
}
.contact-grid .d-flex div, .contact-grid .row {
  width: 100%;
}
.contact-grid .d-flex{
  display:block;
  margin-bottom: 40px;
}
.contact-grid .social-icons{
  justify-content: start;
}
.responsive-table td:first-child {
  width: 100%;
}
.left-ef, .right-ef, .bt-right-ef, .left-ef1,.left-ef2, .right-ef1, .bt-right-ef1, .right-b-ef{
  display:none;
}
.product-detail .product-img {
  width: 264px;
}
.pop-blue .col{
  border: none;
}
.other-products .inner-title{
  margin-bottom: 30px;
}
.navbar::after, .abt-2nd-block::after {
  bottom: -30px;
}
.scrolled.navbar::after {
  bottom: -40px;
}
.nav-links.show {
  display: block;
  background: #d0c9af;
  top: 90px;
}
.navbar .logo img {
  width: 120px;
  transition: width 0.4s ease;
  margin-right: 28px;
}
.show .nav-item.d-none{
  display: block;
}
	  #youtubePlayer{
		  width:100%;
	  }
}


/* animation */

.juggle-hover {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
.juggle-hover:hover {
  animation: juggle 0.6s infinite ease-in-out alternate;
}

@keyframes juggle {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}