/** Shopify CDN: Minification failed

Line 20:14 Unexpected "{"
Line 20:23 Expected ":"
Line 20:30 Unexpected "{"
Line 33:14 Unexpected "{"
Line 33:23 Expected ":"
Line 42:14 Unexpected "{"
Line 42:23 Expected ":"
Line 47:14 Unexpected "{"
Line 47:23 Expected ":"
Line 56:14 Unexpected "{"
... and 144 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ---- Main Centered Container ---- */
#oracle-shop-{{ section.id }} {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* full screen center */
  padding: 40px 20px;
  color: #fff;
  font-family: 'Cinzel', serif;
  text-align: center;

}

/* Wrap content so it's centered */
#oracle-shop-{{ section.id }} .oracle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
}

/* ---- Title ---- */
#oracle-shop-{{ section.id }} .oracle-heading {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 100px;
}
#oracle-shop-{{ section.id }} h1 {
  font-size: 3rem;
 font-weight: bold;
  background: linear-gradient(to right, #3EA1E5, #00ff80, #3EA1E5, #00ff80, #3EA1E5) !important;
  -webkit-background-clip: text !important;  
  -webkit-text-fill-color: transparent; 
  background-clip: text !important;           
  color: transparent;   
}
#oracle-shop-{{ section.id }} .subtitle {
  color: #ddd;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Glow effect */
@keyframes glow {
  0% { text-shadow: 0 0 10px #0ff; }
  100% { text-shadow: 0 0 20px #00ff80; }
}


/* Floating animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Apply floating effect */
#oracle-shop-{{ section.id }} .float-card {
  animation: float 5s ease-in-out infinite;
  transition: opacity 0.5s ease;
}


/* ---- Oracle + Product Row ---- */
#oracle-shop-{{ section.id }} .oracle-product-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-right: 290px;

  gap: 80px;
}

/* ---- Oracle Side ---- */
#oracle-shop-{{ section.id }} .oracle-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#oracle-shop-{{ section.id }} .oracle-img {
  width: 220px;
  animation: float 4s ease-in-out infinite;
}
/* Move speech above Oracle's head */
#oracle-shop-{{ section.id }} .oracle-speech {
  position: absolute;
  bottom: 100%;
  margin-bottom: 15px;
  background: rgba(0,0,0,0.85);
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 250px;
  font-size: 14px;
  color: #fff;
}
#oracle-shop-{{ section.id }} .oracle-speech::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: rgba(0,0,0,0.85) transparent transparent transparent;
}

/* Oracle floating */
@keyframes float {
  0%,100% { transform: translateY(0);}
  50% { transform: translateY(-15px);}
}

/* ---- Product Card ---- */
#oracle-shop-{{ section.id }} .product-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#oracle-shop-{{ section.id }} .product-slider {
  background: rgba(0, 0, 0, 0.75);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,255,255,0.35);
  max-width: 400px;
  text-align: center;
}
#oracle-shop-{{ section.id }} .product-slider img {
  width: 140px;
  margin-bottom: 20px;
}
#oracle-shop-{{ section.id }} .product-slider h2 {
  font-size: 1.5rem;
  margin: 12px 0;
}
#oracle-shop-{{ section.id }} .product-slider p {
  font-size: 1rem;
  color: #ccc;
}
#oracle-shop-{{ section.id }} .product-slider .price {
  font-size: 1.5rem;
  color: #00ffcc;
  margin: 15px 0;
}

/* ---- Buttons ---- */
#oracle-shop-{{ section.id }} .btn {
  margin: 6px;
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
#oracle-shop-{{ section.id }} .btn.details { background:#222; color:#fff; }
#oracle-shop-{{ section.id }} .btn.cart { background:#00ff80; color:#000; }
#oracle-shop-{{ section.id }} .btn.explore { background:#00ff80; color:#000; }
#oracle-shop-{{ section.id }} .btn.wisdom { background:#111; color:#fff; }
#oracle-shop-{{ section.id }} .btn:hover { transform: scale(1.05); }

