#mod-custom110 {
  background-color: #fffaf7;
  padding: 10px 10px;
  text-align: center;
  border-bottom: 1px solid #e8dcd7;
  font-family: Georgia, serif;
}

#mod-custom110 img {
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  background: transparent !important; /* force no background */
}

#mod-custom110 h1 {
  font-size: 20px;
  color: #8c4c4c;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: Georgia, serif;
}
#mod-custom110 .logo-link {
  background: none !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-block;
}

#mod-custom110 .logo-link img {
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: none !important;
  background: transparent !important;
}

.product-slider {
  overflow: hidden;
  padding: 10px 0;
  background: #fffaf7;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: scroll 25s linear infinite;
  flex-wrap: nowrap;
  width: max-content;
}

.slider-card {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
}

.slider-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-card p {
  margin-top: 8px;
  font-size: 14px;
  font-family: Georgia, serif;
  color: #5a3535;
}

.slider-card:hover img {
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Make the container draggable for manual swipe */
.product-slider {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}


#mod-custom110 a {
  display: inline-block;
  padding: 10px 30px;
  background-color: #d7b2a4;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
}

#mod-custom110 a:hover {
  background-color: #c89d91;
}

/* === Footer Layout Clean === */
.container-footer.footer {
  background: #fffaf7;
  padding: 5px 0 10px;
  font-family: Georgia, serif;
  text-align: center;
  border-top: 1px solid #e8dcd7;
}

footer ul.mod-menu.mod-list.nav {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  padding: 0 !important;
  margin: 0 0 10px !important;
  list-style: none !important;
}
footer ul.mod-menu.mod-list.nav li {
  display: inline-block !important;
}
footer ul.mod-menu.mod-list.nav li a {
  color: #8c6a42 !important;
  font-family: Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

footer ul.mod-menu.mod-list.nav li a:hover {
  color: #b48778; !important;
  text-decoration: underline !important;
}

/* Copyright Block (Below Menu) */
#mod-custom112 {
  width: 100%;
  display: block;
  margin-top: 10px;
}

#mod-custom112 p {
  color: #8c6a42 !important;
  font-family: Georgia, serif !important;
  font-size: 13px !important;
  margin: 0;
  padding-bottom: 8px;
}

.container-footer.footer .grid-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .mod-menu.mod-list.nav li a {
  color: #4a2e2e !important;
  font-family: Georgia, serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

footer .mod-menu.mod-list.nav li a:hover {
  color: #8c4c4c !important;
  text-decoration: underline !important;
}
footer .mod-menu.mod-list.nav {
  gap: 14px; /* adjust this value as needed */
  margin-bottom: 10px;
}


.mod-breadcrumbs__wrapper {
  background: #fffaf7;
  padding: 12px 20px;
  border-top: 1px solid #e8dcd7;
  border-bottom: 1px solid #e8dcd7;
  font-family: Georgia, serif;
  font-size: 14px;
  color: #8c4c4c;
  text-align: center;
}

.mod-breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mod-breadcrumbs__item a {
  color: #8c4c4c;
  text-decoration: none;
}

.mod-breadcrumbs__item a:hover {
  text-decoration: underline;
}

.mod-breadcrumbs__item.active span {
  font-weight: 600;
  color: #4a2e2e;
}
.section-heading {
  text-align: center;
  font-family: Georgia, serif;
  font-size: 20px;
  color: #8c6a42;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.product-slider-container {
  overflow: hidden;
  width: 100%;
  background: #fff8f5;
  padding: 15px 0;
}

.slider-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  animation: scrollSlider 60s linear infinite;
}

.slider-card {
  flex: 0 0 calc(14% - 14px); /* ~7 per row for 3 rows on 21+ items */
  max-width: 130px;
  text-align: center;
  background: #fdf7f5;
  border-radius: 10px;
  padding: 10px 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.slider-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.slider-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #5a3535;
  font-family: Georgia, serif;
  margin: 10px 0 4px;
}

.slider-card .desc {
  font-size: 13px;
  color: #777;
  font-family: Georgia, serif;
  margin-bottom: 10px;
}

.order-btn {
  display: inline-block;
  padding: 6px 20px;
  background-color: #b29e7a;
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  font-family: Georgia, serif;
}

.order-btn:hover {
  background-color: #a08866;
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* 🌸 Resinamy Product Page Styles */
body {
  background: #fce8ee;
  font-family: 'Playfair Display', serif;
  color: #2c2c2c;
}

/* Main Product Container */
.product-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(212, 159, 207, 0.1);
  line-height: 1.7;
}

/* Product Title */
.product-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #a94e8f;
}

/* Short Description */
.short-description {
  font-size: 18px;
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
  color: #5c2d45;
}

/* Long Description */
.long-description p {
  margin-bottom: 12px;
}
.long-description ul {
  margin-left: 20px;
  padding-left: 10px;
  list-style: disc;
  color: #444;
}

/* Specs + Meta Blocks */
.product-specs,
.product-meta {
  background-color: #fdf4f8;
  border-left: 4px solid #d49fcf;
  padding: 16px 20px;
  margin-top: 24px;
  border-radius: 6px;
}
.product-specs h4 {
  margin-top: 0;
  font-size: 20px;
  color: #a94e8f;
}
.product-specs ul,
.product-meta p {
  margin: 6px 0;
  color: #3e3e3e;
}

/* Gallery Layout */
.lightbox-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
}
.lightbox-gallery img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.lightbox-gallery img:hover {
  transform: scale(1.03);
}

/* Lightbox Fullscreen View */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}
.lightbox-overlay:target {
  display: flex;
}

/* 🌐 Responsive (Mobile) */
@media (max-width: 768px) {
  .product-title {
    font-size: 28px;
  }
  .short-description {
    font-size: 16px;
  }
  .lightbox-gallery {
    flex-direction: column;
    align-items: center;
  }
  .lightbox-gallery img {
    max-width: 90%;
  }
  .product-specs, .product-meta {
    font-size: 15px;
  }
}
#mod-custom111 .about-preview {
  background: #fffaf7;
  text-align: center;
  padding: 10px 10px;
  border-top: 1px solid #e8dcd7;
  border-bottom: 1px solid #e8dcd7;
  font-family: 'Great Vibes', cursive;
}

#mod-custom111 .about-preview p {
  font-family: 'Great Vibes', cursive;
  font-size: 20px;
  color: #4a2e2e;
  margin-bottom: 16px;
  font-weight: 400;
}

#mod-custom111 .about-preview a {
  display: inline-block;
  padding: 6px 20px;
  background-color: #b48778;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  font-family: Georgia, serif;
  transition: background-color 0.3s ease;
}

#mod-custom111 .about-preview a:hover {
  background-color: #a87569;
}