
:root {
    --boutique-bg: rgba(26, 16, 8, 0.7);
    --pack-bg: rgba(30, 20, 15, 0.7);
    --pack-hover-bg: rgba(45, 30, 20, 0.8);
    --premium-bg: rgba(38, 25, 15, 0.9);
    --premium-border: rgba(255, 215, 0, 0.5);
    --pack-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    --pack-hover-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    --ribbon-bg: linear-gradient(45deg, var(--color-rose), var(--color-marron));
    --ribbon-premium-bg: linear-gradient(45deg, #f1c40f, var(--color-marron));
    --toast-bg: rgba(46, 204, 113, 0.9);
    --toast-progress-bg: rgba(255, 255, 255, 0.5);
  }
  
  .boutique-section {
    padding: 120px 0 80px;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .boutique-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 16, 8, 0.9) 0%, rgba(45, 28, 20, 0.9) 50%, rgba(38, 20, 20, 0.9) 100%);
    z-index: -1;
  }
  
  .boutique-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--color-beige), var(--color-rose-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    padding-bottom: 1.5rem;
    animation: glow 3s ease-in-out infinite alternate;
  }
  
  .boutique-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
  }
  
  .ogrine-balance-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    background: var(--boutique-bg);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(200, 119, 67, 0.3);
    box-shadow: var(--card-shadow);
  }
  
  .ogrine-balance {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .ogrine-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-marron), var(--color-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .ogrine-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
  }
  
  .ogrine-icon i {
    color: white;
    font-size: 2rem;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .ogrine-info {
    display: flex;
    flex-direction: column;
  }
  
  .balance-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .balance-value {
    color: var(--text-light);
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-beige-light), var(--color-rose-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(200, 119, 67, 0.15);
    border: 1px solid rgba(200, 119, 67, 0.3);
    border-radius: 30px;
    color: var(--color-beige);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .dashboard-btn:hover {
    background: rgba(200, 119, 67, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--color-beige-light);
  }
  
  .boutique-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .boutique-intro p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
  }
  
  .packs-container {
    margin-bottom: 4rem;
  }
  
  .pack-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
  width: 100%;
}

.pack-row.single-row {
  flex-wrap: wrap;
  width: 100%;
}

