/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #222;

    background: #fff;

    line-height: 1.6;
}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   CORES
========================================================= */

:root {

    --blue: #073f72;

    --blue-dark: #06345e;

    --blue-menu: #123f69;

    --gold: #b27b18;

    --gold-light: #d29a2b;

    --white: #fff;

    --black: #161616;

    --gray: #777;

    --border: #e4e4e4;

}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {

    height: 43px;

    background: #fff;

    border-top: 1px solid #ddd;

    border-bottom: 1px solid #e4e4e4;

    color: #222;

    font-size: 14px;

}


.topbar .container-fluid {

    height: 100%;

}


.topbar .row {

    height: 100%;

}


.topbar-item {

    height: 100%;

    display: flex;

    align-items: center;

    gap: 9px;

    white-space: nowrap;

}


.topbar-item i {

    color: var(--gold);

    font-size: 16px;

}


.topbar-item a {

    color: #222;

}


.topbar-item a:hover {

    color: var(--blue);

}


.topbar-item strong {

    font-weight: 800;

}


@media (max-width: 991px) {

    .topbar {

        height: auto;

        padding: 7px 0;

    }


    .topbar-item {

        justify-content: center !important;

        margin: 3px 0;

        font-size: 12px;

    }

}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    height: 102px;

    background: #fff;

}


.header-content {

    height: 102px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


/* =========================================================
   LOGO
========================================================= */

.header-logo {

    width: 235px;

    flex-shrink: 0;

}


.header-logo img {

    width: 145px;

    height: auto;

    object-fit: contain;

}


/* =========================================================
   BUSCA
========================================================= */

.header-search {

    flex: 1;

    max-width: 600px;

}


.search-box {

    height: 45px;

    border: 1px solid #111;

    border-radius: 30px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #fff;

}


.search-box input {

    flex: 1;

    height: 100%;

    border: 0;

    outline: none;

    padding: 0 22px;

    font-size: 14px;

    color: #555;

}


.search-box input::placeholder {

    color: #777;

}


.search-box button {

    width: 62px;

    height: 100%;

    border: 0;

    background: transparent;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

}


.search-box button i {

    color: #000;

    font-size: 29px;

}


.search-box button:hover i {

    color: var(--blue);

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 35px;

    min-width: 170px;

    justify-content: flex-end;

}


.header-action {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #111;

    font-size: 14px;

}


.header-action i {

    font-size: 26px;

}


.header-action:hover {

    color: var(--blue);

}


.cart-action {

    color: #000;

}


.cart-icon {

    position: relative;

    font-size: 32px;

}


.cart-count {

    position: absolute;

    top: -13px;

    right: -7px;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: var(--gold);

    color: white;

    font-size: 10px;

    font-weight: bold;

    display: flex;

    align-items: center;

    justify-content: center;

}


@media (max-width: 991px) {

    .main-header {

        height: auto;

    }


    .header-content {

        height: auto;

        padding: 15px 0;

        flex-wrap: wrap;

    }


    .header-logo {

        width: auto;

    }


    .header-search {

        order: 3;

        flex-basis: 100%;

        max-width: none;

    }


    .header-actions {

        min-width: auto;

    }

}


@media (max-width: 575px) {

    .header-logo img {

        width: 125px;

    }


    .header-actions {

        gap: 15px;

    }


    .header-action span {

        display: none;

    }


    .cart-icon {

        font-size: 28px;

    }

}


/* =========================================================
   MENU PRINCIPAL
========================================================= */

.main-menu {

    height: 48px;

    background: var(--blue-menu);

    color: #fff;

}


.menu-wrapper {

    height: 48px;

    display: flex;

    justify-content: center;

}


.menu-item {

    height: 48px;

    position: relative;

    border-right: 1px solid rgba(255,255,255,.13);

}


.menu-item:first-child {

    border-left: 1px solid rgba(255,255,255,.13);

}


.menu-item > a {

    height: 48px;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: #fff;

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

}


.menu-item > a:hover {

    background: rgba(255,255,255,.08);

}


.menu-all {

    background: rgba(0,0,0,.08);

}


.menu-all i {

    font-size: 19px;

}


.menu-dropdown > a i {

    font-size: 10px;

    margin-left: 5px;

}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.menu-dropdown-content {

    position: absolute;

    top: 48px;

    left: 0;

    min-width: 230px;

    background: #fff;

    box-shadow:
        0 12px 30px rgba(0,0,0,.15);

    border-top: 3px solid var(--gold);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition: .2s;

    z-index: 9999;

}


.menu-dropdown-content a {

    display: block;

    padding: 12px 18px;

    color: #333;

    font-size: 13px;

    border-bottom: 1px solid #eee;

}


.menu-dropdown-content a:hover {

    background: #f5f5f5;

    color: var(--blue);

}


.menu-dropdown:hover .menu-dropdown-content {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.main-menu {
    width: 100%;
    background: #174b7a;
    position: relative;
    z-index: 9999;
}

.main-menu-wrapper {
    max-width: 1320px;
    margin: 0 auto;

    display: flex;
    align-items: stretch;
    justify-content: center;

    width: 100%;
}

.main-menu-item {
    position: relative;
    flex: 0 1 auto;

    border-right: 1px solid rgba(255,255,255,.12);
}

.main-menu-item > a {
    min-height: 58px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #fff;
    text-decoration: none;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.2;
    text-transform: uppercase;

    text-align: center;
    white-space: nowrap;

    transition: .2s;
}

.main-menu-item:hover > a {
    background: #123e67;
    color: #fff;
}

.main-menu-item > a i {
    font-size: 8px;
    transition: .2s;
}

.main-menu-item:hover > a i {
    transform: rotate(180deg);
}


/* SUBMENU */

.submenu {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 270px;

    background: #fff;

    border-top: 3px solid #d99a24;

    box-shadow: 0 10px 30px rgba(0,0,0,.16);

    opacity: 0;
    visibility: hidden;

    transform: translateY(6px);

    transition: .2s;

    z-index: 99999;
}

.main-menu-item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: block;

    padding: 13px 18px;

    color: #333;
    background: #fff;

    text-decoration: none;

    font-size: 9px;
    font-weight: 600;

    border-bottom: 1px solid #eee;

    white-space: nowrap;

    transition: .2s;
}

.submenu a:hover {
    background: #f5f5f5;
    color: #174b7a;
    
}


/* TABLET */

@media (max-width: 1200px) {

    .main-menu-wrapper {
        max-width: 1140px;
    }

    .main-menu-item > a {
        padding: 0 9px;
        font-size: 9px;
    }

}


/* MOBILE */

@media (max-width: 991px) {

    .main-menu-wrapper {
        max-width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .main-menu-item {
        flex-shrink: 0;
    }

    .main-menu-item > a {
        min-height: 54px;
        padding: 0 12px;
        font-size: 10px;
    }

}

@media (max-width: 991px) {

    .main-menu {

        overflow-x: auto;

    }


    .menu-wrapper {

        justify-content: flex-start;

        width: max-content;

    }


    .menu-item > a {

        padding: 0 18px;

    }

}


/* =========================================================
   BANNER
========================================================= */

.hero-banner {

    width: 100%;

    height: 300px;

    overflow: hidden;

}


.hero-banner .carousel,
.hero-banner .carousel-inner,
.hero-banner .carousel-item {

    height: 500px;

}


.banner-slide {

    height: 500px;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    position: relative;

}


.banner-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.58) 0%,
            rgba(0,0,0,.20) 50%,
            rgba(0,0,0,.05) 100%
        );

}


.banner-content {

    position: relative;

    z-index: 2;

    height: 500px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    max-width: 620px;

    color: #fff;

}


.banner-small-title {

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 15px;

}


.banner-content h1 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px, 5vw, 70px);

    font-weight: 500;

    line-height: 1.03;

    margin-bottom: 20px;

}


.banner-content p {

    max-width: 480px;

    font-size: 18px;

    line-height: 1.6;

    color: rgba(255,255,255,.9);

    margin-bottom: 28px;

}


