:root {
    --bg: #020305;
    --bg-header: rgba(13, 14, 17, 0.7);
    --bg-card: rgba(13, 14, 17, 0.6);
    --primary: #006eff;
    --border: rgba(0, 110, 255, 0.2);
    --text: #f5f5f5;
    --text-dim: #8c8c8c;
    --green: #3CEEA6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--bg);
    background-image: radial-gradient(circle at 50% -20%, rgba(0, 110, 255, 0.25) 0%, #020305 70%);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100dvh;
    position: relative;
}

/* ── Modern Cyber Grid Background ── */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(0, 110, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 110, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 100%);
    pointer-events: none;
    opacity: 0.85;
}

/* Floating Glow Spheres */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: -2;
    pointer-events: none;
    animation: floatGlow 15s infinite alternate ease-in-out;
}
.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 110, 255, 0.4);
    top: -150px;
    left: -100px;
}
.bg-glow-2 {
    width: 550px;
    height: 550px;
    background: rgba(181, 53, 246, 0.4);
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
}
.bg-glow-3 {
    width: 350px;
    height: 350px;
    background: rgba(60, 238, 166, 0.2);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.12;
    animation: floatGlowCenter 18s infinite alternate ease-in-out;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 60px) scale(1.15); }
}

@keyframes floatGlowCenter {
    0% { transform: translate(-50%, -50%) translate(-50px, -30px) scale(0.9); }
    100% { transform: translate(-50%, -50%) translate(50px, 30px) scale(1.1); }
}

a { text-decoration: none; color: inherit; }

/* ── Top Banner ── */
.top-banner {
    background: var(--primary);
    text-align: center;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 600;
}
.top-banner a { color: #fff; }

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 8px;
    max-width: 1320px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), #0044cc);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
}
.logo-icon.sm { width: 32px; height: 32px; font-size: 16px; }
.logo span {
    font-weight: 600;
    font-size: 11px;
    color: var(--text);
    line-height: 1;
}

.search-box {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 6px 14px;
    flex: 1;
    max-width: 360px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.search-box:hover {
    background: rgba(0, 110, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 110, 255, 0.2);
}
.search-box span { color: var(--text-dim); font-size: 13px; }

.search-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
}
.cart-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}
.cart-btn:active { transform: scale(0.95); }
.cart-text { display: none; }

.login-btn {
    background: rgba(245,245,245,0.12);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}
.login-btn:active { transform: scale(0.95); }

/* ── Main ── */
.main {
    flex: 1;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Section */
.section { display: flex; flex-direction: column; gap: 12px; }
.section-label h2 {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(13,14,17,0.5);
    border: 1px solid rgba(0,155,255,0.15);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
}

/* Grid – mobile-first: 2 columns */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ── Product Card ── */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 110, 255, 0.25);
}
.card:active {
    transform: translateY(-2px) scale(0.98);
}

/* Banner wrapper (holds image + esgotado badge) */
.card-banner-wrap {
    position: relative;
    width: 100%;
}

