.sp-hero {
    padding: 60px 20px 40px;  /* 🔥 reduced bottom */
    background: #f7f9fc;
    margin-top: -80px;   /* 🔥 Pull upward */
    padding-top: 40px;
}


.sp-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
}

/* LEFT SIDE */

.sp-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sp-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.sp-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.sp-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}


.sp-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}



/* GLASS PLAY BUTTON */
.sp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 2rem;
    padding: 22px 26px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all .3s ease;
}

.sp-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255,255,255,0.25);
}


/* SIDEBAR */

.sp-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.sp-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sp-card-body {
    padding: 28px;
}

.sp-pricing {
    text-align: center;
}

.sp-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
}

.sp-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 10px 0;
    color: #111 !important;
}

.sp-price.free {
    color: #2e7d32 !important;
}

.sp-urgency {
    font-size: 0.85rem;
    color: #d32f2f;
    margin-bottom: 20px;
}

/* CTA */

/* =========================================
   PREMIUM CONVERSION BUTTON
========================================= */

.sp-btn-premium {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;

    background: #111827; /* same as products.php */
    color: #fff;

    padding: 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;

    overflow: hidden;
    transition: all .3s ease;
    cursor: pointer;
}

/* Subtle gold hover (not too bright) */
.sp-btn-premium:hover {
    background: #eab308; /* toned gold */
    color: #111;
    transform: translateY(-2px);
}

/* Shimmer (restore properly) */
.sp-btn-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

.sp-btn-premium:hover::before {
    animation: shimmer 0.8s ease forwards;
}

@keyframes shimmer {
    100% { left: 125%; }
}

/* Pulse glow (conversion trigger) */
.sp-btn-premium {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0%   { box-shadow: 0 0 0 rgba(234,179,8,0.0); }
    50%  { box-shadow: 0 0 25px rgba(234,179,8,0.35); }
    100% { box-shadow: 0 0 0 rgba(234,179,8,0.0); }
}

/* Arrow micro animation */
.sp-btn-premium .btn-text {
    display: block;
}

.sp-btn-premium:hover .btn-text {
    letter-spacing: 0.5px;
}

/* Seat counter small */
.btn-seats {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 4px;
}

/* Ripple effect container */
.sp-btn-premium span {
    position: relative;
    z-index: 2;
}

/* =========================
   URGENCY STATES
========================= */

/* Low seat warning */
.sp-btn-premium.low-seats {
    background: #7f1d1d; /* deep red */
    animation: pulseDanger 1.5s infinite;
}

@keyframes pulseDanger {
    0%   { box-shadow: 0 0 0 rgba(220,38,38,0); }
    50%  { box-shadow: 0 0 20px rgba(220,38,38,0.6); }
    100% { box-shadow: 0 0 0 rgba(220,38,38,0); }
}

/* Shake animation */
.sp-btn-premium.shake {
    animation: shakeBtn 0.5s ease;
}

@keyframes shakeBtn {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

/* Dynamic price states */
.sp-price.hot-price {
    color: #dc2626; /* red */
    animation: pricePulse 1.5s infinite;
}

@keyframes pricePulse {
    0% { opacity: 1; }
    50% { opacity: .7; }
    100% { opacity: 1; }
}

.sp-price.normal-price {
    color: #111;
}

.sp-price.discounted-price {
    color: #16a34a; /* green */
}



.sp-btn-secondary {
    display: block;
    text-align: center;
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 10px;
    color: #333;
    margin-top: 8px;
    margin-bottom: 25px;
}



/* Highlights */

.sp-highlights {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 25px;
}

.sp-highlights div {
    margin-bottom: 8px;
}




/* =========================
   INSTRUCTOR
========================= */

/* Instructor */

.sp-instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sp-instructor img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.sp-instructor-label {
    font-size: 0.8rem;
    color: #777;
}

/* Trust */

.sp-trust {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .sp-layout {
        grid-template-columns: 1fr;
    }

    .sp-card {
        position: relative;
        top: 0;
    }
}


/*======Progress Bar====*/

.sp-progress {
    margin: 20px 0;
}

.sp-progress-label {
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.sp-progress-bar {
    height: 8px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
}

.sp-progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg,#ff6a00,#ffcc00);
    animation: progressGrow 1.2s ease forwards;
}

@keyframes progressGrow {
    from { width: 0; }
}

/*====Count Down===*/

.sp-countdown {
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.sp-timer {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d32f2f;
}


/*======Testimonial====*/

.sp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 40px;
}

.sp-testimonial {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    font-size: 0.95rem;
}


/*======FAQ=====*/

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #555;
}

