/*
Theme Name: Hello Biz Child
Template: hello-biz
*/

/* ========================================
   CSS Variables (Color Palette)
   ======================================== */
:root {
  --juju-cream: #faf8f5;
  --juju-white: #ffffff;
  --juju-black: #1a1a1a;
  --juju-soft-black: #2d2d2d;
  --juju-charcoal: #4a4a4a;
  --juju-taupe: #8b8178;
  --juju-rose: #c9a889;
  --juju-rose-light: #e8ddd3;
  --juju-rose-dark: #b8977a;
}

/* ========================================
   Google Fonts (add to your theme's head)
   ======================================== */
/* 
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
*/

/* ========================================
   Products Grid Layout
   ======================================== */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}

/* Reset default WooCommerce styles */
.woocommerce ul.products li.product {
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ========================================
   Product Card Container
   ======================================== */
.woocommerce ul.products li.juju-product-card {
  background: var(--juju-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
}

.woocommerce ul.products li.juju-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Product Image
   ======================================== */
.juju-product-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.juju-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
  pointer-events: none;
}

.juju-product-image a {
  display: block;
  height: 100%;
}

.juju-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.juju-product-card:hover .juju-product-image img {
  transform: scale(1.1);
}

/* ========================================
   Product Badge
   ======================================== */
.juju-product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--juju-rose);
  color: var(--juju-white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  z-index: 2;
}

.juju-product-badge.new {
  background: var(--juju-soft-black);
}

.juju-product-badge.exclusive {
  background: linear-gradient(135deg, #d4af37, #b8860b);
}

.juju-product-badge.popular {
  background: var(--juju-rose);
}

.juju-product-badge.sale {
  background: #c0392b;
}

/* ========================================
   Product Body
   ======================================== */
.juju-product-body {
  padding: 2rem;
}

/* Category Label */
.juju-product-category {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--juju-rose);
  margin: 0 0 0.5rem 0;
}

/* Product Title */
.juju-product-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--juju-black);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.juju-product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.juju-product-title a:hover {
  color: var(--juju-rose-dark);
}

/* Product Description */
.juju-product-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--juju-charcoal);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

/* ========================================
   Product Features (Tags)
   ======================================== */
.juju-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.juju-product-feature {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: var(--juju-charcoal);
  background: var(--juju-cream);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

/* ========================================
   Product Footer
   ======================================== */
.juju-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--juju-rose-light);
}

/* Price */
.juju-product-price {
  display: flex;
  flex-direction: column;
}

.juju-price-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  color: var(--juju-taupe);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.juju-price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--juju-rose-dark);
}

/* Clean up WooCommerce default price styles */
.juju-price-value del {
  font-size: 1rem;
  color: var(--juju-taupe);
  opacity: 0.7;
}

.juju-price-value ins {
  text-decoration: none;
}

/* ========================================
   Product Button
   ======================================== */
