:root {
    /* Cebastian Co Colors */
    --bg-dark: #07080c;
    --card-dark: #0d1018;
    --card-teal: rgba(20, 184, 166, 0.15);
    --card-black: rgba(0, 0, 0, 0.3);

    --text-dark: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.74);

    --accent-red: #fbbf24;
    --accent-green: #14b8a6;
    --ceb-gold: #fbbf24;
    --ceb-teal: #14b8a6;

    --border-radius-lg: 32px;
    --border-radius-md: 20px;
    --border-radius-sm: 12px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(20, 184, 166, 0.1);

    --font-kinetic: 'Exo 2', sans-serif;
    --font-inter: 'Inter', sans-serif;

    --transition-fast: all 0.2s cubic-bezier(0, 0, 0.2, 1);
    --transition-kinetic: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);

    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    --bg-kinetic: repeating-linear-gradient(45deg, rgba(20, 184, 166, 0.05), rgba(20, 184, 166, 0.05) 1px, transparent 1px, transparent 10px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-inter);
    color: var(--text-dark);
    min-height: 100vh;
    padding: 1.5rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    background-image:
        var(--bg-kinetic),
        radial-gradient(1200px 800px at 75% -10%, rgba(15, 118, 110, .18), transparent 60%),
        radial-gradient(900px 700px at 15% 10%, rgba(245, 158, 11, .10), transparent 62%);
}

/* Inner page identity system */
body.inner-page .page-header {
    width: 100%;
    max-width: 1400px;
    padding: 1rem 0 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1rem;
}

body.inner-page .page-header p {
    color: var(--text-muted);
}

body.about-page {
    background-image:
        repeating-linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(251, 191, 36, 0.05) 1px, transparent 1px, transparent 12px),
        radial-gradient(900px 600px at 8% -8%, rgba(251, 191, 36, 0.18), transparent 64%),
        radial-gradient(900px 700px at 92% 12%, rgba(20, 184, 166, 0.12), transparent 62%),
        var(--bg-dark);
}

body.about-page .marquis-container {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 48%, #f59e0b 100%);
    color: #0b0d12;
}

body.about-page .highlight-text {
    color: #fbbf24;
    text-shadow: 0 8px 24px rgba(251, 191, 36, 0.24);
}

body.about-page .bento-item {
    border-color: rgba(251, 191, 36, 0.18);
}

body.about-page .bento-item:hover {
    border-color: rgba(251, 191, 36, 0.38);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.82), 0 0 36px rgba(251, 191, 36, 0.14);
}

body.contact-page {
    background-image:
        repeating-linear-gradient(45deg, rgba(20, 184, 166, 0.06), rgba(20, 184, 166, 0.06) 1px, transparent 1px, transparent 11px),
        radial-gradient(980px 620px at 12% -10%, rgba(20, 184, 166, 0.2), transparent 65%),
        radial-gradient(760px 660px at 92% 15%, rgba(99, 102, 241, 0.14), transparent 60%),
        var(--bg-dark);
}

body.contact-page .marquis-container {
    background: linear-gradient(90deg, #0f766e 0%, #14b8a6 46%, #0f766e 100%);
    color: #f5fffe;
}

body.contact-page .highlight-text {
    color: #14b8a6;
    text-shadow: 0 8px 24px rgba(20, 184, 166, 0.22);
}

body.contact-page .bento-item {
    border-color: rgba(20, 184, 166, 0.2);
}

body.contact-page .bento-item:hover {
    border-color: rgba(20, 184, 166, 0.42);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.82), 0 0 34px rgba(20, 184, 166, 0.18);
}

