/* product.css — extracted from package2.html */

/* package page — premium clean layout */

*,
*::before,
*::after {
        box-sizing: border-box;
    }

.ax-pkg-main {
        position: relative;
        padding: 0;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: var(--bg-deep);
    }

/* Decorative Orbs - Full Height */

.ax-pkg-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }

.ax-pkg-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, 
            rgba(8,8,10,0.35) 0%, 
            rgba(8,8,10,0.75) 50%, 
            var(--bg-deep) 100%
        );
    }

.ax-pkg-orb {
        position: absolute;
        top: 15%;
        left: 50%;
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
        filter: blur(100px);
        opacity: 0.5;
        pointer-events: none;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

.pkg-page {
        position: relative;
        z-index: 5;
        padding: 140px 0 120px;
        color: #fff;
    }

.pkg-wrap {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 40px;
    }

/* Breadcrumb */

.pkg-breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: rgba(255, 255, 255, .3);
        margin: 0 0 40px;
    }

.pkg-breadcrumb a {
        color: rgba(255, 255, 255, .3);
        text-decoration: none;
    }

.pkg-breadcrumb .sep {
        color: rgba(255, 255, 255, .1);
    }

/* Grid Layout */

.pkg-grid {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 60px;
        align-items: start;
    }

@media (max-width: 1024px) {
  .pkg-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

  .gallery-col {
            position: relative !important;
            top: 0 !important;
        }

  .pkg-wrap {
            padding: 0 20px;
        }
}

/* gallery (left) */

.gallery-col {
        min-width: 0;
        position: sticky;
        top: 120px;
        align-self: start;
        height: fit-content;
    }

.media-box {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: 80vh;
        background: #0a0a0c;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 24px;
        border: 1px solid rgba(255, 255, 255, .05);
    }

.media-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.media-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: var(--accent-color);
        color: #fff;
        font-size: 10px;
        font-weight: 900;
        padding: 4px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

/* thumb-row kayb9a horizontal scroll mn nahya mobile. styling dyal scrollbar
   (thin + custom colors) bax matb9ach 9bi7a chrome default. firefox kayhandlih
   m3a scrollbar-width/color, webkit khasso pseudo-elements men l-asfal */
.thumb-row {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 20px;
        align-items: center;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, .2) rgba(255, 255, 255, .02);
    }

.thumb-row::-webkit-scrollbar {
        height: 6px;
    }

.thumb-row::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, .03);
        border-radius: 10px;
    }

.thumb-row::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .2);
        border-radius: 10px;
    }

.thumb-row::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, .4);
    }

.thumb {
        flex: 0 0 220px;
        width: 220px;
        height: 124px;
        border-radius: 12px;
        background: #0a0a0c;
        border: 2px solid transparent;
        cursor: pointer;
        object-fit: cover;
        opacity: .4;
        transition: all .2s ease;
        display: block;
        flex-shrink: 0;
    }

.thumb.active {
        opacity: 1;
        border-color: #fff;
    }

.thumb:hover:not(.active) {
        opacity: .7;
        border-color: rgba(255, 255, 255, .2);
    }

/* video preview iframe */

#videoPreview {
        width: 100%;
        height: 100%;
        border: none;
        display: none;
        position: absolute;
        inset: 0;
        z-index: 5;
        border-radius: 16px;
    }

/* video thumbnail */

.thumb-video {
        flex: 0 0 180px;
        width: 180px;
        height: 101px;
        border-radius: 10px;
        border: 2px solid transparent;
        cursor: pointer;
        opacity: .55;
        transition: all .2s ease;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #2a0e0e 0%, #0a0a0c 100%);
    }

.thumb-video-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.thumb-video .play-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .25);
        z-index: 2;
    }

.thumb-video.active {
        opacity: 1;
        border-color: #fff;
    }

.thumb-video:hover:not(.active) {
        opacity: .85;
        border-color: rgba(255, 255, 255, .25);
    }

/* info card (right) */

.info-col {
        min-width: 0;
    }

.v1-info-card {
        background: rgba(12, 12, 15, .15);
        backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 24px;
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

.v1-title {
        font-size: 32px;
        font-weight: 900;
        letter-spacing: -.02em;
        line-height: 1.1;
    }

.v1-cat {
        font-size: 13px;
        color: rgba(255, 255, 255, .3);
        margin-top: 4px;
    }

.tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

.tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .08);
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 700;
        color: rgba(255, 255, 255, .6);
    }

