/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 09 2026 | 08:23:34 */
/* ===== GLOBAL MOBILE VIEWPORT FIX ===== */





html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  padding-bottom: 120px;
  overflow-x: hidden;
}


/* ===== OFFER BAR ===== */
.offer-bar {
  font-family: 'Montserrat', sans-serif;

  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;

  background: #fffdf9;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -6px 25px rgba(0,0,0,0.15);

  padding: 12px 16px 22px;

  display: none;
  align-items: center;
  gap: 12px;

  z-index: 9999;
  box-sizing: border-box;

  /* 🔥 CRITICAL LINES */
  transform: translateZ(0);
  will-change: transform;
}


/* Show only on mobile */
@media (max-width: 768px) {
  .offer-bar.show {
    display: flex;
  }
}

/* ===== LEFT SIDE ===== */
.offer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.price {
  display: flex;
  gap: 8px;
  align-items: center;
}

.new-price {
  color: #364AFF;
  font-size: 20px;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.timer {
  font-size: 14px;
  color: #333;
}

.countdown {
  font-weight: 600;
}

/* ===== REGISTER BUTTON ===== */
.register-btn {
  font-family: 'Montserrat', sans-serif;
  position: relative;
  background: linear-gradient(180deg, #ffd54f, #f4c430);
  color: #111;
  border: none;

  /* FIXED SIZE */
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;

  box-shadow: 0 6px 15px rgba(244,196,48,0.5);
  overflow: hidden;

  animation: eaVibrate 2s infinite;
}

/* Shine sweep */
.register-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

/* Shine animation */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Button vibration */
@keyframes eaVibrate {
  0% { transform: translateX(0); }
  10% { transform: translateX(-2px); }
  20% { transform: translateX(2px); }
  30% { transform: translateX(-2px); }
  40% { transform: translateX(2px); }
  50% { transform: translateX(0); }
  100% { transform: translateX(0); }
}

/* Small phones */
@media (max-width: 360px) {
  .offer-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .register-btn {
    width: 100%;
    text-align: center;
  }
}