/* Banner image area */
.card-banner {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: #111218;
}
.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo on gradient banner */
.card-banner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.card-banner-logo img.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.banner-name {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    text-transform: uppercase;
}
.banner-sub {
    color: rgba(255,255,255,0.7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Esgotado badge */
.esgotado-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #ff5252;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 82, 82, 0.4);
    z-index: 2;
    text-transform: uppercase;
}

/* Esgotado card dim effect */
.card-esgotado .card-banner,
.card-esgotado .card-banner-css {
    opacity: 0.5;
}
.card-esgotado .card-body {
    opacity: 0.6;
}
.card-esgotado .btn-action {
    background: #333;
    cursor: not-allowed;
}
.card-esgotado .btn-action:active {
    transform: none;
    background: #333;
}
.card-esgotado .btn-bag {
    opacity: 0.4;
    cursor: not-allowed;
}

/* CSS fallback banner (for products without generated images) */
.card-banner-css {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}
.card-banner-css::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: radial-gradient(circle at 30% 40%, currentColor, transparent 60%);
}
.card-banner-css .b-icon {
    font-size: 28px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.card-banner-css .b-name {
    font-size: 11px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card-banner-css .b-sub {
    font-size: 9px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Card Body */
.card-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.card-name {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.card-price {
    font-size: 13px;
    font-weight: 700;
}
.card-pix {
    font-size: 9px;
    color: var(--text-dim);
}
.pix-diamond {
    width: 10px;
    height: 10px;
    fill: var(--green);
}

/* Buttons */
.card-btns {
    display: flex;
    gap: 6px;
    margin-top: auto;
}
.btn-action {
    flex: 1;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 4px;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.15s;
}
.btn-action:active { background: #0055cc; transform: scale(0.97); }

.btn-bag {
    background: #fff;
    border: none;
    border-radius: 6px;
    width: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-bag svg { width: 14px; height: 14px; fill: #000; }
.btn-bag:active { transform: scale(0.9); }

/* Sold out */
.card-soldout {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
}

/* ── Footer ── */
.footer {
    background: var(--bg-header);
    border-top: 1px solid var(--border);
    padding: 24px 12px 16px;
    margin-top: 32px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-brand p { color: var(--text-dim); font-size: 12px; margin-top: 6px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
}
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-col h3 { font-size: 13px; font-weight: 600; }
.footer-col a { color: var(--text-dim); font-size: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-col.center { align-items: center; }

.social-label { color: var(--text-dim); font-size: 12px; margin-bottom: 4px; }
.social-row { display: flex; gap: 8px; }
.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: rgba(88,88,105,0.1);
    border-radius: 50%;
    transition: 0.25s;
}
.social-circle:hover { background: #585869; border-radius: 10px; }
.social-circle:hover svg { fill: #000; }
.social-circle:active { transform: scale(0.9); }

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 20px;
    padding-top: 12px;
    color: var(--text-dim);
    font-size: 11px;
    text-align: center;
}

/* ── Responsive ── */
@media (min-width: 420px) {
    .grid { gap: 12px; }
    .card-name { font-size: 12px; }
    .btn-action { font-size: 10px; padding: 8px 6px; }
}

@media (min-width: 540px) {
    .grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 768px) {
    .search-box { display: flex; }
    .search-mobile { display: none; }
    .cart-text { display: inline; }
    .grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; }
    .container { padding: 24px 16px; }
    .footer-grid { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
    .grid { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 16px; }
}

/* ── Product Details Modal ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-card {
    background: #08090b;
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 92%;
    max-width: 820px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: modalSlideUp 0.3s ease-out;
}
@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}
.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Modal Content Layout */
.modal-header-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
@media (min-width: 640px) {
    .modal-header-section {
        grid-template-columns: 1.2fr 1fr;
    }
}
.modal-banner-container {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(0,155,255,0.15);
}
.modal-banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-meta-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.meta-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sold-count {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 500;
}
.modal-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    background: rgba(60, 238, 166, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    width: fit-content;
}
.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 110, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    width: fit-content;
}

/* Buy Widget Card */
.buy-widget {
    background: #0d0e11;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stock-status {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
}
.widget-price-label {
    font-size: 24px;
    font-weight: 800;
}
.widget-payment-methods {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.payment-title {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
}
.payment-icon-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text);
}
.payment-icon-row svg {
    width: 14px;
    height: 14px;
    fill: var(--green);
}

/* Description Section */
.modal-description-section {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.desc-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.desc-main-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #ff3b30; /* YouTube Red color */
    margin-top: 8px;
}
.desc-sub-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-dim);
    margin-top: -12px;
    margin-bottom: 12px;
}

/* Feature Cards Grid */
.details-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 640px) {
    .details-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.detail-feature-card {
    background: #0d0e11;
    border: 1px solid rgba(255,255,255,0.04);
    border-left: 4px solid #ff3b30;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.feature-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}
.feature-bullet {
    width: 16px;
    height: 16px;
    background: #ff3b30;
    border-radius: 4px;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-item-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}
.feature-item-desc {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* Instruction Banner */
.instruction-card {
    background: #0d0e11;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.instruction-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff9500;
}
.instruction-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}
.instruction-bullet {
    width: 16px;
    height: 16px;
    background: #ff9500;
    border-radius: 4px;
}
.instruction-body {
    border: 1px solid rgba(255,149,0,0.3);
    border-radius: 8px;
    background: rgba(255,149,0,0.03);
    padding: 12px;
}
.instruction-title {
    font-size: 11px;
    font-weight: 700;
    color: #ff9500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.instruction-text {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Guarantee Card */
.guarantee-card {
    background: rgba(52, 199, 89, 0.03);
    border: 1px solid rgba(52, 199, 89, 0.25);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}
.guarantee-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #34c759;
    box-shadow: 0 0 15px rgba(52, 199, 89, 0.2);
}
.guarantee-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}
.guarantee-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.guarantee-main-text {
    font-size: 13px;
    font-weight: 700;
    color: #34c759;
}
.guarantee-sub-text {
    font-size: 11px;
    color: var(--text-dim);
}

/* Terms Card */
.terms-card {
    background: rgba(175, 82, 222, 0.03);
    border: 1px solid rgba(175, 82, 222, 0.25);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.terms-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
}
.terms-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(175, 82, 222, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #af52de;
}
.terms-text {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ── Interactive Cursor Glow & Particle Styles ── */
.cursor-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 110, 255, 0.18) 0%, rgba(181, 53, 246, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -2;
    mix-blend-mode: screen;
    will-change: left, top;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.particle {
    position: absolute;
    pointer-events: none;
    will-change: transform;
}

@keyframes floatUp {
    0% {
        transform: translateY(105vh) rotate(0deg);
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
    }
}

/* Scrollbar in Terms/Cookies Modals */
.terms-scroll-area::-webkit-scrollbar {
    width: 6px;
}
.terms-scroll-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}
.terms-scroll-area::-webkit-scrollbar-thumb {
    background: rgba(0, 110, 255, 0.3);
    border-radius: 4px;
}
.terms-scroll-area::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 110, 255, 0.5);
}

/* ── Hero Section with Mascot ── */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    background: rgba(13, 14, 17, 0.4);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero-section {
        grid-template-columns: 1.3fr 1fr;
        padding: 40px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}
.hero-badge {
    background: rgba(0, 110, 255, 0.1);
    color: #006eff;
    border: 1px solid rgba(0, 110, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }
}
.hero-title span {
    background: linear-gradient(135deg, var(--primary), #b535f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), #0044cc);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s;
    border: 1px solid rgba(0, 110, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 110, 255, 0.25);
    text-align: center;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 255, 0.4);
}
.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s;
    text-align: center;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.mascot-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid rgba(0, 110, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 110, 255, 0.2);
    overflow: hidden;
    transition: all 0.5s ease;
}
@media (min-width: 1024px) {
    .mascot-image-wrapper {
        width: 250px;
        height: 250px;
    }
}
.mascot-image-wrapper:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--primary);
    box-shadow: 0 0 35px rgba(0, 110, 255, 0.4);
}
.mascot-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mascot-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 110, 255, 0.15) 0%, transparent 65%);
    z-index: -1;
    pointer-events: none;
}

