/* =====================================================
   NAKAMA STORE - ESTILO PRINCIPAL
   Premium + Gaming + TCG
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
}

/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid #252525;
    backdrop-filter: blur(12px);
}

.header-content {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo span {
    color: #d4af37;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    position: relative;
    color: #dddddd;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -7px;
    background: #d4af37;
    transition: 0.3s;
}

.menu a:hover {
    color: #ffffff;
}

.menu a:hover::after {
    width: 100%;
}

.cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4af37;
    color: #080808;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s;
}

.cart:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 75% 40%, rgba(212, 175, 55, 0.20), transparent 25%),
        radial-gradient(circle at 20% 70%, rgba(180, 0, 0, 0.15), transparent 30%),
        linear-gradient(135deg, #050505, #151515);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

    background-size: 50px 50px;

    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            #050505 0%,
            rgba(5,5,5,0.92) 40%,
            rgba(5,5,5,0.30) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

.hero-tag {
    display: inline-block;
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.45);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(45px, 6vw, 82px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2px;
    max-width: 850px;
}

.hero h1 span {
    color: #d4af37;
}

.hero p {
    max-width: 650px;
    color: #bcbcbc;
    font-size: 18px;
    margin: 28px 0 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* =====================================================
   BOTONES
===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-primary {
    background: #d4af37;
    color: #080808;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.20);
}

.btn-secondary {
    border: 1px solid #555;
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* =====================================================
   TITULOS
===================================================== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.section-title h2 {
    font-size: 38px;
    margin: 8px 0;
    font-weight: 900;
}

.section-title p {
    color: #999999;
}

/* =====================================================
   CATEGORIAS
===================================================== */

.categories-section {
    padding: 100px 0;
    background: #0c0c0c;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-card {
    min-height: 190px;
    padding: 25px 15px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background: #151515;
    border: 1px solid #252525;
    border-radius: 12px;

    transition: 0.35s;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    background: #191919;
}

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.category-card p {
    color: #888;
    font-size: 12px;
}

/* =====================================================
   PRODUCTOS
===================================================== */

.products-section {
    padding: 100px 0;
    background: #080808;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: #111111;
    border: 1px solid #242424;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.35s;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: #d4af37;
}