/* ---- Bottom Buttons (now aligned with card) ---- */
#oracle-shop-{{ section.id }} .oracle-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* ---- Slider Dots ---- */
#oracle-shop-{{ section.id }} .slider-nav {
  margin-top: 15px;
}
#oracle-shop-{{ section.id }} .slider-dot {
  height: 12px;
  width: 12px;
  background: #444;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}
#oracle-shop-{{ section.id }} .slider-dot.active { background:#00ffcc; }

/* ---- Responsive ---- */

@media(max-width: 768px) {
  #oracle-shop-{{ section.id }} .oracle-product-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-right: 0;
  }

  /* Force Oracle image below the card */
  #oracle-shop-{{ section.id }} .product-slider-wrapper {
    order: 1;
  }
  #oracle-shop-{{ section.id }} .oracle-side {
    order: 2;
    margin-top: 20px;
  }

  #oracle-shop-{{ section.id }} .product-slider {
    max-width: 100%;
    width: 90%;
  }

  #oracle-shop-{{ section.id }} .product-slider img {
    width: 120px;
  }

  #oracle-shop-{{ section.id }} .oracle-img {
    width: 160px;
  }

  #oracle-shop-{{ section.id }} .oracle-speech {
    position: static;
    margin-bottom: 12px;
    font-size: 13px;
    max-width: 90%;
  }
  #oracle-shop-{{ section.id }} .oracle-speech::after {
    display: none;
  }

  #oracle-shop-{{ section.id }} .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
/* Hide mobile-only elements by default */
.mobile-only {
  display: none;
}

/* Show mobile-only elements on small screens */
@media (max-width: 767px) {
  .mobile-only {
    display: block; /* or inline/block/inline-block depending on your layout */
  }
  .desktop-only {
    display: none;
  }
}

/* Show desktop-only elements on wider screens */
@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
}


.product-slider {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translate(-50%, -50%);
  z-index: 10; /* make sure it's above the circle radial */
  max-width: 350px; /* adjust to match your design */
  text-align: center;
}

 /* Transparent background */
        .product-slider-wrapper {
            margin: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: transparent;
        }
/* 
        /* Outer Circle */
   .card-circle {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 15px #2962A9;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 7s ease-in-out infinite; 
     width: clamp(280px, 45vw, 500px);
  height: clamp(280px, 45vw, 500px);
    /* Apply the floating animation */
}

/* Inner Circle */
.inner-card-circle {
    width: 90%;
  height: 90%;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 15px #2962A9;
    animation: float 5s ease-in-out infinite; 
    /* Apply the floating animation to the inner circle as well */
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(-15px);
        box-shadow: 0 0 15px #2962A9; /* Initial shadow position */
    }
    50% {
        transform: translateY(-10px); /* Move the circle up */
        box-shadow: 0 20px 25px rgba(41, 98, 169, 0.5); /* Shadow becomes larger */
    }
    100% {
        transform: translateY(-10px); /* Move the circle back to its original position */
        box-shadow: 0 0 15px #2962A9; /* Shadow resets to original size */
    }
}


        /* Outer Animation */
        @keyframes pulseOuter {
            0% {
                transform: scale(0.95);
                opacity: 0.8;
            }

            50% {
                transform: scale(1.05);
                opacity: 1;
            }

            100% {
                transform: scale(0.95);
                opacity: 0.8;
            }
        }

        /* Inner Animation */
        @keyframes pulseInner {
            0% {
                transform: scale(0.9);
                opacity: 0.7;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }

            100% {
                transform: scale(0.9);
                opacity: 0.7;
            }
        }


.img-bg{
  
  width:100%;
  border-radius:30%;
  height: 150px;
  background-color:#1D2A3F
  
}

 /* custom-neloy star animation start */
