/* General Reset */
:root {
  --emerald: #0d3b2e;
  --gold: #d4af37;
  --white: #ffffff;
  --offwhite: #faf9f6;
  --dark-text: #2b2b2b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
/*   font-family: 'Segoe UI', sans-serif; */
  font-family: EB Garamond;
  background-color: #fafafa;
  color: #333;
  line-height: 1.5;
}

/* Header / Menu */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: sticky;
    z-index: 100;
    background-color: #162a20;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header .logo {
/*   font-family: 'Georgia', serif; */

  font-family: EB Garamond;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--gold);
  text-align: center;
  color: #e3bf5a;
  background-image: linear-gradient(90deg, #f7da70, #e3bf5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header nav {	
    display: flex;
    /*gap: 1.5rem;*/
	flex-flow: wrap;
}

header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: large;
}

header nav a:hover {
  color: var(--emerald);
}

.cart-icon {
  position: relative;
  font-size: 1.2rem;
  text-decoration: none;
  color: #046b4b;
}

.cart-icon .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #b38b2e;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.7rem;
}


/* Banner */
#banner {
	background-color: var(--emerald);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--gold);
    padding: 6rem 1rem;
    position: relative;
}
/*
#banner {
	background-image: url(../assets/images/hero-banner.webp);
	width: auto;
	height: auto;
}*/

#banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
/*     font-family: 'Georgia', serif; */

  font-family: EB Garamond;
    letter-spacing: 2px;
}

#banner p {
	font-size: 1.2rem;
    max-width: 610px;
    margin: 0 auto;
}

#banner h1, #banner p {
	position: relative;
    z-index: 1;
}

/* Sections */
section {
  padding: 2rem;
}

.section-title {
	display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 2rem auto 1rem auto;
    /*padding: 0 2rem;*/
}

/* =============================== */
/* Promo Banner with Slide + Wrap  */
/* =============================== */

/* =============================== */
/* Promo Banner with Mint Gradient */
/* =============================== */

.promo-banner {
  width: 100%;
  background-color: #162a20;
/*   background: linear-gradient(90deg, #d4f9ee 0%, #b2f0d3 40%, #c8f4d6 60%, #e4f9ef 100%); */
  /* soft radiant mint gradient */
  
/*   border-top: 2px solid #046b4b; emerald border */
/*   border-bottom: 2px solid #046b4b; */
   /* gold text */
  color: rgb(255, 255, 255); /*white text*/
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 1.05rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(4, 107, 75, 0.15); /* subtle emerald glow */
}

.promo-text span strong {
	color: #b38b2e;
}

/* Optional: glowing effect animation (very subtle) */
@keyframes bannerGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.promo-banner {
  background-size: 200% 200%;
  animation: bannerGlow 12s ease-in-out infinite;
}


.promo-text {
  display: inline-flex; /* change from flex to inline-flex to allow wrapping */
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;       /* ✅ allow wrapping */
  white-space: normal;   /* ✅ prevent forced single line */
  text-align: center;
}

/* Slide animation between two lines */
.promo-slide {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  height: auto;          /* ✅ allow height to grow if wrapped text gets longer */
  line-height: 1.4;
}

.promo-slide span {
  display: block;
  animation: slideText 8s infinite;
  padding: 0 4px;
  word-break: break-word; /* ✅ break long words if needed */
}

/* Keyframes for up-down sliding effect */
@keyframes slideText {
  0%, 40% {
    transform: translateY(0);
  }
  50%, 90% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive font size and wrapping */
@media (max-width: 768px) {
  .promo-banner {
    font-size: 0.95rem;
    padding: 10px 8px;
  }

  .promo-text {
    flex-direction: column;  /* ✅ stack icon/title and slides on small view */
    gap: 4px;
    text-align: center;
  }

  .promo-slide {
    height: auto; /* ensure no clipping */
  }
}


/* Product Tiles */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0;
    max-width: 1200px;
    margin: auto;
}

.product {
/*   background-color: white; */
/*   border-radius: 12px; */
/*   box-shadow: 0 3px 8px rgba(0,0,0,0.1); */
  overflow: hidden;
  transition: transform 0.2s ease;
}

.product:hover {
  transform: translateY(-4px);
}

.product img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.product .info {
  padding: 1rem;
  text-align: center;
}

.product .info h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: var(--dark-text);
  text-align: left;
}