.banner-button {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: var(--gold);

    color: #fff;

    padding: 13px 23px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 800;

    transition: .2s;

}


.banner-button:hover {

    background: var(--gold-dark);

    color: #fff;

    transform: translateY(-2px);

}


.banner-arrow {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: #fff;

    color: #222;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    box-shadow:
        0 4px 15px rgba(0,0,0,.15);

}


.carousel-control-prev,
.carousel-control-next {

    width: 8%;

    opacity: 1;

}


.carousel-control-prev:hover .banner-arrow,
.carousel-control-next:hover .banner-arrow {

    background: var(--gold);

    color: #fff;

}


.carousel-indicators {

    bottom: 18px;

}


.carousel-indicators button {

    width: 32px;

    height: 3px;

    border: 0;

    opacity: .8;

}


.carousel-indicators button.active {

    background: var(--gold);

}


@media (max-width: 767px) {

    .hero-banner,
    .hero-banner .carousel,
    .hero-banner .carousel-inner,
    .hero-banner .carousel-item,
    .banner-slide,
    .banner-content {

        height: 500px;

    }


    .banner-content {

        padding: 0 20px;

    }


    .banner-content h1 {

        font-size: 40px;

    }


    .banner-content p {

        font-size: 15px;

    }


    .banner-arrow {

        width: 38px;

        height: 38px;

        font-size: 17px;

    }

}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.benefits {

    background: #fff;

    border-bottom: 1px solid var(--border);

}


.benefits .container {

    padding-top: 30px;

    padding-bottom: 30px;

}


.benefit-card {

    display: flex;

    align-items: flex-start;

    gap: 14px;

}


.benefit-icon {

    width: 48px;

    min-width: 48px;

    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf5fb;

    color: var(--blue);

    font-size: 20px;

}


.benefit-card h3 {

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 5px;

}


.benefit-card p {

    color: #777;

    font-size: 12px;

    margin: 0;

    line-height: 1.5;

}


/* =========================================================
   SEÇÕES
========================================================= */

.section {

    padding: 80px 0;

}


.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 40px;

}


.section-label {

    display: block;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 10px;

}


.section-heading h2,
.story-section h2 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 44px;

    font-weight: 500;

    line-height: 1.15;

    color: #161616;

}


.section-heading p {

    color: #777;

    margin-top: 8px;

}


/* =========================================================
   PRODUTOS
========================================================= */

.products-section {

    background: #f7f6f2;

}


.product-card {

    height: 100%;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 14px;

    overflow: hidden;

    transition: .25s;

}


.product-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

}


.product-image {

    width: 100%;

    height: 250px;

    object-fit: cover;

}


.product-content {

    padding: 20px;

}


.product-brand {

    color: #777;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.product-title {

    font-size: 15px;

    font-weight: 700;

    margin: 8px 0;

}


.old-price {

    color: #999;

    text-decoration: line-through;

    font-size: 12px;

}


.product-price {

    color: var(--blue);

    font-size: 22px;

    font-weight: 800;

}


.installment {

    color: #777;

    font-size: 11px;

    margin-bottom: 15px;

}


/* =========================================================
   STORY
========================================================= */

.story-image {

    min-height: 500px;

    border-radius: 18px;

    background:
        url(
            "https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=90"
        )
        center / cover;

    position: relative;

}


.story-badge {

    position: absolute;

    left: 25px;

    bottom: 25px;

    background: #fff;

    border-left: 4px solid var(--gold);

    padding: 15px 18px;

    border-radius: 6px;

    display: flex;

    flex-direction: column;

}


.story-badge strong {

    color: var(--blue);

}


.story-badge span {

    color: #777;

    font-size: 11px;

}


.story-section p {

    color: #777;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   CATEGORIAS
========================================================= */

.categories-section {

    background: #f7f6f2;

}


.section-heading.centered {

    display: block;

    text-align: center;

}


.category-card {

    height: 320px;

    display: block;

    position: relative;

    background-size: cover;

    background-position: center;

    border-radius: 15px;

    overflow: hidden;

    color: #fff;

}


.category-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.75),
            transparent 65%
        );

}


.category-overlay {

    position: absolute;

    z-index: 2;

    bottom: 22px;

    left: 22px;

    right: 22px;

}


.category-overlay span {

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

}


.category-overlay h3 {

    font-family: Georgia, serif;

    font-size: 25px;

    font-weight: 500;

    line-height: 1.1;

    margin: 7px 0 14px;

}


.category-overlay div {

    font-size: 12px;

    font-weight: 700;

}


/* =========================================================
   CALCULADORA
========================================================= */

.calculator-section {

    padding: 80px 0;

}


.calculator-box {

    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );

    border-radius: 20px;

    padding: 50px;

    color: #fff;

}


.calculator-label {

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.calculator-box h2 {

    font-family: Georgia, serif;

    font-size: 43px;

    font-weight: 500;

    line-height: 1.1;

    margin: 15px 0;

}


.calculator-box > .row > div > p {

    color: rgba(255,255,255,.75);

}


.calculator-tip {

    display: flex;

    gap: 10px;

    margin-top: 20px;

    padding: 15px;

    background: rgba(255,255,255,.08);

    border-radius: 8px;

    font-size: 12px;

}


.calculator-form {

    background: #fff;

    border-radius: 14px;

    padding: 28px;

    color: #333;

}


.calculator-form .form-control,
.calculator-form .form-select {

    min-height: 44px;

}


.calculator-result {

    background: #edf5fb;

    color: var(--blue);

    border-radius: 8px;

    padding: 15px;

    min-height: 50px;

    font-size: 13px;

}


/* =========================================================
   BLOG
========================================================= */

.blog-section {

    background: #f7f6f2;

}


.blog-card {

    height: 100%;

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition: .25s;

}


.blog-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

}


.blog-image {

    height: 220px;

    overflow: hidden;

}


.blog-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.blog-content {

    padding: 23px;

}


.blog-category {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.blog-content h3 {

    font-family: Georgia, serif;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.3;

    margin: 10px 0;

}


.blog-content p {

    color: #777;

    font-size: 13px;

}


.blog-link {

    color: var(--blue);

    font-size: 13px;

    font-weight: 800;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 70px 0;

}


.cta-box {

    background:
        linear-gradient(
            120deg,
            var(--blue-dark),
            var(--blue)
        );

    color: #fff;

    border-radius: 18px;

    padding: 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.cta-box span {

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.cta-box h2 {

    font-family: Georgia, serif;

    font-size: 38px;

    font-weight: 500;

    margin: 10px 0;

}


.cta-box p {

    color: rgba(255,255,255,.75);

}


@media(max-width:767px) {

    .cta-box {

        display: block;

        padding: 30px;

    }


    .cta-box h2 {

        font-size: 30px;

    }


    .cta-box .btn {

        margin-top: 15px;

    }

}


/* =========================================================
   FOOTER
========================================================= */
/* ==========================================================
   FOOTER
========================================================== */

.footer {
    background: #f5f5f5;
    color: #174a7c;
    padding: 70px 0 25px;
}


/* LOGO */

.footer-logo {
    max-width: 190px;
    height: auto;
    margin-bottom: 20px;
}


/* DESCRIÇÃO */

.footer-description {
    color: #174a7c;
    line-height: 1.8;
    max-width: 350px;
    margin-bottom: 0;
}


/* TÍTULOS */

.footer h4 {
    color: #174a7c;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
}


/* LISTAS */

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 12px;
}


/* LINKS */

.footer a {
    color: #174a7c;
    text-decoration: none;
    transition: all .2s ease;
}

.footer a:hover {
    color: #0d3154;
    padding-left: 3px;
}


/* CONTATO */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #174a7c;
    line-height: 1.6;
}

.footer-contact i {
    color: #174a7c;
    font-size: 18px;
    margin-top: 2px;
}


/* LINHA */

.footer hr {
    margin: 50px 0 25px;
    border: 0;
    border-top: 1px solid rgba(23, 74, 124, .20);
}


/* PARTE INFERIOR */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #174a7c;
    font-size: 13px;
}


