/* ============================================================
   World-Class Ultra-Premium Package & Savings Deals CSS
   File: bundle-offers.css
   Covers: Ambient glow containers, glassmorphism, 3D card elevation,
           golden gradient titles, overlapping thumbnail stacks,
           shimmer CTA buttons, and unified luxury color schemes.
   ============================================================ */

:root {
    --luxe-mesh-grad: linear-gradient(135deg, #09202a 0%, var(--web-primary, #1494a9) 50%, #053b47 100%);
    --luxe-gold-grad: linear-gradient(135deg, #ffffff 0%, #ffea9f 50%, #ffc837 100%);
    --luxe-card-bg: #ffffff;
    --luxe-card-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --luxe-card-shadow-hover: 0 22px 50px rgba(20, 148, 169, 0.25);
    --luxe-radius: 20px;
    --luxe-transition: all 0.38s cubic-bezier(0.34, 1.45, 0.64, 1);
}

/* ── CONTAINER: Ultra-Premium Ambient Section ────────────── */
.luxe-bundle-section {
    position: relative;
    border-radius: 24px;
    background: var(--luxe-mesh-grad);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 60px rgba(5, 59, 71, 0.35);
    overflow: hidden;
    padding: 2.25rem 2rem;
}

/* Ambient Floating Glow Spheres */
.luxe-bundle-section::before,
.luxe-ambient-glow.glow-1 {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 234, 159, 0.28) 0%, rgba(20, 148, 169, 0) 70%);
    pointer-events: none;
}

.luxe-bundle-section::after,
.luxe-ambient-glow.glow-2 {
    content: '';
    position: absolute;
    bottom: -110px;
    left: -110px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 148, 169, 0.35) 0%, rgba(9, 32, 42, 0) 70%);
    pointer-events: none;
}

/* ── HEADER BAR ──────────────────────────────────────────── */
.luxe-header-bar {
    position: relative;
    z-index: 2;
}

