/* ===== PREMIUM FLOATING SOCIALS ===== */

.social-floating{
    position: fixed;
    right: 22px;
    bottom: 22px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    z-index: 9999;
}

/* ===== BUTTON ===== */

.social-btn{
    position: relative;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    background:
    linear-gradient(145deg,
    rgba(20,20,20,0.95),
    rgba(0,0,0,0.95));

    border: 2px solid rgba(138,255,0,0.45);

    backdrop-filter: blur(12px);

    box-shadow:
    0 0 12px rgba(138,255,0,0.25),
    0 0 35px rgba(138,255,0,0.18),
    inset 0 0 12px rgba(138,255,0,0.08);

    transition: 0.35s ease;
}

/* ===== GLOW EFFECT ===== */

.social-btn::before{
    content: '';

    position: absolute;

    width: 120%;
    height: 120%;

    background:
    radial-gradient(circle,
    rgba(138,255,0,0.28),
    transparent 70%);

    opacity: 0;

    transition: 0.4s;
}

/* ===== ICON ===== */

.social-btn img{
    width: 58px;
    height: 58px;

    
    object-fit: contain;

    z-index: 2;

    filter:
    drop-shadow(0 0 8px rgba(138,255,0,0.5));
}

/* ===== HOVER ===== */

.social-btn:hover{

    transform:
    translateY(-6px)
    scale(1.08);

    border-color: #8aff00;

    box-shadow:
    0 0 20px #8aff00,
    0 0 60px rgba(138,255,0,0.45),
    inset 0 0 20px rgba(138,255,0,0.15);
}

.social-btn:hover::before{
    opacity: 1;
}

/* ===== WHATSAPP ===== */

.whatsapp{
    border-color: #63ff52;
}

/* ===== INSTAGRAM ===== */

.instagram{
    border-color: #d6ff52;
}

/* ===== PULSE ANIMATION ===== */

.social-btn{
    animation: socialPulse 3s infinite ease-in-out;
}

@keyframes socialPulse{

    0%{
        box-shadow:
        0 0 10px rgba(138,255,0,0.15),
        0 0 25px rgba(138,255,0,0.08);
    }

    50%{
        box-shadow:
        0 0 22px rgba(138,255,0,0.35),
        0 0 50px rgba(138,255,0,0.18);
    }

    100%{
        box-shadow:
        0 0 10px rgba(138,255,0,0.15),
        0 0 25px rgba(138,255,0,0.08);
    }

}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .social-floating{
        right: 15px;
        bottom: 15px;
        gap: 14px;
    }

    .social-btn{
        width: 54px;
        height: 54px;
    }

    .social-btn img{
         width: 54px;
        height: 54px;
    }

}
.order-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.order-box {
  background: #080f02;
  border: 1px solid #b6ff00;
  box-shadow: 0 0 30px #b6ff00;
  padding: 35px;
  border-radius: 25px;
  width: 90%;
  max-width: 450px;
}

.order-box h2 {
  color: #b6ff00;
  margin-bottom: 20px;
}

.order-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #b6ff00;
  background: #000;
  color: white;
}

.order-box button {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: none;
  background: #b6ff00;
  font-weight: bold;
  cursor: pointer;
}

.close-order {
  float: right;
  color: #b6ff00;
  font-size: 30px;
  cursor: pointer;
}