.tag img {
        width: 14px;
        height: 14px;
        border-radius: 3px;
    }

.price-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 4px;
    }

.price-main {
        font-size: 38px;
        font-weight: 950;
        letter-spacing: -.03em;
    }

.price-old {
        font-size: 18px;
        color: rgba(255, 255, 255, .2);
        text-decoration: line-through;
        font-weight: 700;
    }

.price-badge {
        background: linear-gradient(135deg, #ff3b3b, #ff6b35);
        color: #fff;
        font-size: 13px;
        font-weight: 900;
        padding: 5px 12px;
        border-radius: 999px;
        letter-spacing: 0.04em;
        box-shadow: 0 6px 18px rgba(255, 59, 59, 0.35);
        text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    }

.btn-get {
        width: 100%;
        height: 60px;
        background: #fff;
        color: #000;
        border: none;
        border-radius: 20px;
        font-size: 17px;
        font-weight: 900;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-decoration: none;
        transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 4px;
        position: relative;
        overflow: hidden;
        animation: lxyPulseBtn 3s infinite ease-in-out;
    }

/* SHIMMER GLINT */

.btn-get::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
            to right, 
            transparent, 
            rgba(255, 255, 255, 0.8), 
            transparent
        );
        transform: skewX(-25deg);
        animation: lxyShimmer 4s infinite ease-in-out;
    }

@keyframes lxyShimmer {
        0% { left: -100%; }
        25%, 100% { left: 200%; }
    }

@keyframes lxyPulseBtn {
        0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05); }
        50% { transform: scale(1.02); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15); }
    }

.btn-get:hover {
        transform: translateY(-4px) scale(1.03) !important;
        box-shadow: 0 20px 40px rgba(255, 255, 255, 0.25) !important;
    }

.btn-get.in-cart {
        background: var(--accent);
        color: #fff;
    }

.acc {
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 14px;
        overflow: hidden;
        background: rgba(20, 20, 24, .4);
    }

.acc-hdr {
        padding: 18px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-weight: 700;
        font-size: 14px;
    }

.acc-hdr-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.acc-hdr-left svg {
        width: 16px;
        height: 16px;
        color: var(--accent-color);
    }

.acc-icon {
        font-size: 20px;
        color: rgba(255, 255, 255, .2);
        transition: transform .3s;
    }

.acc.open .acc-icon {
        transform: rotate(45deg);
        color: var(--accent-color);
    }

.acc-body {
        display: none;
        padding: 0 22px 22px;
        color: rgba(255, 255, 255, .5);
        font-size: 14px;
        line-height: 1.7;
    }

.acc-body img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 12px 0;
        display: block;
    }

.acc.open .acc-body {
        display: block;
    }

/* description box (left) */

/* vertical description under gallery (side) */

.pkg-desc-v2-side {
        margin-top: 50px;
        padding-top: 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        gap: 60px;
        position: relative;
    }

.pkg-desc-v2-side::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 0;
        width: 100px;
        height: 2px;
        background: linear-gradient(to right, var(--accent), transparent);
    }

.pkg-desc-v2-side .pkg-desc-v2-sidebar {
        flex: 0 0 60px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.pkg-desc-v2-side .v2-ver-title {
        position: absolute;
        top: 40px;
        left: 50%;
        transform: rotate(-90deg) translateX(-100%);
        transform-origin: top left;
        font-size: 52px;
        font-weight: 950;
        color: rgba(255, 255, 255, 0.03);
        letter-spacing: -0.04em;
        white-space: nowrap;
        pointer-events: none;
    }

.pkg-desc-v2-side .v2-tag {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.3em;
        color: var(--accent);
        text-transform: uppercase;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        margin-top: 10px;
        opacity: 0.5;
    }

.pkg-desc-v2-side .pkg-desc-v2-content {
        flex: 1;
        min-width: 0;
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.4);
    }

.pkg-desc-v2-side .pkg-desc-v2-content h1,
.pkg-desc-v2-side .pkg-desc-v2-content h2 {
        font-size: 24px;
        color: #fff;
        margin: 30px 0 15px;
    }

