/* ===== PRODUCT PAGE PREMIUM STYLES — KINEED V2 ===== */

:root {
    --teal-primary: #1e8789;
    --teal-dark: #186a6b;
    --teal-light: #d4f0f0;
    --yellow-accent: #f1f4a0;
    --text-dark: #0f172a;
    --text-gray: #64748B;
    --bg-light: #F8FAFA;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(30, 135, 137, 0.15);
    --radius: 16px;
    --gold: #C5A021;
    --gold-hover: #b08d1a;
    --danger: #ef4444;
}

/* ========== BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.product-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== HEADER ========== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--teal-primary);
    letter-spacing: -1px;
    text-decoration: none;
}

/* ========== SKELETON ========== */
.product-loading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite ease-in-out;
    border-radius: var(--radius);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-gallery {
    aspect-ratio: 1;
    border-radius: 24px;
}

.skeleton-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.skeleton-title {
    height: 48px;
    width: 85%;
}

.skeleton-price {
    height: 40px;
    width: 35%;
}

.skeleton-text {
    height: 120px;
    width: 100%;
}

.skeleton-btn {
    height: 56px;
    width: 60%;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 24px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.breadcrumb a:hover {
    color: var(--teal-primary);
}

.breadcrumb .sep {
    opacity: .4;
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}

/* ========== PRODUCT SECTION ========== */
.product-section {
    padding: 40px 0 60px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

/* Gallery */
.gallery-container {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: 24px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.gallery-main:hover img {
    transform: scale(1.06);
}

.gallery-zoom-hint,
.gallery-counter {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    background: rgba(15, 23, 42, .82);
    color: #fff;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(8px);
}

.gallery-zoom-hint { right: 18px; bottom: 18px; padding: 10px 13px; }
.gallery-counter { left: 18px; bottom: 18px; padding: 10px 12px; }

.gallery-nav {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, .32);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .14);
    transform: translateY(-50%);
    cursor: pointer;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-nav:hover { color: var(--teal-primary); transform: translateY(-50%) scale(1.06); }

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.thumb {
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--white);
    transition: all .3s;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    appearance: none;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb:hover {
    transform: translateY(-2px);
    border-color: var(--teal-primary);
}

.thumb.active {
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(30, 135, 137, .12);
}

body.lightbox-open { overflow: hidden; }
.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 88px;
    background: rgba(2, 6, 23, .92);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}
.product-lightbox.active { opacity: 1; visibility: visible; }
.product-lightbox > img {
    max-width: min(1100px, 90vw);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,.42);
}
.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.13);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}
.lightbox-close { top: 22px; right: 24px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--teal-primary); }

@media (max-width: 700px) {
    .gallery-thumbs { display: flex; overflow-x: auto; padding: 2px 2px 8px; scroll-snap-type: x proximity; }
    .gallery-thumbs .thumb { flex: 0 0 76px; scroll-snap-align: center; }
    .gallery-nav { width: 38px; height: 38px; }
    .gallery-zoom-hint { font-size: 0; width: 40px; height: 40px; padding: 0; display: grid; place-items: center; }
    .gallery-zoom-hint i { font-size: .9rem; }
    .product-lightbox { padding: 68px 12px 82px; }
    .lightbox-nav { top: auto; bottom: 18px; }
    .lightbox-prev { left: calc(50% - 62px); }
    .lightbox-next { right: calc(50% - 62px); }
}

/* ========== PRODUCT INFO ========== */
.product-info {
    padding-top: 8px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--teal-primary);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--teal-primary);
    border-radius: 2px;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -.03em;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #f59e0b;
    font-size: .95rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: .82rem;
    color: var(--text-gray);
}

.rating-count span {
    color: var(--teal-primary);
    font-weight: 700;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: #1A8A3C;
    background: #E8F7EE;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.stock-badge.oos {
    color: var(--danger);
    background: #fef2f2;
}

.stock-badge .stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1A8A3C;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(26, 138, 60, .4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(26, 138, 60, 0);
    }
}

/* Price */
.price-block {
    margin-bottom: 28px;
}

.price-main {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -.04em;
    line-height: 1;
}

.price-old {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-right: 12px;
    font-weight: 500;
}

/* Variations */
.variation-group {
    margin-bottom: 24px;
}

.variation-label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-option {
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    background: var(--white);
}

.variation-option:hover {
    border-color: var(--teal-primary);
    background: #f0fdfa;
}

.variation-option.selected {
    border-color: var(--teal-primary);
    background: #f0fdfa;
    color: var(--teal-dark);
    box-shadow: 0 0 0 3px rgba(30, 135, 137, .12);
}

/* QTY Control */
.qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    height: 50px;
    overflow: hidden;
    background: var(--white);
}

.qty-btn {
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    background: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.qty-btn:hover {
    background: #f0fdfa;
    color: var(--teal-primary);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    outline: none;
    background: transparent;
    font-family: inherit;
}

/* CTA Group */
.cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.btn-buy,
.btn-cart {
    height: 56px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all .3s;
    border: none;
    font-family: inherit;
}

.btn-buy {
    background: #dc2626;
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-buy:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.btn-cart {
    background: var(--text-dark);
    color: var(--white);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 700;
    background: #25D366;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
    text-decoration: none;
    margin-bottom: 32px;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-strip .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    transition: all .3s;
}

.trust-strip .trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--teal-primary);
}

