.btn-luxe-primary {
    background: var(--pb-accent);
        border: 2px solid var(--pb-green-custom);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-luxe-primary:hover {
    background: #1a0a1f;
        border-color: var(--pb-green-custom);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-luxe-outline {
    background: transparent;
        border: 2px solid var(--pb-green-custom);
    color: var(--pb-green-custom);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-luxe-outline:hover {
    background: var(--pb-accent);
    color: white;
    transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(27, 77, 62, 0.4);
}

.btn-pack {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: white;
    color: var(--pb-accent);
    border: 2px solid var(--pb-accent);
}

.btn-pack:hover {
    background: var(--pb-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-pack-gold {
    background: var(--pb-gold);
    color: white;
    border: 2px solid var(--pb-gold);
}

.btn-pack-gold:hover {
    background: #B8860B;
    border-color: #B8860B;
    color: white;
}

.btn-pack-black {
    background: #1a1a1a;
    color: var(--pb-gold);
    border: 2px solid #1a1a1a;
}

.btn-pack-black:hover {
    background: var(--pb-gold);
    color: #1a1a1a;
    border-color: var(--pb-gold);
}

.btn-selector {
    background: linear-gradient(135deg, var(--pb-accent) 0%, var(--pb-primary) 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(36, 1, 41, 0.2);
}

.btn-selector:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--pb-gold) 0%, #FFD700 100%);
}

.btn-selector i {
    transition: transform 0.3s ease;
}

.btn-selector:hover i {
    transform: translateX(5px);
}

.pricing-btn {
    margin-top: 2rem;
    width: 100%;
}
