/*
TESTE DE CACHE!!
Theme Name: Bella Loja
Theme URI: https://example.com
Author: Felipe
Description: Tema minimalista para loja Bella
Version: 1.0
*/

/* =========================
   RESET
========================= */

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

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: #ece9e1;
    color: #111;
    font-family: Helvetica, Arial, sans-serif;
}

/* =========================
   FONTES
========================= */

/* 
Coloque a fonte Exposure Trial em:

/wp-content/themes/bella-loja/assets/fonts/

Exemplo:
ExposureTrial-Regular.otf
*/

@font-face {
    font-family: 'Exposure';
    src: url('/wp-content/themes/bella-theme/assets/fonts/ExposureTrial[-70].otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 80px;
}

.logo {
    height: auto;
    padding-top: 80px;	
    display: block;
}


.logo h1 {
    font-family: 'Exposure', serif;
    font-size: 68px;
    line-height: 0.8;
    letter-spacing: -2px;
}

.logo span {
    font-size: 16px;
    font-weight: bold;
}

.cart-link {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #111;
}

/* =========================
   HERO
========================= */

.hero {
    width: 100%;
    text-align: center;

    margin-top: 120px;
    margin-bottom: 120px;
}

.hero-title {
    font-family: 'Exposure', serif;
    font-size: 180px;
    line-height: 0.9;
}

/* =========================
   PRODUTOS
========================= */

.products-grid {
    width: 100%;
    padding: 0 60px 120px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    text-align: center;
}

.product-image {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 24px;

    display: block;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    margin-bottom: 28px;
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 120px;
    height: 42px;

    border: 3px solid blue;
    border-radius: 999px;

    color: blue;
    text-decoration: none;
    font-weight: bold;

    transition: 0.2s ease;
}

.product-button:hover {
    background: blue;
    color: white;
}

/* =========================
   WOOCOMMERCE
========================= */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    text-align: center;
}

.woocommerce ul.products li.product img {
    margin-bottom: 24px;
}

.woocommerce-loop-product__title {
    font-size: 18px !important;
    font-weight: bold !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
    color: #111 !important;
    font-size: 18px !important;
}

/* botão woo */

.woocommerce a.button {
    background: url('/wp-content/themes/bella-theme/assets/images/button-outline.svg') center center / 100% 100% no-repeat !important;

    border: none !important;

    color: blue !important;

    padding: 14px 34px !important;

    font-weight: bold !important;

    text-transform: uppercase;

    box-shadow: none !important;
}



/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

    .hero-title {
        font-size: 110px;
    }

    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .site-header {
        padding: 24px 20px;
    }

    .logo h1 {
        font-size: 48px;
    }
}
/* remove linha e espaçamentos padrões */

.site {
    border: none !important;
}

.site-header {
    border: none !important;

    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 24px;
}

/* logo */

.logo img {	

    width: 180px;
    height: auto;
    display: block;
}

/* remove footer do wordpress */

.site-info {
    display: none !important;
}

footer {
    display: none !important;
}
/* =========================
   HOME
========================= */

.home-page {
    width: 100%;
    height: 100vh;

    position: relative;

    overflow: hidden;

    background: black;
}

/* VIDEO */

.background-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.2);

    z-index: 1;
}

/* OVERLAY */

.overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.12);

    z-index: 2;
}

/* LOGO */

.home-logo {
    position: absolute;

    left: 32px;
    bottom: 28px;

    z-index: 5;
}

.home-logo img {
    width: 600px;
    height: auto;

    display: block;
}

/* MENU */

.home-menu {
    position: absolute;

    right: 42px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    display: flex;
    flex-direction: column;
    gap: 54px;

    text-align: right;
}

.home-menu a {
    font-family: 'Exposure', serif;

    font-size: 58px;

    color: #f3efe7;

    text-decoration: none;

    transition: 0.2s ease;
}

.home-menu a:hover {
    opacity: 0.7;
}

/* ESCONDE HEADER/FOOTER */

.home .site-header,
.home .site-footer,
footer {
    display: none;
}

/* MOBILE */

@media (max-width: 768px) {

    .home-logo img {
        width: 220px;
    }

    .home-menu {
        right: 20px;
        gap: 30px;
    }

    .home-menu a {
        font-size: 42px;
    }

}
div[style*="ywxi.net"],
div[style*="trustedsite"],
iframe[src*="trustedsite"],
iframe[src*="ywxi.net"] {
    display: none !important;
}

.woocommerce-result-count{
	display:none;
}
.navigation{
	display:none;

}

#sidebar{
	display:none !important;
}
.woocommerce-breadcrumb{
	display:none !important;
}
.woocommerce-products-header{
	display:none !important;
}
.woocommerce-ordering{
	display:none !important;
}