/* === Base Colors === */
:root {
  --primary: #e6512e;
  --primary-dark: #f9748f;
  --light-bg: #fff5f2;
  --red: #FF0000;
  --dark: #2b1a12;
  --white: #fff;
}

/* Fonts
Available Font Families:

Lemonada (weights: 300, 400, 700)

Poppins (weights: 400, 600)

Quicksand (weights: 400, 500)

Inter (weights: 100-900, with italics)

Josefin Sans (weights: 100-700, with italics)

Labrada (weights: 100-900, with italics)

Roboto Slab (weights: 100-900)
*/

html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.product-list-container {
  flex: 1;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
}

/* ---------- Header Styles ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 97%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
  background-color: var(--primary);
  transition: background-color 0.3s ease;
  height: 40px;
}

header.transparent-header {
  background-color: transparent !important;
}

/* Logo */
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

header .logo-img {
  width: 50px;
  height: 50px;
}

.logo-img {
  transition: all 0.3s ease;
}

/* Hover effect for the image */
.logo:hover .logo-img {
  transform: rotate(-5deg) scale(1.1); 
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}


.logo h1 {
  font-size: 1.5rem;
  color: var(--light-bg);
  font-family: 'Lemonada', sans-serif;
  font-weight: bold;
  transition: all 0.3s ease; 
}

.logo:hover h1 {
  color: #ffe0d5;             
  transform: scale(1.05);     
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

/* Right side: nav + cart */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-family: 'Lemonada', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--light-bg);
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: red;
}

/* Mobile Header */
/* === Header Base === */
.site-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--primary);
  padding: 15px 20px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}


.mobile-logo {
  text-decoration: none;
}

/* Logo */
.mobile-logo h1 {
  font-family: 'Lemonada', cursive;
  font-size: 1.5rem;
  color: var(--light-bg);
}

/* Cart */
.mobile-cart-icon {
  position: relative;
}

.mobile-cart-count {
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* Burger button */
.mobile-burger {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--light-bg);
  cursor: pointer;
  display: none;
}

/* Navigation */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

/* Shown state */
.mobile-nav-links.show {
  max-height: 320px;
  opacity: 1;
  pointer-events: auto;
}


/* Links */
.mobile-nav-links a {
  font-family: 'Roboto Slab', sans-serif;
  color: var(--light-bg);
  text-decoration: none;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.mobile-nav-links a:last-child {
  border-bottom: none;
}

.mobile-nav-links a.active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* Cart */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-preview {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  padding: 14px;
  z-index: 999;
  transition: all 0.25s ease-in-out;
}

/* Show on hover */
.cart-icon:hover .cart-preview {
  display: flex;
  animation: fadeIn 0.25s ease-in-out;
}

/* Empty preview message */
.cart-preview .empty-preview {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
}

/* Cart items inside preview */
.cart-preview-items {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f5f5f5;
}

/* Each product row */
.cart-preview-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-preview-item:last-child {
  border-bottom: none;
}

.cart-preview-item img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
}

.cart-preview-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.cart-preview-item small {
  font-size: 12px;
  color: #888;
}

/* Total */
.cart-preview-total {
  font-weight: bold;
  text-align: right;
  margin: 8px 0 12px;
  font-size: 15px;
  color: var(--primary);
}

/* View Cart button */
.view-cart-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.view-cart-btn:hover {
  background: #c43f1f;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-img {
  width: 32px;
  height: auto;
  transition: transform 0.2s ease;
}

.cart-img:hover {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff4d4d;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Style inside the cart preview item */
.cart-preview-item div {
  display: flex;
  flex-direction: column;
}

/* Product name */
.cart-preview-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.cart-preview-item small {
  margin-top: 2px;
  font-size: 12px;
  color: var(--dark);
  font-style: italic;
}


/* Search bar */
.search-container input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  width: 200px;
  outline: none;
  background-color: var(--light-bg);
}

.search-container input:focus {
  border-color: red;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.3);
}

.product-list-container {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
  background-color: var(--light-bg);
}

/* Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  width: 100%;
  margin: 0;
  background-color: var(--light-bg);
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--primary);
  margin: 0 15px;
}

.section-divider span {
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: 8px;
}

.section-divider2 {
  overflow: hidden;
  background: var(--primary);
  border-top: 2px dashed #d7ccc8;
  border-bottom: 2px dashed #d7ccc8;
  padding: 0.8rem 0;
  font-family: 'Lemonada', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--light-bg);
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  gap: 3rem;
  will-change: transform;
}

.track span {
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 1px;
  color: inherit;
}


/* ===== Landing Page Styling ===== */
/* Hero */
.landing-hero {
  position: relative;
  height: 100vh;
  background: url('assets/images/hero1.jpg') center/cover no-repeat;
  transition: background-image 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  margin-top: -80px;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.landing-hero .hero-content {
  position: relative;
  z-index: 1;
}

.landing-hero h2 {
  font-family: "Lemonada", cursive;
  font-weight: 700;
  font-size: 4rem;
  color: var(--light-bg);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Hero Word */
.landing-hero h2 span#hero-word {
  color: var(--primary);
  font-family: "Lemonada", sans-serif;
  font-weight: 700;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  -webkit-text-stroke: 1px #fff;
}

#hero-word {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}


.landing-hero p {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--light-bg);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  padding-top: 0;
}

.landing-cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.landing-cta:hover {
  background: #c63e1d;
}



/* === Feature Section === */
.landing-feature {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 30px 10%;
}

.landing-feature h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.landing-feature-grid {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
}

.landing-feature-grid img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  transition: all 0.4s ease;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  filter: brightness(0.98);
}

.landing-feature-grid img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
  border-radius: 12px;
}

/* Subtle overlay effect */
.landing-feature-grid img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  pointer-events: none;
}

.landing-feature-grid img:hover::after {
  opacity: 1;
}

/* === Showcase Section === */
.landing-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--primary);
  padding: 5rem 4rem;
  margin-left: -230px;
}

/* Left Side (Rotated Text) */
.showcase-left {
  flex: 0 0 auto;
  margin-right: -250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotate(-90deg);
}

.showcase-left .tagline {
  font-size: 3rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: -50px;
}

.showcase-left h2 {
  font-family: 'Lemonada', Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
}

/* Right Side (Image Frame) */
.showcase-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.image-frame::before {
  content: "";
  position: absolute;
  bottom: 180px;
  left: 45px;
  width: 100%;
  height: 80%;
  background: #fbb6b6;
  border-radius: 10px;
  z-index: 0;
}

.image-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 1000px;
  height: 660px;
  border-radius: 10px;
  object-fit: cover;
}

.image-frame {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  cursor: pointer;
}

.image-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 1000px;
  height: 660px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover state */
