* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}


/* ROLNER font */

@font-face {
  font-family: 'ROLNER';
  src: url('fonts/ROLNER.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Bronco font */
@font-face {
  font-family: 'Bronco';
  src: url('fonts/BroncoPersonalUse.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* navbar height */
  padding: 0 40px; /* only left/right padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  height: 100%; /* match navbar height */
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;   /* fill navbar height */
  width: auto;    /* keep aspect ratio */
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-item {
  color: #f3d011;
  position: absolute;
  top: 4px;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #fff;
  bottom: 7px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  color: #f3d011;
  text-decoration: none;
  padding: 8px 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.717);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 1000;
}

.dropdown-menu a {
  padding: 10px 14px;
  color: #f3d011;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  border-radius: 16px;
  background-color: #f3d011;
  color: #1a001f;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: flex;
}

.account-icon {
  margin-left: -10px;
  cursor: pointer;
}

.account-icon img {
  width: 25px;
  height: auto;
  transition: transform 0.2s ease;
}

.account-icon img:hover {
  transform: scale(1.1);
}

.cart-icon {
  cursor: pointer;
  position: relative;
  margin-left: -10px;
}

.cart-icon img {
  width: 25px;
  height: auto;
  transition: transform 0.2s ease;
}

.cart-icon img:hover {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: red;
  color: white;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
}

.quantity-control button {
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  background-color: #622875;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background-color: #fff;
  color: #000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-controls button {
  background-color: #622875;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.checkout-btn {
  background-color: #f3d011;
  color: #000;
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.overlay.active {
  display: block;
}
/* hamburger*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: sans-serif;
}

/* Right side hamburger icon */
.logo {
  color: #FFD700; /* Golden yellow */
  font-size: 24px;
  font-weight: bold;
}

.hamburger-icon {
  font-size: 26px;
  padding: 0px 12px;
  background: transparent ;
  color: yellow;
  border-radius: 8px;
  cursor: pointer;
}

/* Right slide-in menu */
.hamburger-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Start off screen */
  height: 100vh;
  width: 40vw;
  background-color: black;
  color: yellow;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  transition: right 0.3s ease-in-out;
  z-index: 999;
}

.menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1.5rem;
}
.hamburger-menu .submenu li a {
  color: yellow;
  font-size: 1.2rem;
  text-decoration: none;
}

.hamburger-menu .submenu li {
  margin: 10px 0;
}
.menu-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-icon {
  position: relative;
  font-size: 20px;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}
.hamburger-icon,
.hamburger-menu {
  display: none;
}


@media (max-width: 768px) {
  .hamburger-icon {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    display: none; /* Hide full nav on mobile */
  }
}


/* Container (Card Section) */
main {
  padding-top: 90px;
}

.container {
  display: flex;
  width: 99%;
  height: 85vh;
  gap: 16px;
  margin: 5px;
}

.card {
  flex: 1;
  position: relative;
  transition: flex 0.6s ease-in-out;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #111;
}

.card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none
}

.card:hover {
  flex: 2.5;
  z-index: 2;
}

.card.active {
  flex: 2.5;
  z-index: 2;
}

.container:hover .card:not(:hover):not(.active),
.container:hover .card.active:not(:hover) {
  flex: 0.6;
}

.mini-info {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 200px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: white;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 3;
  pointer-events: none;
  justify-content: space-between;
  cursor: pointer;
}

.card:hover .mini-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mini-info:hover {
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.mini-info img {
  width: 35px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  align-self: center;
  bottom: 35%;
}

.mini-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  padding-bottom: 8px;
}

.mini-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.mini-text p {
  font-size: 0.5rem;
  line-height: 1.1;
}

/* Mobile (≤ 480px, includes 360px devices) */
@media (max-width: 480px) {
  .container {
    flex-direction: column;   /* stack cards vertically */
    height: auto;             /* let height grow naturally */
    gap: 12px;
  }

  .card {
    flex: none;               /* disable flex growth/shrink */
    width: 100%;              /* full width */
    height: 250px;            /* fixed card height for mobile */
    border-radius: 16px;
  }

  .card:hover {
    flex: none;               /* no expansion on hover */
    transform: scale(1.03);   /* add a slight zoom instead */
  }

  .card.active {
    flex: none;
  }

  .mini-info {
    width: 120px;
    height: 160px;
    bottom: 12px;
    right: 12px;
    padding: 10px;
  }

  .mini-info img {
    width: 28px;
  }

  .mini-text h4 {
    font-size: 0.75rem;
  }

  .mini-text p {
    font-size: 0.55rem;
  }
}

/* Mobile devices (≤ 480px, includes 360px & 480px) */
@media (max-width: 480px) {
  .container {
    flex-direction: column;   /* stack cards vertically */
    height: auto;             /* auto height for content */
    gap: 12px;
  }

  .card {
    flex: none;               /* disable flex grow/shrink */
    width: 100%;              /* full width */
    height: 280px;            /* slightly taller than 360px version */
    border-radius: 16px;
  }

  .card:hover {
    flex: none;               
    transform: scale(1.03);   /* smooth zoom on hover */
  }

  .card.active {
    flex: none;
  }

  .mini-info {
    width: 140px;
    height: 180px;
    bottom: 14px;
    right: 14px;
    padding: 10px;
  }

  .mini-info img {
    width: 32px;
  }

  .mini-text h4 {
    font-size: 0.8rem;
  }

  .mini-text p {
    font-size: 0.6rem;
  }
}

/* Tablet devices (≤768px) */
@media (max-width: 768px) {
  .container {
    flex-direction: row;   /* keep cards in a row */
    flex-wrap: wrap;       /* allow wrapping */
    height: auto;
    gap: 14px;
  }

  .card {
    flex: 1 1 calc(50% - 14px); /* 2 cards per row */
    height: 300px;
    border-radius: 18px;
  }

  .card:hover {
    flex: 1 1 calc(50% - 14px);
    transform: scale(1.05);   /* zoom effect instead of big expansion */
  }

  .card.active {
    flex: 1 1 calc(50% - 14px);
  }

  .mini-info {
    width: 150px;
    height: 190px;
    bottom: 16px;
    right: 16px;
    padding: 12px;
  }

  .mini-info img {
    width: 34px;
  }

  .mini-text h4 {
    font-size: 0.9rem;
  }

  .mini-text p {
    font-size: 0.65rem;
  }
}





/* MARQUEE */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: inset 0 0 40px rgba(243, 208, 17, 0.1);
  border-top: 2px solid #f3d011;

}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
  animation-duration: 5s;
  /* Faster on hover */
}

