/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;600;700&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --first-color: #3e362e;
  --first-color-alt: #8b4513;
  --first-color-send: #93785b;
  --title-color: #865d36;
  --text-color: #3e362e;
  --text-color-light: #8b4513;
  --body-color: #fefbfb;
  --container-color: #fff;

  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-semi-bold: 610;
  --font-bold: 700;

  /*========== Margenes ==========*/
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*========== z index ==========*/

  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
  
  /* ===== Agarwood Zigzag Section tidy spacing ===== */
  #agarwoodtitle {
    padding: 4rem 0; /* a bit more space above title and below section */
  }
  #agarwoodtitle > .section.bd-container {
    max-width: 1140px;
    margin: 0 auto 2rem; /* consistent separation between blocks */
    padding: 0 1rem; /* align with zigzag-row side padding */
  }
  #agarwoodtitle > .section.bd-container:last-of-type {
    margin-bottom: 0;
  }
  #agarwoodtitle .section-title-center {
    margin-bottom: 2rem; /* clearer separation from content */
  }
  #agarwoodtitle .zigzag-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

/*========== BASE ==========*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-send: #161212;
  --title-color: #f3f1f1;
  --text-color: #d1c7c8;
  --body-color: #251d1e;
  --container-color: #302728;
}

/*========== Button Dark/Light ==========*/
.change-theme {
  position: absolute;
  right: 1.5rem;
  top: 2.2rem;
  display: flex;
  color: var(--title-color);
  font-size: 2rem;
  cursor: pointer;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
ul,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*========== CLASS CSS ==========*/
.section {
  padding: 4rem 0 2rem;
}

.section-title,
.section-title-center {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-3);
}

/*========== LAYOUT ==========*/
.l-main {
  overflow: hidden;
}

.bd-container {
  max-width: 968px;
  width: calc(100% - 3rem);
  margin-left: var(--mb-3);
  margin-right: var(--mb-3);
}


.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #fff; /* enforce solid white header */
  /* Prevent overlap with mobile browser top (iOS notch, etc.) */
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

/*========== NAV ==========*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    padding: 2.5rem 0 0;
    text-align: center;
    background-color: var(--body-color);
    transition: 0.4s;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    z-index: var(--z-fixed);
  }
  
  .show-menu {
    display: block;
  }
}

.nav__item {
  margin-bottom: var(--mb-3);
}

.nav__link,
.nav__toggle {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__link {
  transition: 0.3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: calc(var(--header-height) + 1rem);
}

/* Active menu link */
.active-link {
  position: relative;
}

.active-link::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--first-color); /* Adjust color as needed */
  border-radius: 50%;
}


/* Change background header */
.scroll-header {
  background-color: #fff; /* stay white on scroll */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  background: rgba(218, 37, 53, 0.5);
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  visibility: hidden;
}

.scrolltop:hover {
  background-color: var(--first-color);
}

.scrolltop__icon {
  font-size: 1.5rem;
  color: var(--body-color);
}

.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

/*========== HOME ==========*/
.home__container {
  row-gap: 0.5rem;
}

.home__img {
  width: 280px;
  justify-self: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-2);
}

.home__description {
  margin-bottom: var(--mb-3);
}

/* Hero section modifications - keeping original styling */
.home.section {
  /* Use viewport units with fallback for mobile browser UI issues */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  /* Body already offsets fixed header with margin-top */
  padding-top: 0;
  box-sizing: border-box;
  overflow: hidden; /* keep to single viewport */
}

.home__container {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Professional layout structure */
.home__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--mb-1);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.25rem; /* tighter on small screens */
  text-align: center;
}

.home__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--mb-1);
  margin-bottom: 0.5rem;
  text-align: center;
  width: 100%;
}

.home__img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__intro {
  text-align: center;
  width: 100%;
}

.home__intro h1 {
  margin-bottom: 0.3rem;
  /* Auto-scale across screens */
  font-size: clamp(1rem, 2.2vw + 0.7rem, 1.4rem);
  text-align: center;
  line-height: 1.2;
}

.home__intro h2 {
  line-height: 1.15;
  margin-bottom: 0;
  font-size: clamp(1rem, 3vw + 0.6rem, 1.6rem);
  text-align: center;
}

.home__data {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  width: 100%;
}

.home__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.home__text .home__description {
  margin-bottom: 0.6rem;
  font-size: clamp(0.8rem, 2.1vw + 0.45rem, 1rem);
  line-height: 1.4;
  text-align: center;
}

.home__buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Make CTA buttons readable but compact */
.home__buttons .button {
  font-size: clamp(0.85rem, 1.6vw + 0.45rem, 1rem);
  padding: 0.6rem 1rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .home__header {
    flex-direction: column;
    text-align: center;
    gap: var(--mb-2);
  }
  
  .home__content {
    gap: var(--mb-3);
  }
  
  .home__text {
    text-align: left;
  }
}

.home__scroll {
  /* Desktop/default: place below buttons */
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* Mobile: keep arrow anchored to bottom of viewport */
@media screen and (max-width: 768px) {
  /* Default: follow buttons to reduce gap */
  .home__scroll {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    margin-top: 0.5rem;
    width: 100%;
  }
}

/* Very short mobile screens: pin to bottom to keep visible */
@media screen and (max-width: 768px) and (max-height: 640px) {
  .home__scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: max(env(safe-area-inset-bottom, 12px), 12px);
    margin-top: 0;
    width: auto;
  }
  /* Compress hero further for very short screens */
  .home__content { gap: 0.4rem; }
  .home__header { margin-bottom: 0.2rem; }
  .home__buttons { margin-top: 0.4rem; }
  .home__buttons .button { padding: 0.5rem 0.9rem; }
  .home__intro h1, .home__intro h2 { line-height: 1.1; }
  .home__text .home__description { line-height: 1.3; margin-bottom: 0.4rem; }
}