.image-frame:hover img {
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.image-frame:hover::after {
  opacity: 1;
}

/* ABOUT SECTION */
.landing-about {
  background-color: var(--light-bg);
  padding: 60px 10%;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.landing-about-title {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 34px;
  letter-spacing: 1px;
  font-family: 'Roboto Slab', sans-serif;
}

.landing-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.landing-about-block {
  display: flex;
  flex-direction: column;
}

.landing-about-heading,
.landing-about-text {
  margin: 0;
}

.landing-about-heading {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}

.landing-about-heading2 {
  margin-top: 15px;
}

.landing-about-text {
  font-size: 19px;
  color: var(--dark);
  line-height: 1.6;
}

.landing-about-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 5px;
  transition: color 0.3s;
  font-size: 18px;
  margin-top: 10px;
}

.landing-about-link:hover {
  color: var(--dark);
}

.landing-about-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* === Landing Page Product Preview === */
.landing-menu {
  background: var(--light-bg);
  padding: 48px 60px 70px;
}

.landing-menu-head {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-menu-title {
  font-family: 'Lemonada', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--primary);
  line-height: 0.95;
  letter-spacing: 1px;
  font-size: clamp(48px, 10vw, 110px);
  margin: 0 0 12px 0;
}

.landing-menu-subrow {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.landing-menu-sub {
  color: var(--primary);
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(14px, 1.6vw, 18px);
  margin: 0;
}

.landing-menu-rule {
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 12px 0 30px;
}

/* image strip */
.landing-menu-viewport {
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.landing-menu-track {
  display: flex;
  gap: 44px;
  will-change: transform;
}

.landing-menu-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(260px, 24vw, 360px);
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.landing-menu-card span {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  padding: 10px 0;
  transition: bottom 0.3s ease;
  border-radius: 0 0 12px 12px;
  font-size: "Roboto Slab";
}

.landing-menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.landing-menu-card:hover img {
  transform: scale(1.1);
}

.landing-menu-card:hover span {
  bottom: 0;
}

.landing-swipe-hint {
  display: none;
}

/* Testimonials */
.testimonials {
  text-align: center;
  padding: 30px 20px 90px;
  background: var(--light-bg);
}

.testimonials h2 {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 34px;
  letter-spacing: 1px;
  font-family: 'Roboto Slab', sans-serif;
}

.testimonials h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: var(--primary);
  margin: 8px auto 0;
  border-radius: 2px;
}

.testimonials .sub-text {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 40px;
}

.testimonial-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.testimonial-box {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary);
}

.testimonial-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(var(--primary), #ffcc70, #ffd27f, var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-box:hover::before {
  opacity: 0.15;
}


@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.testimonial-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-box:hover .testimonial-img {
  transform: translateX(-50%) scale(1.1) rotate(5deg);
}

.testimonial-text {
  font-size: 20px;
  color: var(--dark);
  margin: 30px 0 20px;
  line-height: 1.6;
  position: relative;
  transition: color 0.3s ease;
}

.testimonial-box:hover .testimonial-text {
  color: var(--primary);
}

.testimonial-text .quote {
  color: var(--primary);
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.4s ease;
  display: inline-block;
}

.testimonial-box:hover .testimonial-text .quote {
  transform: scale(1.4) rotate(-10deg);
}

.testimonial-box h4 {
  font-size: 27px;
  font-weight: bold;
  color: var(--primary);
  margin: 0;
}

.testimonial-box h4 span {
  font-size: 15px;
  font-weight: normal;
  color: var(--dark);
  display: block;
  margin-top: 4px;
}

.testimonial-wrapper {
  margin-top: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  position: relative;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1600px;
}

.testimonial-box {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
  pointer-events: none;
  position: absolute;
  /* stack for animation */
}

.testimonial-box.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.slide-next {
  animation: slideInFromRight 0.6s ease;
}

.slide-prev {
  animation: slideInFromLeft 0.6s ease;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.arrow {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.3s;
  width: 50px;
}

.arrow:hover {
  background: #c54422;
}

/* === Landing Page CTA Banner === */
.landing-cta-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 40px 20px 70px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.landing-cta-content h2 {
  font-family: 'Lemonada', cursive;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.landing-cta-content p {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--white);
  line-height: 1.6;
}

.landing-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.landing-btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.landing-primary-btn {
  background: var(--white);
  color: var(--primary);
}

.landing-primary-btn:hover {
  background: #f1f1f1;
}

.landing-secondary-btn {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.landing-secondary-btn:hover {
  background: var(--white);
  color: var(--primary);
}

/* === Landing Page CTA Banner Design Enhancements === */
.landing-cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), #ff7b54);
}

/* Decorative angled edge */
.landing-cta-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--light-bg);
  transform: skewY(-4deg);
}

/* Decorative angled edge bottom */
.landing-cta-banner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--light-bg);
  transform: skewY(-4deg);
}

/* Floating circles for texture */
.landing-cta-banner .circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: float 8s infinite ease-in-out alternate;
  z-index: 1;
}

.landing-cta-banner .circle.small {
  width: 60px;
  height: 60px;
  top: 30%;
  left: 10%;
  animation: float 9s infinite ease-in-out alternate,
    drift 20s infinite linear;
}

.landing-cta-banner .circle.medium {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 15%;
  animation: float 12s infinite ease-in-out alternate,
    drift 25s infinite linear;
}

.landing-cta-banner .circle.large {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 30%;
  transform: translateX(-50%);
  animation: float 6s infinite ease-in-out alternate,
    drift 15s infinite linear;
}

/* Extra circle sizes */
.landing-cta-banner .circle.xsmall {
  width: 40px;
  height: 40px;
  top: 20%;
  right: 25%;
  animation: float 6s infinite ease-in-out alternate,
    drift 15s infinite linear;
}

.landing-cta-banner .circle.xmedium {
  width: 70px;
  height: 70px;
  bottom: 25%;
  right: 30%;
  animation: float 9s infinite ease-in-out alternate,
    drift 20s infinite linear;
}

/* Horizontal drift animation */
@keyframes drift {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-20px);
  }
}

/* Floating button styles */
.floating-cart-btn {
  position: fixed;
  bottom: 24rem;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: none;
  justify-content: center;
  align-items: center;
  cursor: grab;
  /* show grab cursor */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 10px;
  transition: background 0.3s ease;
}

.floating-cart-btn:active {
  cursor: grabbing;
}