.product-image {
    height: 270px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 85px;

    background:
        radial-gradient(circle, rgba(212,175,55,0.15), transparent 60%),
        #171717;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 8px 0 20px;
    font-size: 17px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-bottom strong {
    font-size: 20px;
    color: #ffffff;
}

.product-bottom button {
    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 8px;

    background: #d4af37;
    color: #080808;

    cursor: pointer;
    transition: 0.3s;
}

.product-bottom button:hover {
    transform: scale(1.08);
}

.center-button {
    text-align: center;
    margin-top: 45px;
}

/* =====================================================
   PROMOCION
===================================================== */

.promo-section {
    padding: 90px 0;
    background:
        linear-gradient(
            110deg,
            #151515,
            #0b0b0b
        );

    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.promo-content span {
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.promo-content h2 {
    font-size: 48px;
    line-height: 1;
    margin: 15px 0;
}

.promo-content p {
    max-width: 600px;
    color: #999;
    margin-bottom: 25px;
}

.promo-icon {
    font-size: 170px;
    opacity: 0.8;
}

/* =====================================================
   REDES
===================================================== */

.social-section {
    padding: 100px 0;
    background: #0c0c0c;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.social-card {
    min-height: 160px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #151515;
    border: 1px solid #252525;
    border-radius: 12px;

    transition: 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.social-card > * {
    margin: 4px;
}

.social-card strong {
    font-size: 18px;
}

.social-card span {
    color: #888;
    font-size: 13px;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #050505;
    border-top: 1px solid #222;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px 30px;
}

.footer h2 {
    color: #d4af37;
    margin-bottom: 10px;
}

.footer p {
    color: #888;
}

.social-links {
    margin: 25px 0;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #bbbbbb;
    transition: 0.3s;
}

.social-links a:hover {
    color: #d4af37;
}

.copyright {
    padding-top: 25px;
    border-top: 1px solid #222;
    margin-top: 30px;
    font-size: 12px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu {
        gap: 15px;
    }

}

@media (max-width: 700px) {

    .header-content {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .menu {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        min-height: 580px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 16px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-content h2 {
        font-size: 40px;
    }

    .promo-icon {
        font-size: 100px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 450px) {

    .container {
        width: 92%;
    }

    .logo {
        font-size: 20px;
    }

    .cart span {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   PRODUCTOS DINÁMICOS
===================================================== */

.product-link {
    display: block;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 270px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-placeholder {
    width: 100%;
    height: 270px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 80px;
}

.product-info h3 a {
    color: #ffffff;
    transition: 0.3s;
}

.product-info h3 a:hover {
    color: #d4af37;
}

.stock {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 11px;
}

.agotado {
    background: #8b0000;
    color: white;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #111;
    border: 1px solid #252525;
    border-radius: 12px;
}

.no-products h3 {
    margin-bottom: 10px;
}

.no-products p {
    color: #888;
}
/* =====================================================
   TIENDA
===================================================== */

.shop-header {
    padding: 90px 0;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(212,175,55,0.15),
            transparent 45%
        ),
        #0b0b0b;
    border-bottom: 1px solid #222;
}

.shop-header span {
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.shop-header h1 {
    font-size: 55px;
    font-weight: 900;
    margin: 10px 0;
}

.shop-header p {
    color: #888;
}

.shop-section {
    padding: 70px 0 100px;
    background: #080808;
}

.shop-search {
    display: flex;
    max-width: 700px;
    margin: 0 auto 30px;
}

.shop-search input {
    flex: 1;
    background: #151515;
    border: 1px solid #292929;
    color: white;
    padding: 15px 18px;
    border-radius: 8px 0 0 8px;
    outline: none;
}

.shop-search input:focus {
    border-color: #d4af37;
}

.shop-search button {
    border: none;
    background: #d4af37;
    color: #080808;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    font-weight: 800;
    cursor: pointer;
}

.shop-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 55px;
}

.shop-categories a {
    padding: 9px 15px;
    border: 1px solid #292929;
    border-radius: 30px;
    color: #aaa;
    font-size: 13px;
    transition: 0.3s;
}

.shop-categories a:hover,
.shop-categories a.active {
    background: #d4af37;
    color: #080808;
    border-color: #d4af37;
}

.shop-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.shop-top h2 {
    font-size: 24px;
}

.shop-top span {
    color: #777;
    font-size: 13px;
}

.product-description {
    color: #777;
    font-size: 12px;
    min-height: 38px;
    margin-bottom: 15px;
}

/* =====================================================
   RESPONSIVE TIENDA
===================================================== */

@media (max-width: 600px) {

    .shop-header h1 {
        font-size: 42px;
    }

    .shop-search {
        flex-direction: column;
        gap: 10px;
    }

    .shop-search input,
    .shop-search button {
        border-radius: 8px;
        min-height: 48px;
    }

    .shop-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}
/* =====================================================
   CARRITO
===================================================== */

.cart-section {
    padding: 70px 0 100px;
    background: #080808;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.cart-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    align-items: center;
    gap: 20px;

    background: #111;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 15px;
}

.cart-item-image {
    width: 90px;
    height: 90px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #181818;
    border-radius: 8px;

    font-size: 35px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-item-info span {
    color: #d4af37;
    font-weight: bold;
}

.cart-quantity {
    display: flex;
    gap: 6px;
}

.cart-quantity input {
    width: 65px;
    padding: 9px;
    background: #181818;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
}

.cart-quantity button {
    background: #222;
    color: white;
    border: 0;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.cart-subtotal {
    min-width: 80px;
    text-align: right;
}

.remove-cart {
    color: #888;
    font-size: 18px;
    transition: 0.3s;
}

.remove-cart:hover {
    color: #ff3333;
}

.cart-summary {
    background: #111;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    margin-bottom: 25px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #aaa;
}

.summary-line strong {
    color: white;
}

.cart-summary hr {
    border: 0;
    border-top: 1px solid #292929;
    margin: 20px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin-bottom: 25px;
}

.summary-total strong {
    color: #d4af37;
}

.checkout-button {
    width: 100%;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 13px;
}

.continue-shopping:hover {
    color: #d4af37;
}

.empty-cart {
    text-align: center;
    padding: 100px 20px;
    background: #111;
    border: 1px solid #242424;
    border-radius: 12px;
}

.empty-cart-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.empty-cart p {
    color: #888;
    margin: 10px 0 25px;
}

.add-cart-button {
    width: 40px;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #d4af37;
    color: #080808;

    border-radius: 8px;

    transition: 0.3s;
}

.add-cart-button:hover {
    transform: scale(1.08);
    background: white;
}

/* =====================================================
   RESPONSIVE CARRITO
===================================================== */

@media (max-width: 900px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

}

@media (max-width: 650px) {

    .cart-item {
        grid-template-columns: 70px 1fr auto;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-quantity {
        grid-column: 2 / 3;
    }

    .cart-subtotal {
        grid-column: 2 / 3;
        text-align: left;
    }

    .remove-cart {
        grid-column: 3;
        grid-row: 1;
    }

}
/* =====================================================
   DETALLE DEL PRODUCTO
===================================================== */

.product-detail-section {
    padding: 80px 0 110px;
    background: #080808;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* IMAGEN */

.product-detail-image {
    min-height: 550px;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.15),
            transparent 60%
        ),
        #111;

    border: 1px solid #292929;
    border-radius: 15px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    padding: 30px;

    transition: 0.4s;
}

.product-detail-image:hover img {
    transform: scale(1.04);
}

.product-detail-placeholder {
    font-size: 150px;
}

/* INFORMACIÓN */

.product-detail-category {
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-detail-info h1 {
    font-size: 48px;
    line-height: 1.05;
    margin: 15px 0 20px;
}

.product-detail-price {
    color: #d4af37;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.product-detail-stock {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.stock-active {
    color: #45d483;
    font-weight: bold;
}

.stock-empty {
    color: #ff4545;
    font-weight: bold;
}

.product-detail-stock small {
    color: #777;
}

.product-detail-description {
    padding: 25px 0;
    border-top: 1px solid #252525;
    border-bottom: 1px solid #252525;
    margin-bottom: 25px;
}

.product-detail-description h3 {
    margin-bottom: 10px;
}

.product-detail-description p {
    color: #999;
    line-height: 1.8;
}

/* COMPRA */

.product-buy-form {
    display: flex;
    align-items: end;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.quantity-selector label {
    color: #999;
    font-size: 12px;
}

.quantity-selector input {
    width: 90px;
    height: 48px;

    background: #151515;
    color: white;

    border: 1px solid #333;
    border-radius: 7px;

    padding: 10px;
}

.buy-button {
    height: 48px;
    flex: 1;
    border: 0;
    cursor: pointer;
}

.agotado-button {
    background: #333;
    color: #777;
    cursor: not-allowed;
    width: 100%;
}

.back-store {
    color: #888;
    font-size: 13px;
}

.back-store:hover {
    color: #d4af37;
}

/* RESPONSIVE */

@media (max-width: 850px) {

    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-image {
        min-height: 400px;
    }

    .product-detail-image img {
        height: 400px;
    }

    .product-detail-info h1 {
        font-size: 38px;
    }

}

@media (max-width: 500px) {

    .product-buy-form {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity-selector input {
        width: 100%;
    }

    .product-detail-info h1 {
        font-size: 32px;
    }

}
/* =====================================================
   CHECKOUT
===================================================== */

.checkout-section {
    padding: 70px 0 100px;
    background: #080808;
}

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

.checkout-header span {
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.checkout-header h1 {
    font-size: 45px;
    margin: 10px 0;
}

.checkout-header p {
    color: #777;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.checkout-box {
    background: #111;
    border: 1px solid #292929;
    border-radius: 12px;
    padding: 30px;
}

.checkout-box h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #aaa;
    font-size: 13px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;

    background: #181818;
    border: 1px solid #303030;

    color: white;

    padding: 13px 15px;
    border-radius: 7px;

    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
}

.checkout-product {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.checkout-product strong {
    display: block;
    font-size: 14px;
}

.checkout-product small {
    display: block;
    color: #777;
    margin-top: 5px;
}

.checkout-summary hr {
    border: 0;
    border-top: 1px solid #292929;
    margin: 20px 0;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 21px;
    margin-bottom: 30px;
}

.checkout-total strong {
    color: #d4af37;
}

.payment-title {
    font-size: 16px;
    margin-bottom: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px;

    background: #181818;
    border: 1px solid #292929;

    border-radius: 7px;

    margin-bottom: 10px;

    cursor: pointer;
}

.payment-option:hover {
    border-color: #d4af37;
}

.payment-option input {
    accent-color: #d4af37;
}

.checkout-submit {
    width: 100%;
    border: 0;
    margin-top: 20px;
    cursor: pointer;
}

.checkout-back {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #777;
    font-size: 13px;
}

.checkout-back:hover {
    color: #d4af37;
}

@media (max-width: 850px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 500px) {

    .checkout-header h1 {
        font-size: 34px;
    }

    .checkout-box {
        padding: 20px;
    }

}
/* =====================================================
   CONFIRMACIÓN
===================================================== */

.confirmation-section {
    min-height: 70vh;
    padding: 80px 0;
    background: #080808;

    display: flex;
    align-items: center;
}

.confirmation-box {
    max-width: 700px;
    margin: auto;

    text-align: center;

    background: #111;
    border: 1px solid #292929;
    border-radius: 15px;

    padding: 60px 40px;
}

.confirmation-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d4af37;
    color: #080808;

    border-radius: 50%;

    font-size: 40px;
    font-weight: 900;
}

.confirmation-box > span {
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.confirmation-box h1 {
    font-size: 40px;
    margin: 10px 0 15px;
}

.confirmation-box p {
    color: #999;
}

.order-number {
    display: inline-block;

    margin: 25px 0;

    padding: 12px 20px;

    background: #181818;
    border: 1px solid #292929;

    border-radius: 8px;

    color: #d4af37;

    font-weight: bold;
}

.confirmation-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin: 20px 0 30px;
}

.confirmation-info div {
    background: #181818;
    padding: 18px;
    border-radius: 8px;
}

.confirmation-info span {
    display: block;
    color: #777;
    font-size: 11px;
    margin-bottom: 8px;
}

.confirmation-info strong {
    color: white;
}

.payment-instructions {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;

    padding: 20px;

    margin-bottom: 25px;
}

.payment-instructions h3 {
    margin-bottom: 8px;
}

@media (max-width: 600px) {

    .confirmation-box {
        padding: 40px 20px;
    }

    .confirmation-box h1 {
        font-size: 30px;
    }

    .confirmation-info {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   ADMIN
===================================================== */

.admin-body {
    margin: 0;
    background: #080808;
    color: white;
    font-family: Arial, sans-serif;
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px 1fr;
}

/* SIDEBAR */

.admin-sidebar {
    background: #0d0d0d;
    border-right: 1px solid #242424;
    padding: 30px 15px;
}

.admin-logo {
    padding: 0 15px 35px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

.admin-logo span {
    color: #d4af37;
}

.admin-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-sidebar nav a {
    color: #888;
    text-decoration: none;
    padding: 13px 15px;
    border-radius: 7px;
    transition: .3s;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: #181818;
    color: #d4af37;
}

/* CONTENT */

.admin-content {
    padding: 40px;
    max-width: 1500px;
    width: 100%;
    box-sizing: border-box;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.admin-header span {
    color: #d4af37;
    font-size: 11px;
    letter-spacing: 2px;
}

.admin-header h1 {
    margin: 8px 0 0;
    font-size: 35px;
}

.admin-user {
    color: #888;
}

/* STATS */

.admin-stats {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-bottom: 30px;
}

.admin-stat {
    display: flex;
    align-items: center;
    gap: 18px;

    background: #111;
    border: 1px solid #292929;

    padding: 22px;

    border-radius: 10px;
}

.admin-stat > span {
    font-size: 30px;
}

.admin-stat small {
    display: block;
    color: #777;
    margin-bottom: 5px;
}

.admin-stat strong {
    font-size: 24px;
}

/* PANEL */

.admin-panel {
    background: #111;
    border: 1px solid #292929;
    border-radius: 10px;
    overflow: hidden;
}

.admin-panel-header {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #292929;
}

.admin-panel-header h2 {
    margin: 0;
    font-size: 18px;
}

.admin-panel-header a {
    color: #d4af37;
    text-decoration: none;
    font-size: 13px;
}

/* TABLE */

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    padding: 16px 20px;
}

.admin-table td {
    padding: 18px 20px;
    border-top: 1px solid #222;
    color: #aaa;
}

.admin-table td strong {
    color: white;
}

.status {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 11px;
}

.status-pending {
    color: #d4af37;
    background: rgba(212,175,55,.1);
}

.empty-table {
    text-align: center;
    padding: 40px !important;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
    }

    .admin-content {
        padding: 20px;
    }

}

@media (max-width: 500px) {

    .admin-stats {
        grid-template-columns: 1fr;
    }

}
.admin-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-product img,
.admin-product-placeholder {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 7px;
    background: #1c1c1c;
}

.admin-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.admin-product small {
    display: block;
    color: #666;
    margin-top: 3px;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-actions a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1b1b1b;
    border-radius: 6px;

    text-decoration: none;
}

.status-active {
    color: #6fdc8c;
    background: rgba(111,220,140,.1);
}

.status-inactive {
    color: #ff7777;
    background: rgba(255,119,119,.1);
}

/* FORMULARIOS */

.admin-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.admin-panel {
    padding: 25px;
}

.admin-panel h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
    font-size: 13px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    box-sizing: border-box;

    background: #181818;
    border: 1px solid #303030;

    color: white;

    padding: 12px;

    border-radius: 6px;

    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #d4af37;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.checkbox-label input {
    width: auto;
}

.form-help {
    display: block;
    margin-top: 7px;
    color: #666;
}

.admin-form-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-secondary {
    background: #222;
    color: white;
}

.edit-product-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    background: #181818;
    border-radius: 8px;
    margin-bottom: 20px;
}

@media (max-width: 800px) {

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}
.admin-view-btn {
    display: inline-block;

    padding: 7px 13px;

    background: #1c1c1c;

    color: #d4af37;

    text-decoration: none;

    border-radius: 5px;

    font-size: 12px;
}

.admin-view-btn:hover {
    background: #252525;
}

.order-admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.order-detail {
    padding: 15px 0;
    border-bottom: 1px solid #252525;
}

.order-detail span,
.order-payment span {
    display: block;
    color: #777;
    font-size: 12px;
    margin-bottom: 5px;
}

.order-detail strong,
.order-payment strong {
    color: white;
}

.order-payment {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #292929;
}

.order-products {
    padding: 25px;
}

.order-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid #292929;
}

.order-total span {
    color: #777;
    font-size: 12px;
}

.order-total strong {
    color: #d4af37;
    font-size: 25px;
}

@media (max-width: 800px) {

    .order-admin-grid {
        grid-template-columns: 1fr;
    }

}
.category-admin-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 20px;
}

.category-list {
    display: flex;
    flex-direction: column;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid #252525;
}

.category-item strong {
    display: block;
    color: white;
}

.category-item small {
    display: block;
    margin-top: 5px;
    color: #666;
}

.empty-category {
    color: #666;
    text-align: center;
    padding: 30px;
}

@media (max-width: 800px) {

    .category-admin-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   PUBLICACIONES
========================================= */

.publicaciones-hero {
    padding: 90px 20px;
    background: #101010;
    border-bottom: 1px solid #252525;
}

.publicaciones-hero span {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 3px;
}

.publicaciones-hero h1 {
    margin: 10px 0;
    font-size: 48px;
}

.publicaciones-hero p {
    color: #999;
    max-width: 600px;
}

/* GRID */

.publicaciones-page {
    padding-top: 50px;
    padding-bottom: 80px;
}

.publicaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */

.publicacion-card {
    background: #111;
    border: 1px solid #252525;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.publicacion-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

/* IMAGEN */

.publicacion-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.publicacion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENIDO */

.publicacion-content {
    padding: 25px;
}

.publicacion-date {
    color: #d4af37;
    font-size: 12px;
}

.publicacion-content h2 {
    margin: 10px 0;
    font-size: 22px;
}

.publicacion-content p {
    color: #999;
    line-height: 1.7;
}

.publicacion-link {
    display: inline-block;
    margin-top: 15px;
    color: #d4af37;
    text-decoration: none;
}

.publicacion-link:hover {
    text-decoration: underline;
}

/* VACÍO */

.empty-publicaciones {
    text-align: center;
    padding: 100px 20px;
}

.empty-publicaciones h2 {
    font-size: 30px;
}

.empty-publicaciones p {
    color: #777;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .publicaciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .publicaciones-grid {
        grid-template-columns: 1fr;
    }

    .publicaciones-hero h1 {
        font-size: 36px;
    }

}
/* =========================================
   PUBLICACIÓN INDIVIDUAL
========================================= */

.publicacion-page {
    padding: 70px 20px 100px;
}

.publicacion-single {
    max-width: 900px;
    margin: 0 auto;
}

.publicacion-single-date {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.publicacion-single h1 {
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 35px;
}

.publicacion-single-image {
    width: 100%;
    max-height: 550px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 40px;
}

.publicacion-single-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.publicacion-single-content {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.9;
}

.publicacion-single-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #252525;
}

@media (max-width: 600px) {

    .publicacion-page {
        padding-top: 40px;
    }

    .publicacion-single h1 {
        font-size: 34px;
    }

    .publicacion-single-content {
        font-size: 16px;
    }

}
/* =========================================
   VIDEOS
========================================= */

.videos-hero {
    padding: 90px 20px;
    background: #101010;
    border-bottom: 1px solid #252525;
}

.videos-hero span {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 3px;
}

.videos-hero h1 {
    margin: 10px 0;
    font-size: 48px;
}

.videos-hero p {
    color: #999;
    max-width: 600px;
}

.videos-page {
    padding-top: 50px;
    padding-bottom: 80px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: #111;
    border: 1px solid #252525;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-player iframe,
.video-player img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-player a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.95);

    color: #111;

    font-size: 25px;
}

.video-content {
    padding: 25px;
}

.video-content h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.video-content p {
    color: #999;
    line-height: 1.7;
}

.video-date {
    display: block;
    margin-top: 15px;
    color: #d4af37;
    font-size: 12px;
}

.empty-videos {
    text-align: center;
    padding: 100px 20px;
}

.empty-videos h2 {
    font-size: 30px;
}

.empty-videos p {
    color: #777;
}

@media (max-width: 700px) {

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .videos-hero h1 {
        font-size: 36px;
    }

}
/* =========================================
   REDES SOCIALES
========================================= */

.footer-social {
    padding: 35px 0;
    text-align: center;
    border-bottom: 1px solid #252525;
}

.footer-social-title {
    color: #d4af37;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    color: #ccc;
    text-decoration: none;

    border: 1px solid #292929;
    border-radius: 8px;

    transition: 0.25s;
}

.footer-social-link:hover {
    color: #d4af37;
    border-color: #d4af37;
    transform: translateY(-2px);
}

.footer-social-link span {
    font-size: 18px;
}

.footer-copy {
    margin-top: 25px;
}
/* =========================================
   LOGIN ADMINISTRADOR
========================================= */

.admin-login-body {
    margin: 0;
    min-height: 100vh;

    background: #0a0a0a;

    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.admin-login-box {
    background: #111;
    border: 1px solid #292929;
    border-radius: 14px;

    padding: 45px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.admin-login-logo {
    text-align: center;

    font-size: 32px;
    font-weight: 800;
    letter-spacing: 3px;
}

.admin-login-logo span {
    display: block;

    color: #d4af37;

    font-size: 14px;
    letter-spacing: 5px;

    margin-top: 5px;
}

.admin-login-subtitle {
    text-align: center;

    color: #777;

    margin: 15px 0 35px;
}

.admin-login-form .form-group {
    margin-bottom: 20px;
}

.admin-login-form input {
    width: 100%;
    box-sizing: border-box;

    padding: 13px 15px;

    background: #181818;
    color: #fff;

    border: 1px solid #303030;
    border-radius: 7px;

    outline: none;
}

.admin-login-form input:focus {
    border-color: #d4af37;
}

.login-button {
    width: 100%;
    margin-top: 10px;
}

.login-error {
    background: rgba(180, 40, 40, 0.15);

    border: 1px solid rgba(220, 70, 70, 0.4);

    color: #ff8b8b;

    padding: 12px 15px;

    border-radius: 7px;

    margin-bottom: 20px;

    font-size: 14px;
}

.back-store {
    display: block;

    text-align: center;

    margin-top: 25px;

    color: #777;

    text-decoration: none;

    font-size: 14px;
}

.back-store:hover {
    color: #d4af37;
}
.admin-logout {
    margin-top: 25px !important;
    border-top: 1px solid #292929;
    padding-top: 20px !important;
    color: #d66 !important;
}

.admin-logout:hover {
    color: #ff8888 !important;
}
/* =========================================
   ESTADOS DE PEDIDOS
========================================= */

.status-paid {
    background: rgba(40, 180, 100, 0.12);
    color: #65d995;
    border: 1px solid rgba(40, 180, 100, 0.25);
}

.status-processing {
    background: rgba(70, 130, 220, 0.12);
    color: #76a9ff;
    border: 1px solid rgba(70, 130, 220, 0.25);
}

.status-shipped {
    background: rgba(180, 140, 40, 0.12);
    color: #d4af37;
    border: 1px solid rgba(180, 140, 40, 0.25);
}

.status-cancelled {
    background: rgba(200, 60, 60, 0.12);
    color: #ff7777;
    border: 1px solid rgba(200, 60, 60, 0.25);
}
.admin-profile-link {
    display: inline-block;

    margin-top: 8px;

    font-size: 12px;

    color: #d4af37;

    text-decoration: none;
}

.admin-profile-link:hover {
    text-decoration: underline;
}
.panel-label {
    display: block;

    font-size: 11px;

    letter-spacing: 2px;

    color: #d4af37;

    margin-bottom: 5px;
}
/* =========================================
   ACCIONES RÁPIDAS
========================================= */

.admin-quick-actions {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 20px;
}

.quick-action {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    background: #181818;

    border: 1px solid #292929;

    border-radius: 10px;

    color: #fff;

    text-decoration: none;

    transition: 0.2s ease;
}

.quick-action:hover {
    transform: translateY(-2px);

    border-color: #d4af37;

    background: #1d1d1d;
}

.quick-action > span {
    font-size: 28px;
}

.quick-action strong {
    display: block;

    font-size: 14px;

    margin-bottom: 5px;
}

.quick-action small {
    display: block;

    color: #777;

    font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .admin-quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .admin-quick-actions {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   MENSAJES ADMIN
========================================= */

.admin-success {
    padding: 14px 18px;
    margin-bottom: 20px;

    background: rgba(40, 180, 100, 0.12);

    border: 1px solid rgba(40, 180, 100, 0.30);

    border-radius: 8px;

    color: #65d995;

    font-size: 14px;
}
.current-order-status {
    margin: 15px 0 20px;
    color: #999;
}

.status-completed {
    background: rgba(40, 180, 100, 0.12);
    color: #65d995;
    border: 1px solid rgba(40, 180, 100, 0.25);
}
/* =========================================
   BUSCADOR DE PEDIDOS
========================================= */

.order-filters {
    margin-bottom: 20px;
}

.admin-filter-form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-search {
    flex: 1;
    min-width: 250px;
}

.filter-status {
    min-width: 190px;
}

.admin-filter-form label {
    display: block;
    margin-bottom: 8px;

    color: #999;

    font-size: 12px;
    font-weight: 600;
}

.admin-filter-form input,
.admin-filter-form select {
    width: 100%;
    box-sizing: border-box;

    padding: 12px 14px;

    background: #181818;
    color: #fff;

    border: 1px solid #303030;
    border-radius: 7px;

    outline: none;
}

.admin-filter-form input:focus,
.admin-filter-form select:focus {
    border-color: #d4af37;
}

@media (max-width: 700px) {

    .admin-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-search,
    .filter-status {
        width: 100%;
        min-width: 0;
    }

}
/* =========================================
   PAGINACIÓN ADMIN
========================================= */

.admin-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;
}

.admin-pagination a {
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 10px;

    background: #181818;
    color: #aaa;

    border: 1px solid #303030;
    border-radius: 7px;

    text-decoration: none;

    transition: 0.2s;
}

.admin-pagination a:hover {
    color: #d4af37;
    border-color: #d4af37;
}

.admin-pagination a.active {
    background: #d4af37;
    color: #111;

    border-color: #d4af37;

    font-weight: 700;
}
/* =========================================
   REPORTES
========================================= */

.report-period-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 25px;
}

.report-period-summary > div {
    padding: 20px;

    background: #181818;

    border: 1px solid #292929;
    border-radius: 10px;
}

.report-period-summary small {
    display: block;

    color: #888;

    margin-bottom: 8px;
}

.report-period-summary strong {
    display: block;

    color: #fff;

    font-size: 24px;
}

@media (max-width: 600px) {

    .report-period-summary {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   POKEMON SETS
========================================= */

.pokemon-set-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pokemon-set-card {
    display: flex;
    gap: 20px;

    padding: 20px;

    background: #181818;

    border: 1px solid #292929;
    border-radius: 12px;
}

.pokemon-set-logo {
    width: 180px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.pokemon-set-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.pokemon-set-info {
    flex: 1;
}

.pokemon-set-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.pokemon-set-info p {
    margin: 7px 0;

    color: #888;

    font-size: 13px;
}

.pokemon-set-info p strong {
    color: #fff;
}

.pokemon-set-info code {
    color: #d4af37;
}

@media (max-width: 500px) {

    .pokemon-cards-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .pokemon-card-info {
        padding: 10px;
    }

    .pokemon-card-info h3 {
        font-size: 14px;
    }

}
/* =========================================
   POKEMON SINGLES ADMIN
========================================= */

.pokemon-set-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.pokemon-set-header-logo {
    width: 220px;
}

.pokemon-set-header-logo img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.pokemon-set-header p {
    margin: 6px 0;
    color: #888;
}

.pokemon-set-header p strong {
    color: #fff;
}

/* GRID DE CARTAS */

.pokemon-cards-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(210px, 1fr));

    gap: 18px;

    width: 100%;
}

.pokemon-card-admin {
    width: 100%;
    min-width: 0;

    background: #111;

    border: 1px solid #292929;
    border-radius: 12px;

    overflow: hidden;

    transition: 0.25s;
}

.pokemon-card-admin:hover {
    transform: translateY(-4px);
    border-color: #d4af37;
}

.pokemon-card-image {
    width: 100%;

    aspect-ratio: 2.5 / 3.5;

    background: #181818;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px;

    box-sizing: border-box;
}
.pokemon-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.pokemon-card-info {
    padding: 18px;
}

.pokemon-card-number {
    color: #d4af37;
    font-size: 11px;
    font-weight: 700;
}

.pokemon-card-info h3 {
    margin: 6px 0;
    font-size: 17px;
}

.pokemon-rarity {
    color: #777;
    font-size: 12px;

    min-height: 18px;
}

.pokemon-market,
.pokemon-stock-admin {
    display: flex;
    justify-content: space-between;

    gap: 10px;

    padding: 10px 0;

    border-top: 1px solid #252525;

    font-size: 12px;
}

.pokemon-market {
    margin-top: 15px;
}

.pokemon-market span,
.pokemon-stock-admin span {
    color: #777;
}

.pokemon-market strong {
    color: #d4af37;
}

.pokemon-inventory-active {
    margin: 10px 0;

    color: #65d995;

    font-size: 12px;
}

.pokemon-add-inventory {
    width: 100%;
    margin-top: 12px;

    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 1200px) {

    .pokemon-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 850px) {

    .pokemon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pokemon-set-header {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 500px) {

    .pokemon-cards-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   TAGS SINGLES
========================================= */

.single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

    margin: 12px 0;
}

.single-tags span {
    padding: 5px 8px;

    background: #202020;

    border: 1px solid #303030;
    border-radius: 5px;

    color: #aaa;

    font-size: 10px;
}
/* =========================================
   POKEMON SINGLES - TIENDA
========================================= */

.singles-page {
    width: min(1400px, 94%);
    margin: 0 auto;
    padding: 40px 0 80px;
}

/* HERO */

.singles-hero {
    padding: 45px 0;
}

.singles-hero span {
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.singles-hero h1 {
    margin: 8px 0;
    font-size: clamp(32px, 5vw, 55px);
}

.singles-hero p {
    color: #888;
    max-width: 600px;
}

/* FILTROS */

.singles-filters {
    margin-bottom: 35px;
    padding: 20px;

    background: #111;

    border: 1px solid #292929;
    border-radius: 12px;
}

.singles-filters form {
    display: flex;
    align-items: end;
    gap: 15px;
    flex-wrap: wrap;
}

.singles-filters form > div {
    flex: 1;
    min-width: 200px;
}

.singles-filters label {
    display: block;
    margin-bottom: 7px;

    color: #888;
    font-size: 12px;
}

.singles-filters input,
.singles-filters select {
    width: 100%;

    padding: 12px 14px;

    background: #181818;
    color: #fff;

    border: 1px solid #303030;
    border-radius: 7px;

    outline: none;
}

.singles-filters input:focus,
.singles-filters select:focus {
    border-color: #d4af37;
}

/* RESULTADOS */

.singles-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.singles-results-header h2 {
    margin: 0;
}

.singles-results-header span {
    color: #777;
    font-size: 13px;
}

/* GRID */

.singles-public-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(210px, 1fr));

    gap: 20px;
}

/* CARTA */

.single-public-card {
    overflow: hidden;

    background: #111;

    border: 1px solid #292929;
    border-radius: 12px;

    transition: 0.25s;
}

.single-public-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

/* IMAGEN */

.single-public-image {
    aspect-ratio: 2.5 / 3.5;

    padding: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #181818;
}

.single-public-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

/* INFO */

.single-public-info {
    padding: 16px;
}

.single-set-name {
    color: #d4af37;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.single-public-info h3 {
    margin: 7px 0 4px;

    font-size: 17px;
}

.single-number {
    margin: 0;

    color: #777;
    font-size: 11px;
}

/* TAGS */

.single-public-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin: 12px 0;
}

.single-public-tags span {
    padding: 4px 7px;

    background: #202020;

    border: 1px solid #303030;
    border-radius: 4px;

    color: #aaa;

    font-size: 9px;
}

/* STOCK */

.single-public-stock {
    margin: 10px 0;

    color: #69d49a;

    font-size: 11px;
}

/* PRECIO + BOTÓN */

.single-public-bottom {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin-top: 15px;
}

.single-public-price {
    color: #fff;

    font-size: 22px;
}

/* VACÍO */

.singles-empty {
    grid-column: 1 / -1;

    padding: 70px 20px;

    text-align: center;

    background: #111;

    border: 1px solid #292929;
    border-radius: 12px;
}

.singles-empty span {
    font-size: 40px;
}

.singles-empty h3 {
    margin-bottom: 5px;
}

.singles-empty p {
    color: #777;
}

/* RESPONSIVE */

@media (max-width: 600px) {

    .singles-public-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .single-public-info {
        padding: 10px;
    }

    .single-public-info h3 {
        font-size: 14px;
    }

    .single-public-price {
        font-size: 18px;
    }

}
.single-cart-meta {
    margin-top: 6px;
    margin-bottom: 6px;

    color: #777;

    font-size: 11px;
    line-height: 1.5;
}
/* =========================================
   SINGLES DESTACADOS - HOME
========================================= */

.home-singles {
    padding: 70px 0;
}

/* CABECERA */

.home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 30px;

    margin-bottom: 30px;
}

.home-section-header h2 {
    margin: 5px 0 8px;

    font-size: clamp(27px, 4vw, 38px);
}

.home-section-header p {
    margin: 0;

    color: #777;
}

.section-label {
    color: #d4af37;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

/* GRID */

.home-singles-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

/* CARTA */

.home-single-card {
    overflow: hidden;

    background: #111;

    border: 1px solid #292929;
    border-radius: 14px;

    transition: 0.25s;
}

.home-single-card:hover {
    transform: translateY(-5px);

    border-color: #d4af37;
}

/* IMAGEN */

.home-single-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio: 2.5 / 3.5;

    padding: 15px;

    background: #181818;
}

.home-single-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: 0.3s;
}

.home-single-card:hover
.home-single-image img {

    transform: scale(1.03);
}

/* ÚLTIMA CARTA */

.single-last-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    padding: 5px 8px;

    background: #d4af37;
    color: #000;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

/* INFORMACIÓN */

.home-single-info {
    padding: 16px;
}

.home-single-set {
    color: #d4af37;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.home-single-info h3 {
    margin: 6px 0 3px;

    font-size: 17px;
}

.home-single-number {
    margin: 0;

    color: #777;

    font-size: 11px;
}

/* TAGS */

.home-single-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin: 12px 0;
}

.home-single-tags span {
    padding: 4px 7px;

    background: #1d1d1d;

    border: 1px solid #303030;
    border-radius: 4px;

    color: #aaa;

    font-size: 9px;
}

/* PRECIO */

.home-single-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 15px;
}

.home-single-footer small {
    display: block;

    margin-bottom: 2px;

    color: #777;

    font-size: 10px;
}

.home-single-footer strong {
    font-size: 21px;
}

/* CARRITO */

.home-single-cart {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #d4af37;
    color: #000;

    border-radius: 8px;

    text-decoration: none;

    transition: 0.2s;
}

.home-single-cart:hover {
    transform: scale(1.08);
}

/* BOTÓN INFERIOR */

.home-singles-all {
    display: flex;
    justify-content: center;

    margin-top: 35px;
}

/* TABLET */

@media (max-width: 1000px) {

    .home-singles-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}

/* TABLET PEQUEÑA */

@media (max-width: 750px) {

    .home-singles-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .home-section-header {
        align-items: start;
        flex-direction: column;
    }

}

/* CELULAR */

@media (max-width: 480px) {

    .home-singles {
        padding: 45px 0;
    }

    .home-singles-grid {
        gap: 10px;
    }

    .home-single-info {
        padding: 10px;
    }

    .home-single-info h3 {
        font-size: 14px;
    }

    .home-single-footer strong {
        font-size: 17px;
    }

    .home-single-cart {
        width: 38px;
        height: 38px;
    }

}
.singles-filters form {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(160px, 1fr));

    gap: 15px;
    align-items: end;
}

.singles-filters form > div {
    min-width: 0;
}

@media (max-width: 1050px) {

    .singles-filters form {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .singles-filters form {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   ADMIN TCG SET
========================================= */

.tcg-admin-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 18px;
}

/* CARTA */

.tcg-admin-card {
    overflow: hidden;

    background: #111;

    border: 1px solid #292929;
    border-radius: 12px;

    transition: 0.25s;
}

.tcg-admin-card:hover {
    transform: translateY(-4px);
    border-color: #d4af37;
}

/* IMAGEN */

.tcg-admin-image {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    aspect-ratio: 2.5 / 3.5;

    padding: 12px;

    background: #181818;
}

.tcg-admin-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

/* INVENTARIO */

.tcg-owned-badge {
    position: absolute;

    top: 10px;
    right: 10px;

    padding: 5px 8px;

    background: #d4af37;
    color: #000;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 800;
}

/* INFORMACIÓN */

.tcg-admin-info {
    padding: 14px;
}

.tcg-card-number {
    color: #d4af37;

    font-size: 10px;
    font-weight: 700;
}

.tcg-admin-info h3 {
    margin: 5px 0 10px;

    font-size: 15px;
}

/* META */

.tcg-card-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 15px;
}

.tcg-card-meta span {
    padding: 4px 6px;

    background: #1d1d1d;

    border: 1px solid #303030;
    border-radius: 4px;

    color: #aaa;

    font-size: 9px;
}

/* MARKET */

.tcg-market-price {
    margin: 12px 0;
}

.tcg-market-price small {
    display: block;

    color: #777;

    font-size: 9px;

    margin-bottom: 3px;
}

.tcg-market-price strong {
    font-size: 18px;
}

.tcg-market-price span {
    color: #777;

    font-size: 12px;
}

/* BOTÓN */

.tcg-add-button {
    width: 100%;

    display: flex;
    justify-content: center;

    box-sizing: border-box;

    font-size: 11px;
}

/* RESPONSIVE */

@media (max-width: 1250px) {

    .tcg-admin-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 950px) {

    .tcg-admin-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {

    .tcg-admin-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 430px) {

    .tcg-admin-grid {
        grid-template-columns: 1fr;
    }

}
.tcg-admin-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2.5 / 3.5;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #181818;
    border-radius: 8px;
}

.tcg-admin-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}
/* =========================================
   AGREGAR SINGLE TCG
========================================= */

.tcg-inventory-add-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.tcg-inventory-card-preview {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    align-items: start;
}

.tcg-inventory-preview-image {
    width: 100%;
}

.tcg-inventory-preview-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.tcg-inventory-preview-info h2 {
    margin: 8px 0 5px;
}

@media (max-width: 1000px) {

    .tcg-inventory-add-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 650px) {

    .tcg-inventory-card-preview {
        grid-template-columns: 1fr;
    }

    .tcg-inventory-preview-image {
        max-width: 300px;
        margin: 0 auto;
    }

}
/* =========================================
   INVENTARIO TCG
========================================= */

.tcg-inventory-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tcg-inventory-item {
    display: grid;
    grid-template-columns: 150px 1fr;

    background: #111;

    border: 1px solid #292929;
    border-radius: 12px;

    overflow: hidden;
}

.tcg-inventory-item-image {
    padding: 12px;

    background: #181818;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.tcg-inventory-item-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    border-radius: 7px;
}

.tcg-inventory-item-info {
    padding: 15px;
}

.tcg-inventory-item-info h3 {
    margin: 6px 0;
    font-size: 15px;
}

.tcg-inventory-item-info p {
    color: #888;
    font-size: 11px;
}

.tcg-inventory-actions {
    display: flex;
    gap: 7px;

    margin-top: 15px;
}

.tcg-inventory-actions .btn {
    flex: 1;

    display: flex;
    justify-content: center;

    font-size: 10px;
}

/* RESPONSIVE */

@media (max-width: 1300px) {

    .tcg-inventory-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 800px) {

    .tcg-inventory-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 500px) {

    .tcg-inventory-item {
        grid-template-columns: 120px 1fr;
    }

}
/* =========================================
   SELECTOR TCG - SINGLES
========================================= */

.tcg-public-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 25px;
}

.tcg-public-tabs a {
    padding: 10px 16px;

    background: #151515;
    color: #aaa;

    border: 1px solid #292929;
    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;

    transition: 0.2s;
}

.tcg-public-tabs a:hover {
    border-color: #d4af37;
    color: #fff;
}

.tcg-public-tabs a.active {
    background: #d4af37;
    color: #111;

    border-color: #d4af37;

    font-weight: 700;
}

.single-game-name {
    display: block;

    margin-bottom: 4px;

    color: #aaa;

    font-size: 10px;
    font-weight: 700;
}
.home-single-game {
    display: block;

    margin-bottom: 3px;

    color: #888;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
}
/* =========================================
   TCG HOME
========================================= */

.tcg-home-section {
    padding: 70px 0;
}

.tcg-home-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.tcg-home-card {
    min-height: 180px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #111;

    border: 1px solid #292929;
    border-radius: 14px;

    color: inherit;
    text-decoration: none;

    transition: 0.25s;
}

.tcg-home-card:hover {
    transform: translateY(-5px);

    border-color: #d4af37;
}

.tcg-home-card > span {
    margin-bottom: auto;

    font-size: 42px;
}

.tcg-home-card h3 {
    margin: 20px 0 4px;

    font-size: 20px;
}

.tcg-home-card p {
    margin: 0;

    color: #999;

    font-size: 12px;
}

.tcg-home-coming {
    opacity: 0.65;
}

/* TABLET */

@media (max-width: 900px) {

    .tcg-home-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

/* MOBILE */

@media (max-width: 500px) {

    .tcg-home-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   SINGLE BADGE - TIENDA
========================================= */

.product-image {
    position: relative;
}

.shop-single-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    padding: 5px 8px;

    background: #d4af37;
    color: #000;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

/* =====================================================
   CORRECCIÓN FINAL DE IMÁGENES - TIENDA / SINGLES
   Mantiene productos normales y muestra cartas completas
===================================================== */

/*
|--------------------------------------------------------------------------
| PRODUCTOS NORMALES
|--------------------------------------------------------------------------
*/

.products-grid .product-card .product-image {
    position: relative;
    width: 100%;
    height: 290px;
    min-height: 290px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px;
    box-sizing: border-box;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.15),
            transparent 60%
        ),
        #171717;
}

.products-grid .product-card .product-image img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    border-radius: 6px;

    transition: transform 0.3s ease;
}

/*
|--------------------------------------------------------------------------
| HOVER SUAVE
|--------------------------------------------------------------------------
| Bajamos el zoom para evitar que los bordes de las cartas se corten.
*/

.products-grid .product-card:hover .product-image img {
    transform: scale(1.02);
}

/*
|--------------------------------------------------------------------------
| SINGLES DENTRO DE LA TIENDA
|--------------------------------------------------------------------------
| tienda.php coloca .shop-single-badge dentro de la imagen de cada Single.
| :has() permite detectar esas tarjetas sin cambiar el PHP.
|--------------------------------------------------------------------------
*/

.products-grid .product-card .product-image:has(.shop-single-badge) {
    height: auto;
    min-height: 0;

    aspect-ratio: 2.5 / 3.5;

    padding: 14px;

    background:
        radial-gradient(
            circle at center,
            rgba(212,175,55,0.10),
            transparent 62%
        ),
        #151515;
}

.products-grid .product-card .product-image:has(.shop-single-badge) img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    padding: 0;

    border-radius: 8px;
}

/*
|--------------------------------------------------------------------------
| BADGE SINGLE
|--------------------------------------------------------------------------
*/

.shop-single-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 5;

    padding: 6px 9px;

    background: #d4af37;
    color: #080808;

    border-radius: 6px;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;

    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/*
|--------------------------------------------------------------------------
| PLACEHOLDER
|--------------------------------------------------------------------------
*/

.products-grid .product-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 70px;
}

.products-grid
.product-image:has(.shop-single-badge)
.product-placeholder {
    min-height: 0;
}

/*
|--------------------------------------------------------------------------
| SINGLES PÚBLICAS
|--------------------------------------------------------------------------
*/

.single-public-image,
.home-single-image,
.tcg-admin-image {
    overflow: hidden;
}

.single-public-image img,
.home-single-image img,
.tcg-admin-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

/*
|--------------------------------------------------------------------------
| INVENTARIO ADMIN TCG
|--------------------------------------------------------------------------
*/

.tcg-inventory-item-image {
    overflow: hidden;
}

.tcg-inventory-item-image img {
    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;
}

/*
|--------------------------------------------------------------------------
| CARRITO - CARTAS COMPLETAS
|--------------------------------------------------------------------------
*/

.cart-item-image {
    padding: 5px;
    box-sizing: border-box;
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE DE LA TIENDA
|--------------------------------------------------------------------------
*/

@media (max-width: 1000px) {

    .products-grid .product-card .product-image {
        height: 280px;
        min-height: 280px;
    }

    .products-grid
    .product-card
    .product-image:has(.shop-single-badge) {
        height: auto;
        min-height: 0;
    }

}

@media (max-width: 700px) {

    .products-grid .product-card .product-image {
        height: 340px;
        min-height: 340px;
    }

    .products-grid
    .product-card
    .product-image:has(.shop-single-badge) {
        height: auto;
        min-height: 0;

        max-width: 340px;
        width: 100%;

        margin: 0 auto;
    }

}

@media (max-width: 450px) {

    .products-grid .product-card .product-image {
        height: 300px;
        min-height: 300px;
        padding: 12px;
    }

    .products-grid
    .product-card
    .product-image:has(.shop-single-badge) {
        height: auto;
        min-height: 0;

        aspect-ratio: 2.5 / 3.5;

        padding: 12px;
    }

}
.site-logo {
    display: block;
    width: 145px;
    height: auto;
    object-fit: contain;
}

.cart {
    min-width: 48px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #d4af37;
    color: #080808;

    border-radius: 10px;

    padding: 0 14px;

    transition: 0.25s;
}

.cart svg {
    flex-shrink: 0;
}

.cart:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.cart span {
    min-width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 5px;

    background: #080808;
    color: #ffffff;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 900;
}
/* =====================================================
   HEADER MODERNO - LOGO + CARRITO
===================================================== */

/* LOGO */

.site-logo-link {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.site-logo {
    display: block;

    width: 155px;
    max-height: 60px;

    object-fit: contain;
    object-position: left center;
}

/* MENÚ ACTIVO */

.menu a.active {
    color: #d4af37;
}

.menu a.active::after {
    width: 100%;
}

/* =====================================================
   CARRITO MODERNO
===================================================== */

.cart-modern {
    position: relative;

    min-width: 48px;
    height: 46px;

    padding: 0 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #d4af37;
    color: #080808;

    border-radius: 10px;

    flex-shrink: 0;

    transition: 0.25s;
}

.cart-modern:hover {
    background: #ffffff;

    transform: translateY(-2px);
}

/* ICONO */

.cart-icon {
    width: 23px;
    height: 23px;

    display: block;

    flex-shrink: 0;
}

/* CONTADOR */

.cart-count {
    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 21px;
    height: 21px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #080808;

    border: 2px solid #080808;

    border-radius: 50px;

    font-size: 10px;
    font-weight: 900;

    line-height: 1;
}

/* =====================================================
   RESPONSIVE HEADER
===================================================== */

@media (max-width: 900px) {

    .site-logo {
        width: 135px;
    }

    .menu {
        gap: 16px;
    }

}

@media (max-width: 700px) {

    .header-content {
        display: grid;

        grid-template-columns:
            1fr auto;

        gap: 15px;

        padding: 12px 0;
    }

    .site-logo {
        width: 135px;
        max-height: 52px;
    }

    .cart-modern {
        grid-column: 2;
        grid-row: 1;
    }

    .menu {
        grid-column: 1 / -1;

        width: 100%;

        display: flex;
        justify-content: flex-start;

        gap: 20px;

        overflow-x: auto;

        padding: 8px 2px 4px;

        scrollbar-width: none;
    }

    .menu::-webkit-scrollbar {
        display: none;
    }

    .menu a {
        flex-shrink: 0;
    }

}

@media (max-width: 450px) {

    .site-logo {
        width: 115px;
    }

    .cart-modern {
        width: 44px;
        min-width: 44px;
        height: 42px;

        padding: 0;
    }

    .cart-icon {
        width: 21px;
        height: 21px;
    }

}
/* =====================================================
   LOGO + NOMBRE NAKAMA STORE
===================================================== */

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.site-logo {
    width: 58px;
    height: 58px;

    object-fit: contain;
}

.site-brand-name {
    font-size: 20px;
    font-weight: 900;

    letter-spacing: 1px;

    color: #ffffff;

    line-height: 1;
}

.site-brand-name span {
    color: #d4af37;
}

/* RESPONSIVE */

@media (max-width: 700px) {

    .site-logo {
        width: 48px;
        height: 48px;
    }

    .site-brand-name {
        font-size: 17px;
    }

}

@media (max-width: 450px) {

    .site-logo {
        width: 42px;
        height: 42px;
    }

    .site-brand-name {
        font-size: 15px;
    }

}
/* =====================================================
   ACCESORIOS DESTACADOS - HOME
===================================================== */

.accessories-home {
    padding: 80px 0;
}

.accessories-home-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;
}

.accessories-home-header > div {
    max-width: 650px;
}

.accessories-home-header span {
    color: #d4af37;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.accessories-home-header h2 {
    margin: 10px 0 15px;

    color: #ffffff;

    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;

    line-height: 0.95;
}

.accessories-home-header p {
    max-width: 600px;

    color: #bcbcbc;

    line-height: 1.7;
}

/* GRID */

.accessories-home-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

/* CARD */

.accessory-home-card {
    overflow: hidden;

    background: #151515;

    border: 1px solid #292929;
    border-radius: 14px;

    transition: 0.3s ease;
}

.accessory-home-card:hover {
    border-color: #d4af37;

    transform: translateY(-5px);
}

/* IMAGEN */

.accessory-home-image {
    width: 100%;
    height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    background: #101010;

    overflow: hidden;
}

.accessory-home-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transition: transform 0.3s ease;
}

.accessory-home-card:hover
.accessory-home-image img {
    transform: scale(1.03);
}

.accessory-placeholder {
    font-size: 70px;
}

/* INFORMACIÓN */

.accessory-home-info {
    padding: 20px;
}

.accessory-label {
    display: block;

    margin-bottom: 8px;

    color: #d4af37;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.accessory-home-info h3 {
    margin: 0 0 10px;

    font-size: 17px;
}

.accessory-home-info h3 a {
    color: #ffffff;

    text-decoration: none;
}

.accessory-home-info h3 a:hover {
    color: #d4af37;
}

.accessory-home-info p {
    min-height: 42px;

    margin-bottom: 18px;

    color: #999999;

    font-size: 12px;

    line-height: 1.6;
}

/* PRECIO + CARRITO */

.accessory-home-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.accessory-home-bottom small {
    display: block;

    margin-bottom: 3px;

    color: #777777;

    font-size: 9px;

    text-transform: uppercase;
}

.accessory-home-bottom strong {
    color: #d4af37;

    font-size: 21px;
}

/* BOTÓN CARRITO */

.accessory-cart-button {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #d4af37;
    color: #080808;

    border-radius: 9px;

    transition: 0.25s;
}

.accessory-cart-button svg {
    width: 21px;
    height: 21px;
}

.accessory-cart-button:hover {
    background: #ffffff;

    transform: translateY(-2px);
}

/* STOCK */

.accessory-stock {
    display: block;

    margin-top: 10px;

    color: #777777;

    font-size: 10px;
}

/* BOTÓN INFERIOR */

.accessories-home-button {
    margin-top: 35px;

    text-align: center;
}

/* SIN ACCESORIOS */

.accessories-empty {
    padding: 50px;

    text-align: center;

    background: #151515;

    border: 1px solid #292929;
    border-radius: 14px;
}

.accessories-empty > span {
    display: block;

    margin-bottom: 15px;

    font-size: 55px;
}

.accessories-empty h3 {
    margin-bottom: 8px;

    color: #ffffff;
}

.accessories-empty p {
    color: #999999;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .accessories-home-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {

    .accessories-home {
        padding: 60px 0;
    }

    .accessories-home-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .accessories-home-grid {
        grid-template-columns: 1fr;
    }

    .accessory-home-image {
        height: 300px;
    }

}
/* =====================================================
   ADMIN ACCESORIOS
===================================================== */

.accessory-admin-help {
    margin-top: 25px;

    padding: 20px;

    background: #181818;

    border: 1px solid #292929;
    border-radius: 8px;
}

.accessory-admin-help > span {
    display: block;

    margin-bottom: 12px;

    color: #d4af37;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.accessory-admin-help p {
    margin: 8px 0;

    color: #aaa;

    font-size: 13px;
}
/* =====================================================
   FILTROS DE ACCESORIOS - TIENDA
===================================================== */

.accessory-shop-filters {
    margin: -25px 0 50px;

    padding: 22px;

    background: #111111;

    border: 1px solid #292929;
    border-radius: 12px;
}

/* TÍTULO */

.accessory-filter-title {
    display: block;

    margin-bottom: 14px;

    color: #777777;

    font-size: 11px;
    font-weight: 800;

    text-align: center;

    letter-spacing: 1px;

    text-transform: uppercase;
}

/* BOTONES */

.accessory-filter-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;
}

.accessory-filter-buttons a {
    padding: 9px 14px;

    background: #181818;
    color: #aaaaaa;

    border: 1px solid #303030;
    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;

    transition: 0.25s;
}

.accessory-filter-buttons a:hover {
    color: #ffffff;

    border-color: #d4af37;
}

.accessory-filter-buttons a.active {
    background: #d4af37;
    color: #080808;

    border-color: #d4af37;
}

/* MOBILE */

@media (max-width: 600px) {

    .accessory-shop-filters {
        margin-top: -20px;

        padding: 18px 12px;
    }

    .accessory-filter-buttons {
        justify-content: flex-start;
    }

    .accessory-filter-buttons a {
        flex-grow: 1;

        text-align: center;
    }

}
/* =====================================================
   ADMIN - FILTROS ACCESORIOS
===================================================== */

.accessory-admin-filter-panel {
    margin-bottom: 25px;
}

.accessory-admin-filters {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;
}

.accessory-admin-filters a {
    padding: 9px 14px;

    background: #181818;
    color: #aaa;

    border: 1px solid #303030;
    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;

    transition: 0.25s;
}

.accessory-admin-filters a:hover {
    color: #ffffff;

    border-color: #d4af37;
}

.accessory-admin-filters a.active {
    background: #d4af37;
    color: #080808;

    border-color: #d4af37;
}

/* TIPO */

.accessory-type-badge {
    display: inline-flex;

    align-items: center;

    padding: 6px 10px;

    background: #181818;

    border: 1px solid #303030;
    border-radius: 20px;

    color: #ddd;

    font-size: 11px;
    font-weight: 700;
}

.accessory-type-empty {
    color: #666;

    font-size: 11px;
}

/* MOBILE */

@media (max-width: 700px) {

    .accessory-admin-filters a {
        flex-grow: 1;

        text-align: center;
    }

}
/* =====================================================
   EDITAR ACCESORIO
===================================================== */

.accessory-edit-placeholder {
    width: 100%;
    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #181818;

    border: 1px solid #292929;
    border-radius: 8px;

    font-size: 80px;
}
/* =====================================================
   PÁGINAS DE CONTENIDO
   PUBLICACIONES / VIDEOS
===================================================== */

.content-hero {
    padding: 100px 0 85px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(212,175,55,0.16),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #101010,
            #080808
        );

    border-bottom: 1px solid #242424;
}

.content-hero-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #d4af37;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}

.content-hero h1 {
    margin: 0;

    font-size: clamp(44px, 7vw, 72px);
    font-weight: 900;

    letter-spacing: -2px;
}

.content-hero p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #999;

    font-size: 16px;
}

/* =====================================================
   CONTENIDO
===================================================== */

.content-page {
    padding: 75px 0 110px;

    background: #080808;
}

.content-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 35px;
}

.content-page-header > div:first-child > span {
    color: #d4af37;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}

.content-page-header h2 {
    margin-top: 6px;

    font-size: 31px;
}

.content-count {
    color: #777;

    font-size: 12px;
}

/* =====================================================
   GRID PUBLICACIONES
===================================================== */

.modern-posts-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

/* =====================================================
   CARD
===================================================== */

.modern-post-card {
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #111;

    border: 1px solid #262626;
    border-radius: 14px;

    transition: 0.3s ease;
}

.modern-post-card:hover {
    transform: translateY(-6px);

    border-color: #d4af37;

    box-shadow:
        0 18px 40px
        rgba(0,0,0,0.25);
}

/* =====================================================
   IMAGEN
===================================================== */

.modern-post-image {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    display: block;

    overflow: hidden;

    background: #171717;
}

.modern-post-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.4s ease;
}

.modern-post-card:hover
.modern-post-image img {
    transform: scale(1.05);
}

.modern-post-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 70px;
}