.juju-product-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--juju-white);
  background: linear-gradient(135deg, var(--juju-soft-black), #3d3d3d);
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.juju-product-btn:hover {
  background: linear-gradient(135deg, var(--juju-rose), var(--juju-rose-dark));
  transform: translateX(3px);
  color: var(--juju-white);
}

.juju-product-btn svg {
  width: 14px;
  height: 14px;
}

/* ========================================
   Quote Button States (Juju Quote Plugin)
   ======================================== */
.juju-product-btn.juju-quote-btn {
  cursor: pointer;
}

.juju-product-btn.juju-quote-btn.in-quote {
  background: linear-gradient(135deg, var(--juju-rose), var(--juju-rose-dark));
}

.juju-product-btn.juju-quote-btn.in-quote:hover {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

/* Loading state */
.juju-product-btn.juju-quote-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.juju-product-btn.juju-quote-btn.loading::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  border-top-color: var(--juju-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .juju-product-image {
    height: 220px;
  }

  .juju-product-body {
    padding: 1.5rem;
  }

  .juju-product-title {
    font-size: 1.4rem;
  }

  .juju-price-value {
    font-size: 1.5rem;
  }

  .juju-product-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .juju-product-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .juju-product-image {
    height: 200px;
  }

  .juju-product-features {
    gap: 0.3rem;
  }

  .juju-product-feature {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ========================================
   Hide Default WooCommerce Elements
   (if they still appear)
   ======================================== */
.woocommerce ul.products li.juju-product-card .woocommerce-loop-product__link,
.woocommerce ul.products li.juju-product-card .woocommerce-loop-product__title,
.woocommerce ul.products li.juju-product-card .star-rating,
.woocommerce ul.products li.juju-product-card .price,
.woocommerce ul.products li.juju-product-card .button.add_to_cart_button,
.woocommerce ul.products li.juju-product-card .onsale {
  display: none !important;
}

/* ========================================
   Juju Wedding - Single Product Page Styles
   ======================================== */

/* ========================================
   Base Layout
   ======================================== */
.juju-single-product {
  background: var(--juju-cream);
  min-height: 100vh;
}

/* ========================================
   Breadcrumb
   ======================================== */
.juju-breadcrumb {
  padding: 8rem 4rem 2rem;
  background: linear-gradient(
    135deg,
    var(--juju-cream) 0%,
    var(--juju-white) 100%
  );
}

.juju-breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
}

.juju-breadcrumb a {
  color: var(--juju-taupe);
  text-decoration: none;
  transition: color 0.3s ease;
}

.juju-breadcrumb a:hover {
  color: var(--juju-rose-dark);
}

.juju-breadcrumb-sep {
  color: var(--juju-taupe);
}

.juju-breadcrumb-current {
  color: var(--juju-rose-dark);
  font-weight: 500;
}

/* ========================================
   Main Product Section
   ======================================== */
.juju-product-main {
  padding: 2rem 4rem 5rem;
  background: var(--juju-white);
}

.juju-product-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ========================================
   Product Gallery
   ======================================== */
.juju-product-gallery {
  position: relative;
  position: sticky;
  top: 100px;
}

.juju-product-gallery .juju-product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--juju-rose);
  color: var(--juju-white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  z-index: 10;
}

.juju-product-gallery .juju-product-badge.new {
  background: var(--juju-soft-black);
}

.juju-product-gallery .juju-product-badge.exclusive {
  background: linear-gradient(135deg, #d4af37, #b8860b);
}

.juju-gallery-main {
  border-radius: 20px;
  overflow: hidden;
  background: var(--juju-cream);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.juju-gallery-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.juju-gallery-main:hover img {
  transform: scale(1.03);
}

.juju-gallery-thumbs {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.juju-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
}

.juju-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.juju-thumb:hover {
  border-color: var(--juju-rose-light);
}

.juju-thumb.active {
  border-color: var(--juju-rose);
  box-shadow: 0 5px 20px rgba(201, 168, 137, 0.3);
}

/* ========================================
   Product Info
   ======================================== */
.juju-product-info {
  padding: 1rem 0;
}

.juju-product-info .juju-product-category {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--juju-rose);
  margin-bottom: 1rem;
}

.juju-product-info .juju-product-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--juju-black);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.juju-product-short-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--juju-charcoal);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.juju-product-short-desc p {
  margin: 0 0 1rem 0;
}

/* ========================================
   Product Features
   ======================================== */
.juju-product-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--juju-cream);
  border-radius: 16px;
}

.juju-product-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--juju-charcoal);
}

.juju-product-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--juju-rose);
  flex-shrink: 0;
}

/* ========================================
   Price & CTA
   ======================================== */
.juju-product-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--juju-rose-light);
  border-bottom: 1px solid var(--juju-rose-light);
  margin-bottom: 2rem;
}

.juju-product-cta .juju-product-price {
  display: flex;
  flex-direction: column;
}

.juju-product-cta .juju-price-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: var(--juju-taupe);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.juju-product-cta .juju-price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--juju-rose-dark);
}

.juju-add-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--juju-white);
  background: linear-gradient(135deg, var(--juju-soft-black), #3d3d3d);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.juju-add-quote-btn:hover {
  background: linear-gradient(135deg, var(--juju-rose), var(--juju-rose-dark));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 137, 0.4);
}

.juju-add-quote-btn svg {
  width: 20px;
  height: 20px;
}

.juju-add-quote-btn.in-quote {
  background: linear-gradient(135deg, var(--juju-rose), var(--juju-rose-dark));
}

.juju-add-quote-btn.in-quote:hover {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

/* ========================================
   Trust Badges
   ======================================== */
.juju-trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.juju-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: var(--juju-charcoal);
}

.juju-trust-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--juju-rose);
}

/* ========================================
   Description Section
   ======================================== */
.juju-product-description {
  padding: 5rem 4rem;
  background: var(--juju-cream);
}

.juju-description-container {
  max-width: 900px;
  margin: 0 auto;
}

.juju-description-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--juju-black);
  margin-bottom: 2rem;
  text-align: center;
}

.juju-description-content {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--juju-charcoal);
  line-height: 2;
}

.juju-description-content p {
  margin-bottom: 1.5rem;
}

.juju-description-content h2,
.juju-description-content h3,
.juju-description-content h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--juju-black);
  margin: 2rem 0 1rem;
}

