/* =============================================
   BOTANICALS — SVG Leaf & Branch Decorations
   ============================================= */

/* Shared botanical base */
.botanical {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  color: var(--gold);
}

.botanical svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Corner positions */
.botanical-top-right {
  top: -10px;
  right: -10px;
  width: 160px;
  height: 160px;
}

.botanical-top-left {
  top: -10px;
  left: -10px;
  width: 140px;
  height: 140px;
  transform: scaleX(-1);
}

.botanical-bottom-right {
  bottom: -10px;
  right: -10px;
  width: 150px;
  height: 150px;
  transform: scaleY(-1);
}

.botanical-bottom-left {
  bottom: -10px;
  left: -10px;
  width: 130px;
  height: 130px;
  transform: scale(-1, -1);
}

/* Sizes */
.botanical-sm { width: 100px; height: 100px; }
.botanical-md { width: 160px; height: 160px; }
.botanical-lg { width: 220px; height: 220px; }

/* Higher opacity variant */
.botanical-strong { opacity: 0.25; }

/* Lighter variant */
.botanical-subtle { opacity: 0.1; }
