/* ====================== */
/* 1️⃣ Base Reset & Fonts */
/* ====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif; /* changed from Raleway to Lato for a modern, elegant look */
  background-color: #fffaf7;
    color: #6e6e6e;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif; /* changed from Quattrocento to Playfair Display for luxury and premium feel */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
}

.logo span {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 2rem; /* adjust size as needed */
  color: #f48b29; /* example color, change as needed */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* optional bubble effect */
}

/* ====================== */
/* 2️⃣ Header */
/* ====================== */
header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  background-color: #fff;
  border-bottom: 2px solid #f48b29;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #f48b29;
}

.logo img {
  width: 70px;
  margin-right: 10px;
}

.tagline {
  font-size: 16px;
  color: #f48b29;
  font-weight: 600;
}

/* ====================== */
/* 3️⃣ Navigation */
/* ====================== */
nav {
  background-color: #f48b29;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 10px;
}

nav li a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

nav li a:hover {
  opacity: 0.8;
}

/* ====================== */
/* 4️⃣ Hero Section with Slideshow */
/* ====================== */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero .overlay {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  padding: 40px;
  border-radius: 15px;
  animation: fadeIn 1.5s ease;
  z-index: 2;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 10px;
  color: #5a2d0c;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #4d3c3c;
}

.cta-button {
  background-color: #d36d3f;
  color: white;
  padding: 14px 28px;
  border: none;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #a84d25;
  transform: scale(1.07);
}

/* ====================== */
/* 5️⃣ Catalogue Section */
/* ====================== */
.catalogue-carousel {
  padding: 60px 10%;
  text-align: center;
  background: #fff0e6;
  border-top: 2px dashed #f48b29;
}

.catalogue-carousel .cta-button {
  font-size: 18px;
  background: #d36d3f;
  padding: 14px 36px;
}

/* ====================== */
/* 6️⃣ Why Choose Us */
/* ====================== */
.why-choose-us {
  padding: 40px 10px;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  background: url('img/green_ribbon.jpg') center center/cover no-repeat fixed;
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(71, 70, 70, 0.6);
  z-index: 0;
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Quattrocento', serif;
  font-size: 2rem;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, #ff7eb3, #ff758c);
  border-radius: 3px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tab {
  background: #fff;
  border: 2px solid #f5dce5;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab i {
  font-size: 1.1rem;
  color: #ff7eb3;
}

.tab.active,
.tab:hover {
  background: #ff7eb3;
  border-color: #ff7eb3;
  color: #fff;
  box-shadow: 0 4px 8px rgba(255,126,179,0.2);
}

.tab-content {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 25px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f5dce5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-family: 'Quattrocento', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.tab-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ====================== */
/* 7️⃣ How It Works - Timeline */
/* ====================== */
.how-it-works {
  padding: 70px 10%;
  background: #f9f5f2;
  text-align: center;
}

.how-it-works h2 {
  color: #d36d3f;
  margin-bottom: 50px;
  font-size: 2.4rem;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  gap: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: #f4e2d3;
  z-index: 0;
}

.timeline-step {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px 30px;
  width: 220px;
  position: relative;
  text-align: center;
  border: 1px solid #f4e2d3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
}

.timeline-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.step-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #d36d3f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 15px;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.timeline-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #d36d3f;
}

.timeline-step p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Mobile Responsive Timeline */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 60px;
  }
  .timeline::before {
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
  }
  .timeline-step {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ====================== */
/* 8️⃣ Personalization Options */
/* ====================== */
.personalization {
  padding: 70px 10%;
  text-align: center;
  background: url('img/package.jpg') center/cover fixed;
  background-attachment: fixed;
}

.personalization h2 {
  margin-bottom: 50px;
  color: #d36d3f;
  font-size: 2.2rem;
  font-weight: bold;
}

.personalization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.personalization-card {
  background: #fff;
  border: 1px solid #f4e2d3;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.personalization-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.personalization-card i {
  font-size: 2.5rem;
  color: #d36d3f;
  margin-bottom: 15px;
}

.personalization-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.personalization-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ====================== */
/* 9️⃣ Categories Section */
/* ====================== */
.categories {
  padding: 70px 10%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: url('img/divine-bg.jpg') center/cover fixed no-repeat;
  overflow: hidden;
}

/* Overlay */
.categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 250, 247, 0.4);
  backdrop-filter: blur(1.5px);
  z-index: 0;
}

/* Section Title */
.categories h2 {
  font-family: 'Quattrocento', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #d36d3f;
  text-shadow: 0 2px 6px rgba(211, 109, 63, 0.4);
  position: relative;
  z-index: 1;
}

/* Grid Layout */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: start;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

