:root {
    --primary-color: #4B0082; /* Deep Indigo / Purple */
    --secondary-color: #FFFF00; /* Vibrant Yellow */
    --accent-color: #ffd700;
    --text-color: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --error-color: #ff4757;
    --success-color: #2ed573;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .hero-title, .urgency-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.container {
    width: 100%;
    max-width: 600px; /* Optimized for mobile/tablet portrait */
    margin: 0 auto;
    padding: 0 20px;
}

/* Utils */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
}

.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.hidden {
    display: none !important;
}

/* Urgency Bar */
.urgency-bar {
    background-color: #000;
    color: var(--secondary-color);
    padding: 14px 0;
    text-align: center;
    font-weight: 900;
    font-size: 0.95rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: barPulse 2s infinite ease-in-out;
}

@keyframes barPulse {
    0% { background-color: #000; }
    50% { background-color: #1a0033; }
    100% { background-color: #000; }
}

/* Hero */
.hero {
    background: linear-gradient(rgba(45, 0, 80, 0.85), rgba(45, 0, 80, 0.85)), url('assets/Camisas_Of.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-text {
    margin-bottom: 40px;
    font-size: 1rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 255, 0, 0.4);
}

.btn-large {
    font-size: 1.1rem;
    padding: 18px 45px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    margin-top: 20px;
    font-weight: 900;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-link {
    background: transparent;
    color: #666;
    text-decoration: underline;
    margin-top: 10px;
}

/* Product Showcase */
.product-showcase {
    background-color: var(--bg-white);
}

.product-item {
    position: relative;
    cursor: pointer;
}

.main-image {
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-image:hover {
    transform: scale(1.02);
}

.image-caption {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

.pricing-note {
    margin-top: 25px;
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    border-top: 1px dashed #ddd;
    padding-top: 15px;
}

/* Professional Product Icons */
.product-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--secondary-color);
}

.product-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.product-type-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.product-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Multi-size Selection UI */
.product-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.add-item-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.order-items-container {
    margin-bottom: 25px;
}

/* Fullscreen Lightbox for Max Resolution */
.lightbox-fullscreen {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    overflow: auto;
    cursor: zoom-out;
}

.lightbox-content-fs {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 10px;
    min-height: 100%;
}

.lightbox-content-fs img {
    max-width: none; /* Allow original size */
    width: auto;
    height: auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    background-color: #fff;
    cursor: zoom-out;
}

.close-lightbox-fs {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.close-lightbox-fs:hover {
    color: var(--secondary-color);
}

/* Interaction Hints on Images */
.interaction-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    pointer-events: none;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.magnifier-container:hover .interaction-hint {
    opacity: 0;
    transform: translateY(10px);
}

/* Magnifier Effect & Centering */
.magnifier-container {
    position: relative;
    cursor: crosshair;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 20px auto 30px;
    max-width: 800px;
    border: 4px solid #fff;
    background: #fff;
    transition: var(--transition);
}

.magnifier-container:hover {
    box-shadow: 0 15px 40px rgba(75, 0, 130, 0.15);
}

.magnifier-glass {
    position: absolute;
    border: 4px solid #fff;
    border-radius: 50%;
    cursor: crosshair;
    width: 200px;
    height: 200px;
    display: none;
    pointer-events: none;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    background-repeat: no-repeat;
    z-index: 100;
}

.size-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Redesigned Pricing Showcase */
.pricing-showcase {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.pricing-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.item-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 12px;
    position: relative;
    top: -4px;
}

.item-price {
    font-weight: 900;
    font-size: 1.3rem;
    color: #333;
    font-family: 'Outfit', sans-serif;
}

/* Top Launch Section */
.top-launch {
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 100px 0;
}

.launch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.launch-image .magnifier-container {
    margin: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.launch-badge {
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.launch-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #333;
}

.launch-desc {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.launch-features {
    list-style: none;
    margin-bottom: 30px;
}

.launch-features li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
}

.launch-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .launch-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .launch-features {
        display: inline-block;
        text-align: left;
    }
}

/* Payments Section */
.payments {
    background: #fff;
    padding: 80px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.payment-card {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
}

.payment-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

/* KIT PROMO SECTION - PREMIUM UI */
.kit-promo {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a004d 100%);
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.kit-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.kit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
}

.kit-badge {
    background: var(--secondary-color);
    color: var(--primary-color);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
}

.kit-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1;
    color: #fff;
}

.kit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.kit-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kit-item-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plus-icon {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.kit-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    text-decoration: line-through;
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 5px;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.kit-explanation {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.kit-explanation strong {
    color: var(--secondary-color);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 18px 45px;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: #e6e600;
    transform: translateY(-5px);
}

/* Form UI Refinements */
.order-item-row {
    background: #fff;
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 2fr 1fr auto auto;
    gap: 12px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

/* Price Tags */
.price-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

.combo-badge {
    background: #22c55e;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.total-price-box {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #eee;
    text-align: right;
}

.total-price-value {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 900;
}

.discount-text {
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.footer-logo img.mini-logo {
    width: 300px; /* Increased from ~100px (300%) */
    height: auto;
    max-width: 90%;
}

.order-item-row:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.item-type-select, .item-size-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    background-color: #f9f9f9;
}

.remove-item-btn {
    background: #fee2e2;
    color: #ef4444;
    border: 1px solid #fecaca;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item-btn:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1);
}

.remove-item-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.add-item-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.add-item-btn:hover {
    background: #3a0066;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(75, 0, 130, 0.3);
}

@media (max-width: 600px) {
    .order-item-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .remove-item-btn {
        width: 100%;
        border-radius: 8px;
        height: 40px;
    }
}

/* Benefits */
.benefits {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.benefits .section-title {
    color: var(--secondary-color);
}

.benefits-grid {
    display: grid;
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Branding Carousel (Static Gallery for simplicity) */
.branding-examples {
    padding: 30px 0;
}

.branding-carousel {
    display: grid;
    gap: 20px;
}

/* Size Chart */
.size-chart-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    pointer-events: none;
}

/* Urgency Card */
.urgency-card {
    background: linear-gradient(yellow, #ffd700);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    color: #000;
}

.deadline-badge {
    background: #000;
    color: var(--secondary-color);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    margin-top: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Form Styles */
.order-form {
    background-color: var(--bg-white);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.product-selection-list {
    margin: 25px 0;
}

.product-card {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
}

.product-info h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.size-select {
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.8rem;
    width: 120px;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    border: 1px solid #eee;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.qty-btn:disabled {
    background: #ccc;
}

.qty-value {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

/* Order Summary Header */
.step-subtitle {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.order-summary {
    background: #fff;
    border: 2px dashed var(--primary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.order-summary h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.order-summary ul {
    list-style: none;
}

.order-summary li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.total-items {
    margin-top: 15px;
    font-weight: 900;
    text-align: right;
    font-size: 1.1rem;
}

/* Success Message */
.success-card {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.final-msg {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.motivation {
    opacity: 0.7;
    margin-bottom: 30px;
}

.mini-logo {
    max-width: 100px;
    opacity: 0.5;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.fab:hover {
    transform: translateX(-50%) translateY(-5px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 700px;
    border-radius: var(--border-radius);
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

/* Responsive */
@media (min-width: 601px) {
    .hero-title {
        font-size: 4rem;
    }
    .branding-carousel {
        grid-template-columns: 1fr 1fr;
    }
}