.pkg-desc-v2-side .pkg-desc-v2-content li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 5px;
        height: 5px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--accent-glow);
    }

/* accordion gift card (v3) */

.pkg-gift-card-v3 {
        background: rgba(12, 12, 15, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        margin-top: 15px;
        overflow: hidden;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

.pkg-gift-card-v3.open {
        border-color: var(--accent);
        box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.1);
        background: rgba(var(--accent-rgb), 0.03);
    }

.gift-v3-header {
        padding: 10px 16px;
        height: 60px;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        user-select: none;
    }

.gift-v3-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        transition: 0.3s;
    }

.gift-v3-icon svg {
        width: 22px;
        height: 22px;
    }

.pkg-gift-card-v3.open .gift-v3-icon {
        background: transparent;
        color: var(--accent);
        box-shadow: none;
    }

.gift-v3-info h3 {
        font-size: 13.5px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0px;
        line-height: 1.1;
    }

.gift-v3-info p {
        font-size: 10.5px;
        color: rgba(255, 255, 255, 0.2);
        line-height: 1.1;
    }

.gift-v3-arrow {
        margin-left: auto;
        color: rgba(255, 255, 255, 0.2);
        transition: 0.3s;
    }

.pkg-gift-card-v3.open .gift-v3-arrow {
        transform: rotate(180deg);
        color: var(--accent);
    }

.gift-v3-body {
        max-height: 0;
        overflow: hidden;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid transparent;
        background: rgba(0, 0, 0, 0.15);
    }

.pkg-gift-card-v3.open .gift-v3-body {
        max-height: 140px;
        border-top-color: rgba(255, 255, 255, 0.03);
    }

.gift-v3-inner {
        padding: 12px 16px;
    }

.gift-v3-input-row {
        display: flex;
        gap: 8px;
        height: 44px;
    }

.gift-v3-input-row input {
        flex: 1;
        height: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 0 14px;
        color: #fff;
        font-size: 13px;
        outline: none;
        transition: 0.3s;
    }

.gift-v3-input-row input:focus {
        border-color: rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.05);
    }

.gift-v3-confirm {
        width: 44px;
        height: 44px;
        background: var(--accent);
        border: none;
        border-radius: 10px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 4px 12px var(--accent-glow);
    }

.gift-v3-confirm svg {
        width: 18px;
        height: 18px;
    }

.gift-v3-confirm:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

.btn-discord {
        width: 100%;
        height: 54px;
        background: #5865F2;
        color: #fff;
        border: none;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-decoration: none;
        transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 4px;
    }

.btn-discord:hover {
        background: #4752c4;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
    }

/* quantity selector direct */

.pkg-qty-direct {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
        padding: 5px 0;
    }

.pkg-qty-label {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.4);
    }

.pkg-qty-ctrl {
        display: flex;
        align-items: center;
        gap: 15px;
        background: transparent;
        padding: 0;
        border: none;
    }

.qty-btn {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: rgba(255, 255, 255, 0.4);
        border: none;
        cursor: pointer;
        transition: all 0.2s;
    }

.qty-btn:hover {
        color: var(--accent);
    }

.qty-val {
        min-width: 40px;
        text-align: center;
        font-size: 20px;
        font-weight: 900;
        font-family: var(--font-mono);
        color: #fff;
    }

.btn-discord svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

.trust-row {
        display: flex;
        gap: 12px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

/* gallery nav arrows */

.gallery-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, .4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all .2s ease;
        font-size: 24px;
        opacity: 0;
    }

.media-box:hover .gallery-nav-btn {
        opacity: 1;
    }

.gallery-nav-btn:hover {
        background: rgba(0, 0, 0, .7);
        transform: translateY(-50%) scale(1.1);
    }

.gallery-prev {
        left: 16px;
    }

.gallery-next {
        right: 16px;
    }

/* expand button */

.expand-btn {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, .4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 10px;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all .2s ease;
        opacity: 0;
    }

.media-box:hover .expand-btn {
        opacity: 1;
    }

.expand-btn:hover {
        background: rgba(0, 0, 0, .7);
        transform: scale(1.1);
    }