/* RESPONSIVO */

@media (max-width: 768px) {

    .footer {
        padding: 50px 0 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

}

/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #25d366;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 27px;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

}


.whatsapp-float:hover {

    color: #fff;

    transform: scale(1.08);

}


/* =========================================================
   CARROSSEL DE PRODUTOS
========================================================= */

.product-carousel {

    position: relative;

    padding: 0 45px;

}


.product-carousel .carousel-inner {

    overflow: visible;

}


.product-carousel .product-card {

    height: 100%;

}


.product-image-wrapper {

    position: relative;

    overflow: hidden;

}


.product-image {

    width: 100%;

    height: 245px;

    object-fit: cover;

    transition: transform .35s ease;

}


.product-card:hover .product-image {

    transform: scale(1.04);

}


/* =========================================================
   BOTÕES DO PRODUTO
========================================================= */

.product-buttons {

    display: flex;

    gap: 8px;

}


.product-buttons .btn {

    flex: 1;

    min-height: 42px;

    padding: 9px 8px;

    border-radius: 6px;

    font-size: 11px;

    font-weight: 800;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

}


/* VISUALIZAR */

.btn-product-view {

    background: #fff;

    border: 1px solid var(--blue);

    color: var(--blue);

}


.btn-product-view:hover {

    background: var(--blue);

    border-color: var(--blue);

    color: #fff;

}


/* CARRINHO */

.btn-product-cart {

    background: var(--blue);

    border: 1px solid var(--blue);

    color: #fff;

}


.btn-product-cart:hover {

    background: var(--blue-dark);

    border-color: var(--blue-dark);

    color: #fff;

}


/* =========================================================
   SETAS
========================================================= */

.product-carousel-prev,
.product-carousel-next {

    width: 45px;

    opacity: 1;

}


.product-carousel-prev {

    left: -2px;

}


.product-carousel-next {

    right: -2px;

}


.product-carousel-arrow {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #fff;

    color: var(--blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

    border: 1px solid #ddd;

    box-shadow:
        0 5px 15px rgba(0,0,0,.12);

    transition: .2s;

}


.product-carousel-prev:hover .product-carousel-arrow,
.product-carousel-next:hover .product-carousel-arrow {

    background: var(--blue);

    color: #fff;

    border-color: var(--blue);

}


/* =========================================================
   INDICADORES
========================================================= */

.product-carousel-indicators {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 28px;

}


.product-carousel-indicators button {

    width: 25px;

    height: 4px;

    border: 0;

    border-radius: 5px;

    background: #d2d2d2;

    transition: .2s;

}


.product-carousel-indicators button.active {

    width: 40px;

    background: var(--gold);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-carousel {

        padding: 0 30px;

    }


    .product-carousel-prev,
    .product-carousel-next {

        width: 35px;

    }


    .product-carousel-prev {

        left: -4px;

    }


    .product-carousel-next {

        right: -4px;

    }


    .product-carousel-arrow {

        width: 36px;

        height: 36px;

        font-size: 16px;

    }


    .product-image {

        height: 260px;

    }


    .product-buttons {

        flex-direction: column;

    }


    .product-buttons .btn {

        width: 100%;

    }

}


/* =========================================================
   QUANTIDADE DO PRODUTO
========================================================= */

.product-quantity {

    margin-top: 18px;

    margin-bottom: 18px;

}


.product-quantity > span {

    display: block;

    color: #555;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 7px;

}


/* =========================================================
   CONTROLE
========================================================= */

.quantity-control {

    width: 100%;

    height: 40px;

    display: flex;

    align-items: center;

    border: 1px solid #dcdcdc;

    border-radius: 6px;

    overflow: hidden;

    background: #fff;

}


.quantity-control button {

    width: 42px;

    height: 100%;

    border: 0;

    background: #f7f7f7;

    color: #333;

    font-size: 20px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .2s;

}


.quantity-control button:hover {

    background: var(--blue);

    color: #fff;

}


.quantity-input {

    flex: 1;

    width: 100%;

    height: 100%;

    border: 0;

    border-left: 1px solid #eee;

    border-right: 1px solid #eee;

    outline: none;

    text-align: center;

    font-size: 14px;

    font-weight: 700;

    color: #222;

}


/* remove setas do input number */

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {

    -webkit-appearance: none;

    margin: 0;

}


.quantity-input[type="number"] {

    -moz-appearance: textfield;

}


/* =========================================================
   BOTÕES
========================================================= */

.product-buttons {

    display: flex;

    gap: 8px;

}


.product-buttons .btn {

    flex: 1;

    min-height: 42px;

    padding: 8px 7px;

    border-radius: 6px;

    font-size: 11px;

    font-weight: 800;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

}


.btn-product-view {

    background: #fff;

    border: 1px solid var(--blue);

    color: var(--blue);

}


.btn-product-view:hover {

    background: var(--blue);

    color: #fff;

}


.btn-product-cart {

    background: var(--blue);

    border: 1px solid var(--blue);

    color: #fff;

}


.btn-product-cart:hover {

    background: var(--blue-dark);

    color: #fff;

}


@media (max-width: 575px) {

    .product-buttons {

        flex-direction: row;

    }

}


/* =========================================================
   BREADCRUMB
========================================================= */

.product-breadcrumb {

    background: #f7f6f2;

    padding: 17px 0;

    border-bottom: 1px solid #e5e5e5;

}


.product-breadcrumb .breadcrumb {

    font-size: 12px;

}


.product-breadcrumb a {

    color: var(--blue);

}


.product-breadcrumb .active {

    color: #777;

}


/* =========================================================
   DETALHE DO PRODUTO
========================================================= */

.product-detail-section {

    padding: 65px 0 80px;

    background: #fff;

}


/* =========================================================
   GALERIA
========================================================= */

.product-gallery {

    position: sticky;

    top: 20px;

}


.product-main-image {

    height: 570px;

    background: #f7f7f7;

    border-radius: 12px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}


.product-main-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.product-detail-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    z-index: 2;

    background: var(--gold);

    color: #fff;

    padding: 7px 13px;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   MINIATURAS
========================================================= */

.product-thumbnails {

    display: flex;

    gap: 12px;

    margin-top: 15px;

}


.product-thumb {

    width: 85px;

    height: 85px;

    padding: 0;

    border: 1px solid #ddd;

    border-radius: 7px;

    overflow: hidden;

    background: #fff;

    cursor: pointer;

}


.product-thumb.active {

    border: 2px solid var(--blue);

}


.product-thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.product-detail-content {

    padding: 5px 0;

}


.product-detail-brand {

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 12px;

}


.product-detail-content h1 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    font-weight: 500;

    line-height: 1.15;

    color: #161616;

    margin-bottom: 17px;

}


.product-rating {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

}


.stars {

    color: var(--gold);

    letter-spacing: 2px;

}


.product-rating span {

    font-weight: 700;

}


.product-rating a {

    color: var(--blue);

}


.product-detail-content hr {

    border-color: #e5e5e5;

    margin: 25px 0;

}


/* =========================================================
   PREÇOS
========================================================= */

.detail-prices {

    display: flex;

    flex-direction: column;

}


.detail-old-price {

    color: #999;

    text-decoration: line-through;

    font-size: 14px;

}


.detail-price {

    color: var(--blue);

    font-size: 38px;

    font-weight: 800;

    line-height: 1.25;

}


.detail-installment {

    color: #555;

    font-size: 13px;

}


.detail-installment strong {

    color: #222;

}


.price-info {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #f2f7fb;

    color: var(--blue);

    padding: 10px 13px;

    border-radius: 6px;

    margin-top: 15px;

    font-size: 12px;

}


/* =========================================================
   RESUMO
========================================================= */

