.store-panel {
    position: relative;
    overflow: hidden;
    padding: 34px 34px 30px;
    border: 1px solid rgba(139, 222, 255, 0.14);
    background:
        radial-gradient(circle at 76% 24%, rgba(72, 177, 211, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(24, 29, 36, 0.96), rgba(13, 15, 20, 0.94));
}

.content-panel .store-eyebrow {
    margin: 0 0 8px;
    color: rgba(0, 255, 231, 0.82);
    font-size: 0.76em;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
}

.store-panel h1 {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.08;
}

.store-product-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    margin: 2px -20px 12px;
    isolation: isolate;
}

.store-product-glow {
    position: absolute;
    z-index: -1;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(76, 184, 220, 0.19);
    filter: blur(72px);
}

.store-product-image {
    display: block;
    width: min(100%, 680px);
    height: auto;
    filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.42));
}

.store-product-copy {
    max-width: 630px;
    margin: 0 auto;
}

.content-panel .store-product-copy p {
    margin-bottom: 1em;
    color: rgba(231, 235, 241, 0.82);
    font-size: 1em;
    line-height: 1.65;
}

.content-panel .store-product-copy .store-lead {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.08em;
}

.store-product-copy strong {
    color: #fff;
}

.store-purchase {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 255, 231, 0.2);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.24);
}

.store-purchase > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.92);
}

.store-purchase-label {
    color: rgba(0, 255, 231, 0.78);
    font-size: 0.72em;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.content-panel .store-shipping-note {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82em;
    line-height: 1.45;
    font-weight: normal;
}

.content-panel .store-buy-button {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(0, 255, 231, 0.68);
    border-radius: 10px;
    color: #061110;
    background: #00ffe7;
    box-shadow: 0 0 24px rgba(0, 255, 231, 0.16);
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.content-panel .store-buy-button:hover {
    border-color: #fff;
    color: #050508;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 255, 231, 0.28);
    transform: translateY(-2px);
}

@media (max-width: 680px) {
    .store-panel {
        padding: 28px 18px 22px;
    }

    .store-panel h1 {
        font-size: 2em;
    }

    .store-product-visual {
        min-height: 250px;
        margin: 4px -12px 8px;
    }

    .store-purchase {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .content-panel .store-buy-button {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (prefers-reduced-motion: reduce) {
    .content-panel .store-buy-button {
        transition: none;
    }
}