/* BADGE */

.modern-post-badge {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 6px 9px;

    background: #d4af37;
    color: #080808;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

/* =====================================================
   INFORMACIÓN
===================================================== */

.modern-post-content {
    padding: 22px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.modern-post-meta {
    margin-bottom: 9px;

    color: #777;

    font-size: 11px;
}

.modern-post-content h2 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.3;
}

.modern-post-content h2 a {
    color: #fff;

    transition: 0.25s;
}

.modern-post-content h2 a:hover {
    color: #d4af37;
}

.modern-post-content p {
    margin-bottom: 22px;

    color: #909090;

    font-size: 13px;
    line-height: 1.7;

    flex: 1;
}

/* =====================================================
   LINK
===================================================== */

.modern-post-footer {
    margin-top: auto;
}

.modern-post-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #d4af37;

    font-size: 12px;
    font-weight: 800;

    transition: 0.25s;
}

.modern-post-link:hover {
    gap: 13px;
}

/* =====================================================
   VACÍO
===================================================== */

.content-empty {
    padding: 90px 25px;

    text-align: center;

    background: #111;

    border: 1px solid #262626;
    border-radius: 14px;
}

.content-empty > span {
    display: block;

    margin-bottom: 18px;

    font-size: 65px;
}

.content-empty h2 {
    margin-bottom: 8px;

    font-size: 30px;
}

.content-empty p {
    max-width: 520px;

    margin: 0 auto 25px;

    color: #888;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .modern-posts-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 650px) {

    .content-hero {
        padding: 70px 0 60px;
    }

    .content-page {
        padding-top: 55px;
    }

    .content-page-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }

    .modern-posts-grid {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   VIDEOS MODERNOS
===================================================== */

.modern-videos-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 26px;
}

/* CARD */

.modern-video-card {
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #111111;

    border: 1px solid #262626;
    border-radius: 14px;

    transition: 0.3s ease;
}

.modern-video-card:hover {
    transform: translateY(-6px);

    border-color: #d4af37;

    box-shadow:
        0 18px 40px
        rgba(0,0,0,0.25);
}

/* =====================================================
   MEDIA
===================================================== */

.modern-video-media {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #050505;
}

.modern-video-media iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}

/* MINIATURA */

.modern-video-thumbnail {
    position: relative;

    width: 100%;
    height: 100%;

    display: block;
}

.modern-video-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.4s ease;
}

.modern-video-card:hover
.modern-video-thumbnail img {
    transform: scale(1.05);
}

/* BOTÓN PLAY */