/* ── Cart Badge Styles ── */
.cart-btn {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1px solid var(--bg);
}

/* ── Buy Widget (Product Modal) ── */
.buy-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}
.stock-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}
.stock-status {
    color: #34c759;
}
.stock-count {
    color: var(--text-dim);
}
.qty-selector {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 110, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}
.qty-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover {
    background: rgba(0, 110, 255, 0.15);
}
.qty-selector input {
    background: transparent;
    border: none;
    color: #fff;
    width: 44px;
    height: 38px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    outline: none;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-buy-now, .btn-add-cart {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-buy-now {
    background: linear-gradient(135deg, var(--primary), #0044cc);
    color: #fff;
    border: 1px solid rgba(0, 110, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 110, 255, 0.25);
}
.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 255, 0.4);
}
.btn-add-cart {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-add-cart:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ── Shopping Cart Drawer ── */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: rgba(13, 14, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 1px solid rgba(0, 110, 255, 0.2);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.cart-drawer.active {
    right: 0;
}
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.cart-drawer-close {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
}
.cart-drawer-close:hover {
    color: #fff;
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}
.cart-drawer-body::-webkit-scrollbar {
    width: 6px;
}
.cart-drawer-body::-webkit-scrollbar-thumb {
    background: rgba(0, 110, 255, 0.2);
    border-radius: 4px;
}
.cart-drawer-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 110, 255, 0.4);
}
.cart-empty-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-dim);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.cart-empty-message svg {
    opacity: 0.5;
}
.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: background 0.2s;
}
.cart-item:hover {
    background: rgba(255, 255, 255, 0.01);
}
.cart-item-img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.05);
}
.cart-item-logo-fallback {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.05);
}
.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.cart-item-subtitle {
    font-size: 11px;
    color: var(--text-dim);
}
.cart-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.cart-qty-control {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
}
.cart-qty-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-qty-btn:hover {
    background: rgba(0, 110, 255, 0.15);
}
.cart-qty-val {
    width: 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
.cart-item-remove {
    background: transparent;
    border: none;
    color: #ff3b30;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}
.cart-item-remove:hover {
    background: rgba(255, 59, 48, 0.15);
}
.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(13, 14, 17, 0.98);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.cart-total-row span:last-child {
    color: var(--primary);
    font-size: 18px;
}
.btn-checkout {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ── Mobile Search Overlay Styles ── */
.search-box input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 13px;
}
.search-box input::placeholder {
    color: var(--text-dim);
}
@media (max-width: 767px) {
    .search-box {
        display: none !important;
    }
    .search-box.mobile-active {
        display: flex !important;
        position: absolute;
        left: 8px;
        right: 8px;
        top: 6px;
        bottom: 6px;
        background: #0d0e11;
        z-index: 101;
        max-width: none;
        border-color: var(--primary);
        box-shadow: 0 0 15px rgba(0, 110, 255, 0.25);
        border-radius: 8px;
    }
}

/* ── Support Dropdown Styles ── */
.support-dropdown-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.support-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(13, 14, 17, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 110, 255, 0.2);
    border-radius: 10px;
    padding: 6px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 150;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.support-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.support-dropdown a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}
.support-dropdown a svg {
    color: inherit;
    flex-shrink: 0;
}

/* ── Profile Layout & Dashboard Styles ── */
.profile-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .profile-layout {
        grid-template-columns: 240px 1fr;
    }
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.profile-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 14, 17, 0.4);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 14px;
    padding: 16px;
}
.profile-avatar-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}
.profile-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-user-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.profile-user-info p {
    font-size: 11px;
    color: var(--text-dim);
}