/* youtube button */

/* lightbox */

.img-lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .95);
        backdrop-filter: blur(20px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 100000;
        cursor: default; /* Changed from zoom-out as requested */
        transition: opacity .3s ease;
    }

.img-lightbox.open {
        display: flex;
        animation: lbFade .3s ease;
    }

.img-lightbox img {
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
        transform: scale(0.9);
        transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
    }

.img-lightbox.open img {
        transform: scale(1);
    }

@keyframes lbFade {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

/* inline cards (gift & discount) */

.disc-wrap {
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 18px;
        overflow: hidden;
        margin-bottom: 6px;
        background: rgba(255, 255, 255, .01);
        transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    }

.disc-wrap.open {
        border-color: var(--accent-color);
        background: rgba(var(--accent-rgb), .02);
    }

.gift-card,
.disc-header {
        padding: 18px 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        cursor: pointer;
        transition: all .2s;
    }

.gift-card:hover,
.disc-header:hover {
        background: rgba(255, 255, 255, .02);
    }

.gift-icon {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid var(--accent-color);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        flex-shrink: 0;
        box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.25);
        transition: all 0.3s ease;
    }

.gift-card:hover .gift-icon {
        box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.5);
        transform: scale(1.05);
    }

.gift-title {
        font-size: 16px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.01em;
    }

.gift-sub {
        font-size: 11px;
        color: rgba(255, 255, 255, .3);
        font-weight: 500;
        margin-top: 1px;
    }

.gift-arrow,
.disc-chevron {
        margin-left: auto;
        opacity: .3;
        transition: transform .3s;
    }

.disc-wrap.open .disc-chevron {
        transform: rotate(180deg);
        opacity: 1;
        color: var(--accent-color);
    }

.disc-input {
        flex: 1;
        background: rgba(0, 0, 0, .2);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 14px;
        padding: 14px 18px;
        color: #fff;
        font-size: 14px;
        outline: none;
        transition: all .2s;
    }

.disc-input:focus {
        border-color: rgba(255, 255, 255, .3);
        background: rgba(0, 0, 0, .4);
    }

@keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

@keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* reveal animations */

[data-reveal] {
        opacity: 0;
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: var(--reveal-delay, 0ms);
        will-change: transform, opacity;
    }

[data-reveal="fade-up"] {
        transform: translateY(50px);
    }

[data-reveal="fade-down"] {
        transform: translateY(-50px);
    }

[data-reveal="fade-left"] {
        transform: translateX(50px);
    }

[data-reveal="fade-right"] {
        transform: translateX(-50px);
    }

[data-reveal="scale-up"] {
        transform: scale(0.85);
        opacity: 0;
    }

[data-reveal].revealed {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

@media (max-width: 768px) {
/* Keep glass on info card */

  .media-box { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }

/* Buy button — disable shimmer animation on mobile */

  .btn-get {
            animation: none !important;
        }

  .btn-get::after { display: none !important; }

  .btn-get:hover {
            transform: none !important;
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15) !important;
        }

/* Disable expensive decorative orbs */

  .ax-pkg-orb,
  .ax-pkg-reviews-glow,
  .ax-pkg-main-sections::before,
  .ax-pkg-main-sections::after {
            display: none !important;
        }

/* Reviews: keep glass, kill float animation */

  .ax-pkg-review-card {
            animation: none !important;
        }

  .ax-pkg-review-card:hover {
            transform: none !important;
            animation: none !important;
        }

/* Recent payments: keep glass, no hover lift */

  .ax-pkg-payment-card:hover { transform: none !important; }

/* FAQ: keep glass, no hover lift */

  .ax-pkg-faq-item:not(.open):hover {
            transform: none !important;
        }

/* Simpler bg overlay */

  .ax-pkg-bg-overlay {
            background: linear-gradient(180deg, rgba(8,8,10,0.4) 0%, rgba(8,8,10,0.8) 50%, var(--bg-deep) 100%) !important;
        }

/* Cheaper reveal animation */

  [data-reveal] {
            transition-duration: 0.5s !important;
        }

/* Disable tap highlight */

  * { -webkit-tap-highlight-color: transparent; }

/* Layout improvements */

  .pkg-page { padding: 100px 0 60px; }

  .pkg-wrap { padding: 0 16px; }

  .pkg-grid { gap: 24px; }

  .v1-info-card { padding: 24px; }

  .v1-title { font-size: 26px; }

  .price-main { font-size: 32px; }

  .pkg-desc-v2-side {
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
            padding-top: 30px;
        }

  .pkg-desc-v2-side .pkg-desc-v2-sidebar {
            flex: 0 0 auto;
        }

  .pkg-desc-v2-side .v2-ver-title { display: none; }
}