.product-summary {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.product-summary div {

    display: flex;

    flex-direction: column;

}


.product-summary span {

    color: #888;

    font-size: 11px;

}


.product-summary strong {

    color: #222;

    font-size: 13px;

}


/* =========================================================
   QUANTIDADE
========================================================= */

.detail-quantity {

    margin-top: 28px;

}


.detail-quantity label {

    display: block;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 8px;

}


.detail-quantity-control {

    width: 145px;

    height: 45px;

    display: flex;

    border: 1px solid #ccc;

    border-radius: 6px;

    overflow: hidden;

}


.detail-quantity-control button {

    width: 42px;

    border: 0;

    background: #f5f5f5;

    font-size: 20px;

    cursor: pointer;

}


.detail-quantity-control button:hover {

    background: var(--blue);

    color: #fff;

}


.detail-quantity-control input {

    width: 60px;

    border: 0;

    border-left: 1px solid #eee;

    border-right: 1px solid #eee;

    text-align: center;

    outline: none;

    font-weight: 700;

}


.detail-quantity-control input::-webkit-inner-spin-button,
.detail-quantity-control input::-webkit-outer-spin-button {

    -webkit-appearance: none;

}


/* =========================================================
   TOTAL
========================================================= */

.detail-total {

    margin-top: 20px;

    padding: 16px 0;

    border-top: 1px solid #eee;

    border-bottom: 1px solid #eee;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.detail-total span {

    font-size: 13px;

    color: #777;

}


.detail-total strong {

    font-size: 24px;

    color: var(--blue);

}


/* =========================================================
   BOTÕES
========================================================= */

.detail-actions {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 20px;

}


.detail-actions .btn {

    min-height: 52px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

}


.btn-detail-cart {

    background: var(--blue);

    border: 1px solid var(--blue);

    color: #fff;

}


.btn-detail-cart:hover {

    background: var(--blue-dark);

    color: #fff;

}


.btn-detail-buy {

    background: var(--gold);

    border: 1px solid var(--gold);

    color: #fff;

}


.btn-detail-buy:hover {

    background: #946511;

    border-color: #946511;

    color: #fff;

}


/* =========================================================
   ENTREGA
========================================================= */

.delivery-box {

    margin-top: 25px;

    background: #f8f8f8;

    border-radius: 8px;

    padding: 18px;

}


.delivery-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 11px 0;

}


.delivery-item:not(:last-child) {

    border-bottom: 1px solid #e5e5e5;

}


.delivery-item > i {

    color: var(--blue);

    font-size: 21px;

}


.delivery-item div {

    display: flex;

    flex-direction: column;

}


.delivery-item strong {

    font-size: 12px;

    color: #222;

}


.delivery-item span {

    color: #777;

    font-size: 11px;

}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.product-information {

    padding: 75px 0;

    background: #f7f6f2;

}


.information-block {

    background: #fff;

    padding: 35px;

    border-radius: 12px;

    margin-bottom: 25px;

}


.information-block h2 {

    font-family: Georgia, serif;

    font-size: 30px;

    font-weight: 500;

    margin-bottom: 20px;

}


.information-block p {

    color: #666;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   ESPECIFICAÇÕES
========================================================= */

.specifications {

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid #eee;

}


.specifications div {

    padding: 15px;

    border-bottom: 1px solid #eee;

    display: flex;

    justify-content: space-between;

    gap: 15px;

}


.specifications span {

    color: #777;

    font-size: 12px;

}


.specifications strong {

    font-size: 12px;

    text-align: right;

}


/* =========================================================
   BOX DE AJUDA
========================================================= */

.product-help-box {

    background: var(--blue);

    color: #fff;

    border-radius: 12px;

    padding: 35px;

    position: sticky;

    top: 20px;

}


.product-help-box > i {

    color: var(--gold-light);

    font-size: 35px;

}


.product-help-box h3 {

    font-family: Georgia, serif;

    font-size: 27px;

    font-weight: 500;

    margin: 15px 0 10px;

}


.product-help-box p {

    color: rgba(255,255,255,.75);

    font-size: 13px;

    line-height: 1.7;

}


.btn-whatsapp {

    background: #25d366;

    color: #fff;

    border: 0;

    width: 100%;

    margin-top: 10px;

    font-weight: 800;

}


.btn-whatsapp:hover {

    background: #1ebc59;

    color: #fff;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .product-gallery {

        position: static;

    }


    .product-help-box {

        position: static;

    }


    .product-main-image {

        height: 500px;

    }


    .product-detail-content h1 {

        font-size: 35px;

    }

}


@media (max-width: 767px) {

    .product-detail-section {

        padding: 40px 0 60px;

    }


    .product-main-image {

        height: 400px;

    }


    .product-detail-content h1 {

        font-size: 30px;

    }


    .detail-price {

        font-size: 32px;

    }


    .detail-actions {

        grid-template-columns: 1fr;

    }


    .product-summary {

        grid-template-columns: 1fr 1fr;

    }


    .information-block {

        padding: 25px;

    }


    .specifications {

        grid-template-columns: 1fr;

    }

}



/* =========================================================
   CARRINHO
========================================================= */

.cart-breadcrumb {

    background: #f7f6f2;

    padding: 17px 0;

    border-bottom: 1px solid #e5e5e5;

}


.cart-breadcrumb .breadcrumb {

    font-size: 12px;

}


.cart-breadcrumb a {

    color: var(--blue);

}


/* =========================================================
   SEÇÃO
========================================================= */

.cart-section {

    padding: 60px 0 90px;

    background: #fff;

}


.cart-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 35px;

}


.cart-heading h1 {

    font-family: Georgia, serif;

    font-size: 42px;

    font-weight: 500;

    margin: 8px 0 0;

}


.cart-items-count {

    color: #777;

    font-size: 13px;

}


/* =========================================================
   PRODUTOS
========================================================= */

.cart-products {

    border: 1px solid #e3e3e3;

    border-radius: 10px;

    overflow: hidden;

}


