/* ==========================================================================
   Anu Herbs - Corto-Style Seamless Botanical Hotspots Experience (Ultra-Premium Compact)
   ========================================================================== */

.botanical-section {
  position: relative;
  background-color: #E6D2B5;
  background-image: 
    radial-gradient(circle 850px at 46% 38%, #F7EBD8 0%, #EFE0C9 35%, #E5D0B2 70%, #DAC09E 100%),
    linear-gradient(145deg, rgba(255, 248, 238, 0.6) 0%, rgba(220, 195, 160, 0.4) 100%);
  padding: 90px 4% 100px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(190, 155, 100, 0.25);
  border-bottom: 1px solid rgba(190, 155, 100, 0.25);
}

.botanical-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(120, 85, 40, 0.035) 1px, transparent 0),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 60%, rgba(160, 130, 90, 0.15) 100%);
  background-size: 16px 16px, 100% 100%;
  pointer-events: none;
}

.botanical-header {
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.botanical-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A5B22;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(190, 155, 100, 0.35);
  padding: 6px 22px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(120, 85, 40, 0.08);
}

.botanical-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #182C22;
  line-height: 1.2;
  margin-bottom: 12px;
}

.botanical-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #44584C;
}

/* Stage Container */
.botanical-stage {
  position: relative;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1/1;
}

/* Seamless Blending Image with Deep Radial Feathering */
.botanical-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 55%, rgba(0,0,0,0.98) 72%, rgba(0,0,0,0.6) 88%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 50%, black 55%, rgba(0,0,0,0.98) 72%, rgba(0,0,0,0.6) 88%, transparent 100%);
  user-select: none;
  -webkit-user-drag: none;
}

/* Standard Botanical Hotspots */
.botanical-hotspot {
  position: absolute;
  z-index: 20;
  transform: translate(-50%, -50%);
}

.botanical-hotspot.is-active,
.botanical-hotspot:hover {
  z-index: 150;
}

.botanical-hotspot-btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #14281E;
  border: 1px solid rgba(255, 255, 255, 0.85);
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  touch-action: manipulation;
}

.botanical-hotspot-btn svg {
  width: 6px;
  height: 6px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.botanical-hotspot-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  animation: hotspotPulse 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes hotspotPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.botanical-hotspot:hover .botanical-hotspot-btn,
.botanical-hotspot.is-active .botanical-hotspot-btn {
  background: #182C22;
  color: #FFFFFF;
  border-color: rgba(212, 175, 55, 0.9);
  transform: scale(1.18);
  box-shadow: 0 5px 18px rgba(24, 44, 34, 0.4), 0 0 0 2px rgba(212, 175, 55, 0.8);
}

.botanical-hotspot.is-active .botanical-hotspot-btn svg {
  transform: rotate(45deg);
}

/* MASTER BOTTLE HOTSPOT (CENTER) */
.botanical-hotspot.hotspot-bottle {
  z-index: 30;
}
.botanical-hotspot.hotspot-bottle .botanical-hotspot-btn {
  width: 17px;
  height: 17px;
  background: rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #12211A;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(165, 127, 30, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}
.botanical-hotspot.hotspot-bottle .botanical-hotspot-btn svg {
  width: 7px;
  height: 7px;
  stroke-width: 2.8;
}
.botanical-hotspot.hotspot-bottle .botanical-hotspot-btn::before {
  background: rgba(212, 175, 55, 0.4);
  animation: bottlePulse 2s infinite;
}
@keyframes bottlePulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}
.botanical-hotspot.hotspot-bottle:hover .botanical-hotspot-btn,
.botanical-hotspot.hotspot-bottle.is-active .botanical-hotspot-btn {
  background: #12211A;
  color: #D4AF37;
  border-color: #D4AF37;
  transform: scale(1.2);
  box-shadow: 0 6px 24px rgba(18, 33, 26, 0.6), 0 0 0 3px rgba(212, 175, 55, 0.8);
}

/* ULTRA-COMPACT SEMI-TRANSPARENT LUXURY POPOVER CARD */
.botanical-popover {
  position: absolute;
  width: 200px;
  background: rgba(255, 253, 248, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 2px solid #D4AF37;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 12px 30px rgba(24, 44, 34, 0.12), 0 2px 6px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92) translateY(5px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
  pointer-events: none;
}

/* Special Master Bottle Popover */
.botanical-popover.popover-master-bottle {
  width: 215px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-top: 2.5px solid #D4AF37;
  box-shadow: 0 16px 36px rgba(18, 33, 26, 0.18), 0 0 16px rgba(212, 175, 55, 0.1);
}

/* Directional Classes */
.botanical-popover.pos-right {
  top: 50%;
  left: calc(100% + 8px);
  transform: translateY(-50%) scale(0.92) translateX(-5px);
}
.botanical-popover.pos-left {
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%) scale(0.92) translateX(5px);
}
.botanical-popover.pos-bottom {
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.92) translateY(-5px);
}
.botanical-popover.pos-top {
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.92) translateY(5px);
}