.scroll-arrow {
  width: 44px;
  height: 44px;
  border: 2px solid var(--first-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-arrow:hover {
  background-color: var(--first-color);
}

.scroll-arrow i {
  font-size: 1.5rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.scroll-arrow:hover i {
  color: white;
}

.scroll-text {
  font-size: clamp(0.75rem, 1.2vw + 0.4rem, 0.9rem);
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
}

/* Extra small devices fine-tuning */
@media screen and (max-width: 380px) {
  .home__content { gap: 0.5rem; }
  .home__buttons { gap: 0.6rem; }
  .scroll-arrow { width: 38px; height: 38px; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/*========== VIDEO BACKGROUND SECTION ==========*/
.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: relative;
  z-index: 2;
  background: rgba(62, 54, 46, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-content {
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 2rem;
}

.video-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-2);
  color: white;
}

.video-description {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: var(--mb-3);
  color: rgba(255, 255, 255, 0.9);
}

.video-btn {
  background-color: var(--first-color-send);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.video-btn:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);
}

.video-subtitle {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: white;
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-1-5);
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: var(--mb-1);
}

.video-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-2px);
}

/* Video section scroll arrow */
.video-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

.video-scroll .scroll-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto 0.5rem;
}

.video-scroll .scroll-arrow:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.video-scroll .scroll-arrow i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
}

.video-scroll .scroll-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

/* Responsive adjustments for video section */
@media screen and (max-width: 768px) {
  .video-section {
    height: 80vh;
  }
  
  .video-content {
    padding: 1.5rem;
  }
  
  .video-title {
    font-size: var(--h2-font-size);
  }
  
  .video-description {
    font-size: var(--small-font-size);
  }
  
  .video-scroll {
    bottom: 1rem;
  }
  
  .video-scroll .scroll-arrow {
    width: 40px;
    height: 40px;
  }
}

/*========== UAE AGARWOOD SECTION ==========*/
.uae-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.uae-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uae-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.uae-overlay {
  position: relative;
  z-index: 2;
  background: rgba(62, 54, 46, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uae-content {
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 2rem;
}

.uae-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-2);
  color: white;
  line-height: 1.2;
}

.uae-description {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: var(--mb-3);
  color: rgba(255, 255, 255, 0.95);
}

.uae-btn {
  background-color: var(--first-color-send);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.uae-btn:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);
}

/* UAE section scroll arrow */
.uae-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

.uae-scroll .scroll-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto 0.5rem;
}

.uae-scroll .scroll-arrow:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.uae-scroll .scroll-arrow i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
}

.uae-scroll .scroll-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

/* Responsive adjustments for UAE section */
@media screen and (max-width: 768px) {
  .uae-section {
    height: 80vh;
  }
  
  .uae-content {
    padding: 1.5rem;
  }
  
  .uae-title {
    font-size: var(--h2-font-size);
    line-height: 1.1;
  }
  
  .uae-description {
    font-size: var(--small-font-size);
    line-height: 1.5;
  }
  
  .uae-scroll {
    bottom: 1rem;
  }
  
  .uae-scroll .scroll-arrow {
    width: 40px;
    height: 40px;
  }
}

/*========== BUTTONS ==========*/
.button {
  display: inline-block;
  background-color: var(--cinnamon-bark, #5C4024);
  color: #fff;
  padding: 1rem 2rem;
  border: 2px solid var(--cinnamon-bark, #5C4024);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.button:hover {
  background-color: var(--golden-filigree, #C2954D);
  border-color: var(--golden-filigree, #C2954D);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(194, 149, 77, 0.3);
}

.button-link {
  background: none;
  padding: 0;
  color: var(--first-color);
}

.button-link:hover {
  background-color: transparent;
  color: var(--first-color-alt);
}

/*========== SHARE ==========*/
.share__data {
  text-align: center;
}

.share__description {
  margin-bottom: var(--mb-2);
}

.share__img {
  width: 100%;
  max-width: 500px;
  justify-self: center;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.share__img img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  display: block;
  object-fit: cover;
}

.share__img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}


/*========== DECORATION ==========*/
.decoration__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.decoration__data {
  text-align: center;
  padding: 1rem 1rem 2rem;
  background-color: var(--container-color);
  box-shadow: 0 2px 6px rgba(65, 11, 16, 0.15);
  border-radius: 1rem;
}

.decoration__data:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, 0.15);
}

.decoration__img {
  width: 180px;
}

.decoration__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

/*========== ACCESSORIES ==========*/
.accessory__container {
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 2rem;
}

.accessory__content {
  position: relative;
  display: grid;
  padding: 0.25rem 0.75rem 0.75rem;
  background-color: var(--container-color);
  box-shadow: 0 2px 6px rgba(65, 11, 16, 0.15);
  border-radius: 1rem;
}

.accessory__content:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, 0.15);
}

.accessory__img {
  width: 110px;
  justify-self: center;
  margin-bottom: 0.25rem;
}

.accessory__title,
.accessory__category {
  text-align: center;
}

.accessory__title {
  font-size: var(--normal-font-size);
}

.accessory__category {
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color-light);
}