/* Cards */
.category-card {
  position: relative;
  background: #fffdf8;
  padding: 20px 15px 25px;
  border-radius: 20px;
  border: 3px solid #d4af37;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3),
              inset 0 0 20px rgba(212, 175, 55, 0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 250px;
  z-index: 1;
}

/* Hover Effects */
.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45),
              inset 0 0 25px rgba(212, 175, 55, 0.15);
}

/* Card Images */
.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  border: 3px solid #f6e2b3;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  filter: brightness(1.05) contrast(1.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.45);
  filter: brightness(1.15) contrast(1.1);
}

/* Card Title */
.category-card h3 {
  font-family: 'Quattrocento', serif;
  font-size: 18px;
  color: #7a4b2d;
  margin-top: 10px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(212, 175, 55, 0.25);
}

/* Single Buy Button */
.categories-buy-btn {
  display: inline-block;
  margin-top: 40px; /* space below the grid */
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4b2e1e;
  background: linear-gradient(135deg, #d4af37, #f6e2b3);
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 2;
  position: relative;
}

.categories-buy-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg, #f6e2b3, #d4af37);
}

/* Responsive */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .category-card img {
    height: 180px;
  }
}
.categories-footer {
  display: flex;
  justify-content: center;
  margin-top: 65px;
  width: 100%;
  position: relative;
  z-index: 1;
}


/* ====================== */
/* 10️⃣ Hampers Section */
/* ====================== */
.hampers {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/diwali_bg.jpg') center/cover fixed no-repeat;
  backdrop-filter: blur(6px);
}

.hampers h2 {
  color: #ffeecf;
  font-size: 2.6rem;
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
  position: relative;
  display: inline-block;
  animation: fadeDown 1.2s ease forwards;
}
.hampers h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ffcf70;
  margin: 12px auto 0;
  border-radius: 2px;
}

.hampers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 31px;
  justify-items: center;
}

/* Hamper Cards */
.hamper-card {
  width: 280px;
  height: 370px; /* slightly increased from 330px to 370px to fit larger image */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  animation: fadeUp 1.4s ease forwards;
  cursor: pointer;
}

.hamper-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: #ffcf70;
}

/* Front */
.hamper-front {
  position: relative;
  height: 100%;
  padding: 20px;
  text-align: center;
}

.hamper-front img {
  width: 100%;
  height: 240px; /* increased from 200px to 240px */
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}
.hamper-card:hover .hamper-front img { transform: scale(1.05); }

.hamper-front h3 {
  font-size: 1.3rem;
  color: #fff2d5;
  margin: 6px 0 3px;
}

.hamper-front .price {
  color: #ffcf70;
  font-weight: bold;
  font-size: 1rem;
}

/* Back */
.hamper-back {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  color: #333;
  padding: 18px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: bottom 0.6s ease;
  overflow-y: auto;
}
.hamper-card:hover .hamper-back { bottom: 0; }

.hamper-back h4 { color: #d35400; font-size: 1rem; margin-bottom: 8px; }
.hamper-back ul { padding-left: 18px; text-align: left; }
.hamper-back li { margin-bottom: 5px; font-size: 0.85rem; }

/* Animations */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ====================== */
/* Info Sections - 2x2 Grid */
.info-sections {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 8%;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.info-card {
  flex: 1 1 48%;
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.info-card h2 {
  color: #f48b29;
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* FAQ Accordion */
.faq-list {
  margin-top: 15px;
}

.faq-question {
  background: linear-gradient(90deg, #fff0e6, #ffe6cc);
  border: none;
  padding: 12px 15px;
  border-radius: 12px;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 10px;
  transition: background 0.3s;
}
.faq-question:hover { background: #ffd8b0; }

.faq-answer {
  display: none;
  padding: 10px 15px;
  background: #fff8f3;
  border-left: 3px solid #f48b29;
  border-radius: 0 0 12px 12px;
  margin-bottom: 10px;
}

.faq-item.active .faq-answer { display: block; }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #f48b29;
  outline: none;
  font-size: 14px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  padding: 14px;
  background: #f48b29;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover { background: #e37b1d; }

/* Footer */
.footer-header-style {
  position: relative;
  background-color: #f48b29;
  color: #fff;
  text-align: center;
  padding: 60px 8% 40px;
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  font-family: 'Lato', sans-serif;
}

.footer-header-style .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.footer-header-style .social-links a {
  color: #fff;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.footer-header-style .social-links a:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
  }
  .info-card {
    flex: 1 1 100%;
  }
}



/* 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


.checkout-page { padding:30px; max-width:800px; margin:auto; }
.checkout-cart { background:#fff; padding:20px; border-radius:15px; margin-bottom:20px; box-shadow:0 4px 6px rgba(0,0,0,0.1); }
.checkout-form { display:flex; flex-direction:column; gap:12px; background:#fff; padding:20px; border-radius:15px; box-shadow:0 4px 6px rgba(0,0,0,0.1); }
.checkout-form input, .checkout-form textarea { padding:10px; border:1px solid #ccc; border-radius:8px; }