.product .info p {
  color: #777;
  margin: 0.5rem 0 1rem 0;
}

.product .price {
  font-weight: bold;
  color: #c15a41;
  font-size: 1.1rem;
}

.product button {
  background-color: var(--emerald);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.product button:hover {
  background-color: var(--dark-text);
}

/* Cart */
#cart-items {
  margin-top: 1rem;
}

#cart-items div {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cart input {
  padding: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#cart button {
  background-color: #c15a41;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

#cart button:hover {
  background-color: #a84834;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #162a20;
  margin-top: 2rem;
  color: var(--white);
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav {
    margin-top: 0.5rem;
  }
  .container {
    grid-template-columns: 1fr;
  }
}



/**************************** About Us Page *************************************/
.about-page {
/*   font-family: "Segoe UI", sans-serif; */

  font-family: EB Garamond;
  color: #333;
  background-color: #fff;
  line-height: 1.7;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 8%;
  flex-wrap: wrap;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1 1 40%;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-width: 350px;
}

.text-content {
  flex: 1 1 50%;
  max-width: 550px;
}

.text-content h2 {
/*   font-family: "Playfair Display", serif; */

  font-family: EB Garamond;
  font-size: 2rem;
  color: #b8902f; /* gold */
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Banner section */
.about-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 2rem 0;
  padding: 0;
}

.about-banner .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: brightness(70%);*/
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-overlay h2 {
  color: #f8f8f8;
/*   font-family: "Playfair Display", serif; */

  font-family: EB Garamond;
  font-size: 1.8rem;
  text-align: center;
  max-width: 800px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  letter-spacing: 0.5px;
}


.cart-section {
  padding: 40px;
  max-width: 800px;
  margin: auto;
  color: #333;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 20px;
}

.quantity-control button {
  background-color: #046b4b;
  color: white;
  border: none;
  padding: 4px 10px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
}

.quantity-control button:hover {
  background-color: #034f37;
}

.checkout-section {
  margin-top: 20px;
  text-align: right;
}

.checkout-section input {
  padding: 8px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cart-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 60px auto;
  color: #333;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cart-section h1 {
/*   font-family: 'Playfair Display', serif; */

  font-family: EB Garamond;
  font-weight: 600;
  color: #046b4b;
  margin-bottom: 30px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  gap: 20px;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #046b4b;
  background-color: #f9f9f9;
}

.details {
  flex: 1;
}

.details h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 5px 0;
}

.cart-id {
  font-size: 0.8rem;
  color: #777;
  margin: 3px 0 8px 0;
}

.price, .subtotal {
  font-size: 0.9rem;
  color: #b38b2e;
  font-weight: 500;
}

.quantity-control {
  margin-top: 8px;
}

.quantity-control button {
  background-color: #046b4b;
  color: #fff;
  border: none;
  padding: 4px 10px;
  margin: 0 6px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.quantity-control button:hover {
  background-color: #034f37;
}

#cart-total {
  margin-top: 30px;
  text-align: right;
  font-weight: bold;
  font-size: 1.2rem;
  color: #046b4b;
}

.checkout-section {
  margin-top: 30px;
  text-align: right;
}

.checkout-section input {
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.checkout-section button {
  background-color: #046b4b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.checkout-section button:hover {
  background-color: #034f37;
}

/**************** product detail style **********************/

.product-detail-container {
  display: flex;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.product-images {
  flex: 1;
  max-width: 500px;
}

.carousel img {
  width: 100%;
  border-radius: 8px;
}

.product-info {
  flex: 1;
  max-width: 500px;
  margin-right: -10%;
  margin-left: 10%;
}

.checkout-btn {
  background-color: #006a4e;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.checkout-btn:hover {
  background-color: #00875a;
}

.related-products {
  padding: 40px;
  background: #f9f9f9;    
  width: fit-content;
  margin: 0 auto;
}

.related-products .product-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#related-container .product-grid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0;
    max-width: 1200px;
    margin: auto;
}

#related-container .product-grid .product-card {
	background-color: white;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.product-card-inner img{
	width: 100%;
    height: 250px;
    object-fit: cover;
	
}


/******************** Contact Us *************************/
.contact-section {
  max-width: 700px;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0b5c3b; /* emerald tone */
  font-weight: 700;
}

.contact-section .subtitle {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 35px;
  font-style: italic;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 55px;
  background: #fdfcf9;
  border: 1px solid #efe8da;
  border-radius: 12px;
  padding: 16px 22px;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 600px) {
  .contact-item {
    gap: 0;
  }
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}


/* ============================== */
/* Hero Carousel Banner           */
/* ============================== */

.hero-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  padding: 0;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 6s ease;
}