.marquee-track img {
  height: 50px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);

}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Tablet (≤768px) */
/* Tablet (≤768px) */
@media (max-width: 768px) {
  .marquee-track {
    display: flex;
    gap: 0;                  /* remove spacing */
    animation-duration: 25s; /* slightly faster on tablet */
  }

  .marquee-track img {
    height: 40px;     /* resize for tablet */
    margin: 0;        /* remove gap */
    padding: 0;       /* remove gap */
    display: block;   /* removes inline spacing */
    flex-shrink: 0;   /* prevents shrinking */
  }
}





/* About Section */
.about-section {
  background: #442f86;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  border-top: 2px solid #f3d011;
  border-bottom: 2px solid #f3d011;
}

.about-lines {
  max-width: 900px;
  margin: auto;
}


.about-lines h2 {
  font-family: "rolner", serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f3d011;
  letter-spacing: 3px;

}

.line {
  font-size: 1.5rem;
  color: #ffffff;
  opacity: 0.2;
  transform: translateY(20px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.line.visible {
  opacity: 1;
  transform: translateY(0);
}

.line:nth-child(1) {
  transition-delay: 0.1s;
}

.line:nth-child(2) {
  transition-delay: 0.3s;
}

.line:nth-child(3) {
  transition-delay: 0.5s;
}

.line:nth-child(4) {
  transition-delay: 0.7s;
}

.line:nth-child(5) {
  transition-delay: 0.8s;
}

.about-lines strong {
  color: #ffdb3a;
}

.about-button {
  font-family: "montserrat", sans-serif;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  color: #442f86;
  background-color: #f3d011;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.about-button:hover {
  background-color: #ffdb3a;
  color: #000;
  transform: scale(1.05);
}

/* second MARQUEE */
.second-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: inset 0 0 40px rgba(243, 208, 17, 0.1);
  border-bottom: 2px solid #f3d011;
}

.second-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-right 40s linear infinite;
  will-change: transform;
}

.second-marquee-wrapper:hover .second-marquee-track {
  animation-duration: 5s;
  /* Faster on hover */
}