/* Active States */
.botanical-hotspot:hover .botanical-popover,
.botanical-hotspot.is-active .botanical-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.botanical-hotspot:hover .botanical-popover.pos-right,
.botanical-hotspot.is-active .botanical-popover.pos-right {
  transform: translateY(-50%) scale(1) translateX(0);
}
.botanical-hotspot:hover .botanical-popover.pos-left,
.botanical-hotspot.is-active .botanical-popover.pos-left {
  transform: translateY(-50%) scale(1) translateX(0);
}
.botanical-hotspot:hover .botanical-popover.pos-bottom,
.botanical-hotspot.is-active .botanical-popover.pos-bottom {
  transform: translateX(-50%) scale(1) translateY(0);
}
.botanical-hotspot:hover .botanical-popover.pos-top,
.botanical-hotspot.is-active .botanical-popover.pos-top {
  transform: translateX(-50%) scale(1) translateY(0);
}

/* Popover Content Styling */
.popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.popover-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8C6A30;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 2px 5px;
  border-radius: 3px;
}
.popover-badge.gold-accent {
  background: linear-gradient(135deg, #D4AF37, #8C6A30);
  color: #FFFFFF;
  border: none;
}
.popover-close-btn {
  background: none;
  border: none;
  color: #8C9E94;
  cursor: pointer;
  padding: 0 3px;
  font-size: 13px;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.popover-close-btn:hover {
  color: #182C22;
  background: rgba(0,0,0,0.06);
}

.popover-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #14241C;
  line-height: 1.15;
  margin-bottom: 0px;
}
.popover-botanical {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 10px;
  color: #5D7266;
  margin-bottom: 5px;
}
.popover-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.popover-benefits li {
  position: relative;
  padding-left: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  line-height: 1.3;
  color: #384C40;
}
.popover-benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: #8C6A30;
  font-size: 8.5px;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .botanical-section {
    padding: 40px 0 50px;
  }
  .botanical-header {
    padding: 0 16px;
    margin: 0 auto 16px;
  }
  .botanical-badge {
    font-size: 10px;
    padding: 5px 16px;
    margin-bottom: 12px;
  }
  .botanical-title {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .botanical-subtitle {
    font-size: 13.5px;
    line-height: 1.5;
  }
  .botanical-stage {
    width: 100vw;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  .botanical-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .botanical-hotspot-btn {
    width: 18px;
    height: 18px;
  }
  .botanical-hotspot-btn svg {
    width: 7px;
    height: 7px;
  }
  .botanical-hotspot.hotspot-bottle .botanical-hotspot-btn {
    width: 22px;
    height: 22px;
  }
  .botanical-hotspot.hotspot-bottle .botanical-hotspot-btn svg {
    width: 8px;
    height: 8px;
  }

  /* Compact mobile cards */
  .botanical-popover {
    width: 165px;
    padding: 8px 10px;
    border-radius: 10px;
  }
  .botanical-popover.popover-master-bottle {
    width: 180px;
  }
  .botanical-hotspot.hotspot-bottle .botanical-popover {
    top: calc(100% + 6px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  .botanical-popover.pos-left {
    right: calc(100% + 4px);
  }
  .botanical-popover.pos-right {
    left: calc(100% + 4px);
  }
  .popover-title {
    font-size: 13px;
  }
  .popover-botanical {
    font-size: 9px;
    margin-bottom: 4px;
  }
  .popover-benefits li {
    font-size: 9.5px;
    line-height: 1.25;
    padding-left: 11px;
  }
  .popover-benefits li::before {
    font-size: 7.5px;
  }
}
