/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* Reset / base */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Philosopher', sans-serif;
  font-style: normal;
}
body {
  color: #333;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* HEADER / NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.burger {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.logo .logo-img {
  width: 100px;
}

/* SIDE MENU (overlay) */
.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: rgba(222, 241, 204, 0.9);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: left 0.5s ease;
  z-index: 1100;
  padding-top: 56px; /* so menu sits below header */
}
.side-menu.open {
  left: 0;
}

.side-menu .close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: 200px;
}

.side-menu ul {
  list-style: none;
}
.side-menu li {
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.side-menu li a {
  color: rgb(58, 58, 58);
  font-weight: 500;
  font-size: 18px;
}

/* MAIN content wrapper */
.main {
  margin-top: 56px; /* space for fixed header */
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 150px;
}
.carousel-inner {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel-inner img {
  width: 100%;
  flex-shrink: 0;
}
.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-90%);
  pointer-events: none;
  padding: 0px 10px 0px 10px;
}
.carousel-buttons button {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 8px;
  pointer-events: all;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-buttons button .btn-icon {
  width: 15px;
}

/* main heading  */

.main-tag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #163d28;
  position: relative;
  overflow: hidden;
}

/* Background gradient with subtle glow */
.main-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #e9ffd9, #ffffff);
  z-index: -1;
}

/* Coconut image */
.main-tag img {
  max-width: 380px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.5s ease;
}
.main-tag img:hover {
  transform: rotate(-5deg) scale(1.05);
}

/* Tagline */
.tag-head {
  font-size: 20px;
  font-weight: 500;
  color: #388e3c;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease-in-out;
}

/* Main Highlight Title */
.highlight {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2e7d32;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
  animation: slideUp 1s ease;
}

/* Info paragraph */
.info {
  font-size: 18px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

/* Promise line */
.promise {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}
.promise::before,
.promise::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: #a5d6a7;
}
.promise::before {
  left: -60px;
}
.promise::after {
  right: -60px;
}

