
.header-social-icon a > i {    
    font-size: 26px;    
}

/* Contenedor píldora con degradado */
            .cta-contigo .cta-pill{
                position: relative;
                border-radius: 999px;
                padding: 20px 40px;
                margin-top: 0px; 
                /* ajusta según tu diseño */
                text-align: center;

                /* Degradado naranja (ajusta colores si quieres) */
                background: linear-gradient(
                    90deg,
                    #f7b15e 0%,
                    #f27831 35%,
                    #d04a1b 100%
                );

                /* Opcional: ligera sombra */
                box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            }

            /* Texto dentro de la píldora */
            .cta-contigo .cta-pill-small,
            .cta-contigo .cta-pill-big{
                color: #fff;                
                
            }

            .cta-contigo .cta-pill-small{
                font-size: 34px;
                
            }

            .cta-contigo .cta-pill-big{
                font-size: 34px;
             
            }

            /* Responsive */
            @media (max-width: 767.98px){
                .cta-contigo .cta-pill{
                    padding: 14px 20px;
                    margin-top: -30px;
                }
                .cta-contigo .cta-pill-big{
                    font-size: 15px;
                }
                .cta-contigo .cta-pill-small{
                    font-size: 12px;
                }
            }

        body{font-family: "Poppins", sans-serif !important;}
            
        h2.alt-font {
            font-family: "Poppins", sans-serif;
            font-weight: 800;
            font-style: normal;
            color:#DB6015;
        }   

        .alt-font-700{
            font-family: "Poppins", sans-serif;
            font-weight: 800;
            font-style: normal;
            color:#fff;
            font-size:44px;
            line-height: 4rem;
        }

        .alt-font-h6{
            font-family: "Poppins", sans-serif;
            font-weight: 800;
            font-style: normal;
            color:#DB6015;
            font-size:35px;
        }

        .alt-font-h2{
            font-family: "Poppins", sans-serif;
            font-weight: 200;
            font-style: normal;
            font-size:35px;
        }
        
        p{
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-style: normal;
            color:#000;
            font-size:24px;
        }

        /* Fondo y espaciado general de la sección */
        .big-section {
            background-color: #48c9dd; /* turquesa similar al diseño */            
        }

        /* Formulario de direcciones */
        .address-form {
            max-width: 100%;
            font-family: "Poppins", sans-serif;
            color: #111827;
        }

        .address-title {
            font-size: 32px;
            font-weight: 600;
            line-height: 30px;            
            text-transform: uppercase;
            margin-bottom: 32px;
        }

        .address-field {
            margin-bottom: 18px;
        }

        .address-field label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .address-input {
            width: 100%;
            border: 0;
            border-bottom: 2px solid #d56a3c; /* línea naranja */
            padding: 4px 0 6px 0;
            background: transparent;
            font-size: 14px;
            font-weight: 500;
            color: #111827;
            outline: none;
        }

        .address-input::placeholder {
            color: rgba(17, 24, 39, 0.5);
        }

        .address-input:focus {
            border-bottom-color: #b94e28;
        }

        /* Divider vertical en el centro */
        .address-form .row {
            position: relative;
        }

        .address-form .lines::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background-color: #d56a3c;
            transform: translateX(-50%);
        }

        /* Padding interno para separar campos de los bordes y del divisor */
        .address-form .col-md-5,
        .address-form .col-xl-5,
        .address-form .col-lg-5 {
            padding-left: 40px;
            padding-right: 40px;
        }

        .address-input::placeholder,
        .qty-input::placeholder {
            color: #000;
            opacity: 1; /* asegura que se vea bien en algunos navegadores */
        }

        /* Opcional: compatibilidad extra */
        .address-input::-ms-input-placeholder,
        .qty-input::-ms-input-placeholder {
            color: #000;
        }

        .address-input:-ms-input-placeholder,
        .qty-input:-ms-input-placeholder {
            color: #000;
        }


        /* Responsive */
        @media (max-width: 767.98px) {
            .big-section {
                padding: 50px 0;
            }

            .address-title {
                font-size: 20px;
            }

            .address-form .row::before {
                display: none; /* sin línea vertical cuando se apilan las columnas */
            }

            .address-form .col-md-5,
            .address-form .col-xl-5,
            .address-form .col-lg-5 {
                padding-left: 0;
                padding-right: 0;
                margin-bottom: 40px;
            }
        }

        /* Grid de productos / intereses */
        .interest-grid {
            margin-top: 60px;
        }

        /* Tarjeta */
        .interest-card {
            background: #EEEEEE;
            border-radius: 24px;
            padding: 22px 26px 26px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
        }

        .interest-label {
            font-size: 14px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .interest-item {
            font-size: 16px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 6px;
        }

        .interest-divider {
            width: 100%;
            height: 2px;
            background-color: #d56a3c;
            margin-bottom: 18px;
        }

        /* Opciones de diseño (radios bonitos) */
        .design-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }

        .qty-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }

        .design-option {
            position: relative;
            margin-bottom: 15px;
        }

        .design-option input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .design-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 18px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all .18s ease;
            white-space: nowrap;
        }

        .design-pill--primary {
            background: #d56a3c;
            color: #ffffff;
            border-color: #d56a3c;
        }

        .design-pill--outline {
            background: transparent;
            color: #d56a3c;
            border-color: #d56a3c;
        }

        /* Estado base: NO seleccionado (blanco) */
        .design-option input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .design-option input[type="checkbox"] + label {
            background: #EEEEEE;          /* fondo blanco */
            color: #d56a3c;               /* texto naranja */
            border: 2px solid #d56a3c;    /* borde naranja */
            transition: all .18s ease;
        }

        /* Estado seleccionado: naranja */
        .design-option input[type="checkbox"]:checked + label {
            background: #d56a3c;          /* fondo naranja */
            color: #ffffff;               /* texto blanco */
            box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
            transform: translateY(-1px);
        }

        /* Neutralizamos estilos previos de los modificadores
        para que el color dependa SOLO del checked */
        .design-pill--primary,
        .design-pill--outline {
            background: transparent;
            border-color: #d56a3c;
            color: #d56a3c;
        }

        /* Qty */
        .qty-field {
            margin-top: 8px;
        }

        .qty-label {
            display: block;
            font-size: 12px;
            color: #9ca3af;
            margin-bottom: 4px;
        }

        .qty-input {
            width: 80px;
            border: 0;
            border-bottom: 2px solid #d56a3c;
            background: transparent;
            font-size: 14px;
            font-weight: 500;
            padding: 2px 0 4px;
            color: #111827;
            outline: none;
        }

        /* Botón de envío */
        .form-actions {
            display: flex;
            justify-content: center;
            margin-top: 32px;
        }

        /* .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 42px;
            border-radius: 999px;
            border: none;
            background: #d56a3c;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
            transition: transform .18s ease, box-shadow .18s ease;
        } */

        .btn-send-icon {
            font-size: 14px;
        }

        .btn-send:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, .25);
            background: #d56a3c;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .interest-card {
                margin-bottom: 16px;
            }
        }

        @media (max-width: 767.98px) {
            .interest-grid {
                margin-top: 40px;
            }
        }

        /* Card base: puedes reutilizar la misma .interest-card de antes */
        .shirt-card {
            border-radius: 26px;
        }

        /* Contenedor de las opciones de diseño */
        .design-options--wide {
            justify-content: space-between;
        }

        /* Tallas */
        .shirt-sizes {
            display: flex;
            gap: 40px;
            margin-top: 24px;
        }

        .shirt-size-column {
            flex: 1;
        }

        .shirt-size-row {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 10px;
        }

        .shirt-size-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #111827;
            width:50px;
        }

        /* Radios de tallas (que se vean bonitos) */
        .shirt-size-label input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: #7c3aed; /* morado del mockup */
            margin-bottom: 0;
        }

        /* Qty inline */
        .shirt-qty {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-left: 18px;
        }

        .shirt-qty .qty-label {
            font-size: 12px;
            color: #9ca3af;
        }

        /* Si ya tienes .qty-input definida, esto solo refina un poco */
        .shirt-qty .qty-input {
            width: 64px;
            border: 0;
            border-bottom: 2px solid #d56a3c;
            background: transparent;
            font-size: 13px;
            padding: 2px 0 4px;
            outline: none;
            color: #111827;
        }

        /* Responsive */
        @media (max-width: 767.98px) {
            .shirt-sizes {
                flex-direction: column;
                gap: 18px;
            }
        }

        /* MENU */

        :root {
    --contigo-orange: #DB6015;
}