.second-marquee-track img {
  height: 50px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);

}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .second-marquee-track {
    display: flex;
    gap: 0;                  /* remove spacing */
    animation-duration: 25s; /* slightly faster on tablet */
  }

  .second-marquee-track img {
    height: 40px;     /* resize for tablet */
    margin: 0;        /* remove gap */
    padding: 0;       /* remove gap */
    display: block;   /* removes inline spacing */
    flex-shrink: 0;   /* prevents shrinking */
  }
}

/* PARALLAX BOTTLE SECTION */
.parallax-bottle-section {
  position: relative;
  height: 100vh;
  background-color: #cd1879;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 5;
}

.parallax-text {
  font-family: "rolner", serif;
  position: relative;
  z-index: 1;
  font-size: 6vw;
  font-weight: 800;
  color: #f3d011;
  text-align: center;
  letter-spacing: 4px;
  user-select: none;
}

.bottle-wrapper {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.bottle {
  position: absolute;
  bottom: 0;
  width: 330px;
  max-width: 35vw;
  transition: transform 0.3s ease;
}

.left-bottle {
  left: -150px;
  transform: rotate(-10deg);
}

.right-bottle {
  right: -150px;
  transform: rotate(10deg);
}

/* third marquee */
.third-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: inset 0 0 40px rgba(243, 208, 17, 0.1);
  border-top: 2px solid #f3d011;
  border-bottom: 2px solid #f3d011;
}

.third-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.third-marquee-wrapper:hover .third-marquee-track {
  animation-duration: 5s;
  /* Faster on hover */
}

.third-marquee-track img {
  height: 50px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);

}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .third-marquee-track {
    display: flex;
    gap: 0;                  /* remove spacing */
    animation-duration: 25s; /* slightly faster on tablet */
  }

  .third-marquee-track img {
    height: 40px;     /* resize for tablet */
    margin: 0;        /* remove gap */
    padding: 0;       /* remove gap */
    display: block;   /* removes inline spacing */
    flex-shrink: 0;   /* prevents shrinking */
  }
}

.product-section {
  background-color: #e05928;
  text-align: center;
  padding: 50px 30px;
}

.product-heading {
  font-family: 'rolner', serif;
  letter-spacing: 5px;
  font-size: 7rem;
  margin-bottom: 10px;
  color: #f3d011;
}

/* Special "O" Styling */
.goti-o {
  font-family: 'rolner', serif;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
  color: #f3d011;
}

/* On Hover - Hide O and show Goti */
.goti-o:hover {
  color: transparent;
}

/* Add the goti as background on hover */
.goti-o:hover::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 50%;
  width: 79px;
  height: 79px;
  transform: translate(-50%, -50%) scale(1);
  background-image: url('Asset 4.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: pop-goti 0.6s ease-out forwards;
  z-index: 1;
}

/* Goti animation */
@keyframes pop-goti {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  60% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.product-card img {
  width: 100px;
  object-fit: contain;
  height: auto;
  margin-bottom: 15px;
  display: block;

}

.product-card img:hover {
  animation: shake 0.4s ease-in-out;

}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0);
  }
}

.shop-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  color: #1a001f;
  background-color: #f3d011;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background-color: #ffdb3a;
  color: #000;
  transform: scale(1.05);
}
/* ✅ Tablet and mobile */
@media (max-width: 768px) {
  .product-section {
    padding: 40px 20px;
  }

 .product-heading {
    font-size: 3.5rem; /* ⬆️ slightly bigger */
    letter-spacing: 3px;
    line-height: 1.2;
  }

  .product-grid {
    gap: 24px;
  }

   .goti-o:hover::before {
    width: 40px;
    height: 40px;
  }
  .product-card {
    width: 45%;
  }

  .shop-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* ✅ Small mobile devices */
@media (max-width: 480px) {
  .product-section {
    padding: 30px 15px;
  }

  .product-heading {
    font-size: 2.6rem; /* ⬆️ better for small phones */
    letter-spacing: 2px;
  }

  .product-card {
    width: 80%;
  }
 .goti-o:hover::before {
    width: 40px;
    height: 40px;
  }
  .product-card img {
    width: 80px;
  }

  .shop-btn {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}



/* fourth MARQUEE */
.fourth-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: inset 0 0 40px rgba(243, 208, 17, 0.1);
  border-bottom: 2px solid #f3d011;
  border-top: 2px solid #f3d011;
}

.fourth-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-right 40s linear infinite;
  will-change: transform;
}

