/* Neuro-Tienda styles – layout premium */

:root {
    --nt-primary: #0f5132;
    --nt-secondary: #133d2b;
    --nt-background: #f5f7f9;
    --nt-card-bg: #ffffff;
    --nt-radius-xl: 32px;
    --nt-radius-lg: 999px;
    --nt-shadow-soft: 0 24px 60px rgba(15, 81, 50, 0.08);
}

.nt-wrapper {
    min-height: 100vh;
    padding: 6rem 1.5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-background);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.nt-card {
    position: relative;
    max-width: 720px;
    width: 100%;
    background: var(--nt-card-bg);
    border-radius: var(--nt-radius-xl);
    padding: 3.5rem 3rem 2.75rem;
    box-shadow: var(--nt-shadow-soft);
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
    border: 1px solid #eef1f6;
}

@media (max-width: 768px) {
    .nt-wrapper {
        padding: 4rem 1.25rem 3rem;
    }
    .nt-card {
        padding: 2.5rem 1.75rem 2.25rem;
        border-radius: 24px;
    }
}

.nt-blob {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(15, 81, 50, 0.06), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.nt-blob-top-right {
    top: -160px;
    right: -140px;
}

.nt-blob-bottom-left {
    bottom: -180px;
    left: -180px;
}

.nt-icon-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 28px;
    background: #f3f5f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nt-icon-emoji {
    font-size: 34px;
}

.nt-badge {
    display: inline-flex;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: #ecf1ee;
    color: var(--nt-secondary);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.nt-title {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin: 0 0 1.25rem;
    color: #101826;
    font-weight: 800;
}

.nt-title-emphasis {
    color: var(--nt-primary);
    font-style: italic;
    font-weight: 800;
}

.nt-intro {
    margin: 0 auto 2.25rem;
    max-width: 540px;
    color: #4a5768;
    font-size: 0.98rem;
    line-height: 1.7;
}

.nt-form {
    margin: 0 0 0.75rem;
}

.nt-form-inner {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.nt-input-email {
    min-width: 260px;
    flex: 1 1 220px;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    border: 1px solid #dde3ea;
    background: #f8fafb;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.nt-input-email:focus {
    border-color: var(--nt-primary);
    box-shadow: 0 0 0 1px rgba(15, 81, 50, 0.18);
    background: #ffffff;
}

.nt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.7rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--nt-primary);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 81, 50, 0.35);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease;
    white-space: nowrap;
}

.nt-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(15, 81, 50, 0.4);
    background: #0c442a;
}

.nt-button:active {
    transform: translateY(0);
    box-shadow: 0 12px 26px rgba(15, 81, 50, 0.32);
}

.nt-button-icon {
    font-size: 1.1rem;
}

.nt-disclaimer {
    margin: 0.5rem 0 1.75rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9aa4b2;
}

.nt-back-link {
    display: inline-block;
    margin-bottom: 2.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #7b8695;
    text-decoration: none;
}

.nt-back-link:hover {
    text-decoration: underline;
    color: var(--nt-primary);
}

.nt-footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid #edf0f4;
    padding-top: 1.5rem;
}

.nt-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 90px;
}

.nt-footer-dot {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #dde3ea;
    background: #f8fafb;
}

.nt-footer-text {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9aa4b2;
    font-weight: 600;
}

.nt-success {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f5132;
    background: #e3f4eb;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    display: inline-block;
}

/* Bloque de tienda (WooCommerce) */

.nt-store-wrapper {
    background: #f7f9fb;
    padding: 3rem 1.5rem 4rem;
    border-top: 1px solid #edf1f6;
}

.nt-store-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.nt-store-header {
    text-align: center;
    margin-bottom: 2rem;
}

.nt-store-title {
    font-size: 1.8rem;
    margin: 0 0 0.75rem;
    color: #101826;
    font-weight: 700;
}

.nt-store-intro {
    margin: 0 auto;
    max-width: 640px;
    color: #4a5768;
    font-size: 0.95rem;
}

.nt-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}

.nt-product-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e3e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nt-product-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.nt-product-body {
    padding: 1.1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.nt-product-title {
    font-size: 1rem;
    margin: 0;
}

.nt-product-title a {
    color: #111827;
    text-decoration: none;
}

.nt-product-title a:hover {
    text-decoration: underline;
    color: var(--nt-primary);
}

.nt-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.nt-product-price {
    font-weight: 700;
    color: var(--nt-primary);
    font-size: 0.95rem;
}

.nt-product-button {
    margin-top: 0.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: var(--nt-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.12s ease, transform 0.08s ease, box-shadow 0.12s ease;
    box-shadow: 0 12px 25px rgba(15, 81, 50, 0.38);
}

.nt-product-button:hover {
    background: #0c442a;
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 81, 50, 0.45);
}

.nt-product-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(15, 81, 50, 0.35);
}

/* Checkout embebido */

.nt-checkout-wrapper {
    background: #f7f9fb;
    padding: 3rem 1.5rem 4rem;
    border-top: 1px solid #edf1f6;
}

.nt-checkout-inner {
    max-width: 1080px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2.25rem 2.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.nt-checkout-title {
    font-size: 1.7rem;
    margin: 0 0 0.5rem;
    color: #101826;
    font-weight: 700;
}

.nt-checkout-intro {
    margin: 0 0 1.75rem;
    color: #4a5768;
    font-size: 0.96rem;
}

.nt-checkout-content {
    font-size: 0.95rem;
}

/* Admin tweaks */

.nt-admin-wrap .nt-tab-section {
    margin-top: 1.5rem;
}

.nt-admin-wrap .nav-tab-wrapper {
    margin-top: 1rem;
}