/* NAV base */

header .navbar .navbar-brand img, header.side-menu .logo img, header .sidebar-nav-menu .navbar-brand img {
    max-height: 70px;
}

.contigo-navbar {
    background: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 0;
}

.navbar.navbar-dark .navbar-nav .nav-link.active{color:#000 !important;}
header.sticky .navbar .navbar-brand .default-logo, header .navbar-brand .alt-logo, header .navbar .navbar-brand .mobile-logo, header .sidebar-nav-menu .navbar-brand .mobile-logo {visibility: visible; opacity: 1; width: auto;}

/* Contenedor de la barra con bordes y radio grande */
.contigo-nav-bar {
    width: 90%;
    display: flex;
    align-items: center;
    border-top: 2px solid var(--contigo-orange);
    border-bottom: 2px solid var(--contigo-orange);
    border-radius: 15px;
    /* padding: 4px 18px; */
    background: #e9e9e9;
}

/* Logo */
.contigo-nav-bar .navbar-brand {
    margin-right: 24px;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Menú centrado */
.contigo-nav-menu {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 0;
}

.navbar .navbar-nav .nav-link {
    padding: 0px 0;
    margin: 0 30px;   
}

.navbar .navbar-nav .nav-link {    
    font-size: 16px;
}

/* .contigo-nav-menu li.nav-item a:last-child {
    margin-right: 0;
} */

.contigo-nav-menu .nav-item {
    margin: 0 0px;
}

.contigo-nav-menu .nav-link {
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.contigo-nav-menu .nav-link:hover {
    color: #000;
}

/* Botón Get In Touch */
.nav-item-cta {
    margin-left: 28px;
}

.nav-cta {
    padding: 10px 32px !important;
    background: var(--contigo-orange);
    color: #fff !important;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

/* Icono Instagram redondo */
.ig-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--contigo-orange);
    border-radius: 50%;
    border: 3px solid var(--contigo-orange);
    color: var(--contigo-orange);
    margin-left: 22px;
    font-size: 20px;

}

/* Toggler líneas (si ya las tienes, ajusta aquí) */
.navbar-toggler {
    border: none;
}

.navbar-toggler-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #111;
    margin: 4px 0;
}

/* Responsivo */
@media (max-width: 991.98px) {
    .contigo-nav-bar {
        border-radius: 0;
        padding: 12px 0;
        border-left: none;
        border-right: none;
        flex-direction: column;
        align-items: flex-start;
        background: #ffffff;
    }

    .contigo-nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .contigo-nav-menu .nav-item {
        margin: 4px 0;
    }

    .nav-item-cta .nav-cta {
        margin-top: 6px;
    }

    .header-social-icon {
        margin-top: 10px;
    }
}

.sizes-disabled .shirt-size-row {
    opacity: .4;
}

.sizes-disabled .shirt-size-row input {
    cursor: not-allowed;
}

.qty-field.qty-disabled {
    opacity: .4;
}

.qty-field.qty-disabled .qty-input {
    cursor: not-allowed;
}
