/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: url('../images/fondo_azul.png') center center;
    background-size: cover;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Header with Navigation */
.hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.hero-branding {
    flex: 0 0 auto;
}

.logo-brand {
    height: 50px;
    width: auto;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-nav {
    display: flex;
    gap: 50px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
    font-weight: 400;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.8;
}

.hero-logo {
    flex: 0 0 auto;
}

.logo-indega {
    height: 50px;
    width: auto;
}

/* Hero Content */
.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 40px 40px 80px;
    flex: 1;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.kit-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kit-hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.hero-dots {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #EEE737;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    color: #EEE737;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.hero-text p {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
}

.btn-ver-planes-hero {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.btn-ver-planes-hero img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}

.btn-ver-planes-hero:hover {
    transform: scale(1.05);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    color: #1e3a8a;
    margin: 60px 0 40px;
    text-transform: uppercase;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
}

/* Planes Section */
.planes-section {
    padding: 40px 0;
    background: white;
}

.planes-category {
    margin-bottom: 0;
    width: 100%;
}

.planes-category.limpieza {
    background: url('../images/fondo_azul.png') center center;
    background-size: cover;
    padding: 60px 20px;
    position: relative;
}

.planes-category.alimentos {
    background: url('../images/fondo_rojo.png') center center;
    background-size: cover;
    padding: 60px 20px;
    position: relative;
}

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

.category-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.kits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.kit-card {
    background: transparent;
    border-radius: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.kit-card:hover {
    transform: translateY(-5px);
}

.kit-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    font-size: 36px;
    font-weight: 400;
    padding: 15px 40px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    border: 4px solid #78350f;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.kit-badge.clasic {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #064e3b;
}

.kit-badge.maxi {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #7f1d1d;
}

.kit-image {
    max-width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}

.kit-price {
    margin: 20px 0;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: #1e3a8a;
}

.btn-ver-contenido,
.btn-pedir-kit {
    background: none;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.btn-ver-contenido img,
.btn-pedir-kit img {
    width: 100%;
    height: auto;
}

.btn-ver-contenido:hover,
.btn-pedir-kit:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.benefit-card {
    background: white;
    border-radius: 30px;
    padding: 60px 30px 40px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    min-height: 400px;
}

.benefit-card.blue {
    background: linear-gradient(135deg, #4a7bb7 0%, #3d6ba8 100%);
    color: white;
}

.benefit-card.green {
    background: linear-gradient(135deg, #5fa96f 0%, #4d9a5f 100%);
    color: white;
}

.benefit-card.purple {
    background: linear-gradient(135deg, #7b5ba1 0%, #6a4d8f 100%);
    color: white;
}

.benefit-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    font-weight: 400;
    color: white;
}

.benefit-card.blue .benefit-number {
    background: linear-gradient(135deg, #4a7bb7 0%, #3d6ba8 100%);
}

.benefit-card.green .benefit-number {
    background: linear-gradient(135deg, #5fa96f 0%, #4d9a5f 100%);
}

.benefit-card.purple .benefit-number {
    background: linear-gradient(135deg, #7b5ba1 0%, #6a4d8f 100%);
}

.benefit-card h3 {
    font-size: 28px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    text-align: center;
}

.benefit-card p {
    font-size: 15px;
    color: white;
    margin-bottom: 15px;
    line-height: 1.6;
}

.benefit-subtitle {
    font-weight: 600;
    margin-top: 10px;
}

.benefit-options {
    font-weight: 500;
    line-height: 1.8;
}

.benefit-option-title {
    margin-top: 20px;
    margin-bottom: 10px;
}

.benefit-delivery {
    margin-top: 20px;
}

.frequency-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.frequency-list li {
    font-size: 15px;
    color: white;
    padding: 5px 0;
    line-height: 1.6;
}

/* Coverage Section */
.coverage-section {
    padding: 60px 20px;
    background: white;
}

.coverage-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-map {
    width: 100%;
    height: auto;
}

.coverage-info h3 {
    font-size: 32px;
    font-weight: 400;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.coverage-info p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.delivery-legend {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.legend-color.purple {
    background: #7c3aed;
}

.legend-color.blue {
    background: #2563eb;
}

.legend-color.red {
    background: #dc2626;
}

.legend-color.green {
    background: #10b981;
}

/* Footer Section */
.footer-section {
    background: #f8f9fa;
    padding: 60px 20px 80px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 35px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-benefits {
    margin-bottom: 45px;
}

.footer-benefit-line {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    font-weight: 600;
    color: #2c5282;
    margin: 8px 0;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.footer-tagline {
    max-width: 700px;
    margin: 40px auto;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #000000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
    background: #1a1a1a;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #999;
    float: right;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    color: #1e3a8a;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 2px;
}

#modalBody {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

#modalBody ul {
    list-style: none;
    padding: 0;
}

#modalBody li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

#modalBody li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-location {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-location:hover {
    transform: scale(1.05);
}

#locationStatus {
    margin-left: 15px;
    color: #10b981;
    font-weight: bold;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: scale(1.02);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-nav {
        gap: 30px;
    }

    .nav-link {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .hero-header {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
    }

    .logo-brand {
        height: 45px;
    }

    .logo-indega {
        height: 45px;
    }

    .hero-nav {
        order: 3;
        width: 100%;
        justify-content: space-around;
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 18px;
    }

    .hero-content {
        flex-direction: column;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

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

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 50px;
    }

    .benefit-card {
        min-height: auto;
    }

    .benefit-card.green {
        min-height: 500px;
    }

    .coverage-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero-header {
        padding: 12px 15px;
        gap: 12px;
    }

    .logo-brand {
        height: 40px;
    }

    .logo-indega {
        height: 40px;
    }

    .hamburger-menu {
        display: flex;
        order: 2;
    }

    .hero-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(30, 58, 138, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        justify-content: flex-start;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }

    .hero-nav.active {
        left: 0;
    }

    .nav-link {
        font-size: 20px;
        letter-spacing: 1px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: left;
    }

    .hero-logo {
        order: 3;
    }

    .hero-content {
        padding: 20px 15px;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
        text-align: center;
    }

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

    .btn-ver-planes-hero {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .btn-ver-planes-hero img {
        max-width: 280px;
        width: 100%;
    }

    .kit-hero-image {
        max-width: 450px;
    }

    .section-title {
        font-size: 32px;
        margin: 40px 0 30px;
    }

    .category-logo {
        max-width: 280px;
    }

    .kits-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kit-badge {
        font-size: 28px;
        padding: 12px 30px;
    }

    .price-amount {
        font-size: 24px;
    }

    .benefit-number {
        width: 70px;
        height: 70px;
        font-size: 42px;
        top: -35px;
    }

    .benefit-card h3 {
        font-size: 24px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .coverage-info h3 {
        font-size: 24px;
    }

    .footer-title {
        font-size: 36px;
    }

    .footer-benefit-line {
        font-size: 16px;
    }

    .footer-tagline {
        max-width: 500px;
    }

    .footer-cta p {
        font-size: 16px;
    }

    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 10% auto;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 32px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding: 10px;
    }

    .logo-brand {
        height: 35px;
    }

    .logo-indega {
        height: 35px;
    }

    .hero-nav {
        gap: 8px;
    }

    .nav-link {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .btn-ver-planes-hero {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .btn-ver-planes-hero img {
        max-width: 240px;
        width: 90%;
    }

    .kit-hero-image {
        max-width: 320px;
    }

    .section-title {
        font-size: 24px;
    }

    .category-logo {
        max-width: 220px;
    }

    .kit-badge {
        font-size: 24px;
        padding: 10px 25px;
    }

    .price-amount {
        font-size: 20px;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-benefit-line {
        font-size: 14px;
    }

    .footer-tagline {
        max-width: 350px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* Map Modal Styles */
.map-modal-content {
    max-width: 900px;
    width: 95%;
}

.map-modal-content h2 {
    margin-bottom: 10px;
}

#map {
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Leaflet popup custom styles */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 12px;
    font-size: 14px;
}

/* Location button styles */
.btn-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-location:active {
    transform: translateY(0);
}

#locationStatus {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

/* Responsive map modal */
@media (max-width: 768px) {
    .map-modal-content {
        margin: 2% auto;
        padding: 20px;
    }

    #map {
        height: 400px !important;
    }
}

/* ─── Kit Modal Two-Column Layout ─────────────────────────────────────────── */
#kitModal .modal-content {
    max-width: 980px;
    padding: 30px;
    margin: 3% auto;
}

.kit-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    min-height: 380px;
}

.kit-modal-left {
    border-right: 1px solid #e5e7eb;
    padding-right: 24px;
}

.kit-modal-left .kit-items-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    max-height: 340px;
    overflow-y: auto;
}

.kit-modal-left .kit-items-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #333;
}

.kit-modal-left .kit-items-list li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
}

.kit-base-price {
    font-size: 22px;
    font-weight: bold;
    color: #1e3a8a;
    margin-top: 16px;
}

.adicionales-section {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px dashed #c4b5fd;
}

.adicionales-section h4 {
    color: #7c3aed;
    font-size: 15px;
    margin-bottom: 10px;
}

.adicionales-section .kit-items-list li:before {
    content: "+ ";
    color: #7c3aed;
}

.kit-modal-right h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: #1e3a8a;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.category-filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.btn-category-filter {
    padding: 6px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.2s;
}

.btn-category-filter.active,
.btn-category-filter:hover {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

#productosLista {
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px 8px;
    margin-bottom: 12px;
}

.producto-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.producto-row:last-child {
    border-bottom: none;
}

.producto-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.producto-price {
    font-weight: 600;
    color: #1e3a8a;
    white-space: nowrap;
    font-size: 13px;
}

.btn-agregar-kit {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 11px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.btn-agregar-kit:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

/* Modal Footer Price Breakdown */
.kit-modal-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.price-breakdown {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-item span {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-item strong {
    font-size: 17px;
    color: #1e3a8a;
}

.price-total strong {
    font-size: 22px;
    color: #7c3aed;
}

.btn-pedir-kit-modal {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-pedir-kit-modal:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
    #kitModal .modal-content {
        padding: 20px;
        margin: 2% auto;
    }

    .kit-modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kit-modal-left {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .kit-modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-pedir-kit-modal {
        justify-content: center;
    }
}