.fourth-marquee-wrapper:hover .fourth-marquee-track {
  animation-duration: 5s;
  /* Faster on hover */
}

.fourth-marquee-track img {
  height: 50px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);

}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .fourth-marquee-track {
    display: flex;
    gap: 0;                  /* remove spacing */
    animation-duration: 25s; /* slightly faster on tablet */
  }

  .fourth-marquee-track img {
    height: 40px;     /* resize for tablet */
    margin: 0;        /* remove gap */
    padding: 0;       /* remove gap */
    display: block;   /* removes inline spacing */
    flex-shrink: 0;   /* prevents shrinking */
  }
}


.custom-pack-section {
  background-color: #b82a41;
  padding: 40px 20px;
  text-align: center;
}

.custom-pack-section h2 {
  font-family: "rolner", serif;
  letter-spacing: 5px;
  font-size: 4rem;
  color: #f3d011;
  margin-bottom: 3px;
}
.custom-pack-section p{
  font-family: "montserrat", serif;
  color: #f3d011;
  text-align: center;
 font-size: 1rem;
}
.bottle-scatter-area {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
}


.draggable-bottle {
  width: 40px;
  height: auto;
  position: absolute;
  cursor: grab;
  transition: transform 0.2s;
  user-select: none;
}

.draggable-bottle:active {
  cursor: grabbing;
}

.bottle-drop-box {
  width: 500px;
  height: 400px;                /* increase height */
  margin: 0 auto;               /* keeps it centered horizontally */
  position: relative;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  justify-items: center;
  align-items: center;
  padding: 65px;
}

.bottle-drop-box .carton-bg {
  position: absolute;
  inset: 0;                     /* shorthand for top, right, bottom, left: 0 */
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}

.bottle-drop-box .draggable-bottle {
  position: relative;
  z-index: 1;                   /* bottles above the carton */
}

.bottle-drop-box .draggable-bottle {
  width: 38px;         /* control bottle size */
  height: auto;        /* proportional height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-text {
  position: absolute;
  bottom: 160px;
  right: 40px;
  color: #ffffff50;
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  pointer-events: none;
  font-family: 'montserrat', sans-serif;
}


.checkout-bttn {
  padding: 12px 30px;
  background-color: #f3d011;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.checkout-bttn:hover {
  background-color: #ffdb3a;
  color: #000;
  transform: scale(1.05);
}

/* Responsive for custom pack */
@media (max-width: 768px) {
  .custom-pack-section {
    padding-top: 20px;
    padding-bottom: 30px;
  }


  .custom-pack-section h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .custom-pack-section p {
    font-size: 0.95rem;
  }

  .bottle-scatter-area {
    margin-bottom: 80px; /* reduce gap */
    height: auto;
  }

  .draggable-bottle {
    width: 25px; /* smaller bottle size */
  }

    .bottle-drop-box {
    width: 260px;
    height: 180px;
    padding: 16px;
    margin: 0 auto 20px auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

 .bottle-drop-box .carton-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }

  .overlay-text {
    position: absolute;
    bottom: 60px;
    left: 10px;
    right: 10px;
    font-size: 0.55rem;
    color: #ffffffb0;
    z-index: 2;
    text-align: center;
    padding: 5px;
  }

   .checkout-bttn {
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}

/* Mobile Responsive (up to 480px, covers 360px too) */
@media (max-width: 480px) {

  .custom-pack-section {
    padding: 20px 10px;
  }

  .custom-pack-section h2 {
    font-size: 2rem;   /* reduce heading size */
    letter-spacing: 2px;
    margin-bottom: 5px;
  }

  .custom-pack-section p {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .bottle-drop-box {
    width: 90%;            /* shrink width to fit */
    max-width: 200px;      /* limit on small screens */
    height: 180px;         /* reduce height */
    grid-template-columns: repeat(2, 1fr); /* only 2 bottles per row */
    grid-template-rows: repeat(3, 1fr);   /* adjust rows */
    padding: 30px;
    gap: 8px;
  }

  .bottle-drop-box .draggable-bottle {
    width: 30px;  /* smaller bottles */
  }

  .overlay-text {
    bottom: 60px;
    right: 15px;
    font-size: 0.5rem;
    padding: 4px 10px;
  }

  .checkout-bttn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
  }
}

/* Extra small screens - 360px */
@media (max-width: 360px) {

  .custom-pack-section {
    padding: 15px 8px;
  }

  .custom-pack-section h2 {
    font-size: 1.6rem;   /* smaller heading */
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }

  .custom-pack-section p {
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 0 8px;
  }

  .bottle-drop-box {
    width: 95%;            /* almost full width */
    max-width: 150px;      /* tighter for 360px */
    height: 160px;         /* reduce height */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 20px;
    gap: 6px;
  }

  .bottle-drop-box .draggable-bottle {
    width: 10px !important;   /* force smaller bottles */
    height: auto;
  }

  .overlay-text {
    bottom: 60px;
    right: 10px;
    font-size: 0.4rem;
    padding: 3px 8px;
  }

  .checkout-bttn {
    padding: 5px 1px;
    font-size: 0.8rem;
    border-radius: 18px;
  }
}



/* fifth marquee */
.fifth-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: inset 0 0 40px rgba(243, 208, 17, 0.1);
  border-top: 2px solid #f3d011;
  border-bottom: 2px solid #f3d011;
}

.fifth-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.fifth-marquee-wrapper:hover .fifth-marquee-track {
  animation-duration: 5s;
  /* Faster on hover */
}

.fifth-marquee-track img {
  height: 50px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);

}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .fifth-marquee-track {
    display: flex;
    gap: 0;                  /* remove spacing */
    animation-duration: 25s; /* slightly faster on tablet */
  }

  .fifth-marquee-track img {
    height: 40px;     /* resize for tablet */
    margin: 0;        /* remove gap */
    padding: 0;       /* remove gap */
    display: block;   /* removes inline spacing */
    flex-shrink: 0;   /* prevents shrinking */
  }
}