.juju-description-content ul,
.juju-description-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.juju-description-content li {
  margin-bottom: 0.5rem;
}

/* ========================================
   Related Products
   ======================================== */
.juju-related-products {
  padding: 5rem 4rem;
  background: var(--juju-white);
}

.juju-related-container {
  max-width: 1400px;
  margin: 0 auto;
}

.juju-related-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--juju-black);
  margin-bottom: 3rem;
  text-align: center;
}

.juju-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.juju-related-card {
  background: var(--juju-cream);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}

.juju-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.juju-related-image {
  height: 200px;
  overflow: hidden;
}

.juju-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.juju-related-card:hover .juju-related-image img {
  transform: scale(1.1);
}

.juju-related-info {
  padding: 1.5rem;
}

.juju-related-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--juju-black);
  margin: 0 0 0.5rem 0;
}

.juju-related-price {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--juju-rose-dark);
  font-weight: 500;
}

/* ========================================
   CTA Section
   ======================================== */
.juju-cta-section {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, var(--juju-soft-black), #3d3d3d);
  text-align: center;
  position: relative;
}

.juju-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--juju-rose-light),
    var(--juju-rose),
    var(--juju-rose-dark)
  );
}

.juju-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.juju-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--juju-white);
  margin-bottom: 1rem;
}

.juju-cta-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.juju-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--juju-soft-black);
  background: var(--juju-white);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.juju-cta-btn:hover {
  background: var(--juju-rose);
  color: var(--juju-white);
  transform: translateY(-3px);
}

.juju-cta-btn svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
  .juju-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .juju-product-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .juju-product-gallery {
    position: relative;
    top: 0;
  }

  .juju-product-info .juju-product-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .juju-breadcrumb {
    padding: 7rem 1.5rem 1.5rem;
  }

  .juju-product-main {
    padding: 1.5rem 1.5rem 3rem;
  }

  .juju-gallery-main img {
    height: 350px;
  }

  .juju-product-info .juju-product-title {
    font-size: 2rem;
  }

  .juju-product-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .juju-add-quote-btn {
    width: 100%;
    justify-content: center;
  }

  .juju-trust-badges {
    flex-direction: column;
    gap: 1rem;
  }

  .juju-product-description {
    padding: 3rem 1.5rem;
  }

  .juju-related-products {
    padding: 3rem 1.5rem;
  }

  .juju-related-grid {
    grid-template-columns: 1fr;
  }

  .juju-cta-section {
    padding: 4rem 1.5rem;
  }

  .juju-cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .juju-gallery-thumbs {
    gap: 0.5rem;
  }

  .juju-thumb {
    width: 60px;
    height: 60px;
  }

  .juju-product-features {
    padding: 1.5rem;
  }

  .juju-product-cta .juju-price-value {
    font-size: 2rem;
  }
}
/* ========================================
   Juju Wedding - Single Product Page Styles
   ======================================== */

/* ========================================
   Base Layout
   ======================================== */
.juju-single-product {
  background: var(--juju-cream);
  min-height: 100vh;
}

/* ========================================
   Breadcrumb
   ======================================== */
.juju-breadcrumb {
  padding: 8rem 4rem 2rem;
  background: linear-gradient(
    135deg,
    var(--juju-cream) 0%,
    var(--juju-white) 100%
  );
}

.juju-breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
}

.juju-breadcrumb a {
  color: var(--juju-taupe);
  text-decoration: none;
  transition: color 0.3s ease;
}

.juju-breadcrumb a:hover {
  color: var(--juju-rose-dark);
}

.juju-breadcrumb-sep {
  color: var(--juju-taupe);
}

.juju-breadcrumb-current {
  color: var(--juju-rose-dark);
  font-weight: 500;
}

/* ========================================
   Main Product Section
   ======================================== */
.juju-product-main {
  padding: 2rem 4rem 5rem;
  background: var(--juju-white);
}

.juju-product-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ========================================
   Product Gallery
   ======================================== */
.juju-product-gallery {
  position: relative;
  position: sticky;
  top: 100px;
}

.juju-gallery-main {
  border-radius: 20px;
  overflow: hidden;
  background: var(--juju-cream);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.juju-gallery-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.juju-gallery-main:hover img {
  transform: scale(1.03);
}

.juju-gallery-thumbs {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.juju-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
}

.juju-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.juju-thumb:hover {
  border-color: var(--juju-rose-light);
}

.juju-thumb.active {
  border-color: var(--juju-rose);
  box-shadow: 0 5px 20px rgba(201, 168, 137, 0.3);
}

/* ========================================
   Product Info
   ======================================== */
.juju-product-info {
  padding: 1rem 0;
}

.juju-product-info .juju-product-category {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--juju-rose);
  margin-bottom: 1rem;
}