.pkg-pay-clean {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            margin: 10px 0 20px;
                            flex-wrap: wrap;
                        }

.pkg-pay-item {
                            height: 32px;
                            padding: 0 12px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            background: rgba(255, 255, 255, 0.04);
                            border: 1px solid rgba(255, 255, 255, 0.08);
                            border-radius: 8px;
                            transition: 0.3s ease;
                        }

.pkg-pay-item:hover {
                            background: rgba(255, 255, 255, 0.08);
                            border-color: rgba(255, 255, 255, 0.2);
                            transform: translateY(-2px);
                        }

.pkg-pay-item svg {
                            height: 14px;
                            width: auto;
                            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
                        }

.pkg-pay-more-tag {
                            height: 32px;
                            padding: 0 12px;
                            display: flex;
                            align-items: center;
                            font-size: 11px;
                            font-weight: 900;
                            color: rgba(255, 255, 255, 0.4);
                            border-radius: 8px;
                            background: rgba(255, 255, 255, 0.02);
                            border: 1px solid rgba(255, 255, 255, 0.05);
                        }

.disc-feedback-v3 {
                margin-top: 12px;
                padding: 10px 14px;
                border-radius: 8px;
                font-size: 13px;
                font-weight: 700;
                display: none;
                line-height: 1.4;
                animation: discFadeIn 0.3s ease;
            }

@keyframes discFadeIn {
                from { opacity: 0; transform: translateY(-4px); }
                to { opacity: 1; transform: translateY(0); }
            }

.disc-feedback-v3.show { display: block; }

.disc-feedback-v3.ok {
                background: rgba(46, 204, 154, 0.1);
                color: #2ecc9a;
                border: 1px solid rgba(46, 204, 154, 0.3);
            }

.disc-feedback-v3.err {
                background: rgba(255, 87, 87, 0.1);
                color: #ff7a7a;
                border: 1px solid rgba(255, 87, 87, 0.3);
            }

.disc-feedback-v3.loading {
                background: rgba(255, 255, 255, 0.04);
                color: var(--ink-muted);
                border: 1px solid rgba(255, 255, 255, 0.08);
            }

.ax-pkg-main-sections {
        position: relative;
        background: var(--bg-deep);
        overflow: hidden;
        z-index: 5;
        margin-top: -1px;
    }

.ax-pkg-main-sections::before {
        content: '';
        position: absolute;
        top: 20%;
        left: 50%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
        opacity: 0.12;
        transform: translate(-50%, -50%);
        filter: blur(80px);
    }

.ax-pkg-main-sections::after {
        content: '';
        position: absolute;
        bottom: 10%;
        right: 10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
        opacity: 0.06;
        filter: blur(100px);
    }

.ax-pkg-wrap-wide {
        width: 100%;
        max-width: 1760px;
        margin: 0 auto;
        padding: 0 var(--gap-md);
        position: relative;
        z-index: 5;
    }

.ax-pkg-section-head {
        text-align: center;
        margin-bottom: var(--gap-xl);
    }

.ax-pkg-section-kicker {
        display: inline-block;
        padding: 6px 14px;
        background: var(--accent-bg);
        border: 1px solid var(--hairline-accent);
        border-radius: var(--radius-pill);
        font-family: var(--font-body);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--accent-bright);
        margin-bottom: var(--gap-sm);
    }

.ax-pkg-section-title {
        font-family: var(--font-display);
        font-size: clamp(36px, 5vw, 64px);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1;
        color: var(--ink-strong);
        margin: 0 0 var(--gap-sm);
    }