/*testimonals*/
.testimonial-collage {
  background-color: #077d3f;
  color: #fffad1;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testimonial-title {
  font-family: "rolner",sans-serif;
  letter-spacing: 0.1rem;
  font-size: 7rem;
  font-weight: bold;
  color: #f3d011;
  margin-bottom: -5px;
}

.testimonial-subtitle {
  font-size: 1.5rem;
  color: #fffad1;
  margin-bottom: 60px;
}

.polaroid-canvas {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 400px;
}

.polaroid {
  width: 180px;
  padding: 10px;
  background: white;
  border: 3px solid #fff;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  position: absolute;
  transition: transform 0.3s ease;
}

.polaroid:hover {
  transform: scale(1.07) rotate(0deg);
  z-index: 10;
}

.polaroid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.polaroid p {
  color: #333;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Overlapping placements and rotation */
.p1 {
  top: 1px;
  left: 40px;
  transform: rotate(-6deg);
  z-index: 1;
}

.p2 {
  top: 40px;
  left: 160px;
  transform: rotate(5deg);
  z-index: 2;
}

.p3 {
  top: 10px;
  left: 280px;
  transform: rotate(-4deg);
  z-index: 3;
}

.p4 {
  top: 50px;
  left: 400px;
  transform: rotate(3deg);
  z-index: 4;
}

.p5 {
  top: 1px;
  left: 530px;
  transform: rotate(-3deg);
  z-index: 5;
}

.p6 {
  top: 40px;
  left: 660px;
  transform: rotate(6deg);
  z-index: 6;
}

.p7 {
  top: 20px;
  left: 780px;
  transform: rotate(-5deg);
  z-index: 7;
}

.testimonial-actions {
  margin-top: -120px;
}




/* Rotation animation */
@keyframes rotateFruit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Lemon rotates clockwise */
.lemon-rotate {
  position: absolute;
  width: 50px;
  top: 150px;
  left: -120px;
  z-index: 3;
  pointer-events: none;
  animation: rotateFruit 12s linear infinite;
  transform-origin: center center;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
}

/* Orange rotates anti-clockwise */
.orange-rotate {
  position: absolute;
  width: 60px;
  top: -40px;
  right: -120px;
  z-index: 0; /* stays behind the card */
  pointer-events: none;
  animation: rotateFruit 14s linear infinite reverse;
  transform-origin: center center;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
}

/* Tablet Responsive (max-width: 768px) */
@media (max-width: 768px) {
  
  .testimonial-title {
    font-size: 3.5rem;   /* smaller title */
    margin-bottom: 10px;
  }

  .testimonial-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .polaroid-canvas {
    max-width: 100%;
    height: 380px;       /* reduce height */
  }

  .polaroid {
    width: 120px;        /* smaller cards */
    padding: 8px;
  }

  .polaroid img {
    height: 120px;       /* smaller image */
  }

  .polaroid p {
    font-size: 0.75rem;
  }

  /* Adjust positions so they don’t overflow */
  .p1 { top: 5px; left: 20px; }
  .p2 { top: 25px; left: 110px; }
  .p3 { top: 10px; left: 200px; }
  .p4 { top: 35px; left: 290px; }
  .p5 { top: 5px;  left: 380px; }
  .p6 { top: 25px; left: 470px; }
  .p7 { top: 15px; left: 560px; }

  .testimonial-actions {
    margin-top: -60px;
  }

  .testimonial-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    margin: 6px;
  }

  /* Fruits smaller */
  .lemon-rotate {
    width: 35px;
    top: 120px;
    left: -80px;
  }

  .orange-rotate {
    width: 45px;
    top: -20px;
    right: -80px;
  }
}