.accessory__preci {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.accessory__button {
  position: unset;
  bottom: 50px;
  right: 50px;
  align-items: center; /* Vertically center text */
  justify-content: center; /* Horizontally center text */
  text-align: center; /* Ensures text alignment inside */
  display: flex;
  font-size: 0.9rem;
  padding: 0.1rem 2rem;
  border-radius: 1rem 1rem 1rem 1rem;
}

/*========== SEND GIFT ==========*/
.send {
  background-color: var(--first-color-send);
}

.send__title,
.send__description {
  color: #fff;
}

.send__description {
  text-align: center;
  margin-bottom: var(--mb-4);
}

.send__direction {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.send__input {
  width: 70%;
  outline: none;
  border: none;
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
}

.send__input::placeholder {
  font-family: var(--body-font);
}

.send__img {
  width: 280px;
  justify-self: center;
}

/*========== FOOTER ==========*/

.footer {
  background-color: #ffffff;
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__logo {
  color: var(--title-color);
}

.footer__title {
  margin-bottom: var(--mb-2);
}

.footer__logo,
.footer__title {
  font-size: var(--h3-font-size);
}

.footer__link {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__social {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-3);
}

.footer__social:hover {
  color: var(--first-color);
}

.footer__copy {
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 4rem;
}

/*========== MEDIA QUERIES ==========*/

/* For full-screen images on small screens */
@media screen and (max-width: 359px) {
  .home__img,
  .share__img,
  .send__img {
    width: 100%;
  }
}

@media screen and (min-width: 576px) {
  .home__container,
  .share__container,
  .send__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__container {
    padding: 5rem 0 0;
  }

  .home__img {
    order: 1;
  }

  .section-title-center,
  .share__data,
  .send__description {
    text-align: initial;
  }

  .home__img,
  .share__img,
  .send__img {
    width: 100%;
  }

  .share__img {
    order: -1;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section {
    padding-top: 1rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__list {
    display: flex;
    align-items: center;
  }

  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }

  .nav__toggle {
    display: none;
  }

  .change-theme {
    position: initial;
    margin-left: var(--mb-4);
  }

  .home__container {
    padding: 7rem 2rem 0;
  }

  .share__container {
    padding: 0 2rem;
  }

  .accessory__container {
    grid-template-columns: repeat(3, 224px);
    justify-content: center;
  }

  .accessory__content {
    padding: 0.5rem 1.5rem 1.5rem;
  }

  .accessory__img {
    width: 120px;
    margin-bottom: var(--mb-1);
  }

  .accessory__title,
  .accessory__category {
    text-align: initial;
  }

  .accessory__button {
    padding: 0.75rem;
  }

  .send {
    background: none;
  }

  .send__container {
    background-color: var(--first-color-send);
    padding: 2rem;
    border-radius: 1.5rem;
  }
}

@media screen and (min-width: 968px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__img,
  .share__img,
  .send__img {
    width: 469px;
  }

  .home__container,
  .share__container,
  .send__container {
    column-gap: 5rem;
  }
}

/*========== Spec Table ==========*/

/* Center the table */
.specifications__table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 80%;
}

/* Add borders and adjust padding */
.specifications__table th,
.specifications__table td {
  border: 2px solid #333; /* Adjust the color to match your theme */
  padding: 10px;
  text-align: left;
}

/* Style the header row */
.specifications__table th {
  background-color: #f4f4f4; /* Adjust the background color to match your theme */
  color: #333; /* Adjust the text color to match your theme */
}

/* Optional: Add some styling for alternating row colors */
.specifications__table tr:nth-child(even) {
  background-color: #f9f9f9;
}
/* Custom styles for the About Us page */
.about__container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.about__description {
  text-align: center;
  margin-bottom: 20px;
}

.team__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team__member {
  text-align: center;
  margin: 20px;
}

.team__member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Custom styles for the blog listing page */
.blog-listing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.blog-title {
  margin-top: 60px; /* Adjusted margin-top to move the title below the menu */
  text-align: center; /* Centered the title */
}

.blog-item {
  display: flex;
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
}

.blog-item img {
  max-width: 40%;
  border-radius: 8px;
  margin-right: 20px;
}

.blog-item-content {
  flex: 1;
}

.blog-item h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
}

.blog-item p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px; /* Added margin to create space between text and button */
}

.blog-item a {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: 0.3s;
}

/* .blog-item a:hover {
      background-color: #45a049;
  } */

/* Added styles for the header menu */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999; /* Ensure the header is on top of other content */
  /* Prevent overlap with mobile browser top (iOS notch, etc.) */
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

/* For large screens (desktops, 1200px and up) */
@media screen and (min-width: 1200px) {
  .blog-listing-container {
    max-width: 1200px;
  }
}

/* For medium screens (tablets, 768px - 1199px) */
@media screen and (max-width: 1199px) {
  .blog-listing-container {
    max-width: 90%;
    padding: 15px;
  }

  .blog-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-item img {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .blog-item h2 {
    font-size: 22px;
  }

  .blog-item p {
    font-size: 15px;
  }
}

/* For small screens (mobile, 480px - 767px) */
@media screen and (max-width: 767px) {
  .blog-listing-container {
    padding: 10px;
  }

  .blog-title {
    font-size: 22px;
    margin-top: 40px;
  }

  .blog-item {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }

  .blog-item img {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .blog-item h2 {
    font-size: 20px;
  }

  .blog-item p {
    font-size: 14px;
  }

  .blog-item a {
    padding: 0.8rem 1.2rem;
    font-size: 14px;
  }
}

/* For extra small screens (below 480px) */
@media screen and (max-width: 480px) {
  .blog-title {
    font-size: 20px;
    margin-top: 30px;
  }

  .blog-item {
    padding: 10px;
  }

  .blog-item h2 {
    font-size: 18px;
  }

  .blog-item p {
    font-size: 13px;
  }

  .blog-item a {
    padding: 0.7rem 1rem;
    font-size: 13px;
  }
}

/* Adjusted padding for the nav */
.nav {
  padding: 20px;
}

.cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #49240c;
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #be7e4f;
}
.blog__image {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}
.faq__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-title-img-container {
  text-align: center;
}

        /* Custom styles for the Certifications page */
        .certification {
          margin-bottom: 50px;
      }

      .certification__container {
          display: flex;
          justify-content: space-around;
          align-items: center;
          flex-wrap: wrap;
      }

      .certification__content {
          text-align: center;
          width: 300px;
          margin-bottom: 30px;
      }

      .certification__image {
          border-radius: 50%;
          width: 200px;
          height: 200px;
          object-fit: cover;
          margin-bottom: 20px;
      }

      .faq {
          margin-top: 50px;
          padding: 20px;
      }

      .faq h2 {
          margin-bottom: 20px;
      }

      .product__info {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .product__info li {
        margin-bottom: 12px;
        display: flex;
        flex-wrap: wrap;
      }
      
      .product__info li strong {
        width: 140px;
        font-weight: 600;
        color: #333;
      }
      
      .product__info li span {
        flex: 1;
        color: #555;
      }
      .product__intro {
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }
            
      .contact-form {
        background-color: #fff;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        max-width: 600px;
        margin: auto;
      }
      
      .contact-form .form-group {
        margin-bottom: 1.5rem;
      }
      
      .contact-form input,
      .contact-form textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #ccc;
        border-radius: 0.5rem;
        font-family: var(--body-font);
        font-size: var(--normal-font-size);
        color: var(--text-color);
      }
      
      .contact-form input:focus,
      .contact-form textarea:focus {
        border-color: var(--first-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(142, 68, 173, 0.2);
      }
      
      .contact-form textarea {
        resize: vertical;
      }
      
      .contact-form .button {
        width: 100%;
        font-size: 1rem;
      }
      /* Contact Us Section */
.contact__container {
  padding-top: 1rem;
}

.contact__wrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--first-color-send);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.contact__form-section,
.contact__image-section {
  flex: 1 1 50%;
  padding: 2rem;
}

.contact__form-section {
  background-color: #fff;
}

.contact__form-section .section-title {
  color: var(--title-color);
  margin-bottom: 1rem;
}

.contact__text {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #f4f4f4
}

.contact__image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--first-color-send);
}