.profile-menu {
    background: rgba(13, 14, 17, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
}
.profile-menu-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}
.profile-menu-item.active {
    color: #fff;
    background: rgba(0, 110, 255, 0.08);
}
.profile-menu-item .menu-indicator {
    width: 3px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    left: 0;
    display: none;
}
.profile-menu-item.active .menu-indicator {
    display: block;
}

/* Profile Main Content Area */
.profile-main {
    background: rgba(13, 14, 17, 0.4);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.profile-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.profile-section-desc {
    font-size: 12px;
    color: var(--text-dim);
}

/* Purchase Card Styles */
.purchase-card {
    background: rgba(13, 14, 17, 0.5);
    border: 1px solid rgba(0, 110, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
}
.purchase-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}
.purchase-date {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 500;
}
.btn-view-purchase {
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(0, 110, 255, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.btn-view-purchase:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
}
.purchase-card-body {
    display: flex;
    gap: 16px;
    padding: 16px;
    align-items: center;
}
.purchase-prod-img {
    width: 64px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.purchase-prod-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.purchase-prod-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.purchase-prod-qty {
    font-size: 11px;
    color: var(--text-dim);
}

/* User dropdown on header */
.user-badge-container {
    position: relative;
    display: inline-block;
}
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(13, 14, 17, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 110, 255, 0.2);
    border-radius: 10px;
    padding: 6px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 150;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-dropdown-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
}
.user-dropdown-avatar-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--primary);
}
.user-dropdown-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-dropdown-text {
    display: flex;
    flex-direction: column;
}
.user-dropdown-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dim);
}
.user-dropdown-email {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}
.user-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 4px 0;
}
.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
}
.user-dropdown a:hover {
    color: #fff;
    background: rgba(0, 110, 255, 0.1);
}
.user-dropdown a.logout-link {
    color: #ff3b30;
}
.user-dropdown a.logout-link:hover {
    background: rgba(255, 59, 48, 0.15);
}

/* ── Checkout Page Styles ── */
.checkout-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 1024px) {
    .checkout-grid-layout {
        grid-template-columns: 1.1fr 1.3fr 1fr;
    }
}

.checkout-panel {
    background: rgba(13, 14, 17, 0.4);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.checkout-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pix-payment-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 110, 0.15);
    border-radius: 10px;
    padding: 14px;
}
.pix-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.pix-subtitle {
    font-size: 11px;
    color: var(--text-dim);
}