.cart-products-header {

    display: grid;

    grid-template-columns: 1fr 170px 130px;

    padding: 15px 20px;

    background: #f7f7f7;

    border-bottom: 1px solid #e5e5e5;

    color: #777;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


.cart-products-header span:nth-child(2),
.cart-products-header span:nth-child(3) {

    text-align: center;

}


/* =========================================================
   ITEM
========================================================= */

.cart-item {

    display: grid;

    grid-template-columns: 1fr 170px 130px;

    align-items: center;

    gap: 15px;

    padding: 22px 20px;

    border-bottom: 1px solid #eee;

}


.cart-product {

    display: flex;

    align-items: center;

    gap: 15px;

}


.cart-product-image {

    width: 95px;

    height: 95px;

    flex-shrink: 0;

    border-radius: 7px;

    overflow: hidden;

    background: #f7f7f7;

}


.cart-product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.cart-product-info {

    display: flex;

    flex-direction: column;

}


.cart-product-brand {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;

}


.cart-product-name {

    color: #222;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.4;

}


.cart-product-unit {

    color: #888;

    font-size: 11px;

    margin-top: 5px;

}


.cart-remove {

    border: 0;

    background: transparent;

    padding: 0;

    margin-top: 8px;

    width: fit-content;

    color: #999;

    font-size: 11px;

    cursor: pointer;

}


.cart-remove:hover {

    color: #c0392b;

}


/* =========================================================
   QUANTIDADE
========================================================= */

.cart-quantity {

    display: flex;

    align-items: center;

    justify-content: center;

}


.cart-quantity-control {

    width: 125px;

    height: 40px;

    display: flex;

    border: 1px solid #d7d7d7;

    border-radius: 6px;

    overflow: hidden;

}


.cart-quantity-control button {

    width: 38px;

    border: 0;

    background: #f7f7f7;

    font-size: 18px;

    cursor: pointer;

}


.cart-quantity-control button:hover {

    background: var(--blue);

    color: #fff;

}


.cart-quantity-control input {

    width: 49px;

    border: 0;

    border-left: 1px solid #eee;

    border-right: 1px solid #eee;

    text-align: center;

    outline: none;

    font-size: 13px;

    font-weight: 700;

}


/* =========================================================
   SUBTOTAL
========================================================= */

.cart-item-total {

    text-align: center;

    color: var(--blue);

    font-size: 15px;

    font-weight: 800;

}


/* =========================================================
   CONTINUAR
========================================================= */

.cart-continue {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

}


.cart-continue .btn-outline-dark {

    font-size: 12px;

    font-weight: 700;

}


.cart-clear {

    color: #999;

    text-decoration: none;

    font-size: 12px;

}


.cart-clear:hover {

    color: #c0392b;

}


/* =========================================================
   RESUMO
========================================================= */

.cart-summary {

    background: #f7f6f2;

    border-radius: 10px;

    padding: 28px;

    position: sticky;

    top: 20px;

}


.cart-summary h2 {

    font-family: Georgia, serif;

    font-size: 26px;

    font-weight: 500;

    margin-bottom: 25px;

}


/* =========================================================
   CUPOM
========================================================= */

.coupon {

    margin-bottom: 25px;

}


.coupon label {

    display: block;

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 7px;

}


.coupon > div {

    display: flex;

}


.coupon input {

    min-width: 0;

    width: 100%;

    height: 40px;

    border: 1px solid #ddd;

    border-right: 0;

    border-radius: 5px 0 0 5px;

    padding: 0 12px;

    outline: none;

    font-size: 11px;

}


.coupon button {

    border: 1px solid var(--blue);

    background: var(--blue);

    color: #fff;

    padding: 0 15px;

    border-radius: 0 5px 5px 0;

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   LINHAS
========================================================= */

.summary-line {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 9px 0;

    font-size: 12px;

}


.summary-line span {

    color: #777;

}


.summary-line strong {

    color: #333;

}


.cart-summary hr {

    border-color: #ddd;

    margin: 18px 0;

}


/* =========================================================
   TOTAL
========================================================= */

.summary-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.summary-total span {

    font-size: 14px;

    font-weight: 700;

}


.summary-total strong {

    color: var(--blue);

    font-size: 25px;

}


/* =========================================================
   ENTREGA
========================================================= */

.cart-delivery {

    display: flex;

    gap: 12px;

    background: #fff;

    padding: 15px;

    border-radius: 7px;

    margin-top: 22px;

}


.cart-delivery > i {

    color: var(--blue);

    font-size: 22px;

}


.cart-delivery div {

    display: flex;

    flex-direction: column;

}


.cart-delivery strong {

    font-size: 11px;

}


.cart-delivery span {

    color: #777;

    font-size: 10px;

    line-height: 1.5;

    margin-top: 3px;

}


/* =========================================================
   CHECKOUT
========================================================= */

.btn-checkout {

    width: 100%;

    min-height: 50px;

    margin-top: 20px;

    background: var(--blue);

    border: 1px solid var(--blue);

    color: #fff;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 800;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}


.btn-checkout:hover {

    background: var(--blue-dark);

    color: #fff;

}


.btn-cart-whatsapp {

    width: 100%;

    min-height: 45px;

    margin-top: 10px;

    background: #25d366;

    color: #fff;

    border-radius: 6px;

    font-size: 11px;

    font-weight: 800;

}


.btn-cart-whatsapp:hover {

    background: #1ebc59;

    color: #fff;

}


.secure-purchase {

    text-align: center;

    color: #888;

    font-size: 10px;

    margin-top: 15px;

}


.secure-purchase i {

    color: #198754;

    margin-right: 4px;

}


/* =========================================================
   CARRINHO VAZIO
========================================================= */

.empty-cart {

    display: none;

    text-align: center;

    padding: 80px 20px;

}


.empty-cart-icon {

    width: 85px;

    height: 85px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #f5f5f5;

    display: flex;

    align-items: center;

    justify-content: center;

}


.empty-cart-icon i {

    font-size: 35px;

    color: #999;

}


.empty-cart h2 {

    font-family: Georgia, serif;

    font-size: 30px;

    font-weight: 500;

}


.empty-cart p {

    color: #777;

    font-size: 13px;

    margin-bottom: 25px;

}


.btn-empty-cart {

    background: var(--blue);

    color: #fff;

    border: 0;

    padding: 12px 25px;

    font-size: 12px;

    font-weight: 800;

}


.btn-empty-cart:hover {

    background: var(--blue-dark);

    color: #fff;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .cart-summary {

        position: static;

    }

}


@media (max-width: 767px) {

    .cart-section {

        padding: 40px 0 60px;

    }


    .cart-heading h1 {

        font-size: 32px;

    }


    .cart-products-header {

        display: none;

    }


    .cart-item {

        grid-template-columns: 1fr;

        gap: 15px;

        padding: 20px;

    }


    .cart-product {

        align-items: flex-start;

    }


    .cart-product-image {

        width: 80px;

        height: 80px;

    }


    .cart-quantity {

        justify-content: flex-start;

    }


    .cart-item-total {

        text-align: left;

    }


    .cart-continue {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }


    .cart-summary {

        padding: 22px;

    }

}


/* =========================================================
   LOJA
========================================================= */

.store-breadcrumb {

    background: #f7f6f2;

    padding: 17px 0;

    border-bottom: 1px solid #e5e5e5;

}


.store-breadcrumb .breadcrumb {

    font-size: 12px;

}


.store-breadcrumb a {

    color: var(--blue);

}


/* =========================================================
   SEÇÃO
========================================================= */

.store-section {

    padding: 60px 0 90px;

    background: #fff;

}


.store-heading {

    margin-bottom: 35px;

}


.store-heading h1 {

    font-family: Georgia, serif;

    font-size: 42px;

    font-weight: 500;

    margin: 8px 0 10px;

}


.store-heading p {

    color: #777;

    font-size: 14px;

    margin: 0;

}


/* =========================================================
   FILTROS
========================================================= */

.store-filters {

    background: #f7f6f2;

    border: 1px solid #e7e4dc;

    border-radius: 10px;

    padding: 22px;

    margin-bottom: 28px;

}


.filter-label {

    display: block;

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 7px;

    color: #333;

}


.store-search {

    height: 44px;

    background: #fff;

    border: 1px solid #d9d9d9;

    border-radius: 6px;

    display: flex;

    align-items: center;

    padding: 0 13px;

}


.store-search i {

    color: #999;

    margin-right: 9px;

}


.store-search input {

    width: 100%;

    height: 100%;

    border: 0;

    outline: 0;

    font-size: 12px;

}


.store-select {

    height: 44px;

    border-color: #d9d9d9;

    border-radius: 6px;

    font-size: 12px;

    outline: none;

}


.store-select:focus {

    border-color: var(--blue);

    box-shadow: none;

}


.btn-clear-filter {

    width: 100%;

    height: 44px;

    border: 1px solid #d9d9d9;

    background: #fff;

    color: #666;

    border-radius: 6px;

}


.btn-clear-filter:hover {

    background: var(--blue);

    border-color: var(--blue);

    color: #fff;

}


/* =========================================================
   RESULTADOS
========================================================= */

.store-results-bar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 20px;

    margin-bottom: 5px;

    border-bottom: 1px solid #eee;

}


#productsFound {

    font-size: 12px;

    font-weight: 800;

    color: #333;

}


.store-result-category {

    color: #888;

    font-size: 11px;

}


.store-result-category i {

    margin-right: 5px;

}


/* =========================================================
   CARDS
========================================================= */

.store-section .product-card {

    height: 100%;

    display: flex;

    flex-direction: column;

}


.store-section .product-content {

    flex: 1;

    display: flex;

    flex-direction: column;

}


.store-section .product-buttons {

    margin-top: auto;

}


.store-section .product-image-wrapper {

    height: 280px;

}


.store-section .product-title {

    min-height: 44px;

}


/* =========================================================
   SEM PRODUTO
========================================================= */

.no-products {

    display: none;

    text-align: center;

    padding: 90px 20px;

}


.no-products-icon {

    width: 80px;

    height: 80px;

    background: #f5f5f5;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

}


.no-products-icon i {

    font-size: 30px;

    color: #999;

}


.no-products h2 {

    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: 500;

}


.no-products p {

    color: #777;

    font-size: 13px;

    margin-bottom: 22px;

}


.btn-reset-search {

    background: var(--blue);

    color: #fff;

    border: 0;

    font-size: 12px;

    font-weight: 800;

    padding: 11px 22px;

}