.pack-card {
  background: var(--pack-bg);
  border-radius: 20px;
  overflow: hidden;
  width: calc(16.66% - 10px);
  flex: 0 0 auto;
  margin-bottom: 20px;
  box-shadow: var(--pack-shadow);
  border: 1px solid rgba(200, 119, 67, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform: translateZ(0);
}
  
  .pack-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--pack-hover-shadow);
    border-color: rgba(200, 119, 67, 0.5);
    background: var(--pack-hover-bg);
  }
  
  .pack-card.premium {
    background: var(--premium-bg);
    border: 1px solid var(--premium-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.15);
  }
  
  .pack-card.premium:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.2);
  }
  
  .pack-ribbon {
    position: absolute;
    top: 20px;
    left: -45px;
    background: var(--ribbon-bg);
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(-45deg);
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 150px;
    text-align: center;
  }
  
  .premium .pack-ribbon {
    background: var(--ribbon-premium-bg);
  }
  
  .pack-image-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(15, 10, 5, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .pack-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(200, 119, 67, 0.1) 100%);
    z-index: 1;
  }
  
  .pack-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    z-index: 2;
    position: relative;
  }
  
  .pack-card:hover .pack-image {
    transform: scale(1.1) rotate(5deg);
  }
  
  .pack-content {
    padding: 25px;
    text-align: center;
    position: relative;
  }
  
  .pack-title {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .pack-amount {
    color: var(--color-rose-light);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .pack-price {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  .pack-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(45deg, var(--color-marron), var(--color-rose));
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .pack-buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
  }
  
  .pack-buy-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .pack-buy-btn:hover::before {
    left: 100%;
  }
  
  .advantages-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: rgba(15, 10, 5, 0.2);
    border-radius: 20px;
  }
  
  .advantages-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-beige-light);
    position: relative;
    padding-bottom: 1rem;
  }
  
  .advantages-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
  }
  
  .advantages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0 2rem;
  }
  
  .advantage-card {
    background: var(--boutique-bg);
    border-radius: 20px;
    padding: 30px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(200, 119, 67, 0.2);
    transition: all 0.3s ease;
  }
  
  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pack-hover-shadow);
    border-color: rgba(200, 119, 67, 0.4);
  }
  
  .advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-marron), var(--color-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .advantage-icon i {
    color: white;
    font-size: 2.5rem;
  }
  
  .advantage-content h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .advantage-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
  }
  

  .payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .payment-modal.active {
    display: flex;
    opacity: 1;
  }
  
  .payment-content {
    background: var(--boutique-bg);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }
  
  .payment-modal.active .payment-content {
    transform: scale(1);
  }
  
  .payment-header {
    background: rgba(15, 10, 5, 0.4);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(200, 119, 67, 0.2);
    position: relative;
  }
  
  .payment-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
  }
  
  .payment-header h2 {
    color: var(--text-light);
    font-size: 1.6rem;
    margin: 0;
  }
  
  .close-modal {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }
  
  .payment-body {
    padding: 30px;
  }
  
  .payment-summary {
    background: rgba(15, 10, 5, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  
  .summary-item:last-child {
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(200, 119, 67, 0.2);
  }
  
  .summary-label {
    color: var(--text-muted);
    font-size: 1rem;
  }
  
  .summary-value {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .payment-methods {
    margin-bottom: 30px;
  }
  
  .payment-methods h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .methods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .payment-method {
    background: rgba(15, 10, 5, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    flex: 1;
    min-width: 160px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 119, 67, 0.1);
  }
  
  .payment-method:hover {
    background: rgba(200, 119, 67, 0.1);
    border-color: rgba(200, 119, 67, 0.3);
  }
  
  .payment-method input[type="radio"] {
    display: none;
  }
  
  .payment-method label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }
  
  .payment-method input[type="radio"]:checked + label {
    color: var(--color-beige-light);
  }
  
  .payment-method input[type="radio"]:checked + label i {
    color: var(--color-rose-light);
  }
  
  .payment-actions {
    display: flex;
    gap: 20px;
  }
  
  .cancel-btn {
    flex: 1;
    padding: 15px 0;
    background: rgba(15, 10, 5, 0.3);
    border: 1px solid rgba(200, 119, 67, 0.2);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cancel-btn:hover {
    background: rgba(200, 119, 67, 0.1);
  }
  
  .confirm-btn {
    flex: 2;
    padding: 15px 0;
    background: linear-gradient(45deg, var(--color-marron), var(--color-rose));
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .success-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--toast-bg);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .success-toast.active {
    transform: translateX(0);
  }
  
  .toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .toast-content i {
    font-size: 2rem;
  }
  
  .toast-content span {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--toast-progress-bg);
    transform-origin: left;
    animation: progress 4s linear forwards;
  }
  
  @keyframes progress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
  }

  @keyframes shimmer {
    0% {
      transform: rotate(45deg) translateX(-100%);
    }
    100% {
      transform: rotate(45deg) translateX(100%);
    }
  }
  
  @keyframes glow {
    from {
      text-shadow: 0 0 5px rgba(200, 119, 67, 0.2), 0 0 10px rgba(200, 119, 67, 0.1);
    }
    to {
      text-shadow: 0 0 15px rgba(200, 119, 67, 0.4), 0 0 30px rgba(200, 119, 67, 0.2);
    }
  }
  
  .boutique-btn.active {
    background: linear-gradient(45deg, var(--color-marron-dark), var(--color-rose));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
  }
  
  .mobile-boutique-btn.active {
    background: linear-gradient(45deg, var(--color-marron-dark), var(--color-rose));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  @media (max-width: 1400px) {
    .pack-card {
      width: calc(33.333% - 10px);
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 992px) {
    .boutique-title {
      font-size: 3rem;
    }
    
    .ogrine-balance-container {
      flex-direction: column;
      gap: 20px;
    }
    
    .pack-card {
      width: calc(50% - 10px);
    }
    
    .advantage-card {
      width: calc(50% - 15px);
    }
    
    .pack-image-container {
      height: 180px;
    }
  }
  
  @media (max-width: 768px) {
    .boutique-title {
      font-size: 2.5rem;
    }
    
    .ogrine-balance {
      width: 100%;
      justify-content: center;
    }
    
    .pack-row.single-row {
      flex-direction: column;
      align-items: center;
    }
    
    .pack-card {
      width: 100%;
      max-width: 400px;
    }
    
    .advantage-card {
      width: 100%;
    }
    
    .methods-container {
      flex-direction: column;
    }
    
    .payment-method {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .boutique-title {
      font-size: 2rem;
    }
    
    .ogrine-icon {
      width: 60px;
      height: 60px;
    }
    
    .ogrine-icon i {
      font-size: 1.6rem;
    }
    
    .balance-value {
      font-size: 2rem;
    }
    
    .pack-image-container {
      height: 160px;
    }
    
    .payment-actions {
      flex-direction: column;
    }
    
    .success-toast {
      left: 20px;
      right: 20px;
      bottom: 20px;
    }
  }