﻿/* ── Reset & Base ───────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0a0a0f;
    --card: #13131a;
    --border: rgba(255,255,255,0.07);
    --accent: #f5c842;
    --accent2: #ff6b35;
    --text: #f0ede8;
    --muted: #8a8799;
    --radius: 24px;
}

body {
    font-family: Roboto;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ── Animated Background Blobs ─────────── */
.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: drift 12s ease-in-out infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f5c842, transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b35, transparent);
    bottom: -80px;
    right: -80px;
    animation-delay: -4s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7c5cfc, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 30px) scale(1.1);
    }
}

/* ── Card ───────────────────────────────── */
.card-container {
    position: relative;
    z-index: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    animation: cardIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── Store Badge ────────────────────────── */
.store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.store-icon {
    font-size: 16px;
}

.store-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Product Image ──────────────────────── */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.card-container:hover .product-image {
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--card) 100%);
}

.image-shine {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    animation: shine 3s ease-in-out infinite alternate;
}

@keyframes shine {
    from {
        opacity: 0.6;
        transform: translate(0,0);
    }

    to {
        opacity: 0.2;
        transform: translate(20px, 20px);
    }
}

/* ── Product Info ───────────────────────── */
.product-info {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-title {
    font-family: Roboto;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text);
}

.product-description {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}

/* ── Price ──────────────────────────────── */
.price-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 4px;
}

.currency {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent);
}

.price-value {
    font-family: Roboto;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

/* ── CTA Button ─────────────────────────── */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #0a0a0f;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 8px 30px rgba(245,200,66,0.25);
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(245,200,66,0.4);
        filter: brightness(1.05);
    }

    .cta-btn:active {
        transform: translateY(0);
    }

.btn-arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ── Footer Note ────────────────────────── */
.footer-note {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    opacity: 0.6;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 480px) {
    .card-container {
        border-radius: 18px;
    }

    .image-wrapper {
        height: 220px;
    }

    .product-title {
        font-size: 22px;
    }
}