.btn-reset-search:hover {

    background: var(--blue-dark);

    color: #fff;

}


/* =========================================================
   PAGINAÇÃO
========================================================= */

.store-pagination {

    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 50px;

}


.pagination-button {

    width: 38px;

    height: 38px;

    border: 1px solid #ddd;

    background: #fff;

    color: #555;

    border-radius: 5px;

    font-size: 12px;

    cursor: pointer;

}


.pagination-button:hover,
.pagination-button.active {

    background: var(--blue);

    color: #fff;

    border-color: var(--blue);

}


/* =========================================================
   TOAST
========================================================= */

.cart-toast {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 9999;

    background: #fff;

    box-shadow:
        0 10px 35px rgba(0,0,0,.15);

    border-radius: 8px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 290px;

    transform: translateY(30px);

    opacity: 0;

    transition: .3s;

}


.cart-toast.show {

    transform: translateY(0);

    opacity: 1;

}


.cart-toast > i {

    color: #198754;

    font-size: 22px;

}


.cart-toast span {

    display: flex;

    flex-direction: column;

}


.cart-toast strong {

    font-size: 12px;

    color: #222;

}


.cart-toast small {

    color: #777;

    font-size: 10px;

    margin-top: 3px;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .store-heading h1 {

        font-size: 36px;

    }


    .store-section .product-image-wrapper {

        height: 250px;

    }

}


@media (max-width: 767px) {

    .store-section {

        padding: 40px 0 60px;

    }


    .store-heading h1 {

        font-size: 31px;

    }


    .store-results-bar {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;

    }


    .store-section .product-image-wrapper {

        height: 300px;

    }


    .cart-toast {

        left: 15px;

        right: 15px;

        bottom: 15px;

        min-width: 0;

    }

}



/* =========================================================
   BLOG
========================================================= */

.blog-breadcrumb {

    background: #f7f6f2;

    padding: 17px 0;

    border-bottom: 1px solid #e5e5e5;

}


.blog-breadcrumb .breadcrumb {

    font-size: 12px;

}


.blog-breadcrumb a {

    color: var(--blue);

}


/* =========================================================
   SEÇÃO
========================================================= */

.blog-section {

    padding: 60px 0 90px;

    background: #fff;

}


.blog-heading {

    max-width: 760px;

    margin-bottom: 40px;

}


.blog-heading h1 {

    font-family: Georgia, serif;

    font-size: 45px;

    font-weight: 500;

    line-height: 1.15;

    margin: 8px 0 15px;

}


.blog-heading p {

    color: #777;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   DESTAQUE
========================================================= */

.featured-post {

    border-radius: 12px;

    overflow: hidden;

    background: #f7f6f2;

    margin-bottom: 45px;

}


.featured-post-image {

    height: 430px;

    overflow: hidden;

}


.featured-post-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .5s;

}


.featured-post:hover
.featured-post-image img {

    transform: scale(1.03);

}


.featured-post-content {

    height: 100%;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.post-category {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 13px;

}


.featured-post-content h2 {

    font-family: Georgia, serif;

    font-size: 31px;

    font-weight: 500;

    line-height: 1.2;

    margin-bottom: 15px;

}


.featured-post-content p {

    color: #666;

    font-size: 13px;

    line-height: 1.7;

}


.post-meta {

    display: flex;

    gap: 18px;

    margin: 15px 0 25px;

    color: #888;

    font-size: 10px;

}


.post-meta i {

    margin-right: 4px;

}


.btn-blog-primary {

    width: fit-content;

    background: var(--blue);

    color: #fff;

    border: 0;

    padding: 12px 20px;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 800;

}


.btn-blog-primary:hover {

    background: var(--blue-dark);

    color: #fff;

}


/* =========================================================
   FERRAMENTAS
========================================================= */

.blog-tools {

    display: grid;

    grid-template-columns: 1fr 260px;

    gap: 15px;

    margin-bottom: 35px;

}


.blog-search {

    height: 46px;

    border: 1px solid #ddd;

    border-radius: 6px;

    display: flex;

    align-items: center;

    padding: 0 14px;

}


.blog-search i {

    color: #999;

    margin-right: 10px;

}


.blog-search input {

    width: 100%;

    height: 100%;

    border: 0;

    outline: 0;

    font-size: 12px;

}


.blog-tools select {

    height: 46px;

    border-color: #ddd;

    font-size: 12px;

}


.blog-tools select:focus {

    box-shadow: none;

    border-color: var(--blue);

}


/* =========================================================
   RESULTADOS
========================================================= */

.blog-results-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 15px;

    border-bottom: 1px solid #eee;

    margin-bottom: 22px;

}


.blog-results-header span {

    font-family: Georgia, serif;

    font-size: 22px;

}


.blog-results-header small {

    color: #888;

    font-size: 11px;

}


/* =========================================================
   CARD
========================================================= */

.blog-card {

    height: 100%;

    border: 1px solid #e7e7e7;

    border-radius: 9px;

    overflow: hidden;

    background: #fff;

    transition: .3s;

}


.blog-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

}


.blog-card-image {

    height: 210px;

    overflow: hidden;

}


.blog-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .4s;

}


.blog-card:hover
.blog-card-image img {

    transform: scale(1.04);

}


.blog-card-content {

    padding: 22px;

    display: flex;

    flex-direction: column;

    height: calc(100% - 210px);

}


.blog-card-category {

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    margin-bottom: 9px;

}


.blog-card h3 {

    font-family: Georgia, serif;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.25;

    margin-bottom: 10px;

}


.blog-card p {

    color: #777;

    font-size: 12px;

    line-height: 1.6;

    margin-bottom: 15px;

}


.blog-card-meta {

    margin-top: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid #eee;

    padding-top: 14px;

}


.blog-card-date {

    color: #999;

    font-size: 9px;

}


.blog-card-link {

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

}


.blog-card-link:hover {

    color: var(--blue-dark);

}


/* =========================================================
   SIDEBAR
========================================================= */