.star {
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

 .star:nth-child(1){
  position:absolute;
  animation-delay: 0.5s;
 }
 .star:nth-child(2) {
    z-index: 9;
    position: absolute;
    top: 22%;
    animation-delay: 0.7s;
}
 .star:nth-child(3) {
    position: absolute;
    top: 40%;
    right: 10%;
    animation-delay: 0.9s;
}
.star:nth-child(4) {
    position: absolute;
    top: 20%;
    left: 14%;
    animation-delay: 1.5s;
}
 .star:nth-child(5) {
    position: absolute;
    bottom: 30%;
    left: 10px;
    animation-delay: 1.3s;
}
 .star:nth-child(6) {
    position: absolute;
    bottom: 20%;
    left: 0;
    animation-delay: 1s;
}

 /* custom-neloy star animation end */

.product-slider-wrapper {
  max-width: 1000px; /* max width of the whole slider wrapper */
  margin: 0 auto; /* center the slider */
  padding: 20px; /* optional padding */
  height: 100%;

}

.product-slider .slide {
  max-width: 300px; /* restrict each card width */
  margin: 0 auto; /* center each slide inside the slider */
}

.product-slider .slide img{
 border-radius:50%;
 border: 5px solid;
 border-color:#254C75;
 margin-top:5px
}

.product-slider-wrapper .btn-group {
  display: flex;
  gap: 10px;
  justify-content: center; /* center buttons under each card */
}

.oracle-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}





.btn-group {
  display: flex;
  align-items: center; /* vertically centers items */
  justify-content:center;
  gap: 5px; /* space between input and button */
}

.oracle-shop{
  position:relative;
  z-index:1;
}

.oracle-shop::before{
  content:" ";
  position:absolute;
  height:100%;
  width:100%;
  top:0;
  left:0;
  background:black;
  opacity:0.3;
  z-index:-1;
}


.slide h2{
  color:white;
}
.slide p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.oracle-buttons a{
  text-decoration: none;
}

.oracle-heading .subtitle{
  color:white;
}



h1.heading {
  font-size: 3.5em;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0px;
   font-family: 'Cinzel', serif;

}

h2.heading2 {
  font-size: 3.5em;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -60px;
   font-family: 'Cinzel', serif;
}
P.subtitle {
  
  margin-top: -50px;
}

/* Blue gradient for "The" and the 's */
.blue {
      background: linear-gradient(90deg, #0a4da3, #3ba6ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

/* Green → Blue gradient for "Oracle" */
.greenblue {
      background: linear-gradient(90deg, #00c853, #2196f3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

/* Only white text */
.white {
  /* No gradient, just solid white */
  color: #ffffff;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}


/* Main Container */
#oracle-shop-{{ section.id }} {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  color: #fff;
  font-family: 'Cinzel', serif;
  text-align: center;
  position: relative;
  z-index:1;
}

#oracle-shop-{{ section.id }} .oracle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
}



/* Floating animation */
@keyframes float {
  0%,100% { transform: translateY(0);}
  50% { transform: translateY(-15px);}
}
#oracle-shop-{{ section.id }} .float-card {
  animation: float 5s ease-in-out infinite;
  transition: opacity 0.5s ease;
}

/* Oracle + Product Row */
#oracle-shop-{{ section.id }} .oracle-product-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-right: 290px;
  gap: 80px;
}

/* Oracle Side */
#oracle-shop-{{ section.id }} .oracle-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#oracle-shop-{{ section.id }} .oracle-img {
  width: 220px;
  animation: none;
  /* animation: float 4s ease-in-out infinite; */
  
}
#oracle-shop-{{ section.id }} .oracle-speech {
  position: absolute;
  bottom: 100%;
  margin-bottom: 15px;
  background: rgba(0,0,0,0.85);
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 250px;
  font-size: 14px;
  color: #fff;
}
#oracle-shop-{{ section.id }} .oracle-speech::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: rgba(0,0,0,0.85) transparent transparent transparent;
}

