/* LUXURY THEME BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.btn:active {
    transform: scale(0.98);
}

/* Gold Button (Primary) */
.btn-gold {
    background: linear-gradient(135deg, #222222 0%, #555555 100%);
    /* Luxury Override */
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Shine Effect */
.btn-gold::after {
    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.5s;
}

.btn-gold:hover::after {
    left: 100%;
}

/* Dark Button */
.btn-dark {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Body Primary Button Override */
body .btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body .btn-primary:hover,
.wishlist-grid .btn-primary:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

/* Sizes */
.btn-lg {
    padding: 18px 45px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.8rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Checkout Action Button */
.btn-checkout-action {
    font-size: 1.5rem;
    letter-spacing: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #222222 0%, #111111 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 25px;
    width: 100%;
    display: block;
}

.btn-checkout-action:hover {
    background: linear-gradient(135deg, #333333 0%, #222222 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Button Detail */
.btn-detail {
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-detail:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.btn-detail-card {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: #fff;
    color: #444;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-detail-card:hover {
    background-color: #000;
    color: #fff !important;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.btn-primary-profile:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