.contact__image-section img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 0 1rem 1rem;
}

/* Responsive behavior */
@media screen and (max-width: 768px) {
  .contact__wrapper {
    flex-direction: column;
  }

  .contact__form-section,
  .contact__image-section {
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .contact__image-section img {
    border-radius: 0 0 1rem 1rem;
  }
}
/* Home section background image */
#home {
  background: url('../img/main/ceylonspizee-landing-page-background.webp') no-repeat center center / cover;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Agarwood title section background image for better title visibility */
#agarwoodtitle {
  background: url('../img/main/ceylonspizee-landing-page-background.webp') no-repeat center center / cover;
  position: relative;
  z-index: 1;
}

#agarwoodtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(62, 54, 46, 0.7);
  z-index: -1;
}

#agarwoodtitle .section-title {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: var(--font-bold);
}

#agarwoodtitle .zigzag-content p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding-bottom: 2rem;
}

/* Ceylon Spices Discovery section background image for better visibility */
#oudTrustUAE {
  background: url('../img/main/ceylonspizee-landing-page-background.webp') no-repeat center center / cover;
  position: relative;
  z-index: 1;
  padding: 0rem 0rem;
}

#oudTrustUAE::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(62, 54, 46, 0.75);
  z-index: -1;
}

#oudTrustUAE .oudTrust__title {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: var(--font-bold);
  text-align: center;
  margin-bottom: 2rem;
}

#oudTrustUAE .oudTrust__description p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#oudTrustUAE .read-more-btn {
  background-color: var(--first-color-send);
  color: white;
  text-shadow: none;
}

#oudTrustUAE .read-more-btn:hover {
  background-color: var(--first-color-alt);
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(62, 54, 46, 0); /* matches your first-color */
  z-index: -1;
}


.home__container {
  position: relative;
  z-index: 2;
}
.home__data h1,
.home__data h2{
  color: #52391b; /* or use #f5e8dc for a slightly warmer tone */
}
.home__description {
  color: #996625; /* or use #f5e8dc for a slightly warmer tone */
}
/* Why Us section with background image and dark overlay */
#WhyUs {
  position: relative;
  background: url('../img/main/why-choose-us/sri-lanka-plantations.webp') no-repeat center center / cover;
  color: #fefbfb;
  z-index: 1;
  padding: 4rem 0;
}

#WhyUs::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(62, 54, 46, 0.65); /* same as home overlay */
  z-index: -1;
}

/* Ensure content is readable above overlay */
#WhyUs .home__container {
  position: relative;
  z-index: 2;
}

#WhyUs .home__title,
#WhyUs .home__description,
#WhyUs .button {
  color: #fefbfb;
}
/* Full-width Products section with background and overlay */
#accessory {
  position: relative;
  background: url('../img/main/why-us-background.webp') no-repeat center center / cover;
  color: #fefbfb;
  z-index: 1;
  padding: 4rem 0;
  width: 100%;
  overflow: hidden; /* Ensures child elements respect the border radius */
}


#accessory::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(62, 54, 46, 0); /* overlay */
  z-index: -1;
}

/* Remove default container width limitation */
#accessory .bd-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Raise z-index so content is above overlay */
#accessory .accessory__container,
#accessory .section-title {
  position: relative;
  z-index: 2;
  color: #fefbfb;
}