/* Mobile Responsive (max-width: 480px) */
@media (max-width: 480px) {

  .polaroid-canvas {
    position: relative;
    width: 100%;
    max-width: 380px;   /* fit inside mobile */
    height: 120px;      /* enough space for 2 rows */
    margin: 0 auto;
    overflow: visible;
  }

  .polaroid {
    width: 90px;        /* smaller cards */
    padding: 6px;
    position: absolute;
    transition: transform 0.3s ease;
  }

  .polaroid img {
    height: 70px;
  }

  .polaroid p {
    font-size: 0.6rem;
  }

  /* First row (4 cards) */
  .p1 { top: 10px;  left: 10px;  transform: rotate(-6deg); }
  .p2 { top: 20px;  left: 90px;  transform: rotate(5deg); }
  .p3 { top: 5px;   left: 170px; transform: rotate(-4deg); }
  .p4 { top: 25px;  left: 250px; transform: rotate(3deg); }

  /* Second row (3 cards) */
  .p5 { top: 150px; left: 40px;  transform: rotate(-3deg); }
  .p6 { top: 150px; left: 130px; transform: rotate(6deg); }
  .p7 { top: 155px; left: 220px; transform: rotate(-5deg); }

  .testimonial-title {
    font-size: 1.8rem;
  }

  .testimonial-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .testimonial-actions {
    margin-top: 220px;  /* push buttons below collage */
  }

  .testimonial-btn {
    padding: 7px 14px;
    font-size: 0.75rem;
  }
  
  /* Lemon on first polaroid */
  .lemon-rotate {
    width: 28px;
    position: absolute;
    top: -40px;     /* overlap top edge */
    left: -25px;  /* slight offset to left */
    z-index: 5;   /* above the card */
    animation: rotateFruit 12s linear infinite;
     /* Ensure full circle is visible */
  object-fit: contain;
  overflow: visible;
  }

  /* Orange on last polaroid */
  .orange-rotate {
    width: 40px;
    position: absolute;
    top: 100px;       /* overlap top edge */
    right: -60px;   /* slight offset to right */
    z-index: 10;     /* above the card */
    animation: rotateFruit 14s linear infinite reverse;
     /* Ensure full circle is visible */
  object-fit: contain;
  overflow: visible;
  }
}

