
.shop-container {
    width: 100%;
    min-height: 100vh;
    padding-top: 70px; 
    background-color: #16161a;
}
  
.shop-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
  
.shop-header {
    padding: 4rem 0;
    text-align: center;
}
  
.shop-sections {
    padding: 2rem 0;
}

.text-red-500 {
  color: red;
  text-align: center;
  font-size: 1.25rem;
}

.card {
    background: #242629;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .card.featured {
    border: 2px solid #2cb67d;
    position: relative;
  }
  
  .card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2cb67d;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 90, 240, 0.15);
    color: #7f5af0;
  }
  
  .card h3 {
    font-size: 1.5rem;
    color: #fffffe;
    margin-bottom: 0.5rem;
  }
  
  .card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #fffffe;
    margin-bottom: 0.25rem;
  }
  
  .card .period {
    color: #94a1b2;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a1b2;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
  }
  
  .card ul li svg {
    color: #7f5af0;
    flex-shrink: 0;
  }
  
  .card button {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    background: #7f5af0;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
  }
  
  .card button:hover {
    background: #6f4af0;
  }

.text-3xl {
  margin-left: 15px;
}

.coin-card {
    background: #1b1e22;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px rgba(127, 90, 240, 0.15);
    border: 1px solid #7f5af0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 12px rgba(127, 90, 240, 0.2);
}

.coin-card .icon {
    color: #ffb800;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.coin-card h3 {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #fffffe;
    margin-bottom: 4px;
}

.coin-card .bonus {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    color: #2cb67d;
    margin-bottom: 4px;
}

.coin-card .price {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: bold;
    color: #fffffe;
    margin-bottom: 8px;
}

.coin-card button {
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #7f5af0, #5a3fc0);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.coin-card button:hover {
    background: linear-gradient(135deg, #6f4af0, #4a2fb0);
}
.grid {
    display: grid;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  @media (min-width: 768px) {
    .md\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  .w-5 {
    color: #e7dbff;
  }
  
 .coin-card h4 {
    color: #e7dbff;
 }

  .grid-item {

    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
  }

  .flex-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around; 
    gap: 10px;
  }
  
  .flex-item {
    
    width: calc(33.33% - 10px); 
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
  }


  @media (min-width: 768px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .grid {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 1rem;
    }
  
    .card {
      padding: 1.25rem;
    }
  
    .card h3 {
      font-size: 1.25rem;
    }
  
    .card .price {
      font-size: 1.75rem;
    }
  
    .card ul li {
      font-size: 0.875rem;
    }
  
    .card button {
      padding: 0.625rem;
    }
  }
  

  @media (max-width: 360px) {
    .card {
      padding: 1rem;
    }
  
    .card-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 0.75rem;
    }
  
    .card h3 {
      font-size: 1.125rem;
    }
  
    .card .price {
      font-size: 1.5rem;
    }
  
    .card ul li {
      font-size: 0.8125rem;
    }
  }

  /* Success Page Styles */
  .success-animation-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
  }

  .confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #7f5af0;
    animation: confetti-fall 3s linear infinite;
  }

  @keyframes confetti-fall {
    0% {
      transform: translateY(-100vh) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh) rotate(720deg);
      opacity: 0;
    }
  }

  .tada-animation {
    animation: tada 1s ease-in-out;
    margin-bottom: 2rem;
  }

  .tada-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
  }

  @keyframes tada {
    0% {
      transform: scale(0.3) rotate(-10deg);
      opacity: 0;
    }
    50% {
      transform: scale(1.1) rotate(5deg);
    }
    100% {
      transform: scale(1) rotate(0deg);
      opacity: 1;
    }
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }

  .session-info-card {
    background: #242629;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #7f5af0;
    max-width: 500px;
    width: 100%;
  }

  .success-benefits-card {
    background: #242629;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #7f5af0;
    box-shadow: 0px 4px 10px rgba(127, 90, 240, 0.15);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }

  .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #1b1e22;
    border-radius: 8px;
    border: 1px solid #7f5af0;
    transition: all 0.3s ease;
  }

  .benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(127, 90, 240, 0.2);
    background: #2a2d32;
  }

  .benefit-icon {
    color: #2cb67d;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .benefit-item span:last-child {
    color: #fffffe;
    font-size: 0.95rem;
  }

  .success-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #242629;
    border-radius: 12px;
    border: 1px solid #7f5af0;
  }

  /* Responsive adjustments for success page */
  @media (max-width: 768px) {
    .tada-icon {
      font-size: 3rem;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .success-benefits-card {
      padding: 1.5rem;
    }
    
    .session-info-card {
      padding: 0.75rem;
    }
  }