#accessory .accessory__button {
  color: #fff;
}



/* Contact Us Section - Enhanced Look */
#ContactUs {
  position: relative;
  background: linear-gradient(
      rgba(62, 54, 46, 0.8),
      rgba(62, 54, 46, 0.8)
    ),
    url('../img/main/contact-us-background/srilankan-heritage-perahera.webp') no-repeat center center / cover;
  padding: 4rem 0;
  color: #fff;
}

.contact__wrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.contact__form-section {
  flex: 1 1 50%;
  padding: 2rem;
  background-color: rgb(134 93 54);
}

.contact__form-section .section-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact__form-section input,
.contact__form-section textarea {
  background-color: #fefbfb;
  border: 1px solid #ccc;
  color: var(--text-color);
}

.contact__form-section .button {
  background-color: var(--cinnamon-bark, #5C4024);
  color: #fff;
  border: 2px solid var(--cinnamon-bark, #5C4024);
  margin-top: 1rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-weight: 600;
}

.contact__form-section .button:hover {
  background-color: var(--golden-filigree, #C2954D);
  border-color: var(--golden-filigree, #C2954D);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(194, 149, 77, 0.3);
}

.contact__image-section {
  flex: 1 1 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contact__image-section img {
  width: 100%;
  max-width: 420px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* Responsive Enhancements */
@media screen and (max-width: 768px) {
  .contact__wrapper {
    flex-direction: column;
  }

  .contact__form-section,
  .contact__image-section {
    flex: 1 1 100%;
    border-radius: 0;
  }


  .contact__image-section img {
    border-radius: 0 0 1.5rem 1.5rem;
  }
}
.journey-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 4rem 0;
  gap: 2rem;
}

.journey-row-right .journey-text {
  order: 1;
}
.journey-row-right .journey-img-box {
  order: 2;
}

.journey-row-left .journey-img-box {
  order: 1;
}
.journey-row-left .journey-text {
  order: 2;
}

.journey-text {
  flex: 1 1 45%;
}

.journey-text h3 {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.journey-text p {
  line-height: 1.8;
  font-size: 1rem;
  color: var(--text-color);
  text-align: justify;
}

.journey-img-box {
  flex: 1 1 45%;
  text-align: center;
}

.journey-img {
  width: 100%;
  max-width: 480px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(65, 11, 16, 0.15);
  transition: transform 0.3s ease;
}

.journey-img:hover {
  transform: scale(1.02);
}

.img-caption {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-color-light);
  margin-top: 0.5rem;
}

/* Final quote styling */
.journey-quote {
  background-color: var(--first-color-send);
  color: #fff;
  font-size: 1.2rem;
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  margin-top: 4rem;
  font-style: italic;
}

.journey-quote strong {
  color: #fefbfb;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .journey-row {
    flex-direction: column;
    text-align: center;
  }

  .journey-text, .journey-img-box {
    flex: 1 1 100%;
  }

  .journey-text h3 {
    font-size: 1.25rem;
  }

  .journey-text p {
    font-size: 0.95rem;
  }

  .journey-quote {
    font-size: 1rem;
  }
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.usp-item {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(92, 64, 36, 0.1);
  transition: all 0.3s ease;
}
.usp-item:hover {
  box-shadow: 0 6px 18px rgba(92, 64, 36, 0.15);
  transform: translateY(-5px);
}
.usp-item i {
  font-size: 2rem;
  color: var(--cinnamon-bark, #5C4024);
  margin-bottom: 1rem;
}
.usp-item h3 {
  font-size: 1.25rem;
  color: var(--cinnamon-bark, #5C4024);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.usp-item p {
  font-size: 0.95rem;
  color: var(--deep-charcoal, #332D29);
  line-height: 1.6;
}

/* Generic centered section title */
.section-title-center {
  text-align: center;
  font-size: var(--h2-font-size);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  margin: 0 0 1.5rem 0;
}

#WhyUs .section-title-center {
  color: #ffffff;
  text-align: center;
}
#accessory {
  padding-bottom: 0 !important;
}

#WhyUs {
  padding-top: 1rem !important;
}

/* Fix Why Choose Us section mobile alignment - Override all existing styles */
@media screen and (max-width: 768px) {
  /* Main container fix */
  #WhyUs .home__container.bd-container.bd-grid {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 2rem !important;
    padding: 2rem 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Data container - the text content */
  #WhyUs .home__data {
    order: 1 !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Override the conflicting .home__text left alignment */
  #WhyUs .home__data .home__text,
  #WhyUs .home__text {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  
  /* Image container */
  #WhyUs .home__img {
    order: 2 !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 300px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  #WhyUs .home__img img {
    width: 100% !important;
    height: auto !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  /* Title */
  #WhyUs .home__title {
    text-align: center !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
    display: block !important;
  }
  
  /* Description text */
  #WhyUs .home__description {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
    width: 100% !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Button */
  #WhyUs .aboutus-btn {
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: fit-content !important;
  }
  
  /* Force center alignment on all child elements */
  #WhyUs * {
    text-align: center !important;
  }
  
  /* But allow button text to remain centered naturally */
  #WhyUs .aboutus-btn * {
    text-align: inherit !important;
  }
}

#WhyUs .usp.section {
  padding-top: 2rem !important;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin: 0 auto; /* center within container */
}

/* Read more button wrapper spacing */
.read-more-wrapper {
  margin-top: 0.5rem;
}

/* Responsive: tighten padding on small screens */
@media screen and (max-width: 768px) {
  #spiceShowcase {
    padding: 3rem 1rem;
  }
}