body.contact-page input,
body.contact-page textarea {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.contact-page input:focus,
body.contact-page textarea:focus {
    outline: none;
    border-color: rgba(20, 184, 166, 0.8) !important;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
    background: rgba(20, 184, 166, 0.08) !important;
}

body.shop-page {
    background-image:
        repeating-linear-gradient(160deg, rgba(96, 165, 250, 0.05), rgba(96, 165, 250, 0.05) 1px, transparent 1px, transparent 10px),
        radial-gradient(1100px 700px at 84% -14%, rgba(59, 130, 246, 0.18), transparent 62%),
        radial-gradient(900px 700px at 8% 10%, rgba(16, 185, 129, 0.12), transparent 66%),
        var(--bg-dark);
}

body.shop-page .marquis-container {
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #1d4ed8 100%);
    color: #eef4ff;
}

body.shop-page .highlight-text {
    color: #60a5fa;
    text-shadow: 0 8px 24px rgba(59, 130, 246, 0.28);
}

body.shop-page .bento-item {
    border-color: rgba(96, 165, 250, 0.2);
}

body.shop-page .card-cta .ceb-btn {
    background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
    color: #f7fbff;
}

body.shop-page .card-cta .ceb-btn:hover {
    filter: brightness(1.08);
}

body.policies-page {
    background-image:
        repeating-linear-gradient(30deg, rgba(251, 191, 36, 0.04), rgba(251, 191, 36, 0.04) 1px, transparent 1px, transparent 12px),
        radial-gradient(980px 640px at 8% -10%, rgba(251, 191, 36, 0.14), transparent 64%),
        radial-gradient(950px 700px at 92% 10%, rgba(147, 51, 234, 0.12), transparent 66%),
        var(--bg-dark);
}

body.policies-page .marquis-container {
    background: linear-gradient(90deg, #a16207 0%, #f59e0b 52%, #a16207 100%);
    color: #16110a;
}

body.policies-page .highlight-text {
    color: #f59e0b;
    text-shadow: 0 8px 24px rgba(245, 158, 11, 0.28);
}

body.policies-page .bento-item {
    border-color: rgba(245, 158, 11, 0.22);
}

body.policies-page .bento-item.bg-teal {
    background: linear-gradient(150deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.15) 100%);
    border-color: rgba(245, 158, 11, 0.4);
}

/* --- Kinetic Marquis --- */
.marquis-container {
    width: 100vw;
    background: var(--ceb-teal);
    color: #000;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-family: var(--font-kinetic);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
}

.marquis-content {
    display: inline-block;
    animation: marquis 20s linear infinite;
}

.marquis-item {
    padding: 0 2rem;
}

@keyframes marquis {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Global Footer & Sponsor --- */
.global-footer {
    width: 100%;
    max-width: 1400px;
    margin-top: 5rem;
    padding: 4rem 2rem;
    border-top: var(--border-glass);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: var(--ceb-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-style: italic;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.sponsor-box {
    background: rgba(251, 191, 36, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--ceb-gold);
    text-align: center;
}

.sponsor-box h3 {
    margin-bottom: 1rem;
}

.kinetic-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    text-decoration: none;
    transform: skew(-10deg);
    transition: var(--transition-fast);
}

.kinetic-btn:hover {
    background: var(--ceb-teal);
    transform: skew(-10deg) scale(1.05);
}

/* Kinetic Utility */
.k-text {
    font-family: var(--font-kinetic);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
}

.k-glitch:hover {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* --- Top Nav --- */
.top-nav {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 2rem 0;
    z-index: 50;
}

.nav-brand {
    font-family: var(--font-outfit);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.cart-toggle {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 30px;
    border: var(--border-glass);
    transition: var(--transition-smooth);
}

.cart-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-toggle svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    background: var(--ceb-teal);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background aesthetic accents */
.bg-spring {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.bg-glow-1 {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 15s infinite alternate;
}

.bg-glow-2 {
    position: absolute;
    bottom: 20%;
    right: 25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 20s infinite alternate-reverse;
}

.floating-blob {
    position: absolute;
    top: 40%;
    left: 45%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: floatBlob 25s infinite linear;
}

@keyframes pulseGlow {
    from {
        transform: scale(1);
        opacity: 0.5;
    }

    to {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* --- Buttons --- */
.ceb-btn {
    background: #fff;
    color: #0b0d12;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-inter);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.ceb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.ceb-btn:active {
    transform: translateY(0);
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 8px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-outfit);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight-text {
    font-family: var(--font-kinetic);
    font-size: 4rem;
    font-weight: 900;
    color: var(--ceb-gold);
    text-transform: uppercase;
    font-style: italic;
    line-height: 0.9;
}

.highlight-bg {
    background: rgba(20, 184, 166, 0.15);
    color: var(--accent-green);
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
}

.positive-growth {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Bento Grid Container --- */
.bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px;
    z-index: 10;
}

/* Base Card Styling */
.bento-item {
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    border: var(--border-glass);
    transition: var(--transition-smooth);
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.8s both;
    backdrop-filter: blur(12px);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.bento-item:hover {
    transform: translate3d(0, -5px, 0) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: rgba(20, 184, 166, 0.3);
}

/* Float & Pulse Utilities */
.float-anim {
    animation: fadeUp 0.8s both, floatY 6s ease-in-out infinite;
}

.pulse-anim {
    animation: fadeUp 0.8s both, pulseScale 4s ease-in-out infinite;
}

.float-anim:hover,
.pulse-anim:hover {
    animation-play-state: paused;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.bg-teal {
    background-color: var(--card-teal);
}

.bg-dark {
    background-color: var(--card-dark);
}

.bg-black {
    background-color: var(--card-black);
}

/* --- Specific Layout Mapping --- */
#card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    align-items: center;
    text-align: center;
}

/* Progress */
#card-6 {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    justify-content: space-between;
}

/* Agency Title */
#card-8 {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
    justify-content: space-between;
}

/* Membership */

#card-2 {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
}

/* Hype */
#card-5 {
    grid-column: 2 / 4;
    grid-row: 2 / 5;
    padding: 0;
    box-shadow: none;
    overflow: visible;
    border: none;
    background: transparent;
    backdrop-filter: none;
}

/* Showcase Model */
#card-9 {
    grid-column: 2 / 4;
    grid-row: 5 / 6;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Vision */

#card-3 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

/* CTA / Quick Add */
#card-4 {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
    justify-content: flex-start;
}

/* Trust Badges */
#card-7 {
    grid-column: 4 / 5;
    grid-row: 4 / 5;
    align-items: center;
    justify-content: center;
}

/* Logo */
#card-10 {
    grid-column: 4 / 5;
    grid-row: 5 / 6;
    background: var(--card-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Star */


/* --- Card specifics --- */

/* Card 1: Progress */
.card-progress .card-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.progress-ring-container {
    position: relative;
    margin-bottom: 2rem;
}

.progress-ring__circle {
    stroke-dasharray: 326;
    stroke-dashoffset: 81;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}

.progress-percent {
    font-family: var(--font-outfit);
    font-size: 1.5rem;
    font-weight: 700;
    fill: white;
}

.progress-label {
    font-family: var(--font-inter);
    font-size: 0.6rem;
    text-transform: uppercase;
    fill: var(--text-muted);
}

.card-progress .stats-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Card 2: Promo Info */
.card-promo h2 {
    font-size: 3rem;
    line-height: 1;
    color: var(--ceb-gold);
    text-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.promo-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.promo-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Card 3: Quick Add CTA */
.card-cta {
    position: relative;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(20, 184, 166, 0.2);
    color: var(--ceb-teal);
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-mini {
    margin-bottom: 1.5rem;
}

.price-stock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.product-mini h2 {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.product-price {
    color: var(--text-muted);
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 600;
}

.low-stock {
    color: #ff4d4f;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255, 77, 79, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    animation: flash 2s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.card-cta .ceb-btn {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
}

.card-cta .ceb-btn:hover {
    background: white;
    color: black;
}

/* Card 4: Trust Signals */
.team-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: var(--border-glass);
}

.trust-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Card 5: Central Showcase with Hotspots */
.showcase-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--card-teal);
    border-radius: 300px 300px calc(var(--border-radius-lg)*1.5) calc(var(--border-radius-lg)*1.5);
    background-image: url('assets/images/Instagram Post - Your Stickers Here - 1.jpeg');
    background-size: cover;
    background-position: center top;
    z-index: 1;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05), inset 0 0 80px rgba(0, 0, 0, 0.8);
    border: var(--border-glass);
}

.showcase-bg-new {
    background-image: url('assets/images/Instagram Post - Your Stickers Here - 1.jpeg');
    background-position: center;
}

.countdown-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    padding: 15px 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    color: var(--ceb-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.countdown-timer {
    color: #fff;
    font-family: var(--font-outfit);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.showcase-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 12, 0.8) 0%, transparent 40%);
    border-radius: inherit;
    pointer-events: none;
}

/* Hotspots */
.hotspot {
    position: absolute;
    z-index: 20;
    width: 20px;
    height: 20px;
}

.hotspot-pulse {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.hotspot-pulse::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
    opacity: 0;
}

.hotspot-panel {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(13, 16, 24, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 12px;
    border: var(--border-glass);
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    text-align: center;
}

.hotspot-panel h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hotspot-panel p {
    color: var(--ceb-gold);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.hotspot:hover .hotspot-panel,
.hotspot:focus .hotspot-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-ui {
    position: absolute;
    background: rgba(13, 16, 24, 0.85);
    backdrop-filter: blur(16px);
    border: var(--border-glass);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-hover);
    z-index: 10;
    transition: var(--transition-smooth);
}

.views-widget {
    bottom: 30%;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.play-icon {
    background: var(--ceb-gold);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    padding-left: 2px;
}

.views-count {
    font-weight: 600;
    color: #ffffff;
}

/* Card 6: Agency */
.card-agency {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    z-index: 2;
}

.dark-title .pill-bg {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 4px;
    backdrop-filter: blur(4px);
}

.agency-images {
    display: flex;
    margin-top: auto;
    align-items: flex-end;
    gap: 10px;
}

.agency-img {
    background: #111;
    height: 100px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-img.oval {
    flex: 1;
    border-radius: 60px 60px 0 0;
    background-image: url('assets/images/6227A7F0-E9A5-4357-BAB1-7E93D4FC2B1F.jpeg');
}

.ceb-fabric-new {
    background-image: url('assets/images/Image 1.jpeg') !important;
}

.product-upsell {
    flex: 0.7;
    border-radius: 20px;
    height: 80px;
    background-image: url('assets/images/Instagram Post - Your Stickers Here - 2.jpeg');
    position: relative;
    overflow: hidden;
}

.upsell-bg-new {
    background-image: url('assets/images/Instagram Post - Your Stickers Here - 2.jpeg') !important;
}

.upsell-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.add-to-cart-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card 7: Logo */
.card-logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceb-custom-logo {
    width: 120px;
    height: 120px;
    background: url('assets/images/Image.jpeg') no-repeat center;
    background-size: contain;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
}

/* Membership Tiers */
.tier-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 1.5rem 0;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.tier-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Inner Page Specifics */
.inner-page body {
    padding-top: 0;
}

.page-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-img-placeholder {
    transition: var(--transition-kinetic);
}

.bento-item:hover .product-img-placeholder {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-links a.active {
    color: var(--ceb-gold);
}

.nav-links a:hover {
    color: #fff;
}


/* Card 8: Membership */
.card-membership h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.card-membership p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.membership-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.membership-perks span {
    background: rgba(20, 184, 166, 0.1);
    color: var(--ceb-teal);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.card-membership button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Card 9: Vision / Testimonial Slider */
.card-vision {
    border: 1px solid rgba(20, 184, 166, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.testimonial-slide.exit {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.9);
}

.quote {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-outfit);
    color: #fff;
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1;
}

.author {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.stars {
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--ceb-teal);
    width: 20px;
    border-radius: 3px;
}

/* Card 10: Icon / Star */
.ceb-wings-container {
    width: 60%;
    height: 60%;
    position: relative;
    background: url('assets/images/Image.jpeg') no-repeat center;
    background-size: contain;
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.3));
    opacity: 0.9;
}

.ceb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* Bento Filler Animations */
.bento-filler {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 140px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.bento-filler::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(20, 184, 166, 0.15), transparent 80%),
        linear-gradient(90deg, transparent 49%, rgba(20, 184, 166, 0.05) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(20, 184, 166, 0.05) 50%, transparent 51%);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    animation: fillerPulse 4s infinite ease-in-out;
}

.bento-filler.scanline::after {
    content: '';
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(20, 184, 166, 0.1), transparent);
    animation: scanline 3s infinite linear;
}

@keyframes fillerPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes scanline {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* --- Slide-out Cart --- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: var(--border-glass);
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: var(--border-glass);
}

.close-cart {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empty-cart-msg {
    color: var(--text-muted);
    text-align: center;
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: var(--border-glass);
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-info p {
    color: var(--ceb-gold);
    font-size: 0.9rem;
}

.remove-item {
    background: transparent;
    border: none;
    color: #ff4d4f;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 5px;
}

.cart-footer {
    padding: 2rem;
    border-top: var(--border-glass);
    background: var(--card-dark);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    font-size: 1rem;
    padding: 16px;
    background: var(--ceb-teal);
    border: none;
}

.safe-checkout-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 1rem;
    font-family: var(--font-inter);
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Stagger animations */
.bento-item:nth-child(1) {
    animation-delay: 0.1s;
}

.bento-item:nth-child(2) {
    animation-delay: 0.2s;
}

.bento-item:nth-child(3) {
    animation-delay: 0.3s;
}

.bento-item:nth-child(4) {
    animation-delay: 0.4s;
}

.bento-item:nth-child(5) {
    animation-delay: 0.5s;
}

.bento-item:nth-child(6) {
    animation-delay: 0.6s;
}

.bento-item:nth-child(7) {
    animation-delay: 0.7s;
}

.bento-item:nth-child(8) {
    animation-delay: 0.8s;
}

.bento-item:nth-child(9) {
    animation-delay: 0.9s;
}

.bento-item:nth-child(10) {
    animation-delay: 1.0s;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .bento-container {
        grid-template-columns: repeat(3, 1fr);
    }

    #card-3,
    #card-4,
    #card-7,
    #card-10 {
        grid-column: span 1;
    }

    #card-5 {
        grid-column: 2 / 4;
        grid-row: 2 / 5;
    }
}

@media (max-width: 900px) {
    body {
        padding: 1.5rem;
    }

    .bento-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .bento-item {
        grid-column: span 2 !important;
        grid-row: auto !important;
        height: auto;
    }

    #card-5 {
        height: 500px;
    }
}