/* Product Slider */
#oracle-shop-{{ section.id }} .product-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#oracle-shop-{{ section.id }} .product-slider {
  background: #1A2434;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(39,93,175,0.35);
  max-width: 400px;
  text-align: center;
  position: relative;
}
.product-slider:hover  {
 box-shadow: 0 0px 60px 20px rgba(39,93,175,0.9);
 transition: all 0.4s;
}
#oracle-shop-{{ section.id }} .product-slider img {
  width: 140px;
  margin-bottom: 20px;
}
#oracle-shop-{{ section.id }} .product-slider h2 {
  font-size: 1.5rem;
  margin: 12px 0;
}
#oracle-shop-{{ section.id }} .product-slider p {
  font-size: 1rem;
  color: #ccc;
}
#oracle-shop-{{ section.id }} .product-slider .price {
  font-size: 1.5rem;
  color: #00ffcc;
  margin: 15px 0;
}

/* Slide */
#oracle-shop-{{ section.id }} .product-slider .slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  position: absolute;
  top:0; left:0; width:100%;
}
#oracle-shop-{{ section.id }} .product-slider .slide.active {
  display: block;
  opacity: 1;
  position: relative;
}

/* Buttons */

/* custom-neloy button  */
#oracle-shop-{{ section.id }} .btn {
  margin: 6px;
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position:relative; overflow:hidden;
}
#oracle-shop-{{ section.id }} .btn.details { background:#222; color:#fff; }
#oracle-shop-{{ section.id }} .btn.cart { background:#00ff80; color:#fff; }
#oracle-shop-{{ section.id }} .btn.explore { background:#00ff80; color:#ffffff; }
#oracle-shop-{{ section.id }} .btn.wisdom {  background:transparent; color:#fff; border:1px solid rgb(255, 255, 255, 0.2); box-shadow: 0 1px 2px rgba(0,0,0,0.05); white-space: nowrap; cursor: pointer;
  transition: all 0.2s ease; }
#oracle-shop-{{ section.id }} .btn.explore:hover {  transform: translateY(-2px); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
#oracle-shop-{{ section.id }} .btn.wisdom:hover { transform: translateY(-2px); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
#oracle-shop-{{ section.id }} .btn.wisdom:focus-visible { outline: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.1);}
#oracle-shop-{{ section.id }} .btn.wisdom:disabled {  pointer-events: none; opacity: 0.5;}
#oracle-shop-{{ section.id }} .btn::before {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  left:-100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: translateX(0);
  z-index: 1;
}
#oracle-shop-{{ section.id }} .btn:hover::before {
  animation: shimmerRL 0.6s forwards;
}

/* Move left → right */
@keyframes shimmerRL {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(400%);
  }
}

/* Move right → left */
@keyframes shimmerLR {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* Bottom Buttons */
#oracle-shop-{{ section.id }} .oracle-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

}

/* Slider Dots */
#oracle-shop-{{ section.id }} .slider-nav {
  margin-top: 15px;
}
#oracle-shop-{{ section.id }} .slider-dot {
  height: 12px;
  width: 12px;
  background: #444;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}
#oracle-shop-{{ section.id }} .slider-dot.active { background:#00ffcc; }

/* Responsive */
@media(max-width: 768px) {
  #oracle-shop-{{ section.id }} .oracle-product-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-right: 0;
    
  }
  #oracle-shop-{{ section.id }} .product-slider-wrapper { order: 1; }
  #oracle-shop-{{ section.id }} .oracle-side { order: 2; margin-top: 20px; }
  #oracle-shop-{{ section.id }} .product-slider { max-width: 90%; width: 100%; }
  #oracle-shop-{{ section.id }} .product-slider img { width: 120px; }
  #oracle-shop-{{ section.id }} .oracle-img { width: 160px; }
  #oracle-shop-{{ section.id }} .oracle-speech { position: static; margin-bottom: 12px; font-size: 13px; max-width: 90%; }
  #oracle-shop-{{ section.id }} .oracle-speech::after { display: none; }
  #oracle-shop-{{ section.id }} .btn { padding: 10px 18px; font-size: 0.9rem; }
}



/* custom neloy */