/*====Sticky Mobile CTA===*/

.sp-mobile-cta {
    display: none;
}

@media (max-width: 768px) {

    .sp-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .sp-mobile-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #111;
        padding: 15px;
        text-align: center;
        z-index: 1000;
    }

    .sp-mobile-cta a {
        color: #fff;
        font-weight: 600;
        text-decoration: none;
    }
}


/* SUBTITLE INLINE */
.sp-sub-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.sp-meta-inline {
    font-size: 0.9rem;
    color: #555;
}



/* WHAT YOU'LL LEARN */
.sp-learn-section {
    margin-top: 25px;
}

.sp-learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-top: 15px;
}

.sp-card-description {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* DISCOUNT BESIDE OLD PRICE */

.sp-old-price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 5px;
}

.sp-discount-badge {
    background: #facc15;
    color: #111;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 6px;
}

/* =========================================
   CINEMATIC VIDEO SYSTEM UPGRADE
========================================= */

.sp-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #000;
    cursor: pointer;

    /* Animated gradient border */
    padding: 2px;
    background: linear-gradient(
        120deg,
        #ff6a00,
        #ffcc00,
        #ff6a00
    );
    background-size: 300% 300%;
    animation: borderShift 6s ease infinite;
}

@keyframes borderShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Inner container */
.sp-video-frame-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

/* Thumbnail */
.sp-video-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .4s ease;
}

/* Cinematic overlay */
.sp-video-frame-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.65)
    );
    transition: opacity .4s ease;
}

/* Hover zoom */
.sp-video-frame:hover .sp-video-thumb {
    transform: scale(1.06);
    filter: brightness(0.8);
}

/* Glow on hover */
.sp-video-frame:hover {
    box-shadow:
        0 0 0 2px rgba(255,204,0,0.4),
        0 30px 90px rgba(0,0,0,0.3);
}

/* Play button */
.sp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    font-size: 2.2rem;
    color: #fff;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    transition: all .3s ease;
    z-index: 3;
}

.sp-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video player */
.sp-video-player {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    opacity: 0;
    transition: opacity .6s ease;
}

.sp-video-player.active {
    display: block;
    opacity: 1;
}

/* Progress preview line */
.sp-video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg,#ff6a00,#ffcc00);
    z-index: 4;
}

/* Sticky mini video */
.sp-video-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    height: 158px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 9999;
    background: #000;
    display: none;
}

.sp-video-floating video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ===============================
   PRODUCT HEADER HERO (COMPACT)
================================ */

.ph-hero {
    background: linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
    padding: 45px 20px 30px;   /* 🔥 Reduced height */
    border-bottom: 1px solid #eee;
    position: relative;
    margin-top: -12px;
    overflow: hidden;
}

.ph-inner {
    display: grid;
    justify-content: space-between;
    align-items: center;      /* 🔥 vertically centered */
    gap: 30px;
    grid-template-columns: 1.2fr 0.8fr;
}


.ph-hero::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,200,0,0.0), transparent 70%);
    animation: gradientMove 12s linear infinite;
}

@keyframes gradientMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* BADGE */
.ph-badge {
    display: inline-block;
    background: linear-gradient(90deg,#0E6329,#1f2937);
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 6px; /* 🔥 closer to title */
}

/* TITLE (keep hover effect untouched) */
.ph-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 6px;
    margin-bottom: 6px;
    max-width: 750px;
    position: relative;
}

.ph-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg,#ff6a00,#ffcc00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s ease;
}

.ph-title:hover::after {
    transform: scaleX(1);
}

/* SUBTITLE */
.ph-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Meta row */
.ph-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.9rem;
}

/* META ROW */
.ph-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* LEFT META */
.ph-left-meta {
    display: flex;
    align-items: center;
    gap: 18px; /* space between rating and students */
    flex-wrap: wrap;
}

.sp-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111 !important;
    animation: priceFadeIn .6s ease forwards;
    transform: translateY(10px);
    opacity: 0;
}

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


.sp-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    position: sticky;
    top: 120px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.sp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}