.juju-product-info .juju-product-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--juju-black);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.juju-product-description-inline {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--juju-charcoal);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.juju-product-description-inline p {
  margin: 0 0 1rem 0;
}

.juju-product-description-inline p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Product Features
   ======================================== */
.juju-product-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--juju-cream);
  border-radius: 16px;
}

.juju-product-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--juju-charcoal);
}

.juju-product-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--juju-rose);
  flex-shrink: 0;
}

/* ========================================
   Price & CTA
   ======================================== */
.juju-product-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--juju-rose-light);
  border-bottom: 1px solid var(--juju-rose-light);
  margin-bottom: 2rem;
}

.juju-product-cta .juju-product-price {
  display: flex;
  flex-direction: column;
}

.juju-product-cta .juju-price-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: var(--juju-taupe);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.juju-product-cta .juju-price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--juju-rose-dark);
}

.juju-add-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--juju-white);
  background: linear-gradient(135deg, var(--juju-soft-black), #3d3d3d);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.juju-add-quote-btn:hover {
  background: linear-gradient(135deg, var(--juju-rose), var(--juju-rose-dark));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 137, 0.4);
}

.juju-add-quote-btn svg {
  width: 20px;
  height: 20px;
}

.juju-add-quote-btn.in-quote {
  background: linear-gradient(135deg, var(--juju-rose), var(--juju-rose-dark));
}

.juju-add-quote-btn.in-quote:hover {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

/* ========================================
   Related Products
   ======================================== */
.juju-related-products {
  padding: 5rem 4rem;
  background: var(--juju-white);
}

.juju-related-container {
  max-width: 1400px;
  margin: 0 auto;
}

.juju-related-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--juju-black);
  margin-bottom: 3rem;
  text-align: center;
}

.juju-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.juju-related-card {
  background: var(--juju-cream);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}

.juju-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.juju-related-image {
  height: 200px;
  overflow: hidden;
}

.juju-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.juju-related-card:hover .juju-related-image img {
  transform: scale(1.1);
}

.juju-related-info {
  padding: 1.5rem;
}

.juju-related-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--juju-black);
  margin: 0 0 0.5rem 0;
}

.juju-related-price {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--juju-rose-dark);
  font-weight: 500;
}

/* ========================================
   CTA Section
   ======================================== */
.juju-cta-section {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, var(--juju-soft-black), #3d3d3d);
  text-align: center;
  position: relative;
}

.juju-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--juju-rose-light),
    var(--juju-rose),
    var(--juju-rose-dark)
  );
}

.juju-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.juju-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--juju-white);
  margin-bottom: 1rem;
}

.juju-cta-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.juju-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--juju-soft-black);
  background: var(--juju-white);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.juju-cta-btn:hover {
  background: var(--juju-rose);
  color: var(--juju-white);
  transform: translateY(-3px);
}

.juju-cta-btn svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
  .juju-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .juju-product-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .juju-product-gallery {
    position: relative;
    top: 0;
  }

  .juju-product-info .juju-product-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .juju-breadcrumb {
    padding: 7rem 1.5rem 1.5rem;
  }

  .juju-product-main {
    padding: 1.5rem 1.5rem 3rem;
  }

  .juju-gallery-main img {
    height: 350px;
  }

  .juju-product-info .juju-product-title {
    font-size: 2rem;
  }

  .juju-product-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .juju-add-quote-btn {
    width: 100%;
    justify-content: center;
  }

  .juju-product-description-inline {
    padding: 3rem 1.5rem;
  }

  .juju-related-products {
    padding: 3rem 1.5rem;
  }

  .juju-related-grid {
    grid-template-columns: 1fr;
  }

  .juju-cta-section {
    padding: 4rem 1.5rem;
  }

  .juju-cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .juju-gallery-thumbs {
    gap: 0.5rem;
  }

  .juju-thumb {
    width: 60px;
    height: 60px;
  }

  .juju-product-features {
    padding: 1.5rem;
  }

  .juju-product-cta .juju-price-value {
    font-size: 2rem;
  }
}

/* ========================================
   Homepage Transparent Header
   ======================================== */

/* Initial state - transparent on homepage */
.home .elementor-location-header .e-con.elementor-sticky {
  background: transparent !important;
  transition: all 0.3s ease;
}

/* After scrolling - white background */
.home
  .elementor-location-header
  .e-con.elementor-sticky.elementor-sticky--effects {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Fallback: if --effects doesn't trigger, use --active with scroll detection */
.home.is-scrolled .elementor-location-header .e-con.elementor-sticky {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