.radial-wrap {
          width: 90%;
          height: 90%;
          max-width: 420px;
          max-height: 420px;
          display: grid;
          place-items: center;
          margin: 20px;
    }

    .radial {
        position: relative;
         width: 100%;
  height: 100%;
        border-radius: 50%;
        animation: slow-rotate 12s linear infinite;
        transform-origin: center;
    }

    .item {
        --size: 18px;
        position: absolute;
        width: var(--size);
        height: var(--size);
        margin: calc(-1 * var(--size) / 2);
        display: grid;
        place-items: center;
        border-radius: 50%;
       
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    }

    /* 4 items → placed at 0, 90, 180, 270 */
    .item:nth-child(1) {
        transform: rotate(0deg) rotate(-0deg);
        top: 0;
        left:0;
         background: #00FF80;
    }

    .item:nth-child(2) {
        transform: rotate(90deg) rotate(-90deg);
        top: 0;
        right: 0;
         background: #00FF80;
    }

    .item:nth-child(3) {
        transform: rotate(180deg)  rotate(-180deg);
        bottom: 0;
        left: 0;
         background: #157FA5;
    }

    .item:nth-child(4) {
        transform: rotate(270deg)  rotate(-270deg);
        bottom: 0;
        right: 0;
         background: #157FA5;
    }

    @keyframes slow-rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }
    @media (prefers-reduced-motion: reduce) {
        .radial {
            animation: none;
        }
    }

    @media (max-width: 768px) {
    .oracle-img {
        width: 250px;
    }
}




/* ------------------ TABLET ------------------ */
@media (max-width: 1024px) {
  .oracle-product-row {
    margin-right: 0;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .product-slider {
    max-width: 80%;
    padding: 20px;
  }
  P.subtitle {
  
  margin-top: -5px;
}
h2.heading2 {
    margin-top: -10px;
}

.product-slider .slide img {
    margin-top: 25px;
}
.slider-nav {
    margin-top: 70px;
}
.oracle-side {
    display: flex;
    flex-direction: column-reverse;
}
   
}

/* ------------------ MOBILE ------------------ */
@media (max-width: 768px) {
.oracle-product-row {
    margin-right: 0;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .card-circle {
    width: 70vw;
    height: 70vw;
  }

  .inner-card-circle {
    width: 85%;
    height: 85%;
  }

  .radial-wrap {
    max-width: 70vw;
    max-height: 70vw;
  }

  .product-slider img {
    width: 100px;
  }

  .oracle-img {
    width: 140px;
  }

  h1.heading,
  h2.heading2 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .oracle-speech {
    font-size: 0.85rem;
    max-width: 85%;
  }
  P.subtitle {
  
  margin-top: -5px;
}
h2.heading2 {
    margin-top: -10px;
}

.product-slider .slide img {
    margin-top: 25px;
}
.slider-nav {
    margin-top: 70px;
}
.oracle-side {
    display: flex;
    flex-direction: column-reverse;
}
  
}

/* ------------------ SMALL PHONES ------------------ */
@media (max-width: 480px) {
.oracle-product-row {
    margin-right: 0;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .card-circle {
    width: 85vw;
    height: 85vw;
  }

  .product-slider {
    max-width: 88%;
    padding: 15px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  P.subtitle {
  margin-top: -5px;
}

h2.heading2 {
    margin-top: -10px;
}

.product-slider .slide img {
    margin-top: 25px;
}
.slider-nav {
    margin-top: 70px;
}
.oracle-side {
    display: flex;
    flex-direction: column-reverse;
}
    
}
/* Overlay */
#newsletter-popup.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#newsletter-popup.show {
  display: flex !important;
  opacity: 1;
}

/* Popup box */
.popup-box {
  position: relative;
  background: #fff;
  display: flex;
  max-width: 800px;
  width: 90%;
  border-radius: 12px;
  overflow: hidden;
  animation: popupFade 0.5s ease;
}
@keyframes popupFade {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Image */
.popup-image img {
  max-width: 300px;
  height: auto;
  display: block;
}

/* Content */
.popup-content {
  padding: 30px;
  flex: 1;
}
.popup-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
}
.popup-content p {
  margin: 0 0 20px;
}
.popup-content form {
  display: flex;
  gap: 10px;
}
.popup-content input[type="email"] {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.popup-content button {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}