/* header */
@media only screen and (min-width: 1200px) and (max-width: 1370px) {
    .header-main .main-menu ul li a {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: -0.34px;
        color: var(--gt-white);
        font-family: "Chakra Petch", sans-serif;
        padding: 20px 0;
        text-align: left;
        position: relative;
        text-transform: uppercase;
        transition: all 0.4s ease-in-out;
    }
}




/* ===============================
   MALTEZ PARALLAX SECTION
=================================*/
.maltez-parallax-section{
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 0;
    overflow: hidden;
    z-index: 1;
}

.maltez-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.maltez-parallax-content{
    max-width: 850px;
    margin: auto;
    color: #fff;
    position: relative;
    z-index: 2;
}

.maltez-subtitle{
    color: #FFD700;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maltez-parallax-content h2{
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.maltez-parallax-content p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ddd;
}

/* BUTTON */
.maltez-btn{
    display: inline-block;
    background: #FF0808;
    color: #fff;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s;
    text-decoration: none;
}

.maltez-btn:hover{
    background: #FFD700;
    color: #111;
}

/* Responsive */
@media(max-width:767px){
    .maltez-parallax-section{
        padding: 120px 0;
    }

    .maltez-parallax-content h2{
        font-size: 34px;
    }

    .maltez-parallax-content p{
        font-size: 16px;
    }
}


.gt-team-video {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.gt-team-video iframe{
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

@media(max-width:767px){
    .gt-team-video{
        height: 350px;
    }
}



/*   Diseño Gallery */

/* CONTENEDOR */
.gallery-container{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.title{
    text-align:center;
    color:#d4af37;
    font-size:42px;
    margin-bottom:50px;
    letter-spacing:2px;
}

/* GRID */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* CARD GALERIA */
.gallery-item{
    height:260px;
    overflow:hidden;
    border-radius:16px;
    background:#000;
    cursor:pointer;
    position:relative;
    transition:all .4s ease;
}

/* CAPA HOVER */

/* BORDE DORADO SUAVE */


.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease, filter .4s ease;
}



/* PAGINACIÓN */
.pagination{
    text-align:center;
    margin-top:60px;
}

.pagination a{
    display:inline-block;
    margin:6px;
    padding:10px 18px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
}

.pagination a:hover,
.pagination a.active{
    background:#d4af37;
    color:#000;
}

/* LIGHTBOX */


/* LIGHTBOX UNICO */
.mf-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:99999;
}

.mf-lightbox.active{
    opacity:1;
    visibility:visible;
}

.mf-lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
    box-shadow:0 0 40px rgba(0,0,0,.8);
    animation:zoomIn .35s ease;
}

@keyframes zoomIn{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}




/* tienda */

/* CONTENEDOR */
.shopx-container{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

/* TITULO */
.shopx-title{
    text-align:center;
    color:#d4af37;
    font-size:42px;
    margin-bottom:50px;
}

/* GRID */
.shopx-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* CARD */
.shopx-card{
    background:#111;
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
}

.shopx-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.5);
}

/* IMAGEN */
.shopx-img{
    height:260px;
}

.shopx-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* INFO */
.shopx-info{
    padding:20px;
    text-align:center;
}

.shopx-info h3{
    color:#fff;
    font-size:18px;
}

.shopx-price{
    color:#d4af37;
    margin-top:8px;
    font-weight:bold;
}

/* MODAL FONDO */
.shopx-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);

    display:flex;
    justify-content:center;
    align-items:center; /* desktop */

    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:9999;
}

.shopx-modal.active{
    opacity:1;
    visibility:visible;
}

/* CAJA */
.shopx-modal-box{
    background:#0f0f0f;
    border-radius:20px;
    max-width:1000px;
    width:100%;
    margin:0; /* 🔥 IMPORTANTE */
    padding:40px;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
    animation:fadeUp .4s ease;
}

/* ANIMACIÓN */
@keyframes fadeUp{
    from{
        transform:translateY(40px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* CERRAR */
.shopx-close{
    position:absolute;
    top:20px;
    right:25px;
    font-size:28px;
    color:#aaa;
    cursor:pointer;
    transition:.3s;
}

.shopx-close:hover{
    color:#fff;
}

/* GRID */
.shopx-modal-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* IMAGEN */
.shopx-modal-left{
    background:#000;
    border-radius:16px;
    padding:20px;
}

.shopx-modal-left img{
    width:100%;
    border-radius:12px;
    object-fit:cover;
}

/* INFO */
.shopx-modal-right{
    color:#fff;
}

/* CATEGORY */
.shopx-modal-category{
    color:#888;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    margin-bottom:10px;
}

/* TITULO */
.shopx-modal-right h2{
    font-size:32px;
    margin-bottom:10px;
}

/* PRECIO */
.shopx-modal-price{
    color:#d4af37;
    font-size:26px;
    font-weight:600;
    margin-bottom:20px;
}

/* DIVIDER */
.shopx-divider{
    height:1px;
    background:rgba(255,255,255,.08);
    margin:20px 0;
}

/* DESCRIPCIÓN */
.shopx-modal-desc{
    color:#ccc;
    line-height:1.6;
}

/* BOTONES */
.shopx-actions{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.shopx-btn-primary{
    flex:1;
    padding:14px;
    border:none;
    background:#d4af37;
    color:#000;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.shopx-btn-primary:hover{
    background:#f1c94c;
}

/* BOTÓN OUTLINE */
.shopx-btn-outline{
    flex:1;
    padding:14px;
    border:1px solid #d4af37;
    background:transparent;
    color:#d4af37;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.shopx-btn-outline:hover{
    background:#d4af37;
    color:#000;
}

/* RESPONSIVE */
@media(max-width:768px){
    .shopx-modal-grid{
        grid-template-columns:1fr;
    }


}

/* MOBILE FIX REAL */
@media(max-width:768px){

    .shopx-modal{
        align-items:flex-start;
        overflow-y:auto;
        padding:15px;
    }

    .shopx-modal-box{
        margin-top:30px; /* 🔥 control fino */
        width:100%;
    }

}


