/* =============================================================================
   5. CONTROLLI FLOATING
============================================================================= */
.bottom-right-controls {
  position: absolute;
  right: 3%;
  bottom: 10%;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
}

.volume-control {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: clamp(6px, 0.8vw, 10px);
}

.volume-control img {
  width: clamp(22px, 3vw, 40px);
  height: clamp(22px, 3vw, 40px);
  min-width: 0;
  min-height: 0;
}

#volume {
  width: clamp(70px, 10vw, 120px);
  height: 8px;
  opacity: 0;
  border: 0;
  outline: none;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(to right, orange, gold);
  transition: opacity var(--transition-base);
}

.volume-control:hover #volume {
  opacity: 1;
}

#volume::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: #ff6600;
  appearance: none;
  -webkit-appearance: none;
}

#volume::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: #ff6600;
}

.floating-cat {
  position: absolute;
  left: 50%;
  top: 78%;
  width: 9.89%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 15;
  cursor: pointer;
}

.cat-dialog {
  position: absolute;
  left: 49.5%;
  top: 64%;
  transform: translateX(-50%);
  min-width: 180px;
  max-width: 280px;
  padding: 10px 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.88);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 16;
}

.cat-dialog.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

.cat-dialog::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: rgba(10, 10, 10, 0.88);
  transform: translateX(-50%) rotate(45deg);
}

.cart-wrapper {
  width: clamp(44px, 6vw, 74px);
  height: clamp(44px, 6vw, 74px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.cart-wrapper:hover {
  transform: scale(1.05);
}

#cart-button {
  width: 60px;
  height: 60px;
}

/* =============================================================================
   14. BUTTONS
============================================================================= */
.add-to-cart-btn,
#checkout-button {
  margin: 0;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-gold) 0%, #b8860b 100%);
  color: #000;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.add-to-cart-btn .btn-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.add-to-cart-btn .btn-text {
  letter-spacing: 0.5px;
}

.add-to-cart-btn:hover,
#checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
  filter: brightness(1.1);
}

/* =============================================================================
   16. OPTIONS / TOGGLES
============================================================================= */
.option-group {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  text-align: left;
  border-radius: var(--radius-lg);
  background-color: transparent;
}

.option-group-label {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-white);
  min-width: 70px;
}

.toggle-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toggle-option {
  position: relative;
  overflow: hidden;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-option:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.toggle-option.selected {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-gold) 0%, #b8860b 100%);
  color: #000;
  font-weight: 800;
  box-shadow: 0 1px 10px rgba(218, 165, 32, 0.4);
  transform: scale(1.08);
}

.toggle-option.selected::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: toggle-shine 0.6s ease-in-out forwards;
}

@keyframes toggle-shine {
  from {
    left: -100%;
  }

  to {
    left: 200%;
  }
}

.toggle-option:disabled,
.toggle-option.disabled {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.toggle-option:disabled:hover,
.toggle-option.disabled:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
}