.share-slide {
  display: none;
  animation: fadeEffect 1s ease-in-out;
}

.share-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-50%);
  z-index: 2;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(255, 255, 255, 0);
}

/* Fade effect */
@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Responsive */
@media screen and (max-width: 600px) {
  .prev, .next {
    font-size: 18px;
    padding: 10px;
  }
}
.aboutus-btn {
  display: inline-block;
  background-color: #8b45135e;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: 0.3s; 
}

.aboutus-btn:hover {
  background-color: #8b4513;
}
.vmc-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: #242422de;
  padding: 2rem;
  border-radius: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.vmc-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #fefbfb;
  border-radius: 1.25rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
}

.vmc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.vmc-card i {
  font-size: 2.5rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.vmc-card h3 {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-bottom: 1rem;
}

.vmc-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .vmc-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.share-slide .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(62, 54, 46, 0.7); /* matches your theme */
  color: #fefbfb;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Responsive font size */
@media screen and (min-width: 576px) {
  .share-slide .caption {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .share-slide .caption {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #accessory {
    padding: 2rem 1rem;
    background-position: center center;
    background-size: cover;
  }

  #accessory .accessory__container {
    grid-template-columns: 1fr; /* Single column on small screens */
    padding: 0 0 2rem;
    gap: 1.5rem;
  }

  .accessory__content {
    padding: 1rem;
    text-align: center;
  }

  .accessory__img {
    width: 100px;
    margin: 0 auto 0.75rem auto;
  }

  .accessory__title,
  .accessory__category {
    text-align: center;
  }
}
/* Improved accessory (product) styling */
.accessory__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
}

.accessory__content {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessory__content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.accessory__img {
  width: 120px;
  margin-bottom: 1rem;
}

.accessory__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-align: center;
  color: var(--title-color);
}

.accessory__category {
  font-size: 0.85rem;
  color: var(--text-color-light);
  margin-bottom: 1rem;
  text-align: center;
}