.blog-sidebar {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.sidebar-box {

    border: 1px solid #e5e5e5;

    border-radius: 9px;

    padding: 25px;

}


.sidebar-box h3 {

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 500;

    margin: 7px 0 20px;

}


/* =========================================================
   CATEGORIAS
========================================================= */

.blog-categories {

    list-style: none;

    padding: 0;

    margin: 0;

}


.blog-categories li {

    border-bottom: 1px solid #eee;

}


.blog-categories li:last-child {

    border-bottom: 0;

}


.blog-categories button {

    width: 100%;

    border: 0;

    background: transparent;

    padding: 12px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #555;

    font-size: 11px;

    text-align: left;

}


.blog-categories button:hover {

    color: var(--blue);

}


.blog-categories strong {

    color: #aaa;

    font-size: 10px;

}


/* =========================================================
   MAIS LIDOS
========================================================= */

.popular-post {

    display: flex;

    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid #eee;

}


.popular-post:last-child {

    border-bottom: 0;

}


.popular-post img {

    width: 75px;

    height: 65px;

    object-fit: cover;

    border-radius: 5px;

    flex-shrink: 0;

}


.popular-post div {

    display: flex;

    flex-direction: column;

}


.popular-post span {

    color: #999;

    font-size: 9px;

    margin-bottom: 4px;

}


.popular-post a {

    color: #333;

    text-decoration: none;

    font-family: Georgia, serif;

    font-size: 13px;

    line-height: 1.3;

}


.popular-post a:hover {

    color: var(--blue);

}


/* =========================================================
   NEWSLETTER
========================================================= */

.sidebar-newsletter {

    background: var(--blue);

    color: #fff;

    border-radius: 9px;

    padding: 30px;

}


.sidebar-newsletter > i {

    font-size: 30px;

    color: var(--gold-light);

}


.sidebar-newsletter h3 {

    font-family: Georgia, serif;

    font-size: 24px;

    font-weight: 500;

    margin: 12px 0;

}


.sidebar-newsletter p {

    color: rgba(255,255,255,.75);

    font-size: 11px;

    line-height: 1.6;

}


.sidebar-newsletter form {

    margin-top: 18px;

}


.sidebar-newsletter input {

    width: 100%;

    height: 42px;

    border: 0;

    border-radius: 5px;

    padding: 0 12px;

    outline: none;

    font-size: 11px;

    margin-bottom: 8px;

}


.sidebar-newsletter button {

    width: 100%;

    height: 42px;

    border: 0;

    border-radius: 5px;

    background: var(--gold);

    color: #fff;

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   PAGINAÇÃO
========================================================= */

.blog-pagination {

    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 45px;

}


.blog-pagination button {

    width: 37px;

    height: 37px;

    border: 1px solid #ddd;

    border-radius: 5px;

    background: #fff;

    font-size: 11px;

}


.blog-pagination button:hover,
.blog-pagination button.active {

    background: var(--blue);

    color: #fff;

    border-color: var(--blue);

}


/* =========================================================
   SEM RESULTADOS
========================================================= */

.blog-no-results {

    display: none;

    text-align: center;

    padding: 60px 20px;

}


.blog-no-results > i {

    font-size: 35px;

    color: #aaa;

}


.blog-no-results h3 {

    font-family: Georgia, serif;

    font-size: 24px;

    font-weight: 500;

    margin-top: 15px;

}


.blog-no-results p {

    color: #777;

    font-size: 12px;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .blog-heading h1 {

        font-size: 38px;

    }


    .featured-post-image {

        height: 380px;

    }


    .featured-post-content {

        padding: 35px;

    }

}


@media (max-width: 767px) {

    .blog-section {

        padding: 40px 0 60px;

    }


    .blog-heading h1 {

        font-size: 31px;

    }


    .featured-post-image {

        height: 280px;

    }


    .featured-post-content {

        padding: 25px;

    }


    .featured-post-content h2 {

        font-size: 26px;

    }


    .blog-tools {

        grid-template-columns: 1fr;

    }


    .blog-card-image {

        height: 230px;

    }

}


/* =========================================================
   POST / ARTIGO
========================================================= */

.post-breadcrumb {

    background: #f7f6f2;

    padding: 17px 0;

    border-bottom: 1px solid #e5e5e5;

}


.post-breadcrumb .breadcrumb {

    font-size: 11px;

}


.post-breadcrumb a {

    color: var(--blue);

}


/* =========================================================
   SEÇÃO
========================================================= */

.post-section {

    padding: 65px 0 90px;

}


.post-article {

    max-width: 1180px;

    margin: 0 auto;

}


/* =========================================================
   CABEÇALHO
========================================================= */

.post-header {

    max-width: 900px;

    margin: 0 auto 40px;

    text-align: center;

}


.post-header .post-category {

    display: inline-block;

    margin-bottom: 15px;

}


.post-header h1 {

    font-family: Georgia, serif;

    font-size: 52px;

    font-weight: 500;

    line-height: 1.12;

    color: #1f1f1f;

    margin: 0 auto 25px;

}


.post-author-info {

    display: inline-flex;

    align-items: center;

    text-align: left;

    gap: 11px;

}


.post-author-avatar {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: var(--blue);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

}


.post-author-info > div:last-child {

    display: flex;

    flex-direction: column;

}


.post-author-info strong {

    font-size: 11px;

}


.post-author-info span {

    color: #999;

    font-size: 9px;

    margin-top: 3px;

}


.post-separator {

    margin: 0 7px;

}


/* =========================================================
   IMAGEM PRINCIPAL
========================================================= */

.post-cover {

    width: 100%;

    height: 540px;

    margin: 0 0 55px;

    border-radius: 10px;

    overflow: hidden;

}


.post-cover img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   CONTEÚDO
========================================================= */

.post-content {

    color: #444;

    font-size: 15px;

    line-height: 1.85;

}


.post-content p {

    margin-bottom: 22px;

}


.post-content .post-intro {

    font-size: 18px;

    color: #333;

    line-height: 1.7;

    margin-bottom: 35px;

}


.post-content h2 {

    font-family: Georgia, serif;

    color: #222;

    font-size: 30px;

    font-weight: 500;

    line-height: 1.3;

    margin: 40px 0 15px;

}


.post-content blockquote {

    margin: 35px 0;

    padding: 25px 30px;

    background: #f7f6f2;

    border-left: 3px solid var(--gold);

    position: relative;

}


.post-content blockquote i {

    color: var(--gold);

    font-size: 30px;

}


.post-content blockquote p {

    margin: 8px 0 0;

    font-family: Georgia, serif;

    font-size: 17px;

    line-height: 1.6;

    color: #555;

}


/* =========================================================
   BOTÃO LOJA
========================================================= */

.post-shop-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 10px;

    padding: 13px 22px;

    background: var(--blue);

    color: #fff;

    text-decoration: none;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 800;

}


.post-shop-button:hover {

    background: var(--blue-dark);

    color: #fff;

}


/* =========================================================
   COMPARTILHAR
========================================================= */

.post-share {

    display: flex;

    align-items: center;

    gap: 10px;

    border-top: 1px solid #eee;

    margin-top: 45px;

    padding-top: 25px;

}


.post-share > span {

    color: #888;

    font-size: 11px;

    margin-right: 5px;

}


.post-share a {

    width: 35px;

    height: 35px;

    border: 1px solid #ddd;

    border-radius: 50%;

    color: #555;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: .2s;

}


.post-share a:hover {

    background: var(--blue);

    border-color: var(--blue);

    color: #fff;

}


/* =========================================================
   SIDEBAR
========================================================= */

.post-sidebar {

    position: sticky;

    top: 25px;

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.post-sidebar-box {

    border: 1px solid #e5e5e5;

    border-radius: 9px;

    padding: 25px;

}


.post-sidebar-box h3 {

    font-family: Georgia, serif;

    font-size: 22px;

    font-weight: 500;

    margin: 7px 0 18px;

}


/* =========================================================
   RELACIONADOS
========================================================= */

.post-related {

    display: flex;

    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid #eee;

}


.post-related:last-child {

    border-bottom: 0;

}


.post-related img {

    width: 80px;

    height: 65px;

    object-fit: cover;

    border-radius: 5px;

    flex-shrink: 0;

}


.post-related div {

    display: flex;

    flex-direction: column;

}


.post-related span {

    color: var(--gold);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.post-related a {

    color: #333;

    text-decoration: none;

    font-family: Georgia, serif;

    font-size: 13px;

    line-height: 1.35;

    margin-top: 4px;

}


.post-related a:hover {

    color: var(--blue);

}


/* =========================================================
   CTA
========================================================= */

.post-sidebar-cta {

    background: var(--blue);

    color: #fff;

    border-radius: 9px;

    padding: 30px;

}


.post-sidebar-cta > i {

    color: var(--gold-light);

    font-size: 30px;

}


.post-sidebar-cta h3 {

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 500;

    line-height: 1.25;

    margin: 12px 0;

}


.post-sidebar-cta p {

    color: rgba(255,255,255,.75);

    font-size: 11px;

    line-height: 1.6;

}


.post-sidebar-cta .btn {

    background: var(--gold);

    color: #fff;

    border: 0;

    font-size: 10px;

    font-weight: 800;

    padding: 11px 17px;

    margin-top: 7px;

}


.post-sidebar-cta .btn:hover {

    background: var(--gold-dark);

    color: #fff;

}


/* =========================================================
   VOLTAR
========================================================= */

.post-back {

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid #eee;

}


.post-back a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    text-decoration: none;

}


.post-back a:hover {

    color: var(--blue-dark);

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .post-header h1 {

        font-size: 43px;

    }


    .post-cover {

        height: 430px;

    }


    .post-sidebar {

        position: static;

    }

}


@media (max-width: 767px) {

    .post-section {

        padding: 40px 0 60px;

    }


    .post-header h1 {

        font-size: 32px;

    }


    .post-cover {

        height: 280px;

        border-radius: 7px;

        margin-bottom: 35px;

    }


    .post-content {

        font-size: 14px;

    }


    .post-content .post-intro {

        font-size: 16px;

    }


    .post-content h2 {

        font-size: 25px;

        margin-top: 32px;

    }

}


/* ================================================================
   PAGINAÇÃO
================================================================ */

.shop-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}


.shop-pagination .pagination {
    margin: 0;
    gap: 5px;
}


.shop-pagination .page-link {
    border: 1px solid #dedede;
    color: #222;
    min-width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px !important;

    font-size: 14px;

    box-shadow: none;
}


.shop-pagination .page-link:hover {
    background: #f5f5f5;
    color: #111;
}


.shop-pagination .page-item.active .page-link {
    background: #111;
    border-color: #111;
    color: #fff;
}


.shop-pagination .page-item.disabled .page-link {
    color: #aaa;
    background: #fafafa;
}


/* ================================================================
   TOAST CARRINHO
================================================================ */

.site-toast {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #111;

    color: #fff;

    padding: 14px 20px;

    border-radius: 10px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .18);

    font-size: 14px;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px);

    transition:
        all .25s ease;
}