.modern-video-play {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(
        -50%,
        -50%
    );

    background: rgba(
        212,
        175,
        55,
        0.95
    );

    color: #080808;

    border-radius: 50%;

    font-size: 24px;

    padding-left: 4px;

    transition: 0.25s;
}

.modern-video-thumbnail:hover
.modern-video-play {
    transform:
        translate(
            -50%,
            -50%
        )
        scale(1.08);

    background: #ffffff;
}

/* PLACEHOLDER */

.modern-video-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 75px;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.12),
            transparent 55%
        ),
        #101010;
}

/* BADGE */

.modern-video-badge {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 6px 9px;

    background: #d4af37;
    color: #080808;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;

    z-index: 5;
}

/* =====================================================
   CONTENIDO
===================================================== */

.modern-video-content {
    padding: 23px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.modern-video-meta {
    margin-bottom: 8px;

    color: #777777;

    font-size: 11px;
}

.modern-video-content h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.3;
}

.modern-video-content p {
    margin-bottom: 22px;

    color: #909090;

    font-size: 13px;
    line-height: 1.7;

    flex: 1;
}

/* LINK */

.modern-video-footer {
    margin-top: auto;
}

.modern-video-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #d4af37;

    font-size: 12px;
    font-weight: 800;

    transition: 0.25s;
}

.modern-video-link:hover {
    gap: 13px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 850px) {

    .modern-videos-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 500px) {

    .modern-video-play {
        width: 52px;
        height: 52px;

        font-size: 20px;
    }

}
/* ============================================================
   NAKAMA STORE
   RESPONSIVE MÓVIL FINAL
   Pegar AL FINAL de style.css
============================================================ */

/* ============================================================
   AJUSTES GENERALES
============================================================ */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
iframe,
video {
    max-width: 100%;
}

input,
select,
textarea,
button {
    font-size: 16px;
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1024px) {

    .container {
        width: 92%;
    }

    /* CATEGORÍAS */

    .categories-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    /* PRODUCTOS */

    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    /* SINGLES HOME */

    .home-singles-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    /* TCG HOME */

    .tcg-home-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    /* ACCESORIOS */

    .accessories-home-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    /* PUBLICACIONES */

    .modern-posts-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    /* VIDEOS */

    .modern-videos-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

/* ============================================================
   MÓVIL PRINCIPAL
============================================================ */

@media (max-width: 768px) {

    /* ========================================================
       CONTENEDOR
    ======================================================== */

    .container {
        width: 92%;
        max-width: none;
    }

    /* ========================================================
       HEADER
    ======================================================== */

    .header {
        position: sticky;
        top: 0;

        z-index: 9999;
    }

    .header-content {
        display: grid;

        grid-template-columns:
            1fr auto;

        align-items: center;

        gap: 10px;

        min-height: auto;

        padding: 10px 0;
    }

    /* LOGO */

    .site-logo-link {
        min-width: 0;

        display: flex;
        align-items: center;

        gap: 8px;
    }

    .site-logo {
        width: 44px !important;
        height: 44px !important;

        flex-shrink: 0;
    }

    .site-brand-name {
        font-size: 15px;

        white-space: nowrap;
    }

    /* CARRITO */

    .cart-modern {
        grid-column: 2;
        grid-row: 1;

        width: 44px;
        min-width: 44px;
        height: 42px;

        padding: 0;
    }

    .cart-icon {
        width: 21px;
        height: 21px;
    }

    .cart-count {
        top: -6px;
        right: -6px;
    }

    /* MENÚ */

    .menu {
        grid-column: 1 / -1;

        width: 100%;

        display: flex;
        justify-content: flex-start;
        align-items: center;

        gap: 22px;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 9px 2px 6px;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .menu::-webkit-scrollbar {
        display: none;
    }

    .menu a {
        flex: 0 0 auto;

        white-space: nowrap;

        font-size: 12px;
    }

    /* ========================================================
       HERO INICIO
    ======================================================== */

    .hero {
        min-height: auto;

        padding: 75px 0;

        text-align: left;
    }

    .hero-content {
        padding: 30px 0;
    }

    .hero-tag {
        margin-bottom: 18px;
    }

    .hero h1 {
        max-width: 100%;

        font-size: clamp(
            39px,
            12vw,
            55px
        );

        line-height: 0.98;

        letter-spacing: -1px;
    }

    .hero p {
        max-width: 100%;

        margin: 22px 0 28px;

        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* ========================================================
       TÍTULOS
    ======================================================== */

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 29px;

        line-height: 1.05;
    }

    .section-title p {
        font-size: 14px;
    }

    /* ========================================================
       CATEGORÍAS
    ======================================================== */

    .categories-section {
        padding: 65px 0;
    }

    .categories-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .category-card {
        min-height: 155px;

        padding: 18px 10px;
    }

    .category-icon {
        margin-bottom: 9px;

        font-size: 32px;
    }

    .category-card h3 {
        font-size: 14px;
    }

    .category-card p {
        font-size: 10px;
    }

    /* ========================================================
       PRODUCTOS
    ======================================================== */

    .products-section {
        padding: 65px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .product-card {
        width: 100%;
    }

    .products-grid
    .product-card
    .product-image {

        height: 310px;
        min-height: 310px;

        padding: 14px;
    }

    /*
       LAS SINGLES MANTIENEN
       SU PROPORCIÓN VERTICAL
    */

    .products-grid
    .product-card
    .product-image:has(.shop-single-badge) {

        width: 100%;
        max-width: 330px;

        height: auto;
        min-height: 0;

        margin: 0 auto;

        aspect-ratio: 2.5 / 3.5;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h3 {
        margin-bottom: 15px;

        font-size: 16px;
    }

    /* ========================================================
       TIENDA
    ======================================================== */

    .shop-header {
        padding: 60px 0;
    }

    .shop-header h1 {
        font-size: 40px;
    }

    .shop-section {
        padding: 45px 0 70px;
    }

    /* BUSCADOR */

    .shop-search {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 9px;

        margin-bottom: 24px;
    }

    .shop-search input {
        width: 100%;

        border-radius: 8px;

        min-height: 48px;
    }

    .shop-search button {
        width: 100%;

        min-height: 48px;

        border-radius: 8px;
    }

    /* CATEGORÍAS */

    .shop-categories {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 8px;

        margin-bottom: 30px;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .shop-categories::-webkit-scrollbar {
        display: none;
    }

    .shop-categories a {
        flex: 0 0 auto;

        white-space: nowrap;
    }

    /* CABECERA RESULTADOS */

    .shop-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }

    .shop-top h2 {
        font-size: 21px;
    }

    /* FILTROS ACCESORIOS */

    .accessory-shop-filters {
        margin:
            -5px
            0
            30px;

        padding: 15px;
    }

    .accessory-filter-buttons {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .accessory-filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .accessory-filter-buttons a {
        flex: 0 0 auto;

        white-space: nowrap;
    }

    /* ========================================================
       SINGLES DEL INICIO
    ======================================================== */

    .home-singles {
        padding-left: 0;
        padding-right: 0;
    }

    .home-section-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }

    .home-section-header h2 {
        font-size: 28px;
    }

    .home-section-header .btn {
        width: 100%;
    }

    .home-singles-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .home-single-card {
        max-width: 390px;

        width: 100%;

        margin: 0 auto;
    }

    .home-single-image {
        width: 100%;
    }

    .home-single-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }

    /* ========================================================
       EXPLORA POR TCG
    ======================================================== */

    .tcg-home-section {
        padding: 60px 0;
    }

    .tcg-home-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .tcg-home-card {
        min-height: 155px;

        padding: 18px;
    }

    .tcg-home-card > span {
        font-size: 34px;
    }

    /* ========================================================
       ACCESORIOS HOME
    ======================================================== */

    .accessories-home {
        padding: 65px 0;
    }

    .accessories-home-header {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 30px;
    }

    .accessories-home-header h2 {
        font-size: 40px;
    }

    .accessories-home-header .btn {
        width: 100%;
    }

    .accessories-home-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .accessory-home-card {
        max-width: 420px;

        width: 100%;

        margin: 0 auto;
    }

    .accessory-home-image {
        height: 290px;
    }

    /* ========================================================
       REDES
    ======================================================== */

    .social-section {
        padding: 65px 0;
    }

    .social-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    /* ========================================================
       PUBLICACIONES Y VIDEOS
    ======================================================== */

    .content-hero {
        padding: 65px 0 55px;
    }

    .content-hero h1 {
        font-size: 42px;
    }

    .content-hero p {
        width: 92%;

        font-size: 14px;
    }

    .content-page {
        padding: 50px 0 75px;
    }

    .content-page-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 6px;

        margin-bottom: 25px;
    }

    .content-page-header h2 {
        font-size: 25px;
    }

    .modern-posts-grid,
    .modern-videos-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .modern-post-card,
    .modern-video-card {
        width: 100%;
    }

    .modern-post-image,
    .modern-video-media {
        aspect-ratio: 16 / 9;
    }

    /* ========================================================
       DETALLE PRODUCTO
    ======================================================== */

    .product-detail-section {
        padding: 50px 0 75px;
    }

    .product-detail {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .product-detail-image {
        min-height: 340px;
    }

    .product-detail-image img {
        height: 340px;

        padding: 18px;
    }

    .product-detail-info h1 {
        font-size: 32px;
    }

    .product-detail-price {
        font-size: 30px;
    }

    .product-buy-form {
        align-items: stretch;

        flex-direction: column;
    }

    .quantity-selector input {
        width: 100%;
    }

    /* ========================================================
       CARRITO
    ======================================================== */

    .cart-section {
        padding: 45px 0 70px;
    }

    .cart-layout {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .cart-products {
        gap: 12px;
    }

    .cart-item {
        display: grid;

        grid-template-columns:
            78px 1fr auto;

        gap: 12px;

        padding: 12px;
    }

    .cart-item-image {
        width: 78px;
        height: 105px;

        grid-column: 1;
        grid-row: 1 / 3;
    }

    .cart-item-info {
        min-width: 0;
    }

    .cart-item-info h3 {
        font-size: 14px;

        word-break: break-word;
    }

    .cart-quantity {
        grid-column: 2 / 4;

        width: 100%;

        display: grid;

        grid-template-columns:
            80px 1fr;
    }

    .cart-quantity input {
        width: 100%;
    }

    .cart-quantity button {
        width: 100%;
    }

    .cart-subtotal {
        grid-column: 2;
        grid-row: 3;

        min-width: 0;

        text-align: left;
    }

    .remove-cart {
        grid-column: 3;
        grid-row: 1;

        align-self: start;
    }

    .cart-summary {
        position: static;

        padding: 20px;
    }

    /* ========================================================
       CHECKOUT
    ======================================================== */

    .checkout-section {
        padding: 45px 0 70px;
    }

    .checkout-header {
        margin-bottom: 30px;
    }

    .checkout-header h1 {
        font-size: 34px;
    }

    .checkout-layout {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .checkout-box {
        padding: 20px;
    }

    .checkout-product {
        align-items: flex-start;

        flex-direction: column;

        gap: 6px;
    }

    /* ========================================================
       CONFIRMACIÓN
    ======================================================== */

    .confirmation-section {
        padding: 50px 0;
    }

    .confirmation-box {
        padding: 35px 18px;
    }

    .confirmation-box h1 {
        font-size: 29px;
    }

    .confirmation-info {
        grid-template-columns: 1fr;
    }

    /* ========================================================
       FOOTER
    ======================================================== */

    .footer {
        padding:
            45px
            15px
            25px;
    }

    /* ========================================================
       ADMIN
    ======================================================== */

    .admin-layout {
        display: block;
    }

    /*
       En móvil dejamos el sidebar arriba
       en vez de ocultarlo completamente.
    */

    .admin-sidebar {
        display: block;

        width: 100%;

        padding: 15px;

        border-right: 0;
        border-bottom: 1px solid #242424;

        overflow: hidden;
    }

    .admin-logo {
        padding:
            5px
            5px
            15px;

        font-size: 18px;
    }

    .admin-sidebar nav {
        display: flex;

        flex-direction: row;

        gap: 8px;

        overflow-x: auto;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .admin-sidebar nav::-webkit-scrollbar {
        display: none;
    }

    .admin-sidebar nav a {
        flex: 0 0 auto;

        white-space: nowrap;

        padding: 10px 12px;

        font-size: 12px;
    }

    .admin-content {
        width: 100%;

        padding: 20px 14px;
    }

    .admin-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .admin-header h1 {
        font-size: 29px;
    }

    .admin-user {
        width: 100%;
    }

    /* STATS */

    .admin-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .admin-stat {
        padding: 15px;

        gap: 10px;
    }

    .admin-stat > span {
        font-size: 24px;
    }

    .admin-stat strong {
        font-size: 19px;
    }

    /* PANELES */

    .admin-panel {
        padding: 16px;
    }

    .admin-panel-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;

        padding: 16px;
    }

    /* TABLAS */

    .admin-table-wrapper {
        width: 100%;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        min-width: 720px;
    }

    /* FORMULARIOS ADMIN */

    .admin-form-grid,
    .order-admin-grid,
    .category-admin-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .admin-form-buttons {
        flex-direction: column-reverse;
    }

    .admin-form-buttons .btn,
    .admin-form-buttons button {
        width: 100%;
    }

    /* FILTROS ADMIN ACCESORIOS */

    .accessory-admin-filters {
        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .accessory-admin-filters::-webkit-scrollbar {
        display: none;
    }

    .accessory-admin-filters a {
        flex: 0 0 auto;

        white-space: nowrap;
    }

}

/* ============================================================
   TELÉFONOS PEQUEÑOS
============================================================ */

@media (max-width: 480px) {

    /* HEADER */

    .site-logo {
        width: 39px !important;
        height: 39px !important;
    }

    .site-brand-name {
        font-size: 13px;
    }

    .cart-modern {
        width: 41px;
        min-width: 41px;
        height: 39px;
    }

    /* HERO */

    .hero {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 37px;
    }

    /* CATEGORÍAS */

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 135px;
    }

    /* TCG */

    .tcg-home-grid {
        grid-template-columns: 1fr;
    }

    /* IMAGEN PRODUCTOS */

    .products-grid
    .product-card
    .product-image {

        height: 280px;
        min-height: 280px;
    }

    .products-grid
    .product-card
    .product-image:has(.shop-single-badge) {

        height: auto;
        min-height: 0;

        max-width: 290px;
    }

    /* ACCESORIOS */

    .accessory-home-image {
        height: 250px;
    }

    /* CONTENT */

    .content-hero h1 {
        font-size: 36px;
    }

    /* CARRITO */

    .cart-item {
        grid-template-columns:
            68px 1fr auto;
    }

    .cart-item-image {
        width: 68px;
        height: 92px;
    }

    /* ADMIN */

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-content {
        padding:
            18px
            10px;
    }

}
/* ============================================================
   HEADER RESPONSIVE + MENÚ HAMBURGUESA
============================================================ */

/* ============================================================
   ESCRITORIO
============================================================ */

.header-content {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 35px;
}

/* LOGO */

.site-logo-link {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

/* MENÚ */

.menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;
}

/* ACCIONES */

.header-actions {
    display: flex;
    align-items: center;

    gap: 10px;
}

/* HAMBURGUESA OCULTA EN PC */

.mobile-menu-button {
    display: none;
}

/* CARRITO DENTRO DEL MENÚ */

.mobile-cart-link {
    display: none !important;
}

/* OVERLAY */

.mobile-menu-overlay {
    display: none;
}

/* ============================================================
   MÓVIL
============================================================ */

@media (max-width: 768px) {

    /* HEADER */

    .header {
        position: sticky;

        top: 0;

        z-index: 10000;

        background:
            rgba(
                8,
                8,
                8,
                0.97
            );

        backdrop-filter: blur(12px);
    }

    .header-content {
        min-height: 68px;

        display: grid;

        grid-template-columns:
            1fr auto;

        align-items: center;

        gap: 12px;

        padding: 9px 0;
    }

    /* ========================================================
       LOGO
    ======================================================== */

    .site-logo-link {
        grid-column: 1;

        min-width: 0;
    }

    .site-logo {
        width: 44px !important;
        height: 44px !important;

        flex-shrink: 0;
    }

    .site-brand-name {
        font-size: 15px;

        white-space: nowrap;
    }

    /* ========================================================
       ACCIONES
    ======================================================== */

    .header-actions {
        grid-column: 2;

        display: flex;
        align-items: center;

        gap: 8px;
    }

    /* ========================================================
       CARRITO
    ======================================================== */

    .cart-modern {
        width: 42px;
        min-width: 42px;
        height: 42px;

        padding: 0;
    }

    .cart-icon {
        width: 20px;
        height: 20px;
    }

    .cart-count {
        top: -6px;
        right: -6px;

        min-width: 20px;
        height: 20px;

        font-size: 9px;
    }

    /* ========================================================
       BOTÓN HAMBURGUESA
    ======================================================== */

    .mobile-menu-button {
        width: 42px;
        height: 42px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        padding: 0;

        background: #171717;

        border: 1px solid #303030;
        border-radius: 9px;

        cursor: pointer;

        position: relative;

        z-index: 10003;
    }

    .mobile-menu-button span {
        width: 20px;
        height: 2px;

        display: block;

        background: #ffffff;

        border-radius: 10px;

        transition:
            transform 0.3s ease,
            opacity 0.2s ease;
    }

    /* X CUANDO ESTÁ ABIERTO */

    .mobile-menu-button.active
    span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);
    }

    .mobile-menu-button.active
    span:nth-child(2) {

        opacity: 0;
    }

    .mobile-menu-button.active
    span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    /* ========================================================
       MENÚ DESPLEGABLE
    ======================================================== */

    .menu {
        position: fixed;

        top: 0;
        right: 0;

        width: min(
            82vw,
            330px
        );

        height: 100dvh;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        gap: 4px;

        padding:
            95px
            20px
            30px;

        background:
            #0d0d0d;

        border-left:
            1px solid #292929;

        box-shadow:
            -20px
            0
            50px
            rgba(
                0,
                0,
                0,
                0.45
            );

        transform:
            translateX(105%);

        transition:
            transform
            0.3s
            ease;

        overflow-y: auto;

        z-index: 10002;
    }

    .menu.mobile-open {
        transform:
            translateX(0);
    }

    /* LINKS */

    .menu a {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding:
            15px
            14px;

        color: #bcbcbc;

        border-radius: 8px;

        font-size: 14px;
        font-weight: 700;

        white-space: normal;

        transition: 0.2s;
    }

    .menu a:hover {
        background: #181818;

        color: #ffffff;
    }

    .menu a.active {
        background:
            rgba(
                212,
                175,
                55,
                0.12
            );

        color: #d4af37;
    }

    /*
       Quitamos la línea inferior
       del menú desktop
    */

    .menu a::after {
        display: none !important;
    }

    /* ========================================================
       CARRITO DENTRO DEL MENÚ
    ======================================================== */

    .mobile-cart-link {
        display: flex !important;

        margin-top: 15px;

        background: #d4af37 !important;

        color: #080808 !important;
    }

    .mobile-cart-link strong {
        min-width: 25px;
        height: 25px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        background: #080808;
        color: #ffffff;

        border-radius: 30px;

        font-size: 10px;
    }

    /* ========================================================
       OVERLAY
    ======================================================== */

    .mobile-menu-overlay {
        position: fixed;

        inset: 0;

        display: block;

        background:
            rgba(
                0,
                0,
                0,
                0.68
            );

        backdrop-filter:
            blur(2px);

        opacity: 0;

        visibility: hidden;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;

        z-index: 10001;
    }

    .mobile-menu-overlay.active {
        opacity: 1;

        visibility: visible;
    }

    /* ========================================================
       BLOQUEAR SCROLL
    ======================================================== */

    body.menu-open {
        overflow: hidden;
    }

}

/* ============================================================
   TELÉFONOS MUY PEQUEÑOS
============================================================ */

@media (max-width: 400px) {

    .site-logo {
        width: 39px !important;
        height: 39px !important;
    }

    .site-brand-name {
        font-size: 13px;
    }

    .cart-modern,
    .mobile-menu-button {
        width: 39px;
        min-width: 39px;
        height: 39px;
    }

    .header-actions {
        gap: 6px;
    }

    .menu {
        width: 86vw;

        padding-left: 16px;
        padding-right: 16px;
    }

}
/* =====================================================
   CHECKOUT - DESGLOSE DE PRECIOS
===================================================== */

.checkout-price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 13px;

    color: #999;

    font-size: 13px;
}

.checkout-price-line strong {
    color: #ffffff;

    white-space: nowrap;
}

.tax-note {
    margin-left: 4px;

    color: #666;

    font-size: 9px;
}

/* =====================================================
   RECARGO TARJETA
===================================================== */

.card-fee-line {
    display: none;

    color: #d4af37;
}

.card-fee-line strong {
    color: #d4af37;
}

.card-fee-line.active {
    display: flex;
}

/* =====================================================
   OPCIONES DE PAGO
===================================================== */

.payment-option {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 10px;

    padding: 14px;

    background: #181818;

    border: 1px solid #292929;
    border-radius: 9px;

    cursor: pointer;

    transition: 0.25s;
}

.payment-option:hover {
    border-color: #d4af37;
}

.payment-option:has(input:checked) {
    border-color: #d4af37;

    background:
        rgba(
            212,
            175,
            55,
            0.06
        );
}

.payment-option input {
    flex-shrink: 0;

    accent-color: #d4af37;
}

.payment-option-info {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.payment-option-info strong {
    color: #ffffff;

    font-size: 13px;
}

.payment-option-info small {
    color: #777;

    font-size: 10px;
}

/* =====================================================
   AVISO TARJETA
===================================================== */

.card-fee-warning {
    display: none;

    align-items: flex-start;

    gap: 12px;

    margin: 15px 0;

    padding: 15px;

    background:
        rgba(
            212,
            175,
            55,
            0.07
        );

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            0.30
        );

    border-radius: 9px;
}

.card-fee-warning.active {
    display: flex;
}

.card-fee-warning-icon {
    font-size: 25px;

    flex-shrink: 0;
}

.card-fee-warning strong {
    color: #d4af37;

    font-size: 12px;
}

.card-fee-warning p {
    margin-top: 4px;

    color: #999;

    font-size: 11px;
    line-height: 1.6;
}

/* =====================================================
   ITBMS INFO
===================================================== */

.checkout-tax-info {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 15px 0 20px;

    padding: 12px 14px;

    background: #151515;

    border: 1px solid #252525;
    border-radius: 8px;
}

.checkout-tax-info span {
    flex-shrink: 0;
}

.checkout-tax-info p {
    margin: 0;

    color: #666;

    font-size: 10px;
    line-height: 1.55;
}

/* =====================================================
   CHECKOUT MÓVIL
===================================================== */

@media (max-width: 600px) {

    .checkout-price-line {
        font-size: 12px;
    }

    .card-fee-warning {
        padding: 13px;
    }

}
/* ============================================================
   NAKAMA STORE
   CHECKOUT PROFESIONAL + YAPPY
============================================================ */

/* ============================================================
   DESGLOSE
============================================================ */

.checkout-price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 13px;

    color: #999;

    font-size: 13px;
}

.checkout-price-line strong {
    color: #ffffff;

    white-space: nowrap;
}

.tax-note {
    margin-left: 4px;

    color: #666;

    font-size: 9px;
}

/* ============================================================
   MÉTODOS DE PAGO
============================================================ */

.payment-title {
    margin-top: 25px;
    margin-bottom: 15px;

    font-size: 16px;
}

.payment-option {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 10px;

    padding: 15px;

    background: #181818;

    border: 1px solid #292929;
    border-radius: 9px;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.payment-option:hover {
    border-color: #d4af37;
}

.payment-option:has(input:checked) {
    border-color: #d4af37;

    background:
        rgba(
            212,
            175,
            55,
            0.07
        );
}

.payment-option input {
    width: auto;

    flex-shrink: 0;

    accent-color: #d4af37;
}

.payment-option-info {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.payment-option-info strong {
    color: #ffffff;

    font-size: 13px;
}

.payment-option-info small {
    color: #777;

    font-size: 10px;
}

/* ============================================================
   MENSAJES DE MÉTODO DE PAGO
============================================================ */

.checkout-payment-message {
    display: none;

    align-items: flex-start;

    gap: 12px;

    margin: 15px 0;

    padding: 15px;

    background:
        rgba(
            212,
            175,
            55,
            0.06
        );

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            0.25
        );

    border-radius: 10px;
}

.checkout-payment-message.active {
    display: flex;
}

.checkout-payment-icon {
    flex-shrink: 0;

    font-size: 25px;
}

.checkout-payment-message strong {
    color: #d4af37;

    font-size: 12px;
}

.checkout-payment-message p {
    margin: 4px 0;

    color: #999;

    font-size: 11px;
    line-height: 1.6;
}

.checkout-payment-message small {
    color: #666;

    font-size: 9px;
}

/* ============================================================
   YAPPY GENERAL
============================================================ */

.yappy-checkout-box {
    flex-direction: column !important;

    padding: 17px;
}

.yappy-checkout-header {
    width: 100%;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding-bottom: 14px;

    border-bottom: 1px solid #292929;
}

.yappy-checkout-header strong {
    color: #d4af37;

    font-size: 14px;
}

.yappy-checkout-header p {
    margin: 3px 0 0;

    color: #888;

    font-size: 11px;
}

/* ============================================================
   OPCIONES YAPPY
============================================================ */

.yappy-checkout-method {
    width: 100%;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-top: 12px;

    padding: 14px;

    background: #111111;

    border: 1px solid #292929;
    border-radius: 10px;

    transition: 0.25s;
}

.yappy-checkout-method:hover {
    border-color:
        rgba(
            212,
            175,
            55,
            0.55
        );
}

.yappy-method-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #1b1b1b;

    border: 1px solid #292929;
    border-radius: 9px;

    font-size: 18px;
}

.yappy-method-info {
    width: 100%;
}

.yappy-method-info > strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 12px;
}