.accessory__button {
  margin-top: auto;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  background-color: var(--first-color);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accessory__button:hover {
  background-color: var(--first-color-alt);
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .accessory__container {
    padding: 1.5rem 1rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .accessory__content {
    padding: 1rem 1.25rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
  }

  .accessory__img {
    width: 100px;
    margin-bottom: 1rem;
  }

  .accessory__title,
  .accessory__category {
    text-align: center;
  }

  .accessory__button {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  #accessory {
    padding: 2rem 1rem;
  }
}
.flip-card {
  background-color: transparent;
  width: 260px;
  height: 320px;
  perspective: 1000px;
  margin: auto;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: 0 8px 20px rgba(92, 64, 36, 0.08);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-front {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(92, 64, 36, 0.1);
}

.flip-card-front img {
  width: 100px;
  margin-bottom: 1rem;
}

.flip-card-front h3 {
  font-size: 1.1rem;
  color: var(--cinnamon-bark, #5C4024);
  font-weight: 600;
}

.flip-card-back {
  background-color: var(--cinnamon-bark, #5C4024);
  color: #fff;
  transform: rotateY(180deg);
  box-shadow: 0 4px 12px rgba(92, 64, 36, 0.15);
}

.flip-card-back p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.flip-card-back .button {
  background-color: #fff;
  color: var(--cinnamon-bark, #5C4024);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid #fff;
}

.flip-card-back .button:hover {
  background-color: var(--golden-filigree, #C2954D);
  color: #fff;
  border-color: var(--golden-filigree, #C2954D);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(194, 149, 77, 0.3);
}
@media screen and (max-width: 768px) {
  .flip-card {
    width: 100%;
    max-width: 320px;
  }
}
/* FAQ Section Styling */
.flush-faq {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: transparent;
}

.faq__content.equal-height-box {
  width: 100%;
  padding: 2rem;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__item {
  padding-left: 1rem;
  border-left: 4px solid var(--first-color);
}

.faq__question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--title-color);
}

.faq__answer {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Responsive fix */
@media screen and (max-width: 768px) {
  .faq__content.equal-height-box {
    padding: 1.5rem 1rem;
  }

  .faq__question {
    font-size: 1rem;
  }

  .faq__answer {
    font-size: 0.9rem;
  }
}
.product__image-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product__img-enhanced {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 1rem;
}

.product__image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
  .product__image-wrapper {
    max-width: 100%;
    border-radius: 0.75rem;
  }
}
.product__flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.product__content {
  flex: 1 1 400px;
}

.product__image-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
}
.no-top-padding {
  padding-top: 1rem !important;
}
.product-banner-description {
  font-size: 1.125rem;
  color: #3e362e;
  max-width: 700px;
  margin: 1rem auto 0;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .product-banner-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.read-more-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.read-more-btn {
  background-color: #8b4513;
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #5a3b1f;
}

.section.bg-image-only {
  position: relative;
  background: none;
  z-index: 1;
  overflow: hidden;
}

.section.bg-image-only::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/main/landing-page-main.jpg') no-repeat center center / cover;
  filter: blur(12px);
  transform: scale(1.1); /* Prevent edge clipping after blur */
  z-index: -1;
  opacity: 0.8;
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.button-group .button {
  flex: 1 1 auto;
  min-width: 150px;
  text-align: center;
}

/* Mobile responsiveness */
@media screen and (max-width: 480px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .button-group .button {
    width: 100%;
    max-width: 300px;
  }
}
.certifications-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
  margin: 2rem 0;
}

.certification-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.certification-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.certification-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--first-color);
}

.certification-card:hover {
  transform: translateY(-5px);
}
/* Reduce spacing below the "Certified & Sustainable" title only for this section */
.section-title {
  margin-bottom: 1rem;
}

.certifications-cards {
  margin-top: 0 !important;
}
.product__seo-content {
  margin-top: 1.5rem;
}

.product__seo-content h3.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
  color: var(--title-color);
}

.product__seo-content p {
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.7;
}
.product__table-wrapper {
  margin-top: 1.5rem;
  overflow-x: auto;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.product__info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  font-size: 0.95rem;
}

.product__info-table th,
.product__info-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  vertical-align: top;
}

.product__info-table th {
  background-color: #f5f3f0;
  color: var(--title-color);
  font-weight: 600;
  width: 35%;
  white-space: nowrap;
  border-right: 1px solid #e0dcd9;
}

.product__info-table td {
  color: var(--text-color);
}

.product__info-table tr:not(:last-child) th,
.product__info-table tr:not(:last-child) td {
  border-bottom: 1px solid #f0f0f0;
}

@media screen and (max-width: 600px) {
  .product__info-table th,
  .product__info-table td {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
}
.usp-flip-card {
  background-color: transparent;
  width: 100%;
  max-width: 300px;
  height: 360px;
  perspective: 1000px;
  margin: auto;
}

.usp-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.usp-flip-card:hover .usp-flip-inner {
  transform: rotateY(180deg);
}

.usp-flip-front,
.usp-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  flex-direction: column;
  transition: all 0.3s ease;
}

.usp-flip-front {
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.usp-flip-front h3 {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.usp-flip-back {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-color);
  transform: rotateY(180deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.usp-flip-back h3 {
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.usp-flip-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
}

/* Add this to your styles.css file */

/* Improved flip card responsiveness */
@media screen and (max-width: 768px) {
  .accessory__container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .flip-card {
    width: 100%;
    max-width: 300px;
    height: 280px; /* Reduced height for mobile */
    margin: 0 auto;
  }

  .flip-card-front img {
    width: 80px; /* Smaller image for mobile */
    margin-bottom: 0.5rem;
  }

  .flip-card-front h3 {
    font-size: 1rem;
  }

  .flip-card-back p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .flip-card-back .button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* Center align section titles */
  .section-title, .section-title-center {
    padding: 2rem 1rem;
    text-align: center;
  }

  /* Adjust product section padding */
  #accessory {
    padding: 2rem 0;
  }
}

/* For very small screens */
@media screen and (max-width: 480px) {
  .flip-card {
    height: 260px;
  }

  .flip-card-front, 
  .flip-card-back {
    padding: 0.8rem;
  }

  /* Center the "Explore Our Products" subtitle */
  #accessory h3 {
    padding: 0 1rem;
    text-align: center;
  }
}

/* Ensure flip cards don't get too wide on large mobile screens */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .accessory__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flip-card {
    width: 100%;
    max-width: none;
  }
}
.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-color-light);
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Medium screens */
@media screen and (min-width: 576px) {
  .section-subtitle {
    font-size: 1.05rem;
  }
}

/* Larger screens */
@media screen and (min-width: 768px) {
  .section-subtitle {
    font-size: 1.1rem;
  }
}



/* Blog Intro & Meta */
.product__intro {
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #444;
}

.blog__meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1.5rem;
  text-align: center;
}
/* Blog Images */
.blog__image {
    width: 100%;
    max-width: 640px; /* Reduced from 800px for a sleeker look */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px; /* Slightly more modern rounding */
    margin: 2rem auto; /* More breathing room */
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Optional: Add hover effect for interactivity */
  .blog__image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  

.blog__image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.main-blog-image {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 1.5rem auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blog__image,
  .main-blog-image {
    aspect-ratio: 4 / 3;
    max-width: 100%;
    border-radius: 10px;
  }
}

/* blogfaq Section */
.blogfaq {
  background-color: #fafafa;
  padding: 3rem 1rem;
  border-top: 1px solid #eee;
}

.section-title-center {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #4b2c20;
}

.blogfaq__container {
  display: grid;
  gap: 1.5rem;
}

.blogfaq__content {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.blogfaq__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #3c1e12;
}

.blogfaq__description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .section-title {
    font-size: 1.65rem;
  }

  .blogfaq__container {
    grid-template-columns: 1fr;
  }

  .blog__image,
  .main-blog-image {
    max-width: 100%;
  }
}

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

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

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

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}
.zigzag-container {
    display: flex;
    justify-content: center;
  }
  
  .zigzag-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto; /* center row */
    padding: 0 1rem; /* consistent side padding */
  }
  
  .zigzag-row.reverse {
    flex-direction: row-reverse;
  }
  
  .zigzag-image,
  .zigzag-content {
    flex: 1;
  }
  
  .zigzag-content {
    padding: 0; /* remove extra padding for tighter layout */
  }
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    .zigzag-row,
    .zigzag-row.reverse {
      flex-direction: column;
      text-align: center;
    }
  
    .zigzag-row {
      gap: 1.25rem; /* slightly tighter gap on mobile */
      padding: 0 1rem;
    }
    .zigzag-content {
      padding: 0;
    }
  }
  .blog-listing-wrapper {
  padding: 2rem 1rem;
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #cc4b00;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 8px;
  z-index: 1;
  font-weight: bold;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.blog-main-title {
  font-size: 2.5rem;
  text-align: center;
  color: #4b2c20;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-intro-text {
  font-size: 1.2rem;
  color: #444;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .blog-main-title {
    font-size: 2rem;
  }

  .blog-intro-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

.blog-intro-section {
  padding: 6rem 1rem 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .blog-intro-section {
    padding: 5rem 1rem 2rem;
  }
}

.blog-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.blog-listing-wrapper {
  padding: 2rem 1rem 4rem;
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .blog-card-body {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .blog-card-excerpt {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
.blog-title-img-container {
  padding-top: 6rem;
  padding-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .blog-title-img-container {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }
}
/* FAQ Section with background image and overlay */
#faq-section {
  position: relative;
  background: url('../img/main/ceylonspizee-landing-page-background.webp') no-repeat center center / cover;
  padding: 4rem 1rem;
  color: #fff;
  z-index: 1;
}

#faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(62, 54, 46, 0.75); /* dark overlay for text readability */
  z-index: -1;
}

#faq-section .section-title-center {
  color: #fefbfb;
}

#faq-section .faq__container {
  max-width: 1000px;
  margin: 0 auto;
}

