/* * FICHEIRO: /wp-content/themes/hello-elementor-child/assets/css/single-lojas.css
 * SCOPE: Apenas para a visualização singular do CPT Lojas.
 */

.loja-moscot-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 100px 20px 0 20px;
    color: #000; 
}

.loja-header-global {
    border-bottom: 2px solid #000;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.loja-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.loja-grid {
	display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Breakpoint ajustado para garantir as duas colunas em ecrãs médios e grandes */
@media (min-width: 650px) {
    .loja-grid {
        grid-template-columns: 3fr 2fr;
        align-items: start;
    }
}

/* SLIDER CSS NATIVO */
.loja-slider-container {
    position: relative;
    border: 2px solid #000; 
}

.loja-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; 
    scrollbar-width: none;    
}
.loja-slider::-webkit-scrollbar {
    display: none; 
}

.loja-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 4/5; 
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loja-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.loja-slider-hint {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 12px;
    display: block;
    text-align: right;
    letter-spacing: 1px;
}

/* INFORMAÇÕES EDITORIAIS */
.loja-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.loja-block {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}
.loja-block:last-child {
    border-bottom: none;
}

.loja-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #000;
    display: block;
}

.loja-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #222;
}

/* BOTÃO WHATSAPP */
.loja-btn-wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 18px 30px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    width: 100%;
    transition: all 0.3s ease;
    border: 2px solid #000;
    cursor: pointer;
}

.loja-btn-wpp:hover {
    background-color: #fff;
    color: #000;
}

/* MAPA OEMBED */
.loja-mapa {
    width: 100%;
    border: 2px solid #000;
    filter: grayscale(100%) contrast(1.2); 
    transition: filter 0.3s ease;
    background-color: #eee;
}
.loja-mapa:hover {
    filter: grayscale(0%); 
}
.loja-mapa iframe {
    width: 100% !important;
    height: 350px !important;
    display: block;
    border: none;
}