.yappy-method-info > small {
    display: block;

    margin-bottom: 10px;

    color: #777;

    font-size: 10px;
    line-height: 1.5;
}

/* ============================================================
   LINK YAPPY
============================================================ */

.yappy-pay-button {
    width: 100%;

    margin-top: 5px;

    padding: 11px 15px;

    font-size: 11px;
}

/* ============================================================
   DIRECTORIO
============================================================ */

.yappy-business-name {
    color: #ffffff;

    font-size: 16px;
    font-weight: 900;
}

.yappy-business-user {
    margin-top: 2px;

    color: #d4af37;

    font-size: 11px;
    font-weight: 700;
}

/* ============================================================
   QR
============================================================ */

.yappy-qr-method {
    text-align: center;
}

.yappy-qr-method
.yappy-method-info {

    width: 100%;
}

.yappy-qr-container {
    width: 100%;

    margin-top: 12px;

    padding: 10px;

    background: #ffffff;

    border-radius: 11px;

    overflow: hidden;
}

.yappy-qr-image {
    width: 100%;
    max-width: 430px;
    height: auto;

    display: block;

    margin: 0 auto;

    border-radius: 7px;
}

/* ============================================================
   AVISO YAPPY
============================================================ */

.yappy-checkout-notice {
    width: 100%;

    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin-top: 12px;

    padding: 12px;

    background: #151515;

    border: 1px solid #252525;
    border-radius: 8px;
}

.yappy-checkout-notice span {
    flex-shrink: 0;
}

.yappy-checkout-notice p {
    margin: 0;

    color: #777;

    font-size: 10px;
    line-height: 1.55;
}

/* ============================================================
   ITBMS
============================================================ */

.checkout-tax-info {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 15px 0 20px;

    padding: 12px 14px;

    background: #151515;

    border: 1px solid #252525;
    border-radius: 8px;
}

.checkout-tax-info span {
    flex-shrink: 0;
}

.checkout-tax-info p {
    margin: 0;

    color: #666;

    font-size: 10px;
    line-height: 1.55;
}

/* ============================================================
   BOTÓN CONFIRMAR
============================================================ */

.checkout-submit {
    width: 100%;

    min-height: 50px;

    margin-top: 5px;

    border: 0;

    cursor: pointer;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 850px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .checkout-section {
        padding: 45px 0 70px;
    }

    .checkout-header {
        margin-bottom: 30px;
    }

    .checkout-header h1 {
        font-size: 34px;
    }

    .checkout-box {
        padding: 19px;
    }

    .checkout-price-line {
        font-size: 12px;
    }

    .checkout-product {
        align-items: flex-start;

        gap: 10px;
    }

    .checkout-payment-message {
        padding: 13px;
    }

    .yappy-checkout-box {
        padding: 13px;
    }

    .yappy-checkout-method {
        padding: 12px;
    }

    .yappy-method-icon {
        width: 36px;
        height: 36px;
    }

    .yappy-qr-container {
        padding: 6px;
    }

}

@media (max-width: 420px) {

    .checkout-box {
        padding: 16px;
    }

    .yappy-checkout-method {
        gap: 9px;
    }

    .yappy-method-icon {
        width: 34px;
        height: 34px;

        font-size: 16px;
    }

}
/* ============================================================
   CONFIRMACIÓN DE PEDIDO MODERNA
============================================================ */

.order-confirmation-modern {
    max-width: 900px;
}

.confirmation-store-label {
    display: inline-block;

    color: #d4af37;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.confirmation-intro {
    margin-bottom: 4px;
}

.confirmation-subtext {
    max-width: 620px;

    margin: 0 auto;

    color: #777 !important;

    font-size: 13px;
}

/* ============================================================
   ESTADO
============================================================ */

.confirmation-status {
    display: inline-flex;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 11px;
}

.confirmation-status-pending {
    color: #d4af37;

    background:
        rgba(212,175,55,0.10);
}

.confirmation-status-paid {
    color: #6fdc8c;

    background:
        rgba(111,220,140,0.10);
}

.confirmation-status-processing {
    color: #70b7ff;

    background:
        rgba(112,183,255,0.10);
}

.confirmation-status-shipped {
    color: #b18cff;

    background:
        rgba(177,140,255,0.10);
}

.confirmation-status-cancelled {
    color: #ff7777;

    background:
        rgba(255,119,119,0.10);
}

/* ============================================================
   RESUMEN
============================================================ */

.confirmation-order-summary {
    margin-top: 35px;

    padding: 25px;

    text-align: left;

    background: #0d0d0d;

    border: 1px solid #292929;
    border-radius: 12px;
}

.confirmation-section-title {
    margin-bottom: 18px;
}

.confirmation-section-title span {
    color: #d4af37;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.confirmation-section-title h2 {
    margin-top: 3px;

    font-size: 21px;
}

.confirmation-product {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;

    padding: 13px 0;

    border-bottom: 1px solid #222;
}

.confirmation-product > div {
    min-width: 0;
}

.confirmation-product strong {
    font-size: 12px;
}

.confirmation-product small {
    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 10px;
}

/* ============================================================
   TOTALES
============================================================ */

.confirmation-price-breakdown {
    padding-top: 18px;
}

.confirmation-price-breakdown > div {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 9px;

    color: #888;

    font-size: 12px;
}

.confirmation-price-breakdown strong {
    color: #fff;
}

.confirmation-final-total {
    margin-top: 15px !important;

    padding-top: 15px;

    border-top: 1px solid #292929;

    font-size: 17px !important;
}

.confirmation-final-total strong {
    color: #d4af37;

    font-size: 22px;
}

/* ============================================================
   PANEL DE PAGO
============================================================ */

.confirmation-payment-panel {
    margin-top: 25px;

    padding: 25px;

    text-align: left;

    background: #0d0d0d;

    border: 1px solid #292929;
    border-radius: 12px;
}

.confirmation-payment-header {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}

.confirmation-payment-header > span {
    font-size: 32px;
}

.confirmation-payment-header small {
    display: block;

    color: #d4af37;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.confirmation-payment-header h2 {
    margin: 2px 0 0;

    font-size: 21px;
}

.confirmation-payment-description {
    margin-bottom: 20px;

    color: #999 !important;

    font-size: 12px;
}

/* ============================================================
   OPCIONES YAPPY
============================================================ */

.confirmation-yappy-option {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 12px;

    padding: 15px;

    background: #151515;

    border: 1px solid #292929;
    border-radius: 9px;
}

.confirmation-yappy-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #1d1d1d;

    border-radius: 8px;

    font-size: 18px;
}

.confirmation-yappy-option strong {
    color: #fff;

    font-size: 12px;
}

.confirmation-yappy-option p {
    margin: 3px 0 10px;

    color: #777;

    font-size: 10px;
}

.confirmation-yappy-button {
    padding: 10px 17px;

    font-size: 10px;
}

/* ============================================================
   DIRECTORIO
============================================================ */

.confirmation-business {
    display: flex;
    flex-direction: column;
}

.confirmation-business strong {
    font-size: 16px;
}

.confirmation-business span {
    color: #d4af37;

    font-size: 11px;
    font-weight: 700;
}

/* ============================================================
   QR
============================================================ */

.confirmation-qr-option {
    display: block;

    text-align: center;
}

.confirmation-qr {
    max-width: 460px;

    margin: 15px auto 0;

    padding: 10px;

    background: #fff;

    border-radius: 10px;
}

.confirmation-qr img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 6px;
}

/* ============================================================
   REFERENCIA
============================================================ */

.payment-reference-box {
    margin: 18px 0;

    padding: 17px;

    text-align: center;

    background:
        rgba(212,175,55,0.07);

    border:
        1px solid
        rgba(212,175,55,0.30);

    border-radius: 9px;
}

.payment-reference-box small {
    display: block;

    color: #888;

    font-size: 9px;

    letter-spacing: 1px;
}

.payment-reference-box strong {
    display: block;

    margin: 5px 0;

    color: #d4af37;

    font-size: 20px;
}

.payment-reference-box p {
    margin: 0;

    color: #777;

    font-size: 10px;
}

/* ============================================================
   COMPROBANTE
============================================================ */

.payment-proof-section {
    margin-top: 20px;

    padding-top: 20px;

    border-top: 1px solid #292929;
}

.payment-proof-header {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 15px;
}

.payment-proof-header > span {
    font-size: 23px;
}

.payment-proof-header strong {
    color: #fff;

    font-size: 13px;
}

.payment-proof-header p {
    margin: 3px 0 0;

    color: #777;

    font-size: 10px;
}

/* INPUT */

.proof-file-label {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 16px;

    background: #151515;

    border: 1px dashed #444;
    border-radius: 9px;

    cursor: pointer;

    transition: 0.25s;
}

.proof-file-label:hover {
    border-color: #d4af37;
}

.proof-file-label > span {
    font-size: 25px;
}

.proof-file-label strong {
    display: block;

    color: #fff;

    font-size: 11px;
}

.proof-file-label small {
    display: block;

    margin-top: 2px;

    color: #666;

    font-size: 9px;
}

.proof-file-input {
    display: none;
}

.selected-proof-file {
    margin-top: 8px;

    color: #777;

    font-size: 10px;
}

.proof-submit {
    width: 100%;

    margin-top: 12px;

    border: 0;

    cursor: pointer;
}

/* ============================================================
   COMPROBANTE RECIBIDO
============================================================ */

.proof-uploaded,
.payment-success-message,
.card-payment-pending {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 16px;

    border-radius: 9px;
}

.proof-uploaded,
.payment-success-message {
    background:
        rgba(111,220,140,0.07);

    border:
        1px solid
        rgba(111,220,140,0.25);
}

.proof-uploaded > span,
.payment-success-message > span {
    color: #6fdc8c;

    font-size: 22px;
}

.proof-uploaded strong,
.payment-success-message strong {
    color: #6fdc8c;
}

.proof-uploaded p,
.payment-success-message p {
    margin: 3px 0 0;

    color: #888;

    font-size: 10px;
}

/* TARJETA */

.card-payment-pending {
    background:
        rgba(212,175,55,0.07);

    border:
        1px solid
        rgba(212,175,55,0.25);
}

.card-payment-pending > span {
    font-size: 24px;
}

.card-payment-pending strong {
    color: #d4af37;
}

.card-payment-pending p {
    margin-top: 4px;

    color: #888;

    font-size: 11px;
}

/* ============================================================
   EMAIL
============================================================ */

.confirmation-email-box {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-top: 25px;

    padding: 17px;

    text-align: left;

    background: #111;

    border: 1px solid #292929;
    border-radius: 9px;
}

.confirmation-email-box > span {
    font-size: 24px;
}

.confirmation-email-box strong {
    color: #fff;

    font-size: 12px;
}

.confirmation-email-box p {
    margin: 3px 0;

    color: #888;

    font-size: 10px;
}

.confirmation-email-box small {
    color: #666;

    font-size: 9px;
}

/* ============================================================
   ACCIONES
============================================================ */

.confirmation-actions {
    display: flex;
    justify-content: center;

    gap: 10px;

    margin-top: 30px;

    flex-wrap: wrap;
}

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

@media (max-width: 600px) {

    .order-confirmation-modern {
        padding:
            35px
            15px;
    }

    .confirmation-order-summary,
    .confirmation-payment-panel {
        padding: 16px;
    }

    .confirmation-product {
        gap: 10px;
    }

    .confirmation-yappy-option {
        padding: 12px;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .confirmation-actions .btn {
        width: 100%;
    }

}
/* =========================================================
   ADMIN - VERIFICACIÓN DE PAGOS
========================================================= */

.admin-payment-panel {
    margin-top: 24px;
}

.admin-payment-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    margin-top: 25px;
}

.admin-payment-details {
    display: flex;
    flex-direction: column;
}

.admin-payment-proof {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 18px;
    background: rgba(255,255,255,.02);
}

.payment-proof-label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: .65;
}

.payment-proof-image {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.payment-proof-image img {
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.payment-view-button {
    width: 100%;
    margin-top: 14px;
    text-align: center;
}

.payment-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.payment-approved {
    background: rgba(34, 197, 94, .14);
    color: #22c55e;
}

.payment-review {
    background: rgba(245, 158, 11, .14);
    color: #f59e0b;
}

.payment-waiting {
    background: rgba(148, 163, 184, .12);
    color: #94a3b8;
}

.payment-admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.payment-admin-actions form {
    margin: 0;
}

.payment-approve-button {
    border: 0;
    background: #16a34a;
    color: #fff;
    cursor: pointer;
}

.payment-approve-button:hover {
    background: #15803d;
}

.payment-reject-button {
    border: 1px solid rgba(239, 68, 68, .35);
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
    cursor: pointer;
}

.payment-reject-button:hover {
    background: rgba(239, 68, 68, .18);
}

.payment-no-proof {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.payment-no-proof > span {
    font-size: 38px;
}

.payment-no-proof p {
    margin: 0;
    opacity: .65;
    max-width: 280px;
}

.payment-verified-message {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
}

.payment-verified-message > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    height: 42px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    font-size: 22px;
    font-weight: 900;
}

.payment-verified-message strong {
    color: #22c55e;
}

.payment-verified-message p {
    margin: 4px 0 0;
    opacity: .7;
}

.admin-payment-alert {
    padding: 15px 18px;
    margin-bottom: 20px;
    border-radius: 12px;
    font-weight: 700;
}

.admin-payment-alert-danger {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #ef4444;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .admin-payment-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .payment-admin-actions {
        flex-direction: column;
    }

    .payment-admin-actions form {
        width: 100%;
    }

    .payment-admin-actions button {
        width: 100%;
    }

    .admin-payment-proof {
        padding: 12px;
    }

}
/* =====================================================
   YAPPY - DATOS DE PAGO
===================================================== */

.yappy-alternative-payment {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
}

.yappy-alternative-payment > p {
    margin: 0 0 15px;
}

.yappy-payment-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.yappy-payment-data > div {
    padding: 15px;
    border-radius: 12px;
    background: rgba(0,0,0,.20);
}

.yappy-payment-data small {
    display: block;
    margin-bottom: 5px;
    opacity: .7;
}

.yappy-payment-data strong {
    display: block;
    font-size: 18px;
}

.yappy-payment-note {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    font-size: 13px;
    opacity: .8;
}

@media (max-width: 600px) {

    .yappy-payment-data {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   ADMIN - PRODUCTOS DE PREVENTA
========================================================= */

.preorder-summary-panel {
    display: flex;
    align-items: center;
    gap: 25px;
}

.preorder-summary-image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
}

.preorder-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preorder-summary-info h2 {
    margin: 6px 0 12px;
}

.preorder-admin-products-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 25px;
}

.preorder-admin-product-card {
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    overflow: hidden;
    transition: .25s ease;
}

.preorder-admin-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
}