#faq-section .faq__item {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 1.5rem;
  color: var(--text-color);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
#oud-benefits {
  position: relative;
  width: 100%;
  background: url('../img/main/UAE-main.webp') no-repeat center center / cover;
  color: #fff;
  padding: 4rem -1rem;
  z-index: 1;
  overflow: hidden;
}

#oud-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(62 54 46 / 83%); /* Optional dark overlay */
  z-index: -1;
}

#oud-benefits .share__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #oud-benefits .share__container {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 1.5rem;
  }

  #oud-benefits .share__img {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  #oud-benefits .share__data {
    width: 100%;
  }
}
/* ======== Spices Showcase Section ======== */
#spiceShowcase {
  background-color: #fefbfb;
  padding: 4rem 1rem;
  text-align: center;
}

.oudTrust__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem; /* consistent vertical spacing */
}

.oudTrust__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: 2rem;
  font-weight: var(--font-semi-bold);
}

.oudTrust__image-wrapper {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oudTrust__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.oudTrust__image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.oudTrust__description p {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

#agarwoodtitle .section-title {
  font-size: var(--h2-font-size);
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: var(--mb-3);
}
@media screen and (min-width: 992px) {
  .accessory__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2.5rem; /* More vertical & horizontal spacing */
    padding: 3rem 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .flip-card {
    width: 100%;
    max-width: 260px;
    height: 340px;
    margin: 0 auto;
  }

  .flip-card-inner {
    height: 100%;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.5rem;
  }

  .flip-card-front img {
    width: 110px;
    margin-bottom: 1rem;
  }

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

  .flip-card-back p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .flip-card-back .button {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
}
#accessory h2.section-title,
#accessory .section-subtitle {
  color: var(--cinnamon-bark, #5C4024);
  text-shadow: none;
}
.faq__answer {
  transition: all 0.3s ease;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(62, 54, 46, 0.85); /* Dark overlay */
  backdrop-filter: blur(3px);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.4s ease-out;
}

.close-modal {
  color: var(--first-color);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.modal-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .modal-content {
    margin: 10% 1rem;
    padding: 1.5rem;
  }

  .close-modal {
    font-size: 1.5rem;
  }
}

/* Client Login button custom color */
.nav__list > .nav__item:last-child > .nav__link {
  color: #86864e !important;
}

/*========== FLOATING CHAT BUTTONS ==========*/
.floating-chat-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.floating-chat-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.floating-chat-btn:hover::before {
  left: 100%;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ea952;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.live-chat-btn {
  background: var(--first-color-send);
}

.live-chat-btn:hover {
  background: var(--first-color-alt);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(147, 120, 91, 0.4);
}

.chat-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--first-color);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chat-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--first-color);
}

.floating-chat-btn:hover .chat-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .floating-chat-container {
    bottom: 70px;
    right: 15px;
    gap: 12px;
  }
  
  .floating-chat-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  
  .chat-tooltip {
    right: 65px;
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

@media screen and (max-width: 480px) {
  .floating-chat-container {
    bottom: 60px;
    right: 10px;
  }
  
  .floating-chat-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .chat-tooltip {
    display: none; /* Hide tooltips on very small screens */
  }
}

/*========== CHAT MODAL ==========*/
.chat-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 54, 46, 0.8);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.chat-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-container {
  background: white;
  border-radius: 1rem;
  width: 90%;
  max-width: 400px;
  max-height: 80vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideUp 0.4s ease;
}

.chat-header {
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--first-color-send);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-title {
  font-weight: 600;
  font-size: 1rem;
}

.chat-status {
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.chat-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: background 0.3s ease;
}

.chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chat-body {
  height: 300px;
  padding: 1rem;
  background: #fafafa;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.chat-message {
  margin-bottom: 1rem;
  animation: messageSlide 0.3s ease;
}

.message-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.message-content {
  flex: 1;
}

.message-text {
  background: white;
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
}

.message-time {
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.25rem;
}

.bot-message {
  display: flex;
  gap: 0.5rem;
}

.user-message {
  display: flex;
  justify-content: flex-end;
}

.user-message .message-text {
  background: var(--first-color);
  color: white;
  max-width: 80%;
}

.user-message .message-time {
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.quick-action-btn {
  background: var(--container-color);
  border: 1px solid var(--first-color-lighten);
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.quick-action-btn:hover {
  background: var(--first-color-lighten);
  transform: translateY(-1px);
}


/* Chat Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Mobile Responsive for Chat Modal */
@media screen and (max-width: 480px) {
  .chat-container {
    width: 95%;
    max-height: 85vh;
  }
  
  .chat-body {
    height: 250px;
  }
  
  .quick-actions {
    grid-template-columns: 1fr;
  }
  
  .chat-header {
    padding: 0.75rem;
  }
  
}
