/* Reset y Aislamiento del Diseño */
.premium-store-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.premium-store-container * {
    box-sizing: border-box;
}

/* 1. HERO SECTION ALTO NIVEL */
.ps-hero {
    position: relative;
    width: 100%;
    padding: 120px 20px 160px 20px;
    text-align: center;
    background-color: #1e3a8a;
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 138, 0.8) 100%), url('https://images.unsplash.com/photo-1559525839-b184a4d698c7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ps-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.ps-hero-title {
    color: #ffffff !important;
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 25px !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ps-hero-subtitle {
    color: #e2e8f0 !important;
    font-size: 1.25rem !important;
    max-width: 700px;
    margin: 0 auto 40px auto !important;
    font-weight: 400 !important;
}

.ps-btn-primary {
    background-color: #ffffff !important;
    color: #1e3a8a !important;
    padding: 18px 45px !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.ps-btn-primary:hover {
    background-color: #eff6ff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* 2. TARJETAS FLOTANTES DE CONFIANZA */
.ps-trust-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: -80px auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.ps-trust-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.ps-trust-card:hover {
    transform: translateY(-10px);
}

.ps-trust-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    background: #eff6ff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    color: #2563eb;
}

.ps-trust-card h3 {
    color: #0f172a !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}

.ps-trust-card p {
    color: #64748b !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

/* 3. CONTENEDOR DE PRODUCTOS */
.ps-store-section {
    max-width: 1300px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.ps-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ps-section-header h2 {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #1e3a8a !important;
    margin-bottom: 15px !important;
}

.ps-section-header p {
    font-size: 1.1rem !important;
    color: #64748b !important;
}

.ps-shortcode-wrapper {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    width: 100%;
    min-height: 400px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-hero-title { font-size: 3.5rem !important; }
    .ps-trust-grid { flex-direction: column; margin-top: -40px; }
}
@media (max-width: 768px) {
    .ps-hero { padding: 80px 20px 100px 20px; }
    .ps-hero-title { font-size: 2.5rem !important; }
    .ps-section-header h2 { font-size: 2.2rem !important; }
    .ps-shortcode-wrapper { padding: 20px; }
}