.trust-strip .trust-item i {
    font-size: 1.4rem;
    color: var(--teal-primary);
    flex-shrink: 0;
}

.trust-strip .trust-item span {
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    font-size: .88rem;
}

.trust-strip .trust-item small {
    color: var(--text-gray);
    font-size: .78rem;
}

/* ========== TABS ========== */
.tabs-section {
    padding: 60px 0;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 40px;
    gap: 32px;
}

.tab-btn {
    padding: 14px 0;
    font-weight: 700;
    color: var(--text-gray);
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2.5px;
    transition: all .3s;
    font-size: .95rem;
    cursor: pointer;
    font-family: inherit;
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: var(--teal-primary);
    border-bottom-color: var(--teal-primary);
}

.tab-panel {
    display: none;
    padding: 16px 0;
    line-height: 1.8;
    font-size: 1rem;
    color: #1e293b;
    text-align: left;
}

.tab-panel.active {
    display: block;
    animation: tabFade .4s ease-out;
}

@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ========== RELATED SECTION — CAROUSEL ========== */
.related-section {
    padding: 80px 0 60px;
    background: var(--bg-light);
    border-top: 1px solid #e2e8f0;
}

.related-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.related-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.related-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -.02em;
}

.carousel-arrows {
    display: flex;
    gap: 8px;
}

.carousel-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
    transition: all .3s;
}

.carousel-arrow:hover {
    background: var(--teal-primary);
    color: var(--white);
    border-color: var(--teal-primary);
    transform: scale(1.05);
}

/* Marquee auto-scroll */
.marquee-viewport {
    overflow: hidden;
    position: relative;
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee-viewport:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track .product-card h3 {
    font-size: 14px !important;
    line-height: 1.3;
    margin-top: 8px;
    font-weight: 700;
}

.marquee-track .product-card {
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
}

/* Payment Banner */
.payment-banner {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.payment-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== STICKY BAR ========== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid #e2e8f0;
    padding: 14px 0;
    transform: translateY(100%);
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.06);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--white);
    border: 1px solid #e2e8f0;
}

.sticky-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-dark);
}

.sticky-price {
    font-weight: 800;
    color: var(--teal-primary);
    font-size: 1.15rem;
}

.btn-add-sticky {
    height: 46px;
    padding: 0 32px;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(197, 160, 33, 0.3);
}

.btn-add-sticky:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .product-section {
        gap: 40px;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .marquee-track .product-card {
        min-width: 240px;
        max-width: 240px;
    }
}

@media (max-width: 850px) {
    .product-section {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .gallery-container {
        position: static;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .product-info {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .cta-group {
        grid-template-columns: 1fr;
    }

    .header {
        padding: 12px 24px;
    }

    .nav {
        display: none !important;
    }

    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .marquee-track .product-card {
        min-width: 220px;
        max-width: 220px;
    }
}

@media (max-width: 600px) {
    .product-container {
        padding: 0 16px;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .price-main {
        font-size: 2rem;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .sticky-product-info {
        display: none;
    }

    .sticky-bar-inner {
        justify-content: center;
    }

    .sticky-actions {
        width: 100%;
    }

    .btn-add-sticky {
        width: 100%;
    }

    .product-loading {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        gap: 16px;
        overflow-x: auto;
    }

    .logo {
        font-size: 22px;
    }

    .header-actions {
        gap: 12px;
    }

    .marquee-track .product-card {
        min-width: 200px;
        max-width: 200px;
    }
}

.planeed-cta {
    grid-template-columns: 1fr;
}

.planeed-sub-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(5px);
}

.planeed-sub-modal.active {
    display: flex;
}

.planeed-sub-dialog {
    position: relative;
    width: min(92vw, 500px);
    background: #fff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
    animation: planeedModalIn .24s ease;
}

@keyframes planeedModalIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.planeed-sub-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.planeed-sub-close:hover {
    color: #0f172a;
}

.planeed-sub-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 14px 35px rgba(34, 197, 94, 0.28);
}

.planeed-sub-dialog h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 1.55rem;
    font-weight: 800;
    text-align: center;
}

.planeed-sub-copy {
    margin: 0 0 26px;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
}

.planeed-sub-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.planeed-sub-form label {
    color: #64748b;
    font-size: .84rem;
    font-weight: 700;
}

.planeed-sub-form input {
    width: 100%;
    height: 50px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 15px;
    color: #0f172a;
    font: inherit;
    background: #f8fafc;
}

.planeed-sub-form input:focus {
    outline: none;
    border-color: #22c55e;
    background: #fff;
}

.planeed-sub-submit {
    height: 56px;
    margin-top: 12px;
    border: 0;
    border-radius: 14px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
}

.planeed-sub-submit:hover {
    background: #1e293b;
}

.planeed-sub-note {
    margin: 16px 0 0;
    color: #64748b;
    font-size: .82rem;
    text-align: center;
}