.ax-pkg-section-title em {
        font-style: normal;
        background: linear-gradient(135deg, var(--accent), var(--accent-bright, #c4b5fd));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.ax-pkg-reviews {
        padding: 140px 0;
        position: relative;
        overflow: hidden;
    }

.ax-pkg-reviews-glow {
        position: absolute;
        top: 40%;
        left: 50%;
        width: 800px;
        height: 600px;
        background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        opacity: 0.2;
        pointer-events: none;
        z-index: 0;
    }

.ax-pkg-reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--gap-lg);
        margin-top: var(--gap-xl);
        position: relative;
        z-index: 1;
    }

@media (max-width: 980px) {
  .ax-pkg-reviews-grid { grid-template-columns: 1fr; }
}

.ax-pkg-reviews-stat-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
        margin: 0 auto var(--gap-xl);
        max-width: 900px;
        position: relative;
        z-index: 1;
    }

.ax-pkg-rev-big-num {
        font-family: var(--font-display);
        font-size: 140px;
        font-weight: 900;
        line-height: 0.8;
        color: #ffffff;
        letter-spacing: -5px;
    }

.ax-pkg-rev-stat-mid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
    }

.ax-pkg-rev-stat-stars {
        display: flex;
        gap: 6px;
        color: #fbbf24;
    }

.ax-pkg-rev-stat-stars svg { width: 22px; height: 22px; fill: currentColor; }

.ax-pkg-rev-stat-count {
        font-size: 14px;
        color: var(--ink-muted);
        font-weight: 600;
        opacity: 0.6;
    }

.ax-pkg-rev-stat-right {
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-width: 240px;
        padding-top: 10px;
    }

.ax-pkg-rev-progress-item {
        display: grid;
        grid-template-columns: 24px 1fr 34px;
        align-items: center;
        gap: 12px;
        font-size: 12px;
        color: var(--ink-strong);
        font-weight: 700;
    }

.ax-pkg-rev-progress-bar {
        height: 6px;
        background: rgba(255,255,255,0.05);
        border-radius: 3px;
        overflow: hidden;
        position: relative;
    }

.ax-pkg-rev-progress-bar div {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: var(--accent);
        border-radius: 3px;
    }

.ax-pkg-rev-progress-item span:last-child {
        color: var(--ink-muted);
        text-align: right;
    }

@media (max-width: 850px) {
  .ax-pkg-reviews-stat-row {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

  .ax-pkg-rev-stat-mid { align-items: center; padding-top: 0; }

  .ax-pkg-rev-stat-right { min-width: 100%; width: 100%; }
}

.ax-pkg-review-verified {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: 4px;
        padding: 3px 8px;
        background: var(--accent);
        color: #ffffff;
        border-radius: var(--radius-pill);
        font-family: var(--font-body);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        box-shadow: 0 2px 8px var(--accent-glow);
    }

.ax-pkg-review-verified svg { width: 10px; height: 10px; fill: currentColor; }

.ax-pkg-review-avatar {
        position: relative;
        padding: 2px;
        background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, 0.05));
        border-radius: 50%;
        width: 48px;
        height: 48px;
    }

.ax-pkg-review-avatar img,
.ax-pkg-review-avatar svg {
        border-radius: 50%;
        background: var(--surface);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@keyframes ax-pkg-review-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

.ax-pkg-review-card {
        position: relative;
        overflow: hidden;
        background: rgba(12, 12, 15, 0.15);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        padding: var(--gap-lg);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        animation: ax-pkg-review-float 5s ease-in-out infinite;
    }

.ax-pkg-review-card:nth-child(2) { animation-delay: 1s; }

.ax-pkg-review-card:nth-child(3) { animation-delay: 2s; }

.ax-pkg-review-card:hover {
        animation-play-state: paused;
        transform: translateY(-15px) scale(1.02);
        border-color: var(--accent);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-glow);
    }

.ax-pkg-review-text {
        font-size: 15px;
        line-height: 1.6;
        color: var(--ink);
        margin: 0 0 var(--gap-lg);
        flex: 1;
    }

.ax-pkg-review-stars {
        display: flex;
        gap: 4px;
        color: var(--accent);
        margin-bottom: var(--gap-md);
    }

.ax-pkg-review-stars svg { width: 18px; height: 18px; fill: currentColor; }

.ax-pkg-review-foot {
        display: flex;
        align-items: center;
        gap: 12px;
        border-top: 1px solid var(--hairline);
        padding-top: var(--gap-md);
    }