.preorder-admin-product-image {
    position: relative;
    height: 280px;
    background: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preorder-admin-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.preorder-product-placeholder {
    font-size: 70px;
    opacity: .35;
}

.preorder-product-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.preorder-product-status.active {
    background: rgba(39,174,96,.18);
    color: #4ade80;
}

.preorder-product-status.inactive {
    background: rgba(231,76,60,.18);
    color: #ff7675;
}

.preorder-admin-product-info {
    padding: 20px;
}

.preorder-product-game {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: .6;
}

.preorder-admin-product-info h3 {
    margin: 8px 0;
    font-size: 19px;
}

.preorder-admin-product-info > p {
    opacity: .7;
    font-size: 13px;
    line-height: 1.6;
}

.preorder-product-price {
    margin: 18px 0;
}

.preorder-product-price small {
    display: block;
    opacity: .55;
    margin-bottom: 3px;
}

.preorder-product-price strong {
    font-size: 25px;
}

.preorder-admin-data {
    display: grid;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
}

.preorder-admin-data > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.preorder-admin-data span {
    opacity: .6;
    font-size: 12px;
}

.preorder-admin-data strong {
    font-size: 12px;
    text-align: right;
}

.preorder-payment-deposit {
    color: #f6c453;
}

.preorder-payment-free {
    color: #67e8f9;
}

.preorder-deposit-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.preorder-deposit-preview > div {
    padding: 12px;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
}

.preorder-deposit-preview span {
    display: block;
    opacity: .55;
    font-size: 11px;
}

.preorder-deposit-preview strong {
    display: block;
    margin-top: 3px;
}

.preorder-admin-product-actions {
    margin-top: 18px;
}

.preorder-admin-product-actions .btn {
    width: 100%;
    text-align: center;
}

.preorder-products-empty {
    text-align: center;
    padding: 60px 20px;
}

.preorder-products-empty > span {
    display: block;
    font-size: 55px;
    margin-bottom: 15px;
}

.preorder-products-empty p {
    opacity: .65;
    margin-bottom: 25px;
}

/* =========================================================
   PREVIEW IMAGEN
========================================================= */

.preorder-image-preview {
    margin: 15px 0 20px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.preorder-image-preview img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 10px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .preorder-summary-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .preorder-summary-image {
        width: 100%;
        height: 220px;
    }

    .preorder-admin-products-grid {
        grid-template-columns: 1fr;
    }

    .preorder-admin-product-image {
        height: 320px;
    }

    .preorder-deposit-preview {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   PREVENTAS PÚBLICAS - NAKAMA STORE
========================================================= */

.preorders-public-page,
.preorder-detail-page {
    background: #080808;
}

/* =========================================================
   HERO GENERAL
========================================================= */

.preorders-main-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(212,175,55,.15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050505,
            #111
        );
}

.preorders-main-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96),
            rgba(0,0,0,.52),
            rgba(0,0,0,.88)
        );
}

.preorders-main-content {
    position: relative;
    z-index: 2;
    padding-top: 85px;
    padding-bottom: 85px;
}

.preorders-main-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #d4af37;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
}

.preorders-main-content h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(52px, 8vw, 100px);
    line-height: .9;
    letter-spacing: -4px;
}

.preorders-main-content h1 span {
    display: block;
    color: #d4af37;
}

.preorders-main-content > p {
    max-width: 650px;
    margin: 28px 0 35px;
    color: #aaa;
    font-size: 17px;
    line-height: 1.7;
}

.preorders-main-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 12px;
}

.preorders-main-features > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    column-gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
}

.preorders-main-features > div > span {
    grid-row: span 2;
    font-size: 28px;
}

.preorders-main-features strong {
    font-size: 12px;
}

.preorders-main-features small {
    color: #777;
    font-size: 9px;
}

/* =========================================================
   SECCIÓN LANZAMIENTOS
========================================================= */

.preorders-launches-section {
    padding: 100px 0;
}

.preorders-launches-list {
    display: flex;
    flex-direction: column;
    gap: 55px;
    margin-top: 50px;
}

/* =========================================================
   CARD GRANDE LANZAMIENTO
========================================================= */

.preorder-launch-card {
    display: grid;
    grid-template-columns: minmax(380px, .9fr) 1.1fr;

    min-height: 590px;

    overflow: hidden;

    background: #0e0e0e;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}

.preorder-launch-visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #050505;
}

.preorder-launch-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.preorder-launch-card:hover
.preorder-launch-visual > img {
    transform: scale(1.035);
}

.preorder-launch-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.85),
            transparent 50%
        );
}

.preorder-launch-placeholder {
    width: 100%;
    height: 100%;
    min-height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 120px;
}

.preorder-launch-badge {
    position: absolute;
    top: 25px;
    left: 25px;

    padding: 9px 14px;

    color: #050505;

    background: #d4af37;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorder-launch-badge.closed {
    color: white;
    background: #555;
}

.preorder-launch-game {
    position: absolute;
    left: 25px;
    bottom: 25px;

    color: white;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* =========================================================
   CONTENIDO LANZAMIENTO
========================================================= */

.preorder-launch-content {
    display: flex;
    flex-direction: column;

    padding: 50px;
}

.preorder-launch-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 25px;
}

.preorder-launch-small-label {
    color: #d4af37;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.preorder-launch-content h2 {
    max-width: 600px;

    margin: 8px 0 0;

    font-size: clamp(33px, 4vw, 55px);
    line-height: 1;
    letter-spacing: -2px;
}

/* =========================================================
   COUNTDOWN
========================================================= */

.preorder-countdown {
    min-width: 90px;

    padding: 15px;

    text-align: center;

    background:
        rgba(212,175,55,.08);

    border:
        1px solid
        rgba(212,175,55,.22);

    border-radius: 15px;
}

.preorder-countdown strong {
    display: block;

    color: #d4af37;

    font-size: 30px;
    line-height: 1;
}

.preorder-countdown span {
    display: block;

    margin-top: 4px;

    color: #777;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* =========================================================
   RELEASE
========================================================= */

.preorder-release-date {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.preorder-release-date > span {
    font-size: 25px;
}

.preorder-release-date small {
    display: block;

    color: #666;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.preorder-release-date strong {
    display: block;

    margin-top: 2px;

    font-size: 13px;
}

.preorder-launch-description {
    margin: 25px 0;

    color: #888;

    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   MINI PRODUCTOS
========================================================= */

.preorder-launch-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: auto;
}

.preorder-launch-mini-product {
    overflow: hidden;

    background: #141414;

    border: 1px solid #232323;
    border-radius: 11px;
}

.preorder-launch-mini-image {
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0a0a0a;
}

.preorder-launch-mini-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 8px;
}

.preorder-launch-mini-product > div:last-child {
    padding: 8px;
}

.preorder-launch-mini-product strong {
    display: block;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 9px;
}

.preorder-launch-mini-product small {
    display: block;

    margin-top: 3px;

    color: #d4af37;

    font-size: 10px;
    font-weight: 800;
}

/* =========================================================
   FOOTER LANZAMIENTO
========================================================= */

.preorder-launch-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid #252525;
}

.preorder-launch-stats {
    display: flex;
    gap: 20px;
}

.preorder-launch-stats > div {
    display: grid;
    grid-template-columns: 25px auto;
}

.preorder-launch-stats > div > span {
    grid-row: span 2;
}

.preorder-launch-stats strong {
    font-size: 13px;
}

.preorder-launch-stats small {
    color: #666;
    font-size: 9px;
}

.preorder-launch-button {
    padding: 15px 22px;
}

/* =========================================================
   CÓMO FUNCIONA
========================================================= */

.preorders-info-section {
    padding: 20px 0 100px;
}

.preorders-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.preorders-info-grid article {
    padding: 30px;

    background: #0d0d0d;

    border: 1px solid #202020;
    border-radius: 15px;
}

.preorders-info-grid article > span {
    color: #d4af37;

    font-size: 11px;
    font-weight: 900;
}

.preorders-info-grid h3 {
    margin: 12px 0 8px;
}

.preorders-info-grid p {
    margin: 0;

    color: #777;

    font-size: 11px;
    line-height: 1.7;
}

/* =========================================================
   PREVENTA INDIVIDUAL - HERO
========================================================= */

.preorder-detail-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #080808;
}

.preorder-detail-background {
    position: absolute;
    inset: 0;
}

.preorder-detail-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: blur(3px);

    transform: scale(1.03);

    opacity: .42;
}

.preorder-detail-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25),
            #080808 93%
        ),
        linear-gradient(
            90deg,
            #080808,
            rgba(8,8,8,.55)
        );
}

.preorder-detail-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 140px;
    padding-bottom: 70px;
}

.preorder-back-link {
    display: inline-block;

    margin-bottom: 35px;

    color: #888;

    font-size: 11px;
}

.preorder-detail-badge {
    display: table;

    margin-bottom: 15px;

    padding: 8px 13px;

    color: #050505;

    background: #d4af37;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorder-detail-badge.closed {
    color: white;
    background: #555;
}

.preorder-detail-game {
    display: block;

    margin-bottom: 8px;

    color: #aaa;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.preorder-detail-hero h1 {
    max-width: 950px;

    margin: 0;

    font-size: clamp(48px, 8vw, 100px);
    line-height: .93;
    letter-spacing: -4px;
}

.preorder-detail-hero-content > p {
    max-width: 720px;

    margin: 25px 0;

    color: #aaa;

    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   META DETAIL
========================================================= */

.preorder-detail-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.preorder-detail-meta > div {
    min-width: 170px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 12px;

    backdrop-filter: blur(10px);
}

.preorder-detail-meta > div > span {
    font-size: 23px;
}

.preorder-detail-meta small {
    display: block;

    color: #666;

    font-size: 8px;
    letter-spacing: 1px;
}

.preorder-detail-meta strong {
    display: block;

    margin-top: 2px;

    font-size: 11px;
}

/* =========================================================
   EXPLICACIÓN MODALIDADES
========================================================= */

.preorder-payment-explanation {
    padding: 45px 0;
}

.preorder-payment-explanation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.preorder-payment-explanation article {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 25px;

    background: #0e0e0e;

    border: 1px solid #202020;
    border-radius: 15px;
}

.preorder-method-icon {
    font-size: 28px;
}

.preorder-payment-explanation strong {
    font-size: 13px;
}

.preorder-payment-explanation p {
    margin: 5px 0 0;

    color: #777;

    font-size: 11px;
    line-height: 1.7;
}

/* =========================================================
   PRODUCTOS PÚBLICOS
========================================================= */

.preorder-products-public-section {
    padding: 60px 0 100px;
}

.preorder-products-public-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(300px, 1fr));

    gap: 25px;

    margin-top: 50px;
}

.preorder-public-product-card {
    overflow: hidden;

    background: #0e0e0e;

    border: 1px solid #202020;
    border-radius: 20px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.preorder-public-product-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(212,175,55,.35);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.35);
}

.preorder-public-product-card.sold-out {
    opacity: .7;
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.preorder-public-product-image {
    position: relative;

    height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            #181818,
            #080808 70%
        );
}

.preorder-public-product-image > img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 25px;

    transition: transform .35s ease;
}

.preorder-public-product-card:hover
.preorder-public-product-image > img {
    transform: scale(1.04);
}

.preorder-public-placeholder {
    font-size: 80px;
    opacity: .3;
}

/* =========================================================
   BADGES
========================================================= */

.preorder-product-payment-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 10px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorder-product-payment-badge.deposit {
    color: #050505;
    background: #d4af37;
}

.preorder-product-payment-badge.free {
    color: #050505;
    background: #67e8f9;
}

.preorder-low-stock-badge {
    position: absolute;

    right: 15px;
    bottom: 15px;

    padding: 7px 10px;

    color: #fff;

    background: rgba(220,38,38,.92);

    border-radius: 999px;

    font-size: 8px;
    font-weight: 900;
}

.preorder-product-soldout {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        rgba(0,0,0,.65);

    font-size: 25px;
    font-weight: 900;
    letter-spacing: 3px;
}

/* =========================================================
   PRODUCT INFO
========================================================= */

.preorder-public-product-info {
    padding: 23px;
}

.preorder-product-set-name {
    display: block;

    color: #d4af37;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorder-public-product-info h3 {
    margin: 8px 0 10px;

    font-size: 20px;
}

.preorder-public-product-info > p {
    min-height: 58px;

    margin: 0 0 20px;

    color: #777;

    font-size: 11px;
    line-height: 1.7;
}

/* =========================================================
   PRECIO
========================================================= */

.preorder-public-price small {
    display: block;

    color: #666;

    font-size: 9px;
}

.preorder-public-price strong {
    display: block;

    margin-top: 2px;

    color: #fff;

    font-size: 27px;
}

/* =========================================================
   ABONO
========================================================= */

.preorder-public-deposit {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8px;

    margin-top: 17px;
}

.preorder-public-deposit > div {
    padding: 12px;

    background:
        rgba(212,175,55,.06);

    border:
        1px solid
        rgba(212,175,55,.15);

    border-radius: 9px;
}

.preorder-public-deposit span {
    display: block;

    color: #777;

    font-size: 8px;
}

.preorder-public-deposit strong {
    display: block;

    margin-top: 2px;

    color: #d4af37;

    font-size: 13px;
}

/* =========================================================
   SIN PAGO
========================================================= */

.preorder-free-reservation-message {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin-top: 17px;

    padding: 12px;

    background:
        rgba(103,232,249,.05);

    border:
        1px solid
        rgba(103,232,249,.14);

    border-radius: 9px;
}

.preorder-free-reservation-message > span {
    color: #67e8f9;
}

.preorder-free-reservation-message p {
    margin: 0;

    color: #888;

    font-size: 9px;
    line-height: 1.5;
}

/* =========================================================
   DISPONIBILIDAD
========================================================= */

.preorder-public-availability {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8px;

    margin: 17px 0;
}

.preorder-public-availability > div {
    padding: 10px;

    background: #151515;

    border-radius: 8px;
}

.preorder-public-availability span {
    display: block;

    color: #666;

    font-size: 8px;
}

.preorder-public-availability strong {
    display: block;

    margin-top: 2px;

    font-size: 10px;
}

.preorder-reserve-button,
.preorder-disabled-button {
    width: 100%;

    text-align: center;
}

.preorder-disabled-button {
    border: 1px solid #333;
    background: #222;
    color: #666;
}

/* =========================================================
   AVISO
========================================================= */

.preorder-public-notice-section {
    padding: 0 0 100px;
}

.preorder-public-notice {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 25px;

    background: #0e0e0e;

    border:
        1px solid
        rgba(212,175,55,.18);

    border-radius: 15px;
}

.preorder-public-notice > span {
    font-size: 27px;
}

.preorder-public-notice strong {
    color: #d4af37;
}

.preorder-public-notice p {
    margin: 7px 0 0;

    color: #777;

    font-size: 10px;
    line-height: 1.7;
}

/* =========================================================
   VACÍO
========================================================= */

.preorders-public-empty {
    padding: 80px 25px;

    text-align: center;
}

.preorders-public-empty > span {
    display: block;

    margin-bottom: 15px;

    font-size: 65px;
}

.preorders-public-empty p {
    color: #777;
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1000px) {

    .preorder-launch-card {
        grid-template-columns: 1fr;
    }

    .preorder-launch-visual {
        min-height: 450px;
    }

    .preorder-launch-products {
        margin-top: 30px;
    }

}

/* =========================================================
   RESPONSIVE MÓVIL
========================================================= */

@media (max-width: 700px) {

    .preorders-main-hero {
        min-height: auto;
    }

    .preorders-main-content {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .preorders-main-content h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .preorders-main-content > p {
        font-size: 14px;
    }

    .preorders-main-features {
        grid-template-columns: 1fr;
    }

    .preorders-launches-section {
        padding: 65px 0;
    }

    .preorder-launch-card {
        min-height: auto;
        border-radius: 17px;
    }

    .preorder-launch-visual {
        min-height: 360px;
    }

    .preorder-launch-content {
        padding: 25px;
    }

    .preorder-launch-top {
        flex-direction: column;
    }

    .preorder-countdown {
        width: 100%;
    }

    .preorder-launch-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .preorder-launch-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .preorder-launch-button {
        width: 100%;
        text-align: center;
    }

    .preorders-info-grid {
        grid-template-columns: 1fr;
    }

    .preorder-detail-hero {
        min-height: 620px;
    }

    .preorder-detail-hero-content {
        padding-top: 100px;
    }

    .preorder-detail-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .preorder-detail-meta {
        flex-direction: column;
    }

    .preorder-detail-meta > div {
        width: 100%;
    }

    .preorder-payment-explanation-grid {
        grid-template-columns: 1fr;
    }

    .preorder-products-public-grid {
        grid-template-columns: 1fr;
    }

    .preorder-public-product-image {
        height: 400px;
    }

}

/* =========================================================
   PANTALLAS MUY PEQUEÑAS
========================================================= */

@media (max-width: 420px) {

    .preorder-launch-visual {
        min-height: 300px;
    }

    .preorder-launch-content {
        padding: 20px;
    }

    .preorder-launch-products {
        grid-template-columns: 1fr 1fr;
    }

    .preorder-launch-mini-image {
        height: 90px;
    }

    .preorder-public-product-image {
        height: 350px;
    }

}
/* =========================================================
   RESERVAR PREVENTA
========================================================= */

.preorder-reservation-page {
    min-height: 100vh;
    background: #080808;
}

.preorder-reservation-section {
    padding: 80px 0 110px;
}

.preorder-reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .75fr);
    gap: 35px;
    align-items: start;
}

/* =========================================================
   PRODUCTO
========================================================= */

.preorder-reservation-product {
    overflow: hidden;

    background: #0e0e0e;

    border: 1px solid #202020;
    border-radius: 22px;
}

.preorder-reservation-product-image {
    position: relative;

    height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            #1a1a1a,
            #080808 70%
        );

    overflow: hidden;
}

.preorder-reservation-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 35px;
}

.preorder-reservation-product-info {
    padding: 32px;
}

.preorder-reservation-product-info h1 {
    margin: 8px 0 4px;

    font-size: 38px;
    line-height: 1.05;
}

.preorder-reservation-set {
    color: #777;

    font-size: 12px;
}

.preorder-reservation-product-info > p {
    margin: 20px 0;

    color: #888;

    line-height: 1.7;
}

.preorder-reservation-price {
    margin-top: 25px;
}

.preorder-reservation-price small {
    display: block;

    color: #666;
}

.preorder-reservation-price strong {
    display: block;

    margin-top: 2px;

    font-size: 34px;
}

.preorder-reservation-availability {
    display: flex;
    justify-content: space-between;

    margin-top: 20px;

    padding: 14px 16px;

    background: #151515;

    border-radius: 10px;
}

.preorder-reservation-availability span {
    color: #777;
}

.preorder-reservation-limit {
    margin-top: 10px;

    color: #777;

    font-size: 12px;
}

/* =========================================================
   FORM
========================================================= */

.preorder-reservation-form-box {
    position: sticky;
    top: 100px;

    padding: 30px;

    background: #0e0e0e;

    border: 1px solid #242424;
    border-radius: 22px;
}

.preorder-reservation-form-box h2 {
    margin: 7px 0 8px;

    font-size: 30px;
}

.preorder-form-intro {
    margin-bottom: 25px;

    color: #777;

    font-size: 12px;
    line-height: 1.7;
}

.preorder-form-error {
    margin-bottom: 20px;

    padding: 14px;

    color: #ff8a8a;

    background:
        rgba(239,68,68,.09);

    border:
        1px solid
        rgba(239,68,68,.25);

    border-radius: 10px;

    font-size: 12px;
}

/* =========================================================
   CANTIDAD
========================================================= */

.preorder-quantity-selector {
    display: grid;
    grid-template-columns: 48px 1fr 48px;

    max-width: 210px;

    overflow: hidden;

    border: 1px solid #303030;
    border-radius: 10px;
}

.preorder-quantity-selector button {
    border: 0;

    color: #fff;
    background: #191919;

    font-size: 21px;

    cursor: pointer;
}

.preorder-quantity-selector button:hover {
    background: #242424;
}

.preorder-quantity-selector input {
    width: 100%;
    height: 48px;

    text-align: center;

    border: 0;
    border-left: 1px solid #303030;
    border-right: 1px solid #303030;
    border-radius: 0;
}

/* =========================================================
   RESUMEN
========================================================= */

.preorder-live-summary {
    margin: 22px 0;

    padding: 17px;

    background:
        rgba(212,175,55,.05);

    border:
        1px solid
        rgba(212,175,55,.16);

    border-radius: 12px;
}

.preorder-live-summary > div {
    display: flex;
    justify-content: space-between;

    gap: 15px;

    padding: 5px 0;
}

.preorder-live-summary span {
    color: #777;

    font-size: 11px;
}

.preorder-live-summary strong {
    font-size: 13px;
}

.preorder-live-summary > div:first-child {
    padding-bottom: 10px;
    margin-bottom: 6px;

    border-bottom: 1px solid #282828;
}

.preorder-live-summary > div:first-child strong {
    color: #d4af37;

    font-size: 19px;
}

/* =========================================================
   CONDICIONES
========================================================= */

.preorder-terms-check {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 20px 0;

    cursor: pointer;
}

.preorder-terms-check input {
    margin-top: 4px;
}

.preorder-terms-check span {
    color: #888;

    font-size: 11px;
    line-height: 1.6;
}

.preorder-final-note {
    margin: 15px 0;

    padding: 13px;

    color: #888;

    background: #151515;

    border-radius: 9px;

    font-size: 10px;
    line-height: 1.6;
}