/* Floating enrollment stat */
.ph-floating-stat {
    display: inline-block;
    margin-top: 6px;
    background: linear-gradient(90deg,#ff6a00,#ffcc00);
    color: #111;
    font-weight: 600;
    padding: 8px 16px;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(255,140,0,0.25);
    animation: floatStat 3s ease-in-out infinite;
    border-radius: 8px;
}


/* RATING */
.ph-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ph-stars {
    color: #facc15;
    font-size: 1rem;
}

/* STUDENTS */
.ph-students {
    font-size: 0.9rem;
    color: #444;
}

/* ACTION BUTTONS */
.ph-actions {
    display: flex;
    gap: 14px; /* space between Save & Share */
}

.ph-action-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all .3s ease;
}

.ph-action-btn:hover {
    background: #111;
    color: #fff;
}

/* RIGHT SIDE EMPTY SLOT */
.ph-side-slot {
    min-height: 100px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .ph-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ph-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ph-actions {
        margin-top: 10px;
    }

    .ph-side-slot {
        display: none;
    }
}


@keyframes floatStat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}


/*========Trust Icon====*/

.sp-trust-inline {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    font-size: 0.85rem;
    color: #555;
    flex-wrap: wrap;
}

.sp-trust-inline div {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9fafc;
    padding: 6px 12px;
    border-radius: 30px;
}

/*========Hot Price==========*/

.sp-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sp-heat {
    background: linear-gradient(90deg,#ff6a00,#ffcc00);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: heatPulse 1.8s infinite;
}

@keyframes heatPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); }
    100% { transform: scale(1); }
}


/* ===============================
   RECOMMENDED SECTION
================================ */

.sp-recommend-section {
    padding: 70px 20px;
    background: #fff;
}

.sp-recommend-header {
    text-align: center;
    margin-bottom: 50px;
}

.sp-recommend-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.sp-recommend-header p {
    color: #666;
    font-size: 0.95rem;
}

.sp-recommend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.sp-recommend-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: 0.35s ease;
}

.sp-recommend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.sp-recommend-image {
    height: 190px;
    overflow: hidden;
}

.sp-recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.sp-recommend-card:hover img {
    transform: scale(1.08);
}

.sp-recommend-body {
    padding: 18px;
}

.sp-recommend-body h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.sp-recommend-price {
    font-weight: 600;
    color: #c7a600;
}

/* Responsive */
@media (max-width: 992px) {
    .sp-recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sp-recommend-grid {
        grid-template-columns: 1fr;
    }
}


/*=======Share and Like =====*/

.ph-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    flex-wrap: wrap;
}

.ph-rating-block {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
}

.ph-actions {
    display: flex;
    gap: 10px;
}

.ph-action-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.ph-action-btn:hover {
    background: #111;
    color: #fff;
}

/* RIPPLE EFFECT */
.sp-btn-premium {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(20);
        opacity: 0;
    }
}

/* INSTRUCTOR MINI CARD */

.ph-instructor-card {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.ph-instructor-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(120deg,#facc15,#ff6a00,#facc15);
    background-size: 200% 200%;
    z-index: -1;
    animation: badgeGlow 4s linear infinite;
}

@keyframes badgeGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}


.ph-instructor-card:hover {
    transform: translateY(-5px);
}

.ph-instructor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.ph-instructor-label {
    font-size: .75rem;
    color: #888;
    margin-bottom: 4px;
}

.ph-instructor-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.ph-instructor-stats {
    font-size: .85rem;
    color: #555;
}

.ph-instructor-badge {
    margin-top: 12px;
    background: linear-gradient(90deg,#0E6329,#1f2937);
    color: #fff;
    font-size: .7rem;
    padding: 6px 12px;
    border-radius: 999px;
    display: inline-block;
}

/* GRID INSIDE CARD */
.ph-instructor-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* LEFT SIDE */
.ph-instructor-left {
    flex: 1;
}

/* RIGHT SIDE */
.ph-instructor-features {
    flex: 1;
}

.ph-instructor-features h4 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ph-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ph-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    margin-bottom: 10px;
    color: #444;
}

.ph-feature-icon {
    font-size: 1rem;
}

/* MOBILE FRIENDLY */
@media(max-width:768px){

    .ph-instructor-grid {
        flex-direction: column;
    }

    .ph-instructor-features {
        margin-top: 20px;
    }

}



/*===Save and Share Count===*/

.save-count {
    margin-left: 6px;
    font-size: 0.8rem;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
}

/*=====Added Cart and View Cart===*/

.cart-slide-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right .4s ease;
    z-index: 9999;
    padding: 30px;
}

.cart-slide-panel.active {
    right: 0;
}

/*======Floating Ribbon====*/

.floating-ribbon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(90deg,#111,#facc15);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: floatPulse 2.5s infinite;
}

@keyframes floatPulse {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