.ax-pkg-review-meta {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

.ax-pkg-review-name {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 800;
        color: var(--ink-strong);
    }

.ax-pkg-review-role {
        font-family: var(--font-mono);
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--ink-soft);
        letter-spacing: 0.1em;
    }

.ax-pkg-reviews.stars-gold .ax-pkg-rev-stat-stars,
.ax-pkg-reviews.stars-gold .ax-pkg-review-stars {
        color: #fbbf24;
    }

.ax-pkg-recent-payments {
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

.ax-pkg-payments-marquee {
        margin-top: 40px;
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 10px 0;
    }

.ax-pkg-payments-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: axPkgPaymentsMarquee 45s linear infinite;
        will-change: transform;
        backface-visibility: hidden;
    }

@keyframes axPkgPaymentsMarquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

.ax-pkg-payment-card {
        background: rgba(12, 12, 15, 0.15);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 280px;
        transition: all 0.4s var(--ease-premium);
    }

.ax-pkg-payment-card:hover {
        border-color: var(--accent);
        background: rgba(15, 15, 18, 0.7);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow-soft);
    }

.ax-pkg-pay-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), var(--accent-bright));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 800;
        font-size: 15px;
        box-shadow: 0 4px 12px var(--accent-glow-soft);
        flex-shrink: 0;
    }

.ax-pkg-pay-body {
        flex: 1;
        min-width: 0;
    }

.ax-pkg-pay-user {
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 800;
        color: var(--ink-strong);
        display: block;
    }

.ax-pkg-pay-item {
        font-size: 11px;
        color: var(--ink-muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }

.ax-pkg-pay-item em {
        color: var(--accent);
        font-style: normal;
        font-weight: 600;
    }

.ax-pkg-pay-meta {
        text-align: right;
        flex-shrink: 0;
    }

.ax-pkg-pay-price {
        font-family: var(--font-mono);
        font-size: 13px;
        font-weight: 700;
        color: var(--ink-strong);
        display: block;
    }

.ax-pkg-pay-time {
        font-size: 9px;
        font-weight: 600;
        color: var(--ink-soft);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

.ax-pkg-faq {
        padding: 80px 0 140px;
        position: relative;
    }

.ax-pkg-faq-list {
        max-width: 820px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

.ax-pkg-faq-item {
        position: relative;
        background: rgba(12, 12, 15, 0.15);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

.ax-pkg-faq-item:not(.open):hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

.ax-pkg-faq-item.open {
        background: var(--accent-bg);
        border-color: var(--accent);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 24px var(--accent-glow);
    }

.ax-pkg-faq-head {
        padding: 22px 28px;
        display: flex;
        align-items: center;
        gap: 20px;
        cursor: pointer;
        user-select: none;
    }

.ax-pkg-faq-num {
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 800;
        color: var(--accent);
        letter-spacing: 0.06em;
        flex-shrink: 0;
        min-width: 28px;
    }

.ax-pkg-faq-item.open .ax-pkg-faq-num {
        text-shadow: 0 0 12px var(--accent-glow);
    }

.ax-pkg-faq-title {
        font-family: var(--font-display);
        font-size: 17px;
        font-weight: 700;
        color: var(--ink-strong);
        margin: 0;
        flex: 1;
        line-height: 1.4;
    }

.ax-pkg-faq-icon {
        width: 18px;
        height: 18px;
        color: var(--ink-muted);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        flex-shrink: 0;
    }

.ax-pkg-faq-item.open .ax-pkg-faq-icon {
        transform: rotate(45deg);
        color: var(--accent);
    }

.ax-pkg-faq-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

.ax-pkg-faq-content {
        padding: 0 22px 24px 76px;
        font-size: 15px;
        line-height: 1.7;
        color: var(--ink-muted);
    }

@media (max-width: 640px) {
  .ax-pkg-faq-head { padding: 18px 20px; gap: 14px; }

  .ax-pkg-faq-num { font-size: 12px; min-width: 22px; }

  .ax-pkg-faq-title { font-size: 15px; }

  .ax-pkg-faq-content { padding: 0 20px 20px 56px; font-size: 14px; }
}