/* Cart image */
.floating-cart-btn .button-mobile-cart-img {
  width: 60%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  /* ensure clicks go to button */
}


/* Product Styling */
.products {
  width: 70%;
}

.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.product-card {
  position: relative;
  background: var(--light-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 140px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.3s ease;
  overflow: hidden;
}

/* Dark overlay on hover */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  /* use your theme orange */
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  z-index: 1;
}

.product-card:hover::before {
  opacity: 0.15;
  /* subtle orange glow */
}


/* Add to Cart Button */
.add-to-cart-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  /* above dark overlay */
}

.product-card:hover .add-to-cart-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.05);
}

.add-to-cart-btn:hover {
  background: var(--primary-dark, #c62828);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Optional: dim text & image when hovered */
.product-card:hover .product-info,
.product-card:hover .product-image {
  filter: brightness(0.6);
}





.product-info h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #333;
}

.product-info p {
  width: 170px;
  font-family: 'Quicksand', sans-serif;
  color: #555;
  font-size: 14px;
}

.price {
  color: var(--primary);
  font-weight: bold;
}

.product-image {
  position: relative;
}

.product-image img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

/* PRODUCT LIST UI */
/* Filter */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.filters {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filters label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.filters select {
  padding: 6px 10px;
  font-family: 'Poppins', sans-serif;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
  background-color: var(--light-bg);
  transition: border 0.2s;
}

.filters select:hover {
  border-color: #bbb;
}

.products h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0;
}

/* Rating */
.rating {
  color: #FFD700;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Rating Popup */
.rating-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.rating-content {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 420px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.rating-content h3 {
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

#rating-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  margin: 10px 0;
}

#rating-list::-webkit-scrollbar {
  width: 8px;
}

#rating-list::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
}

#rating-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}


.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.stars span {
  font-size: 24px;
  cursor: pointer;
  color: #ccc;
  margin: 0 2px;
}

.stars span.selected {
  color: gold;
}

.product-name {
  flex: 1;
  text-align: left;
  font-weight: 600;
}

.rating-content h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.stars {
  font-size: 26px;
  color: #ddd;
  cursor: pointer;
  margin-bottom: 15px;
}

#submit-rating {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  padding: 8px 16px;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

#submit-rating:hover {
  background: var(--primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === Rate All Section (stacked layout) === */
.global-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 15px 0 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.global-rating span {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.rate-all-stars {
  display: flex;
  justify-content: center;
}

.rate-all {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s ease, transform 0.2s ease;
  margin: 0 3px;
}

.rate-all:hover,
.rate-all:focus {
  color: var(--primary);
  transform: scale(1.2);
}

.rate-all.active {
  color: var(--primary);
}


/* Cart Info */
/* Cart hidden by default */
.cart {
  width: 30%;
  background: var(--light-bg);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  min-height: 38.4em;
  height: auto;
  align-self: flex-start;
  position: sticky;
  top: 100px;
  max-height: 50vh;
  overflow-y: auto;
}

.cart::-webkit-scrollbar {
  width: 8px;
}

.cart::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.cart::-webkit-scrollbar-track {
  background: #f1f1f1;
}


.cart h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.cart img {
  width: 300px;
  display: block;
  margin: 0 auto;
}

.cart-total {
  margin-top: 20px;
}

.cart-total p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.cart-total p,
.total-price {
  font-weight: bold;
}

/* Empty Cart Info */
.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.empty-cart p {
  font-family: 'Quicksand', sans-serif;
  color: #777;
  font-size: 15px;
  margin-top: 10px;
}

.empty-cart img {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
}


/* Checking Out */
#checkout-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

#checkout-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

#checkout-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}


/* Cart Styling */
.cart-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.cart-item-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.cart-item-info {
  flex: 1;
}

/* Cart item name */
.cart-item-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

/* Cart item price */
.cart-item-info p {
  font-family: 'Quicksand', sans-serif;
  color: var(--primary);
  font-weight: bold;
  margin: 0 0 8px 0;
}

/* Quantity buttons text */
.cart-quantity span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}


.cart-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-quantity button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.3s ease;
}

.cart-quantity button:hover {
  background: linear-gradient(135deg, #f9748f, #f78ca0);
  transform: scale(1.1);
}

.cart-quantity button:active {
  transform: scale(0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Popup overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Popup box */
.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: popIn 0.3s ease;
}

.popup-content h2 {
  color: #F22C2C;
  font-family: 'Lemonada';
  margin-bottom: 10px;
}

.popup-content p {
  margin-bottom: 20px;
}

.popup-content button {
  background: linear-gradient(135deg, #f78ca0, #f9748f);
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.popup-content button:hover {
  background: linear-gradient(135deg, #f9748f, #f78ca0);
}

/** Confirmation Oder **/
.popup-content button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.popup-content button:hover {
  background: linear-gradient(135deg, #f9748f, #f78ca0);
}

/* Animation */
@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}









/* Feature Page */
.feature-hero {
  height: 35vh;
  background: url("assets/images/hero1.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--white);
}

.feature-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.feature-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.feature-hero-title {
  font-family: 'Lemonada', cursive;
  font-size: 3.5rem;
  font-weight: 700;
}




/* === Specialty Section === */
/* General Styling for the section */
.specialties {
  padding: 10px 1.5rem 80px;
  background-color: var(--light-bg);
  text-align: center;
}

.specialties h2 {
  font-family: 'Lemonada', cursive;
  font-weight: 700;
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.specialties p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid for the specialty items */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

/* Styling for each specialty item */
.specialty-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(43, 26, 18, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.specialty-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(43, 26, 18, 0.15);
}

.specialty-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.specialty-content {
  padding: 1.5rem;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.specialty-content h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.specialty-content p {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.specialty-content .price {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-add-to-cart {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  margin-left: -12px;
}

.feature-add-to-cart:hover {
  background-color: var(--primary-dark);
  transform: scale(1.02);
}


/* == Whats On Plate Section */
.whats-on-plate {
  background: linear-gradient(135deg, var(--light-bg) 60%, rgba(230, 81, 46, 0.08));
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.whats-on-plate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.whats-on-plate-text {
  flex: 1;
  min-width: 320px;
  align-self: flex-start;
}


.whats-on-plate-text h2 {
  font-family: 'Lemonada', cursive;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
}

.whats-on-plate-text p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 18px;
}

.whats-on-plate-text blockquote {
  font-family: 'Lemonada', cursive;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin: 25px 0 0;
  padding-left: 20px;
  border-left: 4px solid var(--primary);
}

.whats-on-plate-image {
  flex: 1;
  min-width: 350px;
  text-align: center;
  position: relative;
}

.whats-on-plate-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whats-on-plate-image img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}



/* === Feature Video Section === */
.feature-video {
  background: var(--light-bg);
  padding: 60px 10%;
  font-family: "Poppins", sans-serif;
}

.feature-video-container h1 {
  font-size: 4rem;
  font-family: 'Lemonada', sans-serif;
  color: var(--primary);
  width: 100%;
  text-align: center;
  margin: 0;
}

.feature-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 0;
}

.feature-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(230, 81, 46, 0.3);
  transition: transform 0.3s ease;
}

.feature-video-wrapper:hover {
  transform: scale(1.02);
}

.feature-video-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.feature-video-content {
  text-align: left;
  margin-bottom: 6.5rem;
}

.feature-video-title {
  font-family: "Lemonada", cursive;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 0;
}

.feature-video-subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: "Quicksand", sans-serif;
  margin-top: 0;
}

.feature-video-text {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-video-grid {
    grid-template-columns: 1fr;
  }

  .feature-video-content {
    text-align: center;
  }

  .feature-video-wrapper iframe {
    height: 250px;
  }
}

/* === Why Choose Section === */
/* === Why Choose Us (Full Width) === */
.feature-choose {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding: 100px 20px;
}

.feature-choose-container {
  max-width: 1708px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* subtle floating circles like the sample */
.feature-choose::before,
.feature-choose::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  max-width: 100vh;
  overflow: hidden;
}

.feature-choose::before {
  width: 320px;
  height: 320px;
  top: -80px;
  left: 5%;
}

.feature-choose::after {
  width: 220px;
  height: 220px;
  top: 40%;
  right: 8%;
}

.feature-choose-container {
  max-width: 1810px;
  margin: 0 auto;
}

.feature-choose-header {
  text-align: center;
  margin-bottom: 70px;
}

.feature-choose-title {
  font-family: 'Roboto Slab', serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--light-bg);
  margin: 0 0 12px 0;
  line-height: 1.1;
}

.feature-choose-accent {
  color: var(--light-bg);
}

.feature-choose-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* three-column layout with vertical dividers */
.feature-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  margin-top: 32px;
}

.feature-choose-item {
  position: relative;
  padding: 12px 32px;
}

@media (min-width: 900px) {

  .feature-choose-item:nth-child(2),
  .feature-choose-item:nth-child(3) {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* circular outlined icon with light shadow */
.feature-choose-icon {
  width: 90px;
  height: 90px;
  margin: 0 0 18px 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid rgba(230, 81, 46, 0.4);
  box-shadow: 0 10px 22px rgba(230, 81, 46, 0.15);
  position: relative;
  background: var(--white);
}

.feature-choose-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(230, 81, 46, 0.15);
}

.feature-choose-icon img {
  width: 64px;
  height: 64px;
  display: block;
}

.feature-choose-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.feature-choose-item-title {
  font-family: 'Lemonada', cursive;
  font-size: 1.4rem;
  color: var(--light-bg);
  margin: 0 0 8px 0;
}

.feature-choose-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 380px;
}

/* === FAQ Section Styling === */
.faq {
  background: var(--light-bg);
  padding: 4rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.faq-title span {
  color: var(--primary);
}

.faq-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.faq-items {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* two equal columns */
  gap: 2rem;
  /* spacing between columns */
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1.2rem 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.faq-question:hover {
  color: var(--light-bg);
  background-color: var(--primary);
  border-radius: 6px;
}

.faq-question::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--primary);
}

.faq-question:hover::after {
  color: var(--light-bg);
  transform: scale(1.2);
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-top: 0.6rem;
  padding-left: 0.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* === CTA Section === */
.feature-cta-container {
  display: flex;
  width: 100%;
  background-color: var(--primary);
  height: 600px;
}

.cta-left-section {
  flex: 1;
  background-color: var(--primary);
  background-image: url('assets/images/hero3.jpg');
  background-size: cover;
  background-position: bottom center;
}

.cta-right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.cta-right-section h1 {
  font-family: 'Roboto Slab', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--light-bg);
  margin: 0;
  line-height: 1.2;
}

.cta-right-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--light-bg);
  margin: 20px 0;
  max-width: 600px;
}

.cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-3px) scale(1.03);
}

/*====== Contacts ======= */
.contact-hero {
  background: linear-gradient(135deg, var(--primary), #ff7b54);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-family: 'Lemonada', cursive;
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-hero p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === Contact Section Styling === */
.contact-section {
  padding: 80px 10%;
  background: var(--light-bg);
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
}

/* Shared Card Style */
.contact-form,
.contact-details {
  flex: 1;
  min-width: 320px;
  background: var(--white);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details,
.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-form:hover,
.contact-details:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Headings */
.contact-details h2,
.contact-form h2 {
  margin-top: 0;
  padding-top: 0;
}

.contact-form h2,
.contact-details h2 {
  font-family: 'Lemonada', cursive;
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 22px;
  position: relative;
  text-align: center;
}

.contact-form h2::after,
.contact-details h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: var(--primary);
  margin: 8px auto 0;
  border-radius: 2px;
}


/* Form Inputs */
.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 81, 46, 0.15);
  outline: none;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  color: var(--dark);
}

.contact-info .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex: 0 0 28px;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}