.preorder-submit-button {
    width: 100%;

    margin-top: 5px;

    text-align: center;

    border: 0;

    cursor: pointer;
}

.preorder-security-note {
    margin-top: 13px;

    text-align: center;

    color: #555;

    font-size: 9px;
}

.preorder-form-unavailable {
    padding: 50px 15px;

    text-align: center;
}

.preorder-form-unavailable > span {
    display: block;

    margin-bottom: 12px;

    font-size: 45px;
}

.preorder-form-unavailable p {
    color: #777;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .preorder-reservation-layout {
        grid-template-columns: 1fr;
    }

    .preorder-reservation-form-box {
        position: static;
    }

}

@media (max-width: 600px) {

    .preorder-reservation-section {
        padding-top: 45px;
    }

    .preorder-reservation-product-image {
        height: 390px;
    }

    .preorder-reservation-product-info,
    .preorder-reservation-form-box {
        padding: 20px;
    }

    .preorder-reservation-product-info h1 {
        font-size: 30px;
    }

}
/* =========================================================
   PREVENTA - CORREO PENDIENTE
========================================================= */

.preventa-email-pending-section {
    padding: 70px 20px;
    min-height: 80vh;
}

.preventa-email-pending-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 45px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,.10);
    text-align: center;
}

.preventa-email-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    font-size: 42px;
}