.validation-msg {
    color: #ff3b30;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.cart-items-count-badge {
    background: rgba(0, 110, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.checkout-item:last-child {
    border-bottom: none;
}
.checkout-item-img-wrap {
    position: relative;
    width: 60px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.checkout-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.checkout-item-details {
    flex: 1;
    min-width: 0;
}
.checkout-item-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.checkout-item-stock {
    font-size: 10px;
    color: #ffb300;
    margin-top: 2px;
}
.checkout-item-remove-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 0;
    text-transform: uppercase;
}
.checkout-item-remove-btn:hover {
    color: #ff3b30;
}
.checkout-item-pricing-wrap {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.checkout-item-price {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.checkout-item-old-price {
    font-size: 11px;
    color: var(--text-dim);
    text-decoration: line-through;
}

.checkout-qty-control {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 2px;
}
.checkout-qty-btn {
    background: none;
    border: none;
    color: #fff;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout-qty-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.checkout-qty-val {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    padding: 0 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 12px;
}
.summary-coupon-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 14px;
}
.summary-coupon-link:hover {
    text-decoration: underline;
}
.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 16px 0;
}
.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.terms-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}
.terms-checkbox-wrap input {
    margin-top: 3px;
    accent-color: var(--primary);
}
.terms-checkbox-wrap label {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.4;
}
.terms-checkbox-wrap label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.terms-checkbox-wrap.invalid {
    border: 1px solid rgba(255, 59, 48, 0.3);
    background: rgba(255, 59, 48, 0.03);
    padding: 8px;
    border-radius: 8px;
}

.btn-generate-payment {
    background: linear-gradient(135deg, var(--primary), #0044cc);
    color: #fff;
    border: 1px solid rgba(0, 110, 255, 0.3);
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    width: 100%;
}
.btn-generate-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 255, 0.35);
}
.btn-generate-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.checkout-item-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.support-dropdown a svg {
    color: inherit;
    flex-shrink: 0;
}

/* ── Login Modal Styles ── */
.login-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 10px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    width: 100%;
}
.login-social-btn:hover {
    background: rgba(0, 110, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 110, 255, 0.15);
    transform: translateY(-1px);
}
.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 10px 0;
}
.login-divider::before, .login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.login-divider:not(:empty)::before {
    margin-right: 12px;
}
.login-divider:not(:empty)::after {
    margin-left: 12px;
}

.login-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    gap: 12px;
    transition: border-color 0.25s;
}
.login-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 110, 255, 0.15);
}
.input-icon {
    color: var(--text-dim);
    display: flex;
    align-items: center;
}
.input-field-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.input-field-wrap label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.input-field-wrap input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    outline: none;
    margin-top: 2px;
}
.input-field-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.btn-submit-login {
    background: linear-gradient(135deg, var(--primary), #0044cc);
    color: #fff;
    border: 1px solid rgba(0, 110, 255, 0.3);
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    width: 100%;
}
.btn-submit-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 255, 0.35);
}
.btn-submit-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* User Profile Badge (logged in state) */
.user-badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    height: 32px;
}
.user-badge-header:hover {
    background: rgba(0, 110, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 110, 255, 0.15);
}
.user-badge-header img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary);
}
..support-dropdown a svg {
    color: inherit;
    flex-shrink: 0;
}

/* ── Admin Dashboard Styles ── */
.admin-product-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px 16px;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .admin-product-row {
        flex-wrap: nowrap;
    }
}
.admin-prod-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-prod-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-price-input-wrap {
    display: flex;
    flex-direction: column;
    width: 90px;
}
.admin-price-input-wrap label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 2px;
}
.admin-price-input-wrap input {
    background: rgba(13, 14, 17, 0.6);
    border: 1px solid rgba(0, 110, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    padding: 6px;
    outline: none;
}
.admin-price-input-wrap input:focus {
    border-color: var(--primary);
}
.btn-admin-save {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 13px;
}
.btn-admin-save:hover {
    background: #0056c6;
    transform: translateY(-1px);
}
.admin-stat-card {
    transition: all 0.25s;
}
.admin-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 255, 0.1);
}
.admin-stat-card div {
    transition: color 0.2s;
}