.carousel-slide.active img {
  transform: scale(1.05); /* subtle zoom-in effect */
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 1rem;
}

.overlay h1 {
  font-size: 3rem;
  font-family: "EB Garamond", serif;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.overlay button {
  background: #b38b2e;          /* gold */
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.overlay button:hover {
  background: #046b4b;          /* emerald */
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-carousel { height: 70vh; }
  .overlay h1 { font-size: 2rem; }
  .overlay p { font-size: 1rem; }
}

.contact-item .icon {
  font-size: 1.6rem;
  color: #b08d57; /* gold accent */
}

.contact-item h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #444;
  font-weight: 600;
}

.contact-item p {
  margin: 4px 0 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item a {
  color: #b08d57;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ---------------------------- pop-up modal --------------------------------------- */
/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: 0.2s;
}
.close:hover { color: #bbb; }

/* Image styling */
.modal-content {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  height: 80vh;
}
.modal-content img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 10px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Navigation arrows */
.nav-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.nav-buttons button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 32px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.nav-buttons button:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image animation base */
.image-wrapper img {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Animation classes */
.slide-next {
  transform: translateX(100%);
  opacity: 0;
}
.slide-prev {
  transform: translateX(-100%);
  opacity: 0;
}
.fade-in {
  opacity: 1;
  transform: translateX(0);
}

/* Add a subtle zoom-in effect when modal opens */
.modal-content img {
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* --------------------------- Carousel Css -------------------------- */

/* ============================= */
/* Rotating Carousel Section     */
/* ============================= */

.carousel-section {
  margin-top: 4rem;
  overflow: hidden;
  position: relative;
  width: 100%;
/*   background: radial-gradient(circle at center, #f9f9f9 0%, #f1f1f1 100%); */
  padding: 2rem 0;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: scrollCarousel 40s linear infinite;
}

.carousel-track img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-track img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* Smooth infinite scrolling animation */
@keyframes scrollCarousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Optional gradient fade edges for aesthetic depth */
.carousel-section::before,
.carousel-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-section::before {
  left: 0;
/*   background: linear-gradient(to right, #fff 0%, transparent 100%); */
}
.carousel-section::after {
  right: 0;
/*   background: linear-gradient(to left, #fff 0%, transparent 100%); */
}
/* ============================= */
/* Responsive Carousel & Promo   */
/* ============================= */

/* Default carousel speed (desktop) */
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-track {
  animation: scrollCarousel 40s linear infinite;
}

/* Speed up slightly on mobile screens */
@media (max-width: 768px) {
  .carousel-track {
    animation: scrollCarousel 25s linear infinite; /* faster on mobile */
  }

  .carousel-track img {
    width: 180px;
    height: 180px;
    border-radius: 12px;
  }
}


/* ============================== */
/* Contact Us Section - Luxury Look */
/* ============================== */
.contact-section {
  background-color: #fbfaf8;
  padding: 5rem 2rem;
  font-family: "EB Garamond", serif;
  color: #2a2a2a;
}

.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left side (text info) */
.contact-info {
  flex: 1;
  max-width: 520px;
}

.contact-info h2 {
  font-size: 2.6rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 1rem;
}

.contact-info p {
  font-family: "Poppins", sans-serif;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Contact details list */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon {
  font-size: 1.6rem;
  color: #046b4b; /* emerald */
  flex-shrink: 0;
}

.contact-item .text h4 {
  font-size: 1.2rem;
  font-family: "EB Garamond", serif;
  color: #b38b2e; /* gold */
  margin-bottom: 4px;
}

.contact-item .text p {
  font-size: 0.98rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #b38b2e;
}

.availability {
  font-size: 0.9rem;
  color: #666;
}

/* Contact button */
.contact-btn {
  background-color: transparent;
  border: 1px solid #b38b2e;
  color: #b38b2e;
  font-family: "Poppins", sans-serif;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #b38b2e;
  color: white;
  transform: scale(1.05);
}

/* Right side (image) */
.contact-image {
  flex: 1;
  max-width: 520px;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .contact-info h2 {
    font-size: 2.2rem;
  }
}