.preventa-email-brand {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.preventa-email-pending-card h1 {
    font-size: 38px;
    margin: 0 0 15px;
}

.preventa-email-main-text {
    max-width: 580px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.preventa-reserva-number {
    display: inline-block;
    padding: 9px 17px;
    border-radius: 30px;
    background: #111827;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
}

.preventa-email-destination {
    padding: 22px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 30px;
}

.preventa-email-destination small {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}

.preventa-email-destination strong {
    font-size: 18px;
}

.preventa-email-steps {
    text-align: left;
    margin: 30px 0;
}

.preventa-email-step {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.preventa-email-step > span {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.preventa-email-step p {
    margin: 5px 0 0;
    line-height: 1.5;
}

.preventa-email-warning,
.preventa-email-expired {
    display: flex;
    text-align: left;
    gap: 15px;
    padding: 20px;
    margin: 25px 0;
    border-radius: 14px;
    background: #fff7ed;
}

.preventa-email-warning > span,
.preventa-email-expired > span {
    font-size: 25px;
}

.preventa-email-warning p,
.preventa-email-expired p {
    margin: 5px 0 0;
}

.preventa-email-spam {
    padding: 20px;
    margin: 25px 0;
    border-radius: 14px;
    background: #f9fafb;
}

.preventa-email-spam p {
    margin: 8px 0 0;
}

.preventa-pending-products {
    margin-top: 30px;
    text-align: left;
}

.preventa-pending-products h3 {
    margin-bottom: 15px;
}

.preventa-pending-product {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.preventa-pending-product small {
    display: block;
    margin-top: 5px;
}

.preventa-pending-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    margin-top: 10px;
}

.preventa-pending-total strong {
    font-size: 27px;
}

.preventa-pending-important {
    text-align: left;
    padding: 20px;
    border-radius: 14px;
    background: #f3f4f6;
    margin: 20px 0 30px;
}

.preventa-pending-important p {
    margin: 8px 0 0;
    line-height: 1.6;
}

.preventa-pending-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 600px) {

    .preventa-email-pending-card {
        padding: 30px 20px;
    }

    .preventa-email-pending-card h1 {
        font-size: 30px;
    }

    .preventa-pending-product {
        flex-direction: column;
    }

}
/* =========================================================
   SEGUIMIENTO DE PREVENTA
========================================================= */

.preorder-tracking-page {
    min-height: 80vh;
}

.preorder-tracking-hero {
    padding: 65px 20px 110px;
    text-align: center;
    background: #111827;
    color: #fff;
}

.preorder-tracking-brand {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
}

.preorder-tracking-hero h1 {
    margin: 0 0 12px;
    font-size: 44px;
}

.preorder-tracking-hero p {
    margin: 0;
    opacity: .8;
}

.preorder-tracking-section {
    padding: 0 20px 80px;
}

.preorder-tracking-card {
    max-width: 1050px;
    margin: -60px auto 0;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* ESTADO */

.preorder-tracking-status {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.preorder-tracking-status-icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 34px;
}

.preorder-status-success {
    background: #dcfce7;
}

.preorder-status-payment {
    background: #fef3c7;
}

.preorder-status-cancelled {
    background: #fee2e2;
}

.preorder-tracking-status span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.preorder-tracking-status h2 {
    margin: 5px 0;
    font-size: 30px;
}

.preorder-tracking-status p {
    margin: 0;
}

/* INFO */

.preorder-tracking-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.preorder-tracking-info-grid > div {
    padding: 18px;
    border-radius: 14px;
    background: #f9fafb;
}

.preorder-tracking-info-grid small {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    color: #6b7280;
}

/* PROGRESO */

.preorder-progress {
    margin: 40px 0;
}

.preorder-progress h3 {
    margin-bottom: 25px;
}

.preorder-progress-list {
    display: flex;
    align-items: flex-start;
}

.preorder-progress-item {
    flex: 0 0 180px;
    text-align: center;
}

.preorder-progress-item > span {
    width: 44px;
    height: 44px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5e7eb;
    font-weight: 800;
}

.preorder-progress-item.completed > span {
    background: #111827;
    color: #fff;
}

.preorder-progress-item strong {
    display: block;
    margin-top: 10px;
}

.preorder-progress-item small {
    display: block;
    margin-top: 5px;
    color: #6b7280;
}

.preorder-progress-line {
    flex: 1;
    height: 3px;
    margin-top: 21px;
    background: #e5e7eb;
}

/* PRODUCTOS */

.preorder-tracking-products {
    margin-top: 45px;
}

.preorder-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
}

.preorder-section-heading span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.preorder-section-heading h3 {
    margin: 5px 0 0;
    font-size: 25px;
}

.preorder-tracking-product {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.preorder-tracking-product-image {
    width: 130px;
    height: 130px;
    border-radius: 15px;
    overflow: hidden;
    background: #f3f4f6;
}

.preorder-tracking-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preorder-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.preorder-product-type {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.preorder-tracking-product-info h4 {
    margin: 7px 0;
    font-size: 21px;
}

.preorder-tracking-product-info p {
    margin: 5px 0 12px;
    color: #6b7280;
}

.preorder-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.preorder-tracking-product-price {
    min-width: 120px;
    text-align: right;
}

.preorder-tracking-product-price small {
    display: block;
}

.preorder-tracking-product-price strong {
    display: block;
    margin-top: 5px;
    font-size: 23px;
}

/* RESUMEN */

.preorder-payment-summary {
    max-width: 500px;
    margin: 35px 0 35px auto;
    padding: 25px;
    background: #f9fafb;
    border-radius: 16px;
}

.preorder-payment-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
}

.preorder-payment-summary-row:last-child {
    padding-top: 15px;
    margin-top: 8px;
    border-top: 1px solid #d1d5db;
}

/* MENSAJES */

.preorder-no-payment-box,
.preorder-deposit-box,
.preorder-release-info {
    display: flex;
    gap: 20px;
    padding: 28px;
    margin-top: 25px;
    border-radius: 18px;
}

.preorder-no-payment-box {
    background: #eff6ff;
}

.preorder-deposit-box {
    background: #fff7ed;
}

.preorder-release-info {
    background: #f3f4f6;
}

.preorder-message-icon {
    font-size: 32px;
}

.preorder-no-payment-box > div > span,
.preorder-deposit-box > div > span,
.preorder-release-info > div > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.preorder-no-payment-box h3,
.preorder-deposit-box h3,
.preorder-release-info h3 {
    margin: 6px 0 10px;
}

.preorder-no-payment-box p,
.preorder-deposit-box p,
.preorder-release-info p {
    line-height: 1.6;
}

.preorder-deposit-amount {
    margin: 20px 0;
}

.preorder-deposit-amount small {
    display: block;
    font-weight: 800;
}

.preorder-deposit-amount strong {
    display: block;
    margin-top: 5px;
    font-size: 35px;
}

.preorder-next-step {
    font-weight: 600;
}

/* NOTAS */

.preorder-customer-notes {
    padding: 22px;
    margin-top: 25px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.preorder-customer-notes span {
    font-size: 12px;
    font-weight: 800;
}

.preorder-customer-notes p {
    margin-bottom: 0;
}

/* SEGURIDAD */

.preorder-tracking-security {
    margin-top: 30px;
    padding: 22px;
    text-align: center;
    border-radius: 16px;
    background: #111827;
    color: #fff;
}

.preorder-tracking-security p {
    margin: 8px 0;
}

.preorder-tracking-security small {
    opacity: .7;
}

/* BOTONES */

.preorder-tracking-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

/* RESPONSIVE */

@media (max-width: 850px) {

    .preorder-tracking-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preorder-progress-list {
        flex-direction: column;
    }

    .preorder-progress-item {
        flex: none;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .preorder-progress-item > span {
        margin: 0;
        flex: 0 0 44px;
    }

    .preorder-progress-item strong {
        margin-top: 0;
    }

    .preorder-progress-line {
        width: 3px;
        height: 30px;
        flex: none;
        margin: 0 0 0 21px;
    }

}

@media (max-width: 650px) {

    .preorder-tracking-hero h1 {
        font-size: 34px;
    }

    .preorder-tracking-card {
        padding: 25px 18px;
    }

    .preorder-tracking-status {
        align-items: flex-start;
    }

    .preorder-tracking-info-grid {
        grid-template-columns: 1fr;
    }

    .preorder-tracking-product {
        grid-template-columns: 90px 1fr;
    }

    .preorder-tracking-product-image {
        width: 90px;
        height: 90px;
    }

    .preorder-tracking-product-price {
        grid-column: 1 / -1;
        text-align: right;
    }

}
/* =========================================================
   CORRECCIÓN DE COLORES - SEGUIMIENTO PREVENTA
   Evita heredar texto blanco del diseño general
========================================================= */

/* Fondo general */
.preorder-tracking-page,
.preorder-tracking-section {
    background: #f4f6f8;
}

/* =========================================================
   TARJETA PRINCIPAL
========================================================= */

.preorder-tracking-card {
    background: #ffffff;
    color: #111827;
}

.preorder-tracking-card h1,
.preorder-tracking-card h2,
.preorder-tracking-card h3,
.preorder-tracking-card h4,
.preorder-tracking-card strong {
    color: #111827;
}

.preorder-tracking-card p {
    color: #4b5563;
}

.preorder-tracking-card small {
    color: #6b7280;
}

/* =========================================================
   HERO
========================================================= */

.preorder-tracking-hero {
    background: #111827;
    color: #ffffff;
}

.preorder-tracking-hero h1,
.preorder-tracking-hero p,
.preorder-tracking-hero span {
    color: #ffffff;
}

.preorder-tracking-hero p {
    color: rgba(255,255,255,.78);
}

/* =========================================================
   ESTADO PRINCIPAL
========================================================= */

.preorder-tracking-status {
    color: #111827;
}

.preorder-tracking-status > div > span {
    color: #6b7280;
}

.preorder-tracking-status h2 {
    color: #111827;
}

.preorder-tracking-status p {
    color: #4b5563;
}

/* =========================================================
   INFORMACIÓN DEL CLIENTE
========================================================= */

.preorder-tracking-info-grid > div {
    background: #f8fafc;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.preorder-tracking-info-grid small {
    color: #6b7280;
}

.preorder-tracking-info-grid strong {
    color: #111827;
}

/* =========================================================
   PROGRESO
========================================================= */

.preorder-progress {
    color: #111827;
}

.preorder-progress h3 {
    color: #111827;
}

.preorder-progress-item strong {
    color: #111827;
}

.preorder-progress-item small {
    color: #6b7280;
}

.preorder-progress-item > span {
    background: #e5e7eb;
    color: #374151;
}

.preorder-progress-item.completed > span {
    background: #111827;
    color: #ffffff;
}

/* =========================================================
   ENCABEZADO DE PRODUCTOS
========================================================= */

.preorder-section-heading {
    color: #111827;
}

.preorder-section-heading span {
    color: #6b7280;
}

.preorder-section-heading h3,
.preorder-section-heading strong {
    color: #111827;
}

/* =========================================================
   PRODUCTOS
========================================================= */

.preorder-tracking-product {
    color: #111827;
}

.preorder-tracking-product-info {
    color: #111827;
}

.preorder-tracking-product-info h4 {
    color: #111827;
}

.preorder-tracking-product-info p {
    color: #6b7280;
}

.preorder-product-type {
    color: #7c3aed;
}

.preorder-product-meta {
    color: #4b5563;
}

.preorder-product-meta span {
    color: #4b5563;
}

.preorder-product-meta strong {
    color: #111827;
}

.preorder-tracking-product-price small {
    color: #6b7280;
}

.preorder-tracking-product-price strong {
    color: #111827;
}

/* =========================================================
   RESUMEN DE PAGO
========================================================= */

.preorder-payment-summary {
    background: #f8fafc;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.preorder-payment-summary-row {
    color: #4b5563;
}

.preorder-payment-summary-row span {
    color: #4b5563;
}

.preorder-payment-summary-row strong {
    color: #111827;
}

/* =========================================================
   RESERVA SIN PAGO
========================================================= */

.preorder-no-payment-box {
    background: #eff6ff;
    color: #111827;
    border: 1px solid #bfdbfe;
}

.preorder-no-payment-box > div > span {
    color: #2563eb;
}

.preorder-no-payment-box h3 {
    color: #111827;
}

.preorder-no-payment-box p {
    color: #374151;
}

/* =========================================================
   ABONO 50%
========================================================= */

.preorder-deposit-box {
    background: #fff7ed;
    color: #111827;
    border: 1px solid #fed7aa;
}

.preorder-deposit-box > div > span {
    color: #c2410c;
}

.preorder-deposit-box h3 {
    color: #111827;
}

.preorder-deposit-box p {
    color: #4b5563;
}

.preorder-deposit-amount small {
    color: #9a3412;
}

.preorder-deposit-amount strong {
    color: #111827;
}

/* =========================================================
   INFORMACIÓN DE LANZAMIENTO
========================================================= */

.preorder-release-info {
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.preorder-release-info > div > span {
    color: #6b7280;
}

.preorder-release-info h3 {
    color: #111827;
}

.preorder-release-info p {
    color: #4b5563;
}

/* =========================================================
   NOTAS DEL CLIENTE
========================================================= */

.preorder-customer-notes {
    background: #ffffff;
    color: #111827;
}

.preorder-customer-notes span {
    color: #6b7280;
}

.preorder-customer-notes p {
    color: #374151;
}

/* =========================================================
   CAJA DE SEGURIDAD
========================================================= */

.preorder-tracking-security {
    background: #111827;
    color: #ffffff;
}

.preorder-tracking-security strong {
    color: #ffffff;
}

.preorder-tracking-security p {
    color: #e5e7eb;
}

.preorder-tracking-security small {
    color: #9ca3af;
}

/* =========================================================
   ICONOS DE ESTADO
========================================================= */

.preorder-status-success {
    background: #dcfce7;
    color: #166534;
}

.preorder-status-payment {
    background: #fef3c7;
    color: #92400e;
}

.preorder-status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}
/* =========================================================
   YAPPY - ABONO PREVENTA
========================================================= */

.preorder-yappy-box {
    margin-top: 25px;
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    text-align: center;
}

.preorder-yappy-box span {
    display: block;
    margin-bottom: 8px;
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.preorder-yappy-box h4 {
    margin: 5px 0 15px;
    color: #111827;
    font-size: 23px;
}

.preorder-yappy-box p {
    color: #4b5563;
}

.preorder-yappy-number {
    display: block;
    margin: 12px 0 18px;
    color: #111827 !important;
    font-size: 32px;
    letter-spacing: 2px;
}

.preorder-yappy-total {
    display: block;
    margin-top: 8px;
    color: #111827 !important;
    font-size: 36px;
}

/* =========================================================
   COMPROBANTE PREVENTA
========================================================= */

.preorder-proof-upload {
    margin-top: 25px;
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.preorder-proof-upload h4 {
    margin-top: 0;
    color: #111827;
}

.preorder-proof-upload p {
    color: #4b5563;
}

.preorder-proof-upload label {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 700;
}

.preorder-proof-upload input[type="file"] {
    width: 100%;
    padding: 13px;
    margin-bottom: 7px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #f9fafb;
    color: #111827;
}

.preorder-proof-upload small {
    display: block;
    margin-bottom: 18px;
    color: #6b7280;
}
/* =========================================================
   ADMIN - DETALLE DE RESERVA DE PREVENTA
========================================================= */

.admin-body {
    background: #0b0b0b;
}

.admin-content {
    padding: 34px;
}

/* =========================================================
   HEADER DE PÁGINA
========================================================= */

.admin-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-bottom: 28px;
}

.admin-page-header > div > span {
    display: block;

    margin-bottom: 6px;

    color: #d4af37;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.admin-page-header h1 {
    margin: 0;

    color: #fff;

    font-size: 34px;
}

.admin-page-header p {
    margin: 8px 0 0;

    color: #888;

    font-size: 12px;
}

/* =========================================================
   TARJETAS ADMIN
========================================================= */

.admin-card {
    margin-bottom: 25px;
    padding: 28px;

    background: #111;

    border: 1px solid #232323;
    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 22px;
    padding-bottom: 18px;

    border-bottom: 1px solid #252525;
}

.admin-card-header span {
    display: block;

    color: #d4af37;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.admin-card-header h2 {
    margin: 5px 0 0;

    color: #fff;

    font-size: 23px;
}

/* =========================================================
   MENSAJES
========================================================= */

.admin-alert {
    margin-bottom: 20px;
    padding: 15px 18px;

    border-radius: 11px;

    font-size: 12px;
    font-weight: 700;
}

.admin-alert-success {
    color: #86efac;

    background: rgba(34,197,94,.08);

    border: 1px solid rgba(34,197,94,.25);
}

.admin-alert-error {
    color: #fca5a5;

    background: rgba(239,68,68,.08);

    border: 1px solid rgba(239,68,68,.25);
}

/* =========================================================
   INFO CLIENTE
========================================================= */

.preorder-admin-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.preorder-admin-info-grid > div {
    padding: 16px;

    background: #171717;

    border: 1px solid #262626;
    border-radius: 12px;
}

.preorder-admin-info-grid small {
    display: block;

    margin-bottom: 6px;

    color: #777;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.preorder-admin-info-grid strong {
    display: block;

    color: #fff;

    font-size: 12px;

    overflow-wrap: anywhere;
}

/* =========================================================
   NOTAS
========================================================= */

.preorder-admin-notes {
    margin-top: 18px;
    padding: 18px;

    background: #171717;

    border: 1px solid #262626;
    border-radius: 12px;
}

.preorder-admin-notes small {
    color: #d4af37;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorder-admin-notes p {
    margin: 8px 0 0;

    color: #aaa;

    line-height: 1.7;
}

/* =========================================================
   PRODUCTOS
========================================================= */

.preorder-admin-products {
    display: flex;
    flex-direction: column;
}

.preorder-admin-product {
    display: grid;
    grid-template-columns: 130px 1fr auto;

    gap: 20px;
    align-items: center;

    padding: 18px 0;

    border-bottom: 1px solid #252525;
}

.preorder-admin-product:last-child {
    border-bottom: 0;
}

.preorder-admin-product-image {
    width: 130px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #080808;

    border: 1px solid #252525;
    border-radius: 14px;
}

.preorder-admin-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 8px;
}

.preorder-admin-product-image > span {
    font-size: 35px;
}

.preorder-admin-product-info small {
    color: #d4af37;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorder-admin-product-info h3 {
    margin: 7px 0 10px;

    color: #fff;

    font-size: 20px;
}

.preorder-admin-product-info p {
    margin: 4px 0;

    color: #888;

    font-size: 11px;
}

.preorder-admin-product-info p strong {
    color: #fff;
}

.preorder-admin-product-total {
    min-width: 120px;

    text-align: right;
}

.preorder-admin-product-total small {
    display: block;

    color: #777;

    font-size: 9px;
}

.preorder-admin-product-total strong {
    display: block;

    margin-top: 5px;

    color: #fff;

    font-size: 23px;
}

/* =========================================================
   RESUMEN FINANCIERO
========================================================= */

.preorder-admin-payment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.preorder-admin-payment-grid > div {
    padding: 20px;

    background: #171717;

    border: 1px solid #292929;
    border-radius: 12px;
}

.preorder-admin-payment-grid small {
    display: block;

    margin-bottom: 6px;

    color: #777;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.preorder-admin-payment-grid strong {
    color: #fff;

    font-size: 23px;
}

/* =========================================================
   ESTADOS
========================================================= */

.preorder-admin-status {
    display: inline-flex;
    align-items: center;

    padding: 8px 12px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorder-admin-status.verified {
    color: #86efac;

    background: rgba(34,197,94,.08);

    border: 1px solid rgba(34,197,94,.25);
}

.preorder-admin-status.review {
    color: #fde68a;

    background: rgba(234,179,8,.08);

    border: 1px solid rgba(234,179,8,.25);
}

.preorder-admin-status.pending {
    color: #aaa;

    background: #171717;

    border: 1px solid #303030;
}

/* =========================================================
   COMPROBANTE
========================================================= */

.preorder-admin-proof {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) 1fr;

    gap: 30px;
    align-items: start;
}

.preorder-admin-proof-image {
    overflow: hidden;

    background: #080808;

    border: 1px solid #292929;
    border-radius: 16px;
}

.preorder-admin-proof-image a {
    display: block;
}

.preorder-admin-proof-image img {
    display: block;

    width: 100%;
    max-height: 600px;

    object-fit: contain;
}

.preorder-admin-proof-info {
    padding: 10px 0;
}

.preorder-admin-proof-info > span {
    display: block;

    color: #777;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorder-admin-proof-amount {
    display: block;

    margin: 8px 0 20px;

    color: #d4af37;

    font-size: 38px;
}

.preorder-admin-proof-info p {
    color: #999;

    font-size: 11px;
    line-height: 1.6;
}

.preorder-admin-proof-info p strong {
    color: #fff;
}

/* =========================================================
   BOTONES COMPROBANTE
========================================================= */

.preorder-admin-proof-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}

.preorder-admin-proof-actions form {
    margin: 0;
}

/* =========================================================
   APROBADO
========================================================= */

.preorder-admin-verified-message {
    margin: 20px 0;

    padding: 18px;

    color: #86efac;

    background: rgba(34,197,94,.07);

    border: 1px solid rgba(34,197,94,.22);
    border-radius: 12px;
}

.preorder-admin-verified-message strong {
    color: #86efac;
}

.preorder-admin-verified-message p {
    margin: 6px 0 0;

    color: #aaa;
}

/* =========================================================
   SIN COMPROBANTE
========================================================= */

.preorder-admin-empty-proof {
    padding: 55px 20px;

    text-align: center;

    background: #151515;

    border: 1px dashed #333;
    border-radius: 14px;
}

.preorder-admin-empty-proof > span {
    display: block;

    margin-bottom: 10px;

    font-size: 40px;
}

.preorder-admin-empty-proof h3 {
    margin: 0 0 7px;

    color: #fff;
}

.preorder-admin-empty-proof p {
    margin: 0;

    color: #777;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .preorder-admin-payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preorder-admin-proof {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {

    .admin-content {
        padding: 20px;
    }

    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .preorder-admin-info-grid {
        grid-template-columns: 1fr;
    }

    .preorder-admin-product {
        grid-template-columns: 90px 1fr;
    }

    .preorder-admin-product-image {
        width: 90px;
        height: 90px;
    }

    .preorder-admin-product-total {
        grid-column: 1 / -1;

        text-align: right;
    }

    .preorder-admin-payment-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   ADMIN PREVENTAS - DASHBOARD
========================================================= */

.preorders-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;

    margin-bottom: 25px;
}

.preorders-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 105px;
    padding: 20px;

    background: #111;

    border: 1px solid #252525;
    border-radius: 16px;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.preorders-stat-card:hover {
    transform: translateY(-2px);
    border-color: #3a3a3a;
}

.preorders-stat-card.important {
    border-color: rgba(212,175,55,.45);
}

.preorders-stat-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #191919;

    border: 1px solid #292929;
    border-radius: 12px;

    font-size: 20px;
}

.preorders-stat-card small {
    display: block;

    margin-bottom: 5px;

    color: #777;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.preorders-stat-card strong {
    color: #fff;

    font-size: 25px;
}

/* =========================================================
   FILTROS
========================================================= */

.preorders-admin-filters {
    display: grid;
    grid-template-columns:
        minmax(240px, 2fr)
        minmax(180px, 1fr)
        auto
        auto;

    gap: 12px;
    align-items: end;
}

.preorders-admin-filters > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.preorders-admin-filters label {
    color: #888;

    font-size: 10px;
    font-weight: 800;
}

.preorders-admin-filters input,
.preorders-admin-filters select {
    width: 100%;
    height: 44px;

    padding: 0 13px;

    color: #fff;

    background: #171717;

    border: 1px solid #303030;
    border-radius: 9px;

    outline: none;
}

.preorders-admin-filters input:focus,
.preorders-admin-filters select:focus {
    border-color: #d4af37;
}

/* =========================================================
   RESULTADOS
========================================================= */

.preorders-results-count {
    color: #888;

    font-size: 11px;
}

/* =========================================================
   TABLA
========================================================= */

.preorders-admin-table-wrapper {
    width: 100%;

    overflow-x: auto;
}

.preorders-admin-table {
    width: 100%;

    border-collapse: collapse;

    white-space: nowrap;
}

.preorders-admin-table th {
    padding: 13px 12px;

    color: #666;

    border-bottom: 1px solid #292929;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .7px;

    text-align: left;
}

.preorders-admin-table td {
    padding: 17px 12px;

    color: #bbb;

    border-bottom: 1px solid #222;

    font-size: 11px;

    vertical-align: middle;
}

.preorders-admin-table tbody tr {
    transition: background .2s ease;
}

.preorders-admin-table tbody tr:hover {
    background: #151515;
}

.preorders-admin-table tbody tr:last-child td {
    border-bottom: 0;
}

/* =========================================================
   COMPROBANTE PENDIENTE
========================================================= */

.preorders-admin-table tr.needs-review {
    background: rgba(212,175,55,.035);
}

.preorders-admin-table tr.needs-review td:first-child {
    border-left: 2px solid #d4af37;
}

/* =========================================================
   ID
========================================================= */

.preorder-table-id {
    color: #d4af37;

    font-size: 13px;
}

/* =========================================================
   CLIENTE
========================================================= */

.preorder-table-customer {
    display: flex;
    flex-direction: column;
    gap: 3px;

    min-width: 190px;
}

.preorder-table-customer strong {
    color: #fff;

    font-size: 11px;
}

.preorder-table-customer small {
    color: #777;

    font-size: 9px;
}

/* =========================================================
   DINERO
========================================================= */

.preorder-table-money {
    color: #fff;

    font-size: 13px;
}

.preorder-table-muted {
    display: block;

    margin-top: 2px;

    color: #666;

    font-size: 9px;
}

/* =========================================================
   BADGES
========================================================= */

.preorder-table-status,
.preorder-table-payment {
    display: inline-flex;
    align-items: center;

    padding: 7px 9px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .4px;
}

/* CONFIRMADA */

.preorder-table-status.success,
.preorder-table-payment.success {
    color: #86efac;

    background: rgba(34,197,94,.08);

    border: 1px solid rgba(34,197,94,.2);
}

/* PAGO */

.preorder-table-status.payment,
.preorder-table-payment.payment {
    color: #fde68a;

    background: rgba(234,179,8,.08);

    border: 1px solid rgba(234,179,8,.2);
}

/* REVISAR */

.preorder-table-payment.review {
    color: #fcd34d;

    background: rgba(212,175,55,.1);

    border: 1px solid rgba(212,175,55,.35);
}

/* CORREO */

.preorder-table-status.email {
    color: #93c5fd;

    background: rgba(59,130,246,.08);

    border: 1px solid rgba(59,130,246,.2);
}

/* CANCELADA */

.preorder-table-status.cancelled {
    color: #fca5a5;

    background: rgba(239,68,68,.08);

    border: 1px solid rgba(239,68,68,.2);
}

/* SIN PAGO */

.preorder-table-payment.neutral {
    color: #aaa;

    background: #191919;

    border: 1px solid #303030;
}

/* =========================================================
   FECHA
========================================================= */

.preorder-table-date {
    display: block;

    color: #ccc;
}

.preorder-table-time {
    display: block;

    margin-top: 3px;

    color: #666;

    font-size: 9px;
}

/* =========================================================
   BOTÓN
========================================================= */

.preorder-view-button {
    padding: 9px 12px;

    font-size: 9px;

    white-space: nowrap;
}

/* =========================================================
   VACÍO
========================================================= */

.preorders-admin-empty {
    padding: 60px 20px;

    text-align: center;
}

.preorders-admin-empty > span {
    display: block;

    margin-bottom: 10px;

    font-size: 40px;
}

.preorders-admin-empty h3 {
    margin: 0 0 7px;

    color: #fff;
}

.preorders-admin-empty p {
    margin: 0 0 20px;

    color: #777;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .preorders-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .preorders-admin-filters {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 650px) {

    .preorders-dashboard-stats {
        grid-template-columns: 1fr;
    }

    .preorders-admin-filters {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   ADMIN SIDEBAR - NOTIFICACIÓN PREVENTAS
========================================================= */

.admin-nav-link {
    position: relative;
}

.admin-preorder-notification {
    min-width: 22px;
    height: 22px;

    margin-left: auto;
    padding: 0 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #d4af37;
    color: #080808;

    font-size: 9px;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 0 0 3px rgba(212,175,55,.10);
}

/* Si tu sidebar usa flex */

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav-text {
    flex: 1;
}

/* Activo */

.admin-nav-link.active
.admin-preorder-notification {
    background: #ffffff;
    color: #111111;
}

/* Móvil */

@media (max-width: 760px) {

    .admin-preorder-notification {
        min-width: 20px;
        height: 20px;

        font-size: 8px;
    }

}
/* =========================================================
   ADMIN SIDEBAR - PREVENTAS
========================================================= */

.admin-preventas-link {
    position: relative;

    display: flex !important;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.admin-preventas-label {
    flex: 1;
}

/* =========================================================
   NOTIFICACIÓN
========================================================= */

.admin-preorder-notification {
    min-width: 23px;
    height: 23px;

    padding: 0 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 999px;

    background: #d4af37;
    color: #080808;

    font-size: 9px;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 0 0 3px rgba(212,175,55,.10);
}

/* CUANDO PREVENTAS ESTÁ ACTIVO */

.admin-preventas-link.active
.admin-preorder-notification {
    background: #ffffff;
    color: #111111;
}

/* PEQUEÑO EFECTO CUANDO HAY ALGO POR REVISAR */

@keyframes preorderAdminNotificationPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 3px rgba(212,175,55,.10);
    }

    50% {
        box-shadow:
            0 0 0 6px rgba(212,175,55,.16);
    }

}

.admin-preorder-notification {
    animation:
        preorderAdminNotificationPulse
        2s
        ease-in-out
        infinite;
}
/* =========================================================
   ADMIN - PAGO FINAL PREVENTA
========================================================= */

.preorder-final-payment-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 25px;

    background: #171717;
    border: 1px solid #303030;
    border-radius: 14px;
}

.preorder-final-payment-box span,
.preorder-final-payment-requested > span {
    display: block;

    margin-bottom: 5px;

    color: #888;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.preorder-final-payment-box strong,
.preorder-final-payment-requested > strong {
    display: block;

    color: #d4af37;

    font-size: 34px;
}

.preorder-final-payment-box p,
.preorder-final-payment-requested p {
    max-width: 600px;

    margin: 8px 0 0;

    color: #888;

    font-size: 11px;
    line-height: 1.6;
}

.preorder-final-payment-requested {
    padding: 25px;

    background: rgba(212,175,55,.06);
    border: 1px solid rgba(212,175,55,.30);
    border-radius: 14px;
}

.preorder-final-payment-requested small {
    display: block;

    margin-top: 15px;

    color: #777;
}

.preorder-final-payment-success {
    padding: 25px;

    background: rgba(34,197,94,.07);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: 14px;
}

.preorder-final-payment-success strong {
    color: #86efac;
}

.preorder-final-payment-success p {
    margin: 7px 0 0;

    color: #999;
}

@media (max-width: 760px) {

    .preorder-final-payment-box {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* =========================================================
   CLIENTE - PAGO FINAL PREVENTA
========================================================= */

.preorder-final-client-box {
    display: flex;
    gap: 20px;

    margin-top: 25px;
    padding: 28px;

    background: #eef2ff;

    border: 1px solid #c7d2fe;
    border-radius: 18px;
}

.preorder-final-client-box > div > span {
    color: #4338ca;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.preorder-final-client-box h3 {
    margin: 7px 0 10px;

    color: #111827;
}

.preorder-final-client-box p {
    color: #4b5563;
    line-height: 1.6;
}

.preorder-final-client-amount {
    margin: 20px 0;
}

.preorder-final-client-amount small {
    display: block;

    color: #6b7280;

    font-size: 10px;
    font-weight: 800;
}

.preorder-final-client-amount strong {
    display: block;

    margin-top: 5px;

    color: #111827;

    font-size: 36px;
}

/* =========================================================
   TIENDA PROFESIONAL - NAKAMA STORE TCG
========================================================= */
.store-pro-hero{padding:90px 0;background:radial-gradient(circle at 80% 25%,rgba(212,175,55,.18),transparent 32%),linear-gradient(135deg,#050505,#111);border-bottom:1px solid #262626;color:#fff}
.store-pro-hero-content{max-width:780px}.store-pro-eyebrow,.store-section-heading>div>span{display:block;color:#d4af37;font-size:12px;font-weight:800;letter-spacing:2.5px;text-transform:uppercase}.store-pro-hero h1{margin:10px 0 18px;font-size:clamp(46px,7vw,78px);line-height:.98;font-weight:900}.store-pro-hero p{max-width:650px;color:#aaa;font-size:18px}.store-pro-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.store-pro-games,.store-pro-catalog{padding:70px 0;background:#080808}.store-pro-games{background:#0d0d0d}.store-section-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:25px;margin-bottom:30px}.store-section-heading h2{margin:7px 0 0;font-size:clamp(28px,4vw,40px)}.store-section-heading>p{max-width:480px;color:#888}.store-product-count{padding:8px 14px;border:1px solid #2d2d2d;border-radius:999px;background:#151515;color:#aaa;font-size:12px;font-weight:700}
.store-game-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.store-game-card{display:flex;flex-direction:column;justify-content:space-between;min-height:140px;padding:22px;border:1px solid #292929;border-radius:14px;background:#131313;color:#fff;text-decoration:none;transition:.25s}.store-game-card:hover,.store-game-card.active{transform:translateY(-4px);border-color:#d4af37;background:#181818}.store-game-icon{font-size:34px}.store-game-card strong{display:block;margin-top:15px;font-size:16px}.store-game-card span{display:block;margin-top:4px;color:#777;font-size:12px}.store-singles-card{border-color:rgba(212,175,55,.5);background:linear-gradient(135deg,rgba(212,175,55,.12),#111)}
.store-toolbar{margin-bottom:18px}.store-search-form{display:flex;gap:10px}.store-search-box{display:flex;align-items:center;gap:10px;flex:1;min-height:52px;padding:0 16px;border:1px solid #303030;border-radius:10px;background:#151515}.store-search-box:focus-within{border-color:#d4af37}.store-search-box input{width:100%;border:0!important;outline:0;background:transparent!important;color:#fff!important;font-size:15px}.store-category-pills{display:flex;gap:8px;overflow-x:auto;margin-bottom:32px;padding-bottom:7px}.store-category-pills a{flex:0 0 auto;padding:9px 15px;border:1px solid #303030;border-radius:999px;color:#aaa;text-decoration:none;font-size:12px;font-weight:700}.store-category-pills a:hover,.store-category-pills a.active{border-color:#d4af37;background:#d4af37;color:#080808}.store-search-result-message{margin-bottom:24px;color:#888}
.store-pro-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:20px!important}.store-pro-product{display:flex!important;flex-direction:column;min-width:0;overflow:hidden;border:1px solid #262626;border-radius:14px;background:#111;transition:.25s}.store-pro-product:hover{transform:translateY(-5px);border-color:#d4af37;box-shadow:0 18px 40px rgba(0,0,0,.4)}.store-pro-product-image{position:relative;width:100%;height:300px;overflow:hidden;background:radial-gradient(circle,rgba(212,175,55,.1),transparent 60%),#171717}.store-pro-product-image>a{display:block;width:100%;height:100%}.store-pro-product-image img{display:block;width:100%!important;height:100%!important;padding:16px;object-fit:contain!important;transition:.3s}.store-pro-product:hover .store-pro-product-image img{transform:scale(1.04)}.store-pro-placeholder{display:flex;align-items:center;justify-content:center;width:100%;height:100%;font-size:60px}
.store-pro-category-badge,.store-pro-low-stock,.store-pro-soldout{position:absolute;z-index:2;border-radius:999px;font-weight:800}.store-pro-category-badge{top:12px;left:12px;padding:6px 9px;border:1px solid #333;background:rgba(8,8,8,.92);color:#d4af37;font-size:9px}.store-pro-low-stock,.store-pro-soldout{right:12px;bottom:12px;padding:6px 9px;font-size:8px}.store-pro-low-stock{background:#d4af37;color:#080808}.store-pro-soldout{background:#8b0000;color:#fff}
.store-pro-product-info{display:flex;flex:1;flex-direction:column;padding:18px}.store-pro-product-category{color:#d4af37;font-size:10px;font-weight:800;letter-spacing:1px;text-transform:uppercase}.store-pro-product-info h3{margin:7px 0 9px;font-size:17px;line-height:1.35}.store-pro-product-info h3 a{color:#fff;text-decoration:none}.store-pro-product-info h3 a:hover{color:#d4af37}.store-pro-product-info>p{margin:0 0 16px;color:#777;font-size:12px;line-height:1.55}.store-pro-stock{display:flex;gap:9px;margin-top:auto;margin-bottom:13px}.store-pro-stock span,.store-pro-stock small{font-size:11px}.store-pro-stock small{color:#777}.store-pro-stock .in-stock{color:#45d483}.store-pro-stock .out-stock{color:#ff5d5d}
.store-pro-product-footer{display:flex;justify-content:space-between;align-items:center;gap:10px;padding-top:14px;border-top:1px solid #252525}.store-pro-price small{display:block;color:#777;font-size:9px;text-transform:uppercase}.store-pro-price strong{color:#d4af37;font-size:22px}.store-pro-cart-button{display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:11px 14px;border-radius:8px;background:#d4af37;color:#080808;text-decoration:none;font-size:12px;font-weight:900}.store-pro-cart-button:hover{background:#fff;color:#080808}.store-pro-disabled-button{padding:10px 13px;border-radius:8px;background:#292929;color:#777;font-size:11px}.store-pro-view-product{display:block;margin-top:13px;color:#777;text-decoration:none;font-size:12px}.store-pro-view-product:hover{color:#d4af37}
.store-pro-empty{padding:65px 24px;border:1px solid #292929;border-radius:14px;background:#111;text-align:center}.store-pro-empty-icon{font-size:50px}.store-pro-empty h3{margin:14px 0 7px;font-size:25px}.store-pro-empty p{color:#777}.store-pro-empty-actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:22px}.store-singles-banner{padding:20px 0 75px;background:#080808}.store-singles-banner-inner{display:flex;justify-content:space-between;align-items:center;gap:30px;padding:42px;border:1px solid #292929;border-radius:16px;background:radial-gradient(circle at 90% 50%,rgba(212,175,55,.16),transparent 35%),#111}.store-singles-banner-inner>div{max-width:650px}.store-singles-banner-inner span{color:#d4af37;font-size:11px;font-weight:800;letter-spacing:2px}.store-singles-banner-inner h2{margin:8px 0;font-size:31px}.store-singles-banner-inner p{color:#888}
@media(max-width:1050px){.store-game-grid,.store-pro-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
@media(max-width:820px){.store-game-grid,.store-pro-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.store-section-heading,.store-singles-banner-inner{align-items:flex-start;flex-direction:column}.store-pro-product-image{height:250px}}
@media(max-width:600px){.store-pro-hero{padding:60px 0}.store-pro-games,.store-pro-catalog{padding:50px 0}.store-search-form{flex-direction:column}.store-game-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px}.store-game-card{min-height:125px;padding:15px}.store-pro-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}.store-pro-product-image{height:190px}.store-pro-product-image img{padding:8px}.store-pro-product-info{padding:11px}.store-pro-product-info h3{font-size:13px}.store-pro-product-info>p{display:none}.store-pro-category-badge{top:7px;left:7px;max-width:calc(100% - 14px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:7px}.store-pro-low-stock,.store-pro-soldout{right:7px;bottom:7px;font-size:7px}.store-pro-stock{flex-direction:column;gap:2px}.store-pro-product-footer{align-items:stretch;flex-direction:column}.store-pro-cart-button{width:100%}.store-singles-banner-inner{padding:27px 20px}}