/* Video container */
.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.intro-vid {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* intro video  */

.video-container {
  width: 300px;
  height: 500px;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.intro-vid {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.video-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.video-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

/* product */
.products {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: 20px;
  margin-right: 20px;
}

.product {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  color: #0f0700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-info h3 {
  margin-top: 10px;
  color: #4e342e; /* Dark brown heading */
}

.product-info .catchy-line {
  font-style: italic;
  color: #827717; /* Dark yellow */
}

.product-info ul {
  margin-top: 10px;
  list-style-type: disc;
  padding-left: 20px;
}

/* social media  */

.social-media {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.social-media a img {
  width: 40px; /* Icon size */
  height: 40px;
  object-fit: cover;
  display: block;
}

/* faq  */

.faq {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.faq h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.faq ul {
  list-style: none;
  padding: 0;
}

.faq li {
  margin-bottom: 18px;
  padding: 15px;
  border-left: 5px solid #163d28;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.faq li:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq strong {
  color: #333;
}

/* map section  */

.map-section {
  margin-top: 60px;
  /* background-color: red; */
  padding: 20px;
  text-align: center;
}

iframe {
  width: 100%;
  max-width: 800px;
  height: 250px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.map-title {
  margin-bottom: 20px;
}

/* feedback */

/* Feedback Section */
.feedback-section {
  background: #f5fff8;
  border: 1px solid #d8e8df;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 450px;
  margin: 50px auto;
  text-align: center;
  box-shadow: 0 8px 28px rgba(22, 61, 40, 0.1);
}

.feedback-section h2 {
  color: #163d28;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.feedback-section p {
  color: #226644;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* Stars */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 20px;
}
.star-rating .star {
  color: #ccc;
  transition: color 0.3s;
}
.star-rating .star.hover,
.star-rating .star.selected {
  color: #55aa77;
  text-shadow: 0 2px 6px rgba(85, 170, 119, 0.5);
}

/* Submit Button */
#submitFeedback {
  background: linear-gradient(135deg, #55aa77, #a4e0c3);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
#submitFeedback:hover {
  background: linear-gradient(135deg, #49a067, #7ddcb2);
  transform: translateY(-2px);
}

/* Feedback Message */
.feedback-msg {
  margin-top: 15px;
  font-style: italic;
  color: #226644;
}

/* Footer */
.footer {
  background: #f5f5f5;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 60px;
}

/* Footer menu */
.footmenue {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff; /* change to dark if needed */
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.footmenue div {
  flex: 1;
  text-align: center;
}

.footmenue a {
  display: inline-block;
}

.footmenue img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footmenue img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.footmenue .coconut a img {
  width: 35px;
  height: 35px;
}

.footmenue .subscribe a img {
  background: linear-gradient(to right, #0097b2a8, #7ed957d0);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  animation: 1s glow ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 1px 8px rgb(180, 245, 180);
  }
  to {
    box-shadow: 0 0 2px 5px rgb(198, 240, 198);
  }
}

/* ================================
   POPUP STYLES (Mobile Friendly)
================================ */

/* Overlay Background */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 61, 40, 0.85);
  z-index: 9999;
  overflow-y: auto; /* ✅ allows scrolling */
  backdrop-filter: blur(4px);
  padding: 30px 0; /* ✅ spacing for scroll comfort */
}

/* Popup Box */
.popup-content {
  background: #fdfdfc;
  margin: auto;
  padding: 25px 20px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 12px 40px rgba(22, 61, 40, 0.3);
  animation: slideUp 0.3s ease-out;
  position: relative;
}

/* Popup Header */
.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.popup-header h2 {
  font-size: 1.8rem;
  color: #163d28;
  font-weight: bold;
}

.product-icons {
  display: flex;
  gap: 10px;
}

.product-icons .icon {
  width: 35px;
  height: 35px;
}

/* Subtitle */
.popup-subtitle {
  font-size: 0.95rem;
  color: #226644;
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #163d28;
  transition: all 0.2s ease;
}

.close-btn:hover {
  color: #55aa77;
  transform: scale(1.2);
}

/* Inputs, Textarea, Select */
input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0 15px;
  border-radius: 12px;
  border: 1px solid #c4dcc8;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border: 2px solid #55aa77;
  box-shadow: 0 0 8px rgba(85, 170, 119, 0.3);
}

/* Button */
.popup-button {
  background: linear-gradient(135deg, #55aa77, #a4e0c3);
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-button:hover {
  background: linear-gradient(135deg, #49a067, #7ddcb2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(85, 170, 119, 0.35);
}

/* Product Selection Grid */
.product-selection {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

@media (min-width: 500px) {
  .product-selection {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Product Card */
.product-card {
  display: flex;
  background: #ffffff;
  border: 1px solid #dbe7de;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(22, 61, 40, 0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

/* Product Image */
.product-card img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 12px;
}

/* Product Info */
.product-info h3 {
  font-size: 1rem;
  color: #163d28;
  margin-bottom: 3px;
}

.product-info .price {
  color: #55aa77;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-info input {
  width: 100%;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* Product Actions */
.product-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* Hide the default checkbox */
.product-actions input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 120px;
  height: 45px;
  border-radius: 50px;
  background:linear-gradient(to left, #bb8c65, rgb(168, 137, 78)); /* red */
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Change look when checked */
.product-actions input[type="checkbox"]:checked {
  background:linear-gradient(to left, #347242, rgb(56, 161, 56)); /* green */
}

/* Change label text based on state */
.product-actions input[type="checkbox"]::before {
  content: "Add Item";
}

.product-actions input[type="checkbox"]:checked::before {
  content: "Added";
}

/* Responsive Design for Small Screens */
@media (max-width: 600px) {
  .popup-content {
    width: 95%;
    padding: 20px 15px;
    border-radius: 16px;
  }

  input,
  textarea,
  select {
    font-size: 1rem;
  }

  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-card img {
    width: 100px;
    height: 100px;
    margin: 0 0 10px 0;
  }

  .product-info input {
    width: 80%;
    margin: 5px auto;
  }
}


/* Small screens - mobile */
@media (max-width: 600px) {
  .popup-content {
    width: 95%;
    padding: 20px 15px;
    border-radius: 16px;
  }

  .product-card h3 {
    font-size: 0.95rem;
  }

  .product-card p {
    font-size: 0.8rem;
  }
}

/* Medium screens - tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .popup-content {
    width: 85%;
    padding: 25px 20px;
    border-radius: 18px;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .product-card p {
    font-size: 0.9rem;
  }
}

/* Large screens - desktops */
@media (min-width: 1025px) {
  .popup-content {
    width: 60%;
    max-width: 650px;
    padding: 30px 25px;
    border-radius: 20px;
  }

  .product-card h3 {
    font-size: 1.2rem;
  }

  .product-card p {
    font-size: 1rem;
  }
}


/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* For smaller screens */
@media (max-width: 500px) {
  .footmenue img {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 768px) {
  .carousel {
    height: 500px;
  }
}