.luxe-section-title {
    font-size: 1.65rem;
    font-weight: 900;
    margin: 0;
    background: var(--luxe-gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    letter-spacing: -.02em;
}

.luxe-subtitle {
    font-size: .88rem;
    color: rgba(255, 255, 255, 0.85);
    margin: .2rem 0 0;
    font-weight: 500;
}

.luxe-pulse-tag {
    font-size: .72rem;
    font-weight: 800;
    padding: .25rem .75rem;
    border-radius: 20px;
    background: rgba(255, 234, 159, 0.15);
    color: #ffea9f;
    border: 1px solid rgba(255, 234, 159, 0.4);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    animation: tagGlow 2.5s infinite alternate;
}

@keyframes tagGlow {
    0%   { box-shadow: 0 0 4px rgba(255,234,159,0.2); }
    100% { box-shadow: 0 0 16px rgba(255,234,159,0.7); }
}

.luxe-view-all-btn {
    font-size: .85rem;
    font-weight: 700;
    color: #ffea9f;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 234, 159, 0.35);
    padding: .5rem 1.25rem;
    border-radius: 30px;
    text-decoration: none !important;
    backdrop-filter: blur(8px);
    transition: var(--luxe-transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.luxe-view-all-btn:hover {
    background: #ffea9f;
    color: #09202a;
    border-color: #ffea9f;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(255, 234, 159, 0.4);
}

/* ── CARDS: Luxury Package Card ───────────────────────────── */
.luxe-card {
    background: var(--luxe-card-bg);
    border-radius: var(--luxe-radius);
    box-shadow: var(--luxe-card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: #0f172a;
    position: relative;
    transition: var(--luxe-transition);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.luxe-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: var(--luxe-card-shadow-hover);
    border-color: rgba(20, 148, 169, 0.4);
}

/* Single Card Horizontal Layout for Desktop */
@media (min-width: 768px) {
    .luxe-card-single {
        flex-direction: row !important;
        align-items: stretch !important;
        min-height: 230px;
    }
    .luxe-card-single .luxe-card-banner {
        width: 42%;
        height: auto !important;
        min-height: 210px;
    }
    .luxe-card-single .luxe-card-body {
        width: 58%;
        padding: 1.5rem 1.75rem;
        justify-content: center;
    }
}

/* Banner Area */
.luxe-card-banner {
    position: relative;
    height: 165px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #09202a 0%, var(--web-primary, #1494a9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxe-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxe-card:hover .luxe-banner-img {
    transform: scale(1.08);
}

.luxe-banner-placeholder {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Badges */
.luxe-hot-chip {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: .72rem;
    font-weight: 800;
    padding: .3rem .75rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 65, 108, 0.4);
    z-index: 2;
    letter-spacing: .02em;
    backdrop-filter: blur(6px);
    animation: luxePulse 2.2s infinite;
}

@keyframes luxePulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}

.luxe-savings-chip {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: .72rem;
    font-weight: 800;
    padding: .25rem .7rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffea9f;
    border: 1px solid rgba(255, 234, 159, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2;
}

/* Card Body */
.luxe-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: .75rem;
}

.luxe-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -.01em;
}

/* Rule Highlight Pill */
.luxe-rule-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .83rem;
    font-weight: 700;
    padding: .45rem .9rem;
    border-radius: 30px;
    gap: .4rem;
    width: 100%;
    background: linear-gradient(135deg, rgba(20, 148, 169, 0.08) 0%, rgba(20, 148, 169, 0.15) 100%);
    color: #0f172a;
    border: 1.5px solid rgba(20, 148, 169, 0.25);
}

.luxe-price-tag {
    color: var(--web-primary, #1494a9);
    font-size: .95rem;
    font-weight: 900;
}

.luxe-strike-price {
    font-size: .78rem;
    color: #94a3b8;
    text-decoration: line-through;
}

/* Product Avatar Stack */
.luxe-avatar-stack-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .1rem;
    overflow: hidden;
    max-height: 40px;
}

.luxe-stack-title {
    font-size: .75rem;
    font-weight: 700;
    color: #64748b;
    white-space: nowrap;
}

.luxe-avatar-stack {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    max-height: 40px;
}

.luxe-avatar-item {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    margin-right: -8px;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: transform .25s ease, z-index .25s ease;
}

.luxe-avatar-item:hover {
    transform: translateY(-4px) scale(1.22);
    z-index: 10 !important;
}

.luxe-avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.luxe-avatar-more {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--web-primary, #1494a9), #053b47);
    color: #ffffff;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    margin-right: -8px;
    flex-shrink: 0;
}

/* Shimmer Button */
.luxe-cta-btn {
    margin-top: auto;
    background: linear-gradient(135deg, var(--web-primary, #1494a9) 0%, #096877 100%);
    color: #ffffff;
    font-size: .88rem;
    font-weight: 800;
    text-align: center;
    padding: .65rem 1.25rem;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(20, 148, 169, 0.3);
    transition: all .35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxe-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left .65s ease;
}

.luxe-card:hover .luxe-cta-btn::before {
    left: 100%;
}

.luxe-card:hover .luxe-cta-btn {
    box-shadow: 0 8px 25px rgba(20, 148, 169, 0.5);
    background: linear-gradient(135deg, #0d7c8e 0%, #054f5c 100%);
}

.luxe-card:hover .luxe-cta-btn .icon-arrow {
    transform: translateX(4px);
    transition: transform .3s ease;
}

[dir="rtl"] .luxe-card:hover .luxe-cta-btn .icon-arrow,
.rtl .luxe-card:hover .luxe-cta-btn .icon-arrow {
    transform: translateX(-4px);
}

/* Strip */
.luxe-validity-strip {
    font-size: .75rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    padding: .45rem 1rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── OWL CAROUSEL SLIDER CONTROLS ───────────────────────── */
.luxe-bundle-slider {
    position: relative;
}

.luxe-bundle-slider .owl-stage-outer {
    padding: 8px 4px 14px 4px;
    margin: -8px -4px -14px -4px;
}

.luxe-bundle-slider .owl-nav {
    display: block !important;
    position: static;
    margin: 0 !important;
}

.luxe-bundle-slider .owl-nav button.owl-prev,
.luxe-bundle-slider .owl-nav button.owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid rgba(20, 148, 169, 0.25) !important;
    color: var(--web-primary, #1494a9) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    transition: all 0.3s cubic-bezier(0.34, 1.45, 0.64, 1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    z-index: 10 !important;
}

.luxe-bundle-slider .owl-nav button.owl-prev {
    left: -18px !important;
}

.luxe-bundle-slider .owl-nav button.owl-next {
    right: -18px !important;
}

[dir="rtl"] .luxe-bundle-slider .owl-nav button.owl-prev,
.rtl .luxe-bundle-slider .owl-nav button.owl-prev {
    left: auto !important;
    right: -18px !important;
}

[dir="rtl"] .luxe-bundle-slider .owl-nav button.owl-next,
.rtl .luxe-bundle-slider .owl-nav button.owl-next {
    right: auto !important;
    left: -18px !important;
}

.luxe-bundle-slider .owl-nav button.owl-prev:hover,
.luxe-bundle-slider .owl-nav button.owl-next:hover {
    background: var(--web-primary, #1494a9) !important;
    color: #ffffff !important;
    border-color: var(--web-primary, #1494a9) !important;
    transform: translateY(-50%) scale(1.12) !important;
    box-shadow: 0 8px 24px rgba(20, 148, 169, 0.4) !important;
}

.luxe-bundle-slider .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 1.2rem;
}

.luxe-bundle-slider .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    transition: all 0.35s cubic-bezier(0.34, 1.45, 0.64, 1) !important;
    display: block;
    margin: 0 !important;
}

.luxe-bundle-slider .owl-dot.active span {
    width: 24px !important;
    background: linear-gradient(90deg, #ffea9f, #ffc837) !important;
    box-shadow: 0 0 12px rgba(255, 234, 159, 0.7);
}

/* ── RTL SUPPORT ────────────────────────────────────────── */
[dir="rtl"] .luxe-hot-chip,
.rtl .luxe-hot-chip {
    right: auto;
    left: 12px;
}

[dir="rtl"] .luxe-savings-chip,
.rtl .luxe-savings-chip {
    left: auto;
    right: 12px;
}

[dir="rtl"] .luxe-avatar-item,
[dir="rtl"] .luxe-avatar-more,
.rtl .luxe-avatar-item,
.rtl .luxe-avatar-more {
    margin-right: 0;
    margin-left: -8px;
}

[dir="rtl"] .luxe-strike-price,
.rtl .luxe-strike-price {
    margin-right: 0;
    margin-left: .3rem;
}

[dir="rtl"] .luxe-bundle-section::before,
.rtl .luxe-bundle-section::before {
    right: auto;
    left: -80px;
}

[dir="rtl"] .luxe-bundle-section::after,
.rtl .luxe-bundle-section::after {
    left: auto;
    right: -90px;
}

/* ── RESPONSIVE TWEAKS ──────────────────────────────────── */
@media (max-width: 767.98px) {
    .luxe-bundle-slider .owl-nav {
        display: none !important;
    }
    .bundle-detail-hero {
        padding: 1.5rem 1.25rem !important;
        border-radius: 20px !important;
    }
    .bundle-detail-hero h1 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .luxe-bundle-section {
        padding: 1.25rem 0.85rem !important;
        border-radius: 18px !important;
    }
    .luxe-section-title {
        font-size: 1.15rem !important;
    }
    .luxe-card-banner {
        height: 135px !important;
    }
    .luxe-card-body {
        padding: 0.85rem !important;
    }
    
    /* Product Enrolled Grid Cards on Mobile */
    .bundle-card-img-wrap {
        height: 145px !important;
        padding: 0.5rem !important;
    }
    .bundle-card-img {
        max-height: 115px !important;
    }
    .bundle-product-card .bundle-card-body {
        padding: 0.75rem !important;
    }
    .bundle-card-title {
        font-size: 0.82rem !important;
        line-height: 1.25 !important;
        min-height: 32px !important;
        margin-bottom: 0.3rem !important;
    }
    
    /* Wishlist & Discount Badge for Mobile */
    .btn-wishlist-circle {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.72rem !important;
    }
    .bundle-card-badge .badge {
        font-size: 0.65rem !important;
        padding: 2px 6px !important;
    }

    /* Buttons Stacking & Responsive Heights on Mobile */
    .bundle-action-buttons-wrap {
        flex-direction: column !important;
        gap: 6px !important;
    }
    .btn-add-to-cart-custom,
    .btn-buy-now-custom {
        width: 100% !important;
        flex: none !important;
        padding: 0.45rem 0.5rem !important;
        font-size: 0.75rem !important;
        border-radius: 30px !important;
        justify-content: center !important;
    }

    /* Price Font Adjustments for Mobile */
    .bundle-card-body .fs-15 { font-size: 0.95rem !important; }
    .bundle-card-body .fs-14 { font-size: 0.84rem !important; }
    .bundle-card-body .fs-13 { font-size: 0.78rem !important; }
    .bundle-card-body .fs-12 { font-size: 0.72rem !important; }
    .bundle-card-body .fs-11 { font-size: 0.68rem !important; }
    .bundle-card-body .fs-10 { font-size: 0.62rem !important; }

    /* Page Hero on Mobile */
    .bundle-page-hero {
        padding: 2rem 1rem 2.25rem 1rem !important;
        border-radius: 0 0 20px 20px !important;
    }
    .bundle-page-hero h1 {
        font-size: 1.45rem !important;
    }
    .bundle-detail-hero h1 {
        font-size: 1.25rem !important;
    }
    .bundle-savings-chip {
        font-size: 0.73rem !important;
        padding: 0.3rem 0.65rem !important;
    }
    .luxe-rule-pill {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.65rem !important;
    }
}

/* ── PRODUCT DETAIL BUNDLE BANNER ────────────────────────── */
.product-bundle-banner-premium {
    position: relative;
    border-radius: 18px;
    transition: all 0.38s cubic-bezier(0.34, 1.45, 0.64, 1);
    text-decoration: none !important;
}

.product-bundle-banner-premium .bundle-banner-inner {
    background: linear-gradient(135deg, var(--bundle-bg, #6c3de0) 0%, rgba(20, 148, 169, 0.95) 100%);
    color: var(--bundle-text, #ffffff);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(108, 61, 224, 0.25);
    overflow: hidden;
}

.product-bundle-banner-premium:hover {
    transform: translateY(-4px) scale(1.01);
}

.product-bundle-banner-premium:hover .bundle-banner-inner {
    box-shadow: 0 16px 40px rgba(108, 61, 224, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.bundle-banner-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 234, 159, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.redirect-arrow-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.35s cubic-bezier(0.34, 1.45, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
}

.product-bundle-banner-premium:hover .redirect-arrow-circle {
    background: #ffffff;
    color: var(--bundle-bg, #6c3de0);
    border-color: #ffffff;
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.product-bundle-banner-premium .redirect-arrow-icon {
    transition: transform 0.3s ease;
}

.product-bundle-banner-premium:hover .redirect-arrow-icon {
    transform: translateX(5px);
}

[dir="rtl"] .product-bundle-banner-premium:hover .redirect-arrow-icon,
.rtl .product-bundle-banner-premium:hover .redirect-arrow-icon {
    transform: translateX(-5px);
}

.redirect-label {
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .68rem !important;
    opacity: .95;
}

/* ── BUNDLE DETAIL PAGE PRODUCT CARDS ───────────────────── */
.bundle-product-card {
    transition: all 0.35s cubic-bezier(0.34, 1.45, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.bundle-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(20, 148, 169, 0.18) !important;
    border-color: rgba(20, 148, 169, 0.35) !important;
}

.btn-wishlist-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
    cursor: pointer;
}

.btn-wishlist-circle:hover {
    background: #ffffff;
    transform: scale(1.18);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.bundle-card-img-wrap {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc !important;
}

.bundle-card-img {
    max-height: 155px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.bundle-product-card:hover .bundle-card-img {
    transform: scale(1.08);
}

.bundle-card-quick-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bundle-product-card:hover .bundle-card-quick-overlay {
    opacity: 1;
}

.bundle-out-stock-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(220, 38, 38, 0.92);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

/* Custom Action Buttons for Bundle Product Cards */
.btn-add-to-cart-custom {
    background: linear-gradient(135deg, var(--web-primary, #1494a9) 0%, #0c7c8f 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(20, 148, 169, 0.28) !important;
    transition: all 0.35s cubic-bezier(0.34, 1.45, 0.64, 1) !important;
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart-custom::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-add-to-cart-custom:hover::after {
    left: 130%;
}

.btn-add-to-cart-custom:hover {
    background: linear-gradient(135deg, #0d7a8c 0%, #065461 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(20, 148, 169, 0.48) !important;
}

.btn-add-to-cart-custom:hover i {
    transform: scale(1.15) rotate(-8deg);
    transition: transform 0.3s ease;
}

.btn-add-to-cart-custom:active {
    transform: translateY(0) scale(0.97) !important;
    box-shadow: 0 2px 8px rgba(20, 148, 169, 0.3) !important;
}

.btn-buy-now-custom {
    background: linear-gradient(135deg, #ff5757 0%, #ff3366 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(255, 87, 87, 0.32) !important;
    transition: all 0.35s cubic-bezier(0.34, 1.45, 0.64, 1) !important;
    position: relative;
    overflow: hidden;
}

.btn-buy-now-custom::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.32);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-buy-now-custom:hover::after {
    left: 130%;
}

.btn-buy-now-custom:hover {
    background: linear-gradient(135deg, #ff3366 0%, #e60039 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255, 51, 102, 0.52) !important;
}

.btn-buy-now-custom:hover i {
    transform: scale(1.25) rotate(12deg);
    transition: transform 0.3s ease;
}

.btn-buy-now-custom:active {
    transform: translateY(0) scale(0.97) !important;
    box-shadow: 0 2px 8px rgba(255, 51, 102, 0.3) !important;
}
