/* frontend.css - premium styles matching Lago Calima Travel */

.rc-floating-gift-b7cb3598 {
  position: fixed;
  bottom: 90px; /* Safe space to not overlap common WhatsApp widgets */
  right: 24px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #0d233a 0%, #050b12 100%);
  border: 3px solid #d4af37;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999;
  user-select: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

body.admin-bar .rc-floating-gift-b7cb3598 {
  margin-bottom: 0;
}

.rc-floating-gift-b7cb3598:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.rc-gift-emoji {
  font-size: 28px;
  line-height: 1;
  animation: rc-float-bounce 3s ease-in-out infinite;
}

.rc-gift-pulse-bg {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid #d4af37;
  border-radius: 50%;
  opacity: 0.8;
  animation: rc-pulse-anim 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

/* Tooltip */
.rc-gift-tooltip-b7cb3598 {
  position: absolute;
  right: 75px;
  background: #0d233a;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border: 1px solid #d4af37;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(10px);
}

.rc-floating-gift-b7cb3598:hover .rc-gift-tooltip-b7cb3598 {
  opacity: 1;
  transform: translateX(0);
}

/* Modal Backdrop */
.rc-modal-backdrop-b7cb3598 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 35, 58, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

body.admin-bar .rc-modal-backdrop-b7cb3598 {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.rc-modal-backdrop-b7cb3598.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Container */
.rc-modal-container-b7cb3598 {
  background: #ffffff;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  border: 4px solid #d4af37;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.rc-modal-backdrop-b7cb3598.is-active .rc-modal-container-b7cb3598 {
  transform: scale(1);
}

/* Close Button */
.rc-modal-close-b7cb3598 {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #0d233a;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.rc-modal-close-b7cb3598:hover {
  color: #ef6c00;
}

/* Layout */
.rc-modal-layout-b7cb3598 {
  display: flex;
  flex-direction: row;
  min-height: 450px;
}

.rc-wheel-wrapper-b7cb3598 {
  flex: 1.1;
  background: radial-gradient(circle, #1e3a5f 0%, #0d233a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
}

.rc-wheel-pointer-b7cb3598 {
  position: absolute;
  top: 15px;
  z-index: 10;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #d4af37;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

#rcPrizeWheelCanvas {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.rc-content-pane-b7cb3598 {
  flex: 0.9;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  color: #0d233a;
  position: relative;
}

/* Typography */
.rc-title-b7cb3598 {
  font-size: 24px;
  font-weight: 800;
  color: #0d233a;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.rc-subtitle-b7cb3598 {
  font-size: 15px;
  color: #2e7d32;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.rc-desc-b7cb3598 {
  font-size: 13px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

/* Forms */
.rc-form-group {
  margin-bottom: 12px;
}

.rc-form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.rc-form-group input:focus {
  border-color: #0d233a;
  outline: none;
}

.rc-checkbox-group {
  margin-bottom: 20px;
}

.rc-checkbox-group label {
  display: flex;
  align-items: flex-start;
  font-size: 11px;
  color: #555;
  cursor: pointer;
  line-height: 1.3;
}

.rc-checkbox-group input {
  margin-right: 8px;
  margin-top: 2px;
}

.rc-btn-submit-b7cb3598 {
  background: #ef6c00;
  color: #fff;
  border: none;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.rc-btn-submit-b7cb3598:hover {
  background: #e65100;
  transform: translateY(-1px);
}

/* Terms & Conditions */
.rc-terms-link-b7cb3598 {
  text-align: center;
  margin-top: 15px;
  font-size: 11px;
}

.rc-terms-link-b7cb3598 a {
  color: #0d233a;
  text-decoration: underline;
}

.rc-terms-content-b7cb3598 {
  font-size: 10px;
  color: #777;
  background: #f9f9f9;
  padding: 8px;
  border-radius: 6px;
  margin-top: 10px;
  max-height: 80px;
  overflow-y: auto;
}

/* Winner Results */
.rc-win-lbl-b7cb3598 {
  font-size: 12px;
  color: #777;
  letter-spacing: 2px;
  margin: 15px 0 5px 0;
  text-align: center;
}

.rc-win-prize-b7cb3598 {
  font-size: 22px;
  color: #2e7d32;
  font-weight: 800;
  text-align: center;
  margin: 0 0 20px 0;
}

.rc-code-box-b7cb3598 {
  background: #f0f4f8;
  border: 2px dashed #d4af37;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.rc-code-box-b7cb3598 p {
  margin: 0 0 5px 0;
  font-size: 11px;
  color: #555;
  letter-spacing: 1px;
}

.rc-code-box-b7cb3598 strong {
  font-size: 24px;
  color: #0d233a;
  letter-spacing: 2px;
}

.rc-btn-row-b7cb3598 {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.rc-btn-copy-b7cb3598, .rc-btn-use-b7cb3598 {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.rc-btn-copy-b7cb3598 {
  background: #0d233a;
  color: #ffffff;
}

.rc-btn-use-b7cb3598 {
  background: #2e7d32;
  color: #ffffff;
}

.rc-btn-copy-b7cb3598.copied {
  background: #10B981 !important;
}

.rc-share-box-b7cb3598 {
  border-top: 1px solid #eee;
  padding-top: 15px;
  text-align: center;
}

.rc-share-box-b7cb3598 p {
  font-size: 12px;
  color: #777;
  margin: 0 0 10px 0;
}

.rc-share-btn.wa {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}

/* Animations */
@keyframes rc-float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes rc-pulse-anim {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .rc-modal-layout-b7cb3598 {
    flex-direction: column;
  }
  .rc-modal-container-b7cb3598 {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .rc-wheel-wrapper-b7cb3598 {
    padding: 20px;
  }
  .rc-content-pane-b7cb3598 {
    padding: 25px 20px;
  }
  .rc-floating-gift-b7cb3598 {
    bottom: 80px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}