.site-toast.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.site-toast i {

    color: #22c55e;

    font-size: 18px;

}


/* ==========================================================
   PÁGINA DO PRODUTO
========================================================== */

.product-breadcrumb {
    background: #fff;
}

.product-breadcrumb .breadcrumb {
    font-size: 13px;
}

.product-breadcrumb a {
    color: #555;
}

.product-breadcrumb a:hover {
    color: #000;
}


/* ==========================================================
   GALERIA
========================================================== */

.product-gallery {
    width: 100%;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;

    background: #f7f7f7;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 25px;

    transition: transform .3s ease;
}

.product-main-image:hover img {
    transform: scale(1.02);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: #aaa;
}

.product-image-placeholder i {
    font-size: 60px;

    margin-bottom: 10px;
}


/* ==========================================================
   MINIATURAS
========================================================== */

.product-thumbnails {
    display: flex;

    gap: 12px;

    margin-top: 15px;

    overflow-x: auto;

    padding-bottom: 5px;
}

.product-thumbnail {
    flex: 0 0 82px;

    width: 82px;
    height: 82px;

    padding: 0;

    border: 1px solid #ddd;

    background: #fff;

    overflow: hidden;

    cursor: pointer;

    transition: .2s;
}

.product-thumbnail:hover {
    border-color: #777;
}

.product-thumbnail.active {
    border: 2px solid #222;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ==========================================================
   INFORMAÇÕES DO PRODUTO
========================================================== */

.product-detail {
    padding-top: 5px;
}

.product-detail-title {
    margin: 8px 0 12px;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.15;

    font-weight: 600;

    color: #222;
}

.product-detail-sku {
    color: #777;

    font-size: 13px;

    margin-bottom: 5px;
}

.product-detail-sku strong {
    color: #333;
}


/* ==========================================================
   PREÇO
========================================================== */

.product-detail-price {
    margin-top: 25px;

    position: relative;
}

.product-detail-old-price {
    color: #999;

    font-size: 16px;

    text-decoration: line-through;

    margin-bottom: 3px;
}

.product-price-current {
    display: flex;

    align-items: baseline;

    gap: 5px;
}

.product-price-current strong {
    font-size: 32px;

    line-height: 1.1;

    color: #222;
}

.product-price-current span {
    color: #777;

    font-size: 14px;
}

.product-promotion-badge {
    display: inline-block;

    margin-top: 8px;

    padding: 5px 9px;

    background: #222;

    color: #fff;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .7px;
}


/* ==========================================================
   DESCRIÇÃO RESUMIDA
========================================================== */

.product-short-detail {
    margin-top: 22px;

    color: #666;

    font-size: 15px;

    line-height: 1.7;
}

.product-short-detail p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   INFORMAÇÕES
========================================================== */

.product-basic-info {
    margin-top: 20px;
}

.product-info-line {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 10px 0;

    border-bottom: 1px solid #eee;

    font-size: 14px;
}

.product-info-line span {
    color: #777;
}

.product-info-line strong {
    color: #222;

    text-align: right;
}


/* ==========================================================
   COMPRA
========================================================== */

.product-buy-box {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.quantity-selector {
    height: 50px;

    min-width: 135px;

    display: flex;

    align-items: center;

    border: 1px solid #ddd;

    background: #fff;
}

.quantity-selector button {
    width: 42px;

    height: 100%;

    border: 0;

    background: transparent;

    font-size: 20px;

    cursor: pointer;

    color: #333;
}

.quantity-selector button:hover {
    background: #f5f5f5;
}

.quantity-input {
    width: 50px;

    height: 100%;

    padding: 0;

    border: 0;

    outline: 0;

    text-align: center;

    font-size: 15px;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    opacity: 1;
}


/* ==========================================================
   BENEFÍCIOS
========================================================== */

.product-benefits {
    border-top: 1px solid #eee;

    padding-top: 18px;
}

.product-benefits > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 8px 0;

    color: #555;

    font-size: 13px;
}

.product-benefits i {
    width: 22px;

    font-size: 18px;

    color: #333;
}


/* ==========================================================
   DESCRIÇÃO COMPLETA
========================================================== */

.product-description-box {
    padding: 35px;

    background: #fff;

    border: 1px solid #eee;
}

.section-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #888;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}

.section-title {
    margin: 0;

    font-size: 30px;

    font-weight: 600;

    color: #222;
}

.product-description {
    color: #555;

    font-size: 15px;

    line-height: 1.8;
}

.product-description p {
    margin-bottom: 18px;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    margin-top: 28px;

    margin-bottom: 12px;

    color: #222;
}

.product-description ul,
.product-description ol {
    padding-left: 22px;

    margin-bottom: 20px;
}

.product-description li {
    margin-bottom: 7px;
}


/* ==========================================================
   FICHA TÉCNICA
========================================================== */

.technical-info {
    min-height: 85px;

    padding: 18px 20px;

    border: 1px solid #e5e5e5;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #fff;
}

.technical-info span {
    color: #777;

    font-size: 12px;

    margin-bottom: 6px;
}

.technical-info strong {
    color: #222;

    font-size: 15px;
}


/* ==========================================================
   RESPONSIVO PRODUTO
========================================================== */

@media (max-width: 991px) {

    .product-detail-title {
        font-size: 32px;
    }

    .product-main-image {
        aspect-ratio: 1 / .85;
    }

}


@media (max-width: 767px) {

    .product-page {
        padding-top: 30px !important;
    }

    .product-detail-title {
        font-size: 28px;
    }

    .product-price-current strong {
        font-size: 27px;
    }

    .product-buy-box {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
    }

    .quantity-input {
        flex: 1;
    }

    .product-description-box {
        padding: 22px;
    }

    .section-title {
        font-size: 25px;
    }

}


/* ==========================================================
   PRODUTOS RELACIONADOS
========================================================== */

.related-product-card {
    background: #fff;

    border: 1px solid #e9e9e9;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.related-product-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


/* IMAGEM */

.related-product-image {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    background: #f7f7f7;

    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 15px;

    transition: transform .3s ease;
}

.related-product-card:hover
.related-product-image img {
    transform: scale(1.04);
}


.related-product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #aaa;

    font-size: 40px;
}


/* CONTEÚDO */

.related-product-content {
    padding: 18px;
}

.related-product-category {
    color: #888;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 7px;
}

.related-product-title {
    margin: 0;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 500;

    min-height: 43px;
}

.related-product-title a {
    color: #222;

    text-decoration: none;
}

.related-product-title a:hover {
    color: #555;
}


/* PREÇO */

.related-product-price {
    margin-top: 14px;

    font-size: 19px;

    font-weight: 600;

    color: #222;
}

.related-product-price small {
    font-size: 11px;

    font-weight: 400;

    color: #777;
}


/* RESPONSIVO */

@media (max-width: 575px) {

    .related-product-content {
        padding: 13px;
    }

    .related-product-title {
        font-size: 14px;
    }

    .related-product-price {
        font-size: 16px;
    }

}