/* Mobile Responsive (max-width: 360px) */
@media (max-width: 360px) {

  .polaroid-canvas {
    position: relative;
    width: 100%;
    max-width: 320px;   /* fit inside small phones */
    height: 110px;      /* slightly reduced height */
    margin: 0 auto;
    overflow: visible;
  }

  .polaroid {
    width: 80px;        /* smaller polaroids */
    padding: 5px;
    position: absolute;
    transition: transform 0.3s ease;
  }

  .polaroid img {
    height: 60px;       /* shrink images */
  }

  .polaroid p {
    font-size: 0.55rem; /* tiny captions */
  }

  /* First row (4 cards) */
  .p1 { top: 8px;  left: 8px;   transform: rotate(-6deg); }
  .p2 { top: 18px; left: 80px;  transform: rotate(5deg); }
  .p3 { top: 4px;  left: 150px; transform: rotate(-4deg); }
  .p4 { top: 22px; left: 220px; transform: rotate(3deg); }

  /* Second row (3 cards) */
  .p5 { top: 130px; left: 25px;  transform: rotate(-3deg); }
  .p6 { top: 130px; left: 110px; transform: rotate(6deg); }
  .p7 { top: 135px; left: 195px; transform: rotate(-5deg); }

  .testimonial-title {
    font-size: 1.6rem; /* smaller heading */
  }

  .testimonial-subtitle {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .testimonial-actions {
    margin-top: 200px;  /* push buttons below */
  }

  .testimonial-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  /* Lemon on first polaroid */
  .lemon-rotate {
    width: 25px;
    position: absolute;
    top: -30px;     /* overlap */
    left: -20px;
    z-index: 5;
    animation: rotateFruit 12s linear infinite;
    object-fit: contain;
    overflow: visible;
  }

  /* Orange on last polaroid */
  .orange-rotate {
    width: 35px;
    position: absolute;
    top: 80px;
    right: -45px;
    z-index: 10;
    animation: rotateFruit 14s linear infinite reverse;
    object-fit: contain;
    overflow: visible;
  }
}






/* sixth MARQUEE */
.sixth-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: inset 0 0 40px rgba(243, 208, 17, 0.1);
  border-bottom: 2px solid #f3d011;
  border-top: 2px solid #f3d011;
}

.sixth-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-right 40s linear infinite;
  will-change: transform;
}

.sixth-marquee-wrapper:hover .sixth-marquee-track {
  animation-duration: 5s;
  /* Faster on hover */
}

.sixth-marquee-track img {
  height: 50px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);

}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .sixth-marquee-track {
    display: flex;
    gap: 0;                  /* remove spacing */
    animation-duration: 25s; /* slightly faster on tablet */
  }

  .sixth-marquee-track img {
    height: 40px;     /* resize for tablet */
    margin: 0;        /* remove gap */
    padding: 0;       /* remove gap */
    display: block;   /* removes inline spacing */
    flex-shrink: 0;   /* prevents shrinking */
  }
}

.footer-section {
  background: #622875;
  color: #f3d011;
  padding: 60px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-section em {
  font-style: italic;
}

.newsletter {
  text-align: center;
  margin-bottom: 50px;
}

.newsletter h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;

}

.input-group input {
  padding: 10px 15px;
  font-size: 1rem;
  flex: 1;
  border-radius: 30px;
  border: none;
  border-right: none;
  background: #f3d011;
  color: #622875;
  outline: none;
}

.input-group button {
  padding: 10px 30px;
  margin-left: 5px;
  background-color: #f3d011;
  color: #622875;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-group button:hover {
  background-color: #f3d011;
  color: #ffffff;
  transform: scale(1.05);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.footer-col {
  color: #ffffff;
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #f3d011;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff8e1;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #f3d011;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}
.footer-col a {
  color: #f3d011; /* Replace with your desired color */
  text-decoration: none; /* Optional: removes underline */
}

.footer-col a:hover {
  color: #fff; /* Optional: hover effect */
}

.footer-bottom p {
  font-family: "rolner", serif;
  text-align: center;
  font-size: 9.5rem;
  letter-spacing: 5px;
  color: #f3d011;
}


/* ========== Responsive Footer Styles ========== */
/* ========== Responsive Footer Styles ========== */


@media (max-width: 1024px) {
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom p {
    font-size: 7rem;
    text-align: center;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .newsletter h2 {
    font-size: 2rem;
  }

  .newsletter p {
    font-size: 1rem;
  }

  .input-group {
    flex-direction: column;
    gap: 10px;
  }

  .input-group input,
  .input-group button {
    width: 100%;
    margin: 0;
    border-radius: 30px;
    font-size: 1rem;
  }

  /* Keep 2x2 grid for 768px too */
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col h4 {
    font-size: 1rem;
  }

  .footer-col ul li a,
  .footer-col p {
    font-size: 0.9rem;
  }

  .social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .footer-bottom p {
    font-size: 5.5rem;
    text-align: center;
    letter-spacing: 3px;
    margin-top: 40px;
  }
}



@media (max-width: 480px) {
  /* Stack vertically only on very small screens */
  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .footer-bottom p {
    font-size: 2.5rem;
  }

  .newsletter h2 {
    font-size: 1.6rem;
  }
}





/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 200px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.show {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
  }

  .container {
    flex-direction: column;
    height: auto;
  }

  .card {
    flex: none;
    height: 280px;
  }

  .mini-info {
    display: none;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}