/* Button */
.contact-btn {
  display: inline-block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

/* Contact Details */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.contact-details li {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  margin: 14px 0;
  color: var(--dark);
}

.contact-details li strong {
  color: var(--primary);
  font-weight: 600;
  margin-right: 8px;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.contact-grid h3 {
  font-family: 'Lemonada', cursive;
  font-size: 1.4rem;
  color: var(--dark);
  margin-top: 25px;
  margin-bottom: 12px;
}

.contact-details p {
  font-family: 'Quicksand', sans-serif;
  margin: 6px 0;
  font-size: 1rem;
}

/* Two-column layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.contact-col h3 {
  font-family: 'Lemonada', cursive;
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 12px;
}

/* Social links */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.3s ease;
}

.contact-social-btn img {
  width: 32px;
  height: 32px;
}

.contact-social-btn:hover {
  transform: translateY(-3px);
}


/* === Footer Styles === */
.site-footer {
  background: var(--primary);
  color: var(--white);
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.5;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0 0 14px 0;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
}

/* Social buttons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social img {
  width: 20px;
  height: 20px;
  display: inline-block;
  object-fit: contain;
}

.social-btn {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: transform .12s ease, background .2s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  background: #c13e17;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 10px 0;
  font-family: 'Labrada', serif;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Opening hours */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-family: 'Roboto Slab', serif;
}

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 12px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}