﻿/* ============================================================
   STYLES.CSS — Full stylesheet with all nav/top bar rules removed
   Nav rules now live in nav.css
   ============================================================ */

/* ── Webflow layout grid ── */
.w-layout-grid {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
}

/* ── Commerce: cart wrapper & open link ── */
.w-commerce-commercecartwrapper {
    display: inline-block;
    position: relative;
}

.w-commerce-commercecartopenlink {
    background-color: #3898ec;
    border-radius: 0px;
    border-width: 0px;
    color: #fff;
    cursor: pointer;
    padding: 9px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    appearance: none;
}

.w-commerce-commercecartopenlinkcount {
    display: inline-block;
    height: 18px;
    min-width: 18px;
    margin-left: 8px;
    padding-right: 6px;
    padding-left: 6px;
    border-radius: 9px;
    background-color: #fff;
    color: #3898ec;
    font-size: 11px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
}

.w-commerce-commercecartcontainerwrapper {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.8);
}

.w-commerce-commercecartcontainerwrapper--cartType-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftSidebar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightSidebar {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
    position: absolute;
    top: 100%;
    left: 0px;
    right: auto;
    bottom: auto;
    background-color: transparent;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
    position: absolute;
    left: auto;
    top: 100%;
    right: 0px;
    bottom: auto;
    background-color: transparent;
}

.w-commerce-commercecartcontainer {
    display: flex;
    width: 100%;
    max-width: 480px;
    min-width: 320px;
    flex-direction: column;
    overflow: auto;
    background-color: #fff;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.25);
}

.w-commerce-commercecartheader {
    position: relative;
    display: flex;
    padding: 16px 24px;
    justify-content: space-between;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    border-bottom: 1px solid #e6e6e6;
    align-items: center;
}

.w-commerce-commercecartheading {
    margin: 0px;
    padding: 0px;
}

.w-commerce-commercecartcloselink {
    width: 16px;
    height: 16px;
}

.w-commerce-commercecartformwrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

.w-commerce-commercecartform {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

.w-commerce-commercecartlist {
    overflow: auto;
    padding: 12px 24px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    -webkit-overflow-scrolling: touch;
}

.w-commerce-commercecartitem {
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    align-items: flex-start;
}

.w-commerce-commercecartitemimage {
    width: 60px;
    height: 0%;
}

.w-commerce-commercecartiteminfo {
    display: flex;
    margin-right: 16px;
    margin-left: 16px;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

.w-commerce-commercecartproductname {
    font-weight: 700;
}

.w-commerce-commercecartoptionlist {
    text-decoration: none;
    padding-left: 0px;
    margin-bottom: 0px;
    list-style-type: none;
}

.w-commerce-commercecartquantity {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: block;
    height: 38px;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 8px 6px 8px 12px;
    width: 60px;
    appearance: none;
}

    .w-commerce-commercecartquantity::-webkit-input-placeholder {
        color: #999;
    }

    .w-commerce-commercecartquantity::placeholder {
        color: #999;
    }

    .w-commerce-commercecartquantity:focus {
        border-color: #3898ec;
        outline-style: none;
    }

.w-commerce-commercecartfooter {
    display: flex;
    padding: 16px 24px 24px;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    border-top: 1px solid #e6e6e6;
}

.w-commerce-commercecartlineitem {
    display: flex;
    margin-bottom: 16px;
    justify-content: space-between;
    align-items: baseline;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
}

.w-commerce-commercecartordervalue {
    font-weight: 700;
}

.w-commerce-commercecartapplepaybutton {
    background-color: #000;
    border-radius: 2px;
    border-width: 0px;
    color: #fff;
    cursor: pointer;
    padding: 0px;
    text-decoration: none;
    display: flex;
    align-items: center;
    appearance: none;
    margin-bottom: 8px;
    height: 38px;
    min-height: 30px;
}

.w-commerce-commercecartapplepayicon {
    width: 100%;
    height: 50%;
    min-height: 20px;
}

.w-commerce-commercecartquickcheckoutbutton {
    background-color: #000;
    border-radius: 2px;
    border-width: 0px;
    color: #fff;
    cursor: pointer;
    padding: 0px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    appearance: none;
    justify-content: center;
    margin-bottom: 8px;
    height: 38px;
}

.w-commerce-commercequickcheckoutgoogleicon {
    display: block;
    margin-right: 8px;
}

.w-commerce-commercequickcheckoutmicrosofticon {
    display: block;
    margin-right: 8px;
}

.w-commerce-commercecartcheckoutbutton {
    background-color: #3898ec;
    border-radius: 2px;
    border-width: 0px;
    color: #fff;
    cursor: pointer;
    padding: 9px 15px;
    text-decoration: none;
    display: block;
    align-items: center;
    appearance: none;
    text-align: center;
}

.w-commerce-commercecartemptystate {
    display: flex;
    padding-top: 100px;
    padding-bottom: 100px;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

.w-commerce-commercecarterrorstate {
    margin: 0px 24px 24px;
    padding: 10px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    background-color: #ffdede;
}

.w-commerce-commerceaddtocartform {
    margin: 0px 0px 15px;
}

.w-commerce-commerceaddtocartquantityinput {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: block;
    height: 38px;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 8px 6px 8px 12px;
    width: 60px;
    appearance: none;
}

    .w-commerce-commerceaddtocartquantityinput::-webkit-input-placeholder {
        color: #999;
    }

    .w-commerce-commerceaddtocartquantityinput::placeholder {
        color: #999;
    }

    .w-commerce-commerceaddtocartquantityinput:focus {
        border-color: #3898ec;
        outline-style: none;
    }

.w-commerce-commerceaddtocartbutton {
    background-color: #3898ec;
    border-radius: 0px;
    border-width: 0px;
    color: #fff;
    cursor: pointer;
    padding: 9px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    appearance: none;
}

.w-commerce-commerceaddtocartoutofstock {
    margin-top: 10px;
    padding: 10px;
    background-color: #ddd;
}

.w-commerce-commerceaddtocarterror {
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede;
}

.w-commerce-commercecheckoutformcontainer {
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    background-color: #f5f5f5;
}

.w-commerce-commercelayoutmain {
    flex-basis: 800px;
    flex-grow: 0;
    flex-shrink: 1;
    margin-right: 20px;
}

.w-commerce-commercecheckoutcustomerinfowrapper {
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutblockheader {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 20px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
}

.w-commerce-commercecheckoutblockcontent {
    padding: 20px;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    background-color: #fff;
}

.w-commerce-commercecheckoutlabel {
    margin-bottom: 8px;
}

.w-commerce-commercecheckoutemailinput {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: block;
    height: 38px;
    line-height: 20px;
    margin-bottom: 0px;
    padding: 8px 12px;
    width: 100%;
    appearance: none;
}

    .w-commerce-commercecheckoutemailinput::-webkit-input-placeholder {
        color: #999;
    }

    .w-commerce-commercecheckoutemailinput::placeholder {
        color: #999;
    }

    .w-commerce-commercecheckoutemailinput:focus {
        border-color: #3898ec;
        outline-style: none;
    }

.w-commerce-commercecheckoutshippingaddresswrapper {
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingfullname,
.w-commerce-commercecheckoutshippingstreetaddress,
.w-commerce-commercecheckoutshippingstreetaddressoptional,
.w-commerce-commercecheckoutshippingcity,
.w-commerce-commercecheckoutshippingstateprovince,
.w-commerce-commercecheckoutshippingzippostalcode,
.w-commerce-commercecheckoutshippingcountryselector {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: block;
    height: 38px;
    line-height: 20px;
    margin-bottom: 16px;
    padding: 8px 12px;
    width: 100%;
    appearance: none;
}

.w-commerce-commercecheckoutshippingcountryselector {
    margin-bottom: 0px;
}

    .w-commerce-commercecheckoutshippingfullname::placeholder,
    .w-commerce-commercecheckoutshippingstreetaddress::placeholder,
    .w-commerce-commercecheckoutshippingstreetaddressoptional::placeholder,
    .w-commerce-commercecheckoutshippingcity::placeholder,
    .w-commerce-commercecheckoutshippingstateprovince::placeholder,
    .w-commerce-commercecheckoutshippingzippostalcode::placeholder,
    .w-commerce-commercecheckoutshippingcountryselector::placeholder {
        color: #999;
    }

    .w-commerce-commercecheckoutshippingfullname:focus,
    .w-commerce-commercecheckoutshippingstreetaddress:focus,
    .w-commerce-commercecheckoutshippingstreetaddressoptional:focus,
    .w-commerce-commercecheckoutshippingcity:focus,
    .w-commerce-commercecheckoutshippingstateprovince:focus,
    .w-commerce-commercecheckoutshippingzippostalcode:focus,
    .w-commerce-commercecheckoutshippingcountryselector:focus {
        border-color: #3898ec;
        outline-style: none;
    }

.w-commerce-commercecheckoutrow {
    display: flex;
    margin-right: -8px;
    margin-left: -8px;
}

.w-commerce-commercecheckoutcolumn {
    padding-right: 8px;
    padding-left: 8px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

.w-commerce-commercecheckoutshippingmethodswrapper {
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingmethodslist {
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.w-commerce-commercecheckoutshippingmethoditem {
    padding: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 0px;
    background-color: #fff;
    align-items: baseline;
}

.w-commerce-commercecheckoutshippingmethoddescriptionblock {
    margin-left: 12px;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.w-commerce-commerceboldtextblock {
    font-weight: 700;
}

.w-commerce-commercecheckoutshippingmethodsemptystate {
    text-align: center;
    padding: 64px 16px;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
}

.w-commerce-commercecheckoutpaymentinfowrapper {
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutcardnumber,
.w-commerce-commercecheckoutcardexpirationdate,
.w-commerce-commercecheckoutcardsecuritycode {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: block;
    height: 38px;
    line-height: 20px;
    margin-bottom: 16px;
    padding: 8px 12px;
    width: 100%;
    appearance: none;
    cursor: text;
}

    .w-commerce-commercecheckoutcardnumber::placeholder,
    .w-commerce-commercecheckoutcardexpirationdate::placeholder,
    .w-commerce-commercecheckoutcardsecuritycode::placeholder {
        color: #999;
    }

    .w-commerce-commercecheckoutcardnumber:focus,
    .w-commerce-commercecheckoutcardexpirationdate:focus,
    .w-commerce-commercecheckoutcardsecuritycode:focus,
    .w-commerce-commercecheckoutcardnumber.-wfp-focus,
    .w-commerce-commercecheckoutcardexpirationdate.-wfp-focus,
    .w-commerce-commercecheckoutcardsecuritycode.-wfp-focus {
        border-color: #3898ec;
        outline-style: none;
    }

.w-commerce-commercecheckoutbillingaddresstogglewrapper {
    display: flex;
    flex-direction: row;
}

.w-commerce-commercecheckoutbillingaddresstogglecheckbox {
    margin-top: 4px;
}

.w-commerce-commercecheckoutbillingaddresstogglelabel {
    font-weight: 400;
    margin-left: 8px;
}

.w-commerce-commercecheckoutbillingaddresswrapper {
    margin-top: 16px;
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutbillingfullname,
.w-commerce-commercecheckoutbillingstreetaddress,
.w-commerce-commercecheckoutbillingstreetaddressoptional,
.w-commerce-commercecheckoutbillingcity,
.w-commerce-commercecheckoutbillingstateprovince,
.w-commerce-commercecheckoutbillingzippostalcode {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: block;
    height: 38px;
    line-height: 20px;
    margin-bottom: 16px;
    padding: 8px 12px;
    width: 100%;
    appearance: none;
}

    .w-commerce-commercecheckoutbillingfullname::placeholder,
    .w-commerce-commercecheckoutbillingstreetaddress::placeholder,
    .w-commerce-commercecheckoutbillingstreetaddressoptional::placeholder,
    .w-commerce-commercecheckoutbillingcity::placeholder,
    .w-commerce-commercecheckoutbillingstateprovince::placeholder,
    .w-commerce-commercecheckoutbillingzippostalcode::placeholder {
        color: #999;
    }

    .w-commerce-commercecheckoutbillingfullname:focus,
    .w-commerce-commercecheckoutbillingstreetaddress:focus,
    .w-commerce-commercecheckoutbillingstreetaddressoptional:focus,
    .w-commerce-commercecheckoutbillingcity:focus,
    .w-commerce-commercecheckoutbillingstateprovince:focus,
    .w-commerce-commercecheckoutbillingzippostalcode:focus {
        border-color: #3898ec;
        outline-style: none;
    }

.w-commerce-commercecheckoutorderitemswrapper {
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryblockheader {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 20px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
}

.w-commerce-commercecheckoutorderitemslist {
    margin-bottom: -20px;
}

.w-commerce-commercecheckoutorderitem {
    margin-bottom: 20px;
    display: flex;
}

.w-commerce-commercecheckoutorderitemdescriptionwrapper {
    margin-left: 16px;
    margin-right: 16px;
    flex-grow: 1;
}

.w-commerce-commercecheckoutorderitemquantitywrapper {
    display: flex;
    white-space: pre-wrap;
}

.w-commerce-commercecheckoutorderitemoptionlist {
    text-decoration: none;
    padding-left: 0px;
    margin-bottom: 0px;
    list-style-type: none;
}

.w-commerce-commercelayoutsidebar {
    flex-basis: 320px;
    flex-grow: 0;
    flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.w-commerce-commercecheckoutordersummarywrapper {
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummarylineitem,
.w-commerce-commercecheckoutordersummaryextraitemslistitem {
    display: flex;
    flex-direction: row;
    margin-bottom: 8px;
    justify-content: space-between;
}

.w-commerce-commercecheckoutsummarytotal {
    font-weight: 700;
}

.w-commerce-commercecheckoutplaceorderbutton {
    background-color: #3898ec;
    border-radius: 3px;
    border-width: 0px;
    color: #fff;
    cursor: pointer;
    padding: 9px 15px;
    text-decoration: none;
    display: block;
    align-items: center;
    appearance: none;
    margin-bottom: 20px;
    text-align: center;
}

.w-commerce-commercecheckouterrorstate {
    margin: 16px 0;
    padding: 10px 16px;
    background-color: #ffdede;
}

.w-commerce-commerceorderconfirmationcontainer {
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    background-color: #f5f5f5;
}

.w-commerce-commercecheckoutcustomerinfosummarywrapper {
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryitem {
    margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummarylabel {
    margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummaryflexboxdiv {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.w-commerce-commercecheckoutsummarytextspacingondiv {
    margin-right: 0.33em;
}

.w-commerce-commercecheckoutshippingsummarywrapper {
    margin-bottom: 20px;
}

.w-commerce-commercecheckoutpaymentsummarywrapper {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .w-commerce-commercelayoutmain {
        margin-right: 0px;
        flex-basis: auto;
    }

    .w-commerce-commercelayoutsidebar {
        flex-basis: auto;
    }
}

@media screen and (max-width: 479px) {
    .w-commerce-commercecartcontainerwrapper--cartType-modal {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }

    .w-commerce-commercecartcontainerwrapper--cartType-leftDropdown,
    .w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
        position: fixed;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }

    .w-commerce-commercecartquantity {
        font-size: 16px;
    }

    .w-commerce-commerceaddtocartquantityinput {
        font-size: 16px;
    }

    .w-commerce-commercecheckoutemailinput,
    .w-commerce-commercecheckoutshippingfullname,
    .w-commerce-commercecheckoutshippingstreetaddress,
    .w-commerce-commercecheckoutshippingstreetaddressoptional,
    .w-commerce-commercecheckoutshippingcity,
    .w-commerce-commercecheckoutshippingstateprovince,
    .w-commerce-commercecheckoutshippingzippostalcode,
    .w-commerce-commercecheckoutshippingcountryselector,
    .w-commerce-commercecheckoutcardnumber,
    .w-commerce-commercecheckoutcardexpirationdate,
    .w-commerce-commercecheckoutcardsecuritycode,
    .w-commerce-commercecheckoutbillingfullname,
    .w-commerce-commercecheckoutbillingstreetaddress,
    .w-commerce-commercecheckoutbillingstreetaddressoptional,
    .w-commerce-commercecheckoutbillingcity,
    .w-commerce-commercecheckoutbillingstateprovince,
    .w-commerce-commercecheckoutbillingzippostalcode {
        font-size: 16px;
    }

    .w-commerce-commercecheckoutrow {
        flex-direction: column;
    }
}

/* ── Base typography ── */
body {
    font-family: Montserrat, sans-serif;
    color: #1a1b1f;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

h1 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 44px;
    line-height: 62px;
    font-weight: 400;
}

h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 50px;
    font-weight: 400;
}

h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 46px;
    font-weight: 400;
}

h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 38px;
    font-weight: 400;
}

h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
}

h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

p {
    margin-bottom: 10px;
}

a {
    display: block;
    transition: opacity 200ms ease;
    color: #43464d;
    text-decoration: underline;
}

    a:hover {
        color: #32343a;
    }

    a:active {
        color: #43464d;
    }

ul {
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 40px;
    list-style-type: disc;
}

li {
    margin-bottom: 10px;
}

img {
    display: block;
}

label {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

blockquote {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 15px 30px;
    border-left: 5px solid #e2e2e2;
    font-size: 20px;
    line-height: 34px;
}

figure {
    margin-top: 25px;
    padding-bottom: 20px;
}

figcaption {
    margin-top: 5px;
    opacity: 0.6;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
}

/* ── Utilities ── */
.divider {
    height: 1px;
    background-color: #eee;
}

    .divider.cc-dark-divider {
        height: 1px;
        background-color: #202020;
    }

.styleguide-content-wrap {
    text-align: center;
}

/* ── Sections ── */
.section {
    margin-top: 0px;
    margin-right: 30px;
    margin-left: 30px;
}

    .section.cc-store-home-wrap {
        margin-top: 0px;
    }

    .section.cc-product-detail {
        display: flex;
        margin-top: 0px;
        margin-right: auto;
        margin-left: auto;
        padding-top: 10px;
        justify-content: center;
        align-items: flex-start;
    }

    .section.blog {
        padding-top: 20px;
    }

    .section.contact {
        padding-top: 20px;
        padding-bottom: 100px;
    }

.section-2 {
    margin-right: 30px;
    margin-bottom: 0px;
    margin-left: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-3 {
    margin-right: 30px;
    margin-left: 30px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.section-4 {
    margin-right: 30px;
    margin-left: 30px;
    padding-top: 20px;
}

.section-6 {
    display: flex;
    margin-right: 30px;
    margin-left: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.styleguide-block {
    display: block;
    margin-top: 80px;
    margin-bottom: 80px;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

    .container.cc-heading-wrap {
        margin-top: 10px;
        margin-bottom: 40px;
        text-align: center;
    }

    .container.cc-full-width-form-wrap {
        display: flex;
        align-items: flex-start;
    }

/* ── Typography helpers ── */
.paragraph-tiny {
    font-size: 12px;
    line-height: 20px;
}

    .paragraph-tiny.cc-paragraph-tiny-light {
        opacity: 0.7;
    }

.paragraph-bigger {
    margin-bottom: 10px;
    opacity: 1;
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
}

    .paragraph-bigger.cc-bigger-light {
        margin-bottom: 40px;
        font-weight: 500;
    }

.paragraph-light {
    opacity: 0.6;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0px;
    text-transform: none;
}

.paragraph-small {
    font-size: 14px;
    line-height: 26px;
}

/* ── Buttons ── */
.button {
    padding: 12px 25px;
    border-radius: 0px;
    background-color: #1a1b1f;
    transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

    .button:hover {
        background-color: #32343a;
        color: #fff;
    }

    .button:active {
        background-color: #43464d;
    }

    .button.cc-jumbo-button {
        padding: 16px 35px;
        font-size: 14px;
        line-height: 26px;
    }

    .button.cc-white-button {
        padding: 16px 35px;
        background-color: #fff;
        color: #202020;
        font-size: 14px;
        line-height: 26px;
    }

        .button.cc-white-button:hover {
            background-color: hsla(0, 0%, 100%, 0.8);
        }

        .button.cc-white-button:active {
            background-color: hsla(0, 0%, 100%, 0.9);
        }

    .button.cc-cart {
        justify-content: flex-end;
    }

/* ── Labels ── */
.label {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .label.cc-styleguide-label {
        margin-bottom: 25px;
    }

    .label.cc-cart-remove-link {
        margin-top: 4px;
        margin-bottom: 5px;
        color: #a7a7a7;
        font-weight: 400;
        text-decoration: none;
    }

    .label.cc-blog-date {
        margin-top: 20px;
        opacity: 0.6;
    }

/* ── Headings ── */
.heading-jumbo-tiny {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    text-transform: uppercase;
}

.heading-jumbo {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 64px;
    line-height: 80px;
    text-transform: none;
}

.heading-jumbo-small {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 50px;
    font-weight: 400;
    text-transform: none;
}

/* ── Rich text ── */
.rich-text {
    width: 70%;
    margin-right: auto;
    margin-bottom: 100px;
    margin-left: auto;
}

    .rich-text p {
        margin-top: 15px;
        margin-bottom: 25px;
        opacity: 0.6;
    }

/* ── Styleguide pieces ── */
.styleguide-button-wrap {
    margin-top: 10px;
    margin-bottom: 10px;
}

.styleguide-header-wrap {
    display: flex;
    height: 460px;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1a1b1f;
    color: #fff;
    text-align: center;
}

/* ── Cart overlay UI ── */
.cart-footer {
    padding-top: 20px;
}

.status-message {
    padding: 9px 30px;
    background-color: #202020;
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
}

    .status-message.cc-error-message {
        background-color: #db4b68;
    }

    .status-message.cc-no-data {
        display: block;
        width: 70%;
        margin: 100px auto;
    }

    .status-message.cc-success-message {
        background-color: #12b878;
    }

.cart-item-info-wrap {
    margin-top: -5px;
    margin-bottom: 5px;
    padding-right: 20px;
    padding-left: 20px;
}

.cart-list {
    padding-top: 20px;
    padding-bottom: 20px;
}

.cart-line-item {
    margin-bottom: 10px;
}

.icon {
    display: block;
}

.remove-button {
    text-decoration: none;
}

.cart-header {
    padding-top: 16px;
    padding-bottom: 16px;
}

.cart-container {
    min-width: 400px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
}

/* ── Text fields ── */
.text-field {
    margin-bottom: 18px;
    padding: 21px 20px;
    border: 1px solid #e4e4e4;
    border-radius: 0px;
    transition: border-color 400ms ease;
    font-size: 14px;
    line-height: 26px;
}

    .text-field:hover {
        border-color: #e3e6eb;
    }

    .text-field:active {
        border-color: #43464d;
    }

    .text-field:focus, .text-field.-wfp-focus {
        border-color: #43464d;
    }

    .text-field::-webkit-input-placeholder {
        color: rgba(50, 52, 58, 0.4);
    }

    .text-field::placeholder {
        color: rgba(50, 52, 58, 0.4);
    }

    .text-field.cc-contact-field {
        margin-bottom: 25px;
    }

    .text-field.cc-textarea {
        height: 200px;
        padding-top: 12px;
    }

    .text-field.cc-quantity-field {
        width: 80px;
        margin-right: 10px;
        margin-bottom: 0px;
        padding-right: 12px;
        padding-left: 20px;
        border-color: #e6e6e6;
        background-color: #fff;
    }

.intro-header {
    display: flex;
    height: 620px;
    margin-bottom: 100px;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    background-image: url('../images/placeholder-1---wide.svg');
    background-position: 50% 50%;
    background-size: cover;
    color: #fff;
}

.intro-content {
    width: 70%;
    max-width: 1140px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
}

.intro-text {
    width: 80%;
    margin-right: auto;
    margin-bottom: 35px;
    margin-left: auto;
}

.main-heading-wrap {
    margin-bottom: 40px;
}

.main-paragraph-wrap {
    margin-top: 40px;
    margin-bottom: 0px;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-areas: ". .";
    grid-template-rows: auto;
}

.form-block {
    margin-top: 20px;
}

/* ── About ── */
.about-quote {
    width: 70%;
    margin-right: auto;
    margin-bottom: 100px;
    margin-left: auto;
    text-align: center;
}

.picture-placeholder {
    height: 460px;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    background-image: url('../images/Placeholder-1.svg');
    background-position: 45% 50%;
    background-size: cover;
}

    .picture-placeholder.cc-about-2 {
        height: 620px;
        background-image: url('../images/placeholder-1---wide.svg');
        background-position: 50% 50%;
        background-size: cover;
    }

    .picture-placeholder.cc-about-3 {
        background-image: url('../images/placeholder-2.svg');
        background-position: 50% 50%;
        background-size: cover;
    }

    .picture-placeholder.cc-about-1 {
        background-image: url('../images/placeholder-1_1.svg');
        background-position: 50% 50%;
        background-size: cover;
    }

.about-pictures-wrap {
    margin-bottom: 150px;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-areas: ". . ." ". . .";
    grid-template-columns: 1fr 1fr 1fr;
}

/* ── Contact ── */
.contact-name-field-wrap {
    width: 50%;
    padding-right: 10px;
}

.email-name-field-wrap {
    width: 50%;
    padding-left: 10px;
}

.get-in-touch-form-wrap {
    display: flex;
    width: 70%;
    margin-right: auto;
    margin-bottom: 100px;
    margin-left: auto;
    flex-direction: column;
    align-items: stretch;
}

.get-in-touch-form {
    display: flex;
    flex-direction: column;
}

.credentials-inputs-wrap {
    display: flex;
}

.map {
    height: 460px;
    margin-bottom: 0px;
    line-height: 20px;
}

.paragraph-contact-text {
    margin-bottom: 10px;
    font-weight: 400;
}

.grid {
    margin-top: 60px;
    justify-items: center;
    align-items: center;
    grid-auto-flow: row;
    grid-auto-columns: minmax(200px, 0.25fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-areas: ". . . .";
    grid-template-rows: auto;
}

.support-link {
    margin-bottom: 10px;
    opacity: 0.7;
    transition: opacity 200ms ease;
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    text-decoration: none;
}

    .support-link:hover {
        opacity: 1;
    }

    .support-link:active {
        opacity: 0.8;
    }

.contacts-section {
    margin-bottom: 100px;
    text-align: center;
}

.number-contact-wrap {
    display: flex;
    margin-top: 40px;
    margin-right: 40px;
    margin-left: 40px;
    flex-direction: column;
}

.collection-list {
    display: flex;
    justify-content: center;
}

/* ── Blog ── */
.blog-list-wrap {
    margin-bottom: 100px;
}

.blog-item {
    display: block;
    margin-right: auto;
    margin-bottom: 80px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
}

.blog-preview-image {
    display: block;
    width: 100%;
    height: 620px;
    margin-bottom: 45px;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50% 50%;
    background-size: cover;
    transition: opacity 600ms ease;
}

    .blog-preview-image:hover {
        opacity: 0.7;
    }

.blog-summary-wrap {
    width: 70%;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    text-align: left;
}

.blog-detail-header-wrap {
    width: 70%;
    margin: 60px auto;
}

.blog-header-image {
    display: block;
    width: 100%;
    height: 620px;
    margin-bottom: 60px;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50% 50%;
    background-size: cover;
}

    .blog-header-image.w--current {
        margin-bottom: 60px;
    }

.blog-heading-link {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 46px;
    font-weight: 400;
    text-decoration: none;
}

    .blog-heading-link:hover {
        opacity: 0.8;
    }

    .blog-heading-link:active {
        opacity: 0.7;
    }

/* ── Utility pages ── */
.utility-page-wrap {
    display: flex;
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    max-width: 100%;
    padding: 30px;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

._404-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1a1b1f;
}

._404-content-wrap {
    margin-bottom: 20px;
}

.protected-wrap {
    display: flex;
    padding-top: 90px;
    padding-bottom: 100px;
    justify-content: center;
}

.protected-heading {
    margin-bottom: 30px;
}

.protected-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* ── Product detail ── */
.product-detail-measurement {
    display: flex;
    align-items: center;
}

.product-detail-main-details {
    margin-bottom: 30px;
}

.product-details-wrap {
    width: 50%;
    max-width: 470px;
    margin-bottom: 20px;
    margin-left: 40px;
}

.add-to-cart {
    margin-top: 30px;
}

.product-image {
    display: flex;
    width: auto;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    background-image: url('../images/placeholder-1_1.svg');
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-detail-cta-wrap {
    display: flex;
}

.product-informations {
    margin-top: 25px;
    margin-bottom: 25px;
}

.list-item {
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: space-between;
}

.product-detail-price {
    margin-bottom: 20px;
    opacity: 0.6;
    font-size: 30px;
    line-height: 52px;
}

.product-detail-price-copy {
    margin-bottom: 0px;
    opacity: 0.6;
    font-size: 25px;
    line-height: 30px;
    text-decoration: line-through;
}

.product-detail-name {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 52px;
}

.product-detail-unit-text {
    margin-left: 6px;
}

    .product-detail-unit-text.cc-middle-text {
        margin-right: 6px;
    }

.total-count-text {
    font-weight: 600;
}

/* ── Checkout blocks ── */
.block-header {
    padding: 16px 24px;
    border-color: #e4e4e4;
}

.block-content {
    padding: 24px 24px 12px;
    border-right-color: #e4e4e4;
    border-bottom-color: #e4e4e4;
    border-left-color: #e4e4e4;
    font-weight: 400;
}

.full-width-form {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    background-color: #f4f4f4;
}

.order-item-list {
    margin-bottom: -5px;
}

.order-item-description-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.order-item-content-wrap {
    margin-left: 24px;
}

.order-item-price {
    font-size: 14px;
}

.checkout-quantity-wrap {
    opacity: 0.6;
    font-size: 14px;
    line-height: 26px;
}

.order-confirmation-header-wrapper {
    font-weight: 100;
}

.select {
    height: 42px;
    margin-bottom: 16px;
}

.checkbox-label {
    margin-bottom: 0px;
    margin-left: 12px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0px;
    text-transform: none;
}

.billing-address-toggle {
    margin-bottom: 20px;
    align-items: center;
}

.checkbox {
    margin-top: 0px;
    margin-bottom: 4px;
}

.shipping-method {
    padding: 20px 24px;
    border-bottom-color: #e4e4e4;
}

.shipping-method-list {
    border-right-color: #e4e4e4;
    border-left-color: #e4e4e4;
}

/* ── Cart option display ── */
.option {
    margin-bottom: 25px;
}

.cart-option-list {
    margin-top: 0px;
    color: #a7a7a7;
    font-size: 14px;
    line-height: 26px;
}

.cart-option-wrap {
    margin-bottom: 0px;
}

.option-item-value {
    color: #1a1b1f;
}

.apple-pay {
    height: 42px;
}

.pay-with-browser {
    height: 42px;
}

/* ── Slider ── */
.slider {
    height: 620px;
    margin-bottom: 0px;
}

.slide {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/dreamstime_m_152857650.jpg');
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
}

.slide-2 {
    background-image: url('../images/dreamstime_m_2205216.jpg');
    background-position: 50% 50%;
    background-size: cover;
}

/* ── Generic div blocks (non-nav) ── */
.div-block {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.div-block-2 {
    display: flex;
    width: 10%;
    justify-content: flex-end;
}

.div-block-15 {
    display: flex;
    margin-top: 40px;
    justify-content: center;
}

.div-block-16 {
    width: 50%;
    height: 300px;
    background-image: url('../images/dreamstime_m_2205216.jpg');
    background-position: 50% 50%;
    background-size: cover;
}

.div-block-17 {
    width: 50%;
}

.div-block-18 {
    display: flex;
}

.div-block-57 {
    display: grid;
    padding-top: 20px;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

.div-block-56 {
    display: flex;
    width: 500px;
    margin-top: 0px;
    margin-right: -10px;
    flex-wrap: wrap;
}

.div-block-58 {
    display: flex;
    width: 500px;
    margin-top: 0px;
    margin-right: -10px;
    flex-wrap: wrap;
}

.div-block-64 {
    display: grid;
    padding-bottom: 20px;
    align-items: start;
    align-self: flex-start;
    flex: 1;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
}

/* ── Grid layout ── */
.div-block-7 {
    display: grid;
    margin-right: auto;
    margin-left: auto;
    justify-items: stretch;
    flex: 1;
    grid-auto-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

/* ── Category links ── */
.linkcategorias {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 400px;
    transition: box-shadow 300ms ease, transform 300ms ease;
    text-decoration: none;
}

    .linkcategorias:hover {
        box-shadow: 3px 3px 10px 6px rgba(0, 0, 0, 0.2);
        transform: scale(1.01);
    }

.divimagencategoria {
    flex: 1;
    background-image: url('../images/dreamstime_m_2205216.jpg');
    background-position: 50% 50%;
    background-size: cover;
}

    .divimagencategoria._2 {
        background-image: url('../images/dreamstime_m_152857650.jpg');
        background-position: 50% 50%;
    }

    .divimagencategoria._3 {
        background-image: url('../images/168101-1.jpg');
        background-position: 50% 50%;
    }

    .divimagencategoria._4 {
        background-image: url('../images/166291-1.jpg');
    }

.hovercategorias {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.35);
}

    .hovercategorias:hover {
        display: flex;
    }

.heading-5 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: Montserrat, sans-serif;
    color: #fff;
    font-weight: 400;
}

.heading-6 {
    margin-top: 0px;
    margin-bottom: 40px;
}

/* ── Product images ── */
.product-image-2 {
    position: relative;
    width: 500px;
    height: 500px;
    margin-right: 0px;
    background-image: url('../images/SGN_capriccio-175.jpg');
    background-position: 50% 50%;
    background-size: cover;
}

.product-image-3 {
    position: relative;
    width: 500px;
    height: 500px;
    margin-right: 0px;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
}

.thumbnailproducto {
    width: 90px;
    height: 90px;
    margin-top: 10px;
    margin-right: 10px;
    background-image: url('../images/SGN_capriccio-175.jpg');
    background-position: 50% 50%;
    background-size: cover;
}

.thumbnailproducto-2 {
    width: 90px;
    height: 90px;
    margin-top: 10px;
    margin-right: 10px;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0px 0px;
    background-size: contain;
    background-repeat: no-repeat;
}

.text-block-4 {
    margin-bottom: 20px;
}

.text-block-5 {
    margin-bottom: 10px;
}

.heading {
    display: none;
}

.columna-derecha {
    width: 50%;
}

.columna-izq {
    width: 50%;
}

/* ── #w-node grid placements ── */
#w-node-_56f2b96e-ae6e-7af1-6a3b-a2d7387904db-2d6e0792 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_56f2b96e-ae6e-7af1-6a3b-a2d7387904dd-2d6e0792 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e2971b-87e29718 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e2971d-87e29718 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e2971f-87e29718 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e29724-87e29718 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e29726-87e29718 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e2972d-87e29718 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e2972f-87e29718 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e29736-87e29718 {
    grid-column-start: 5;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e29738-87e29718 {
    grid-column-start: 5;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_88a386dd-8f07-0c34-70f0-2d9f87e2973f-87e29718 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
}

#w-node-_09ca36a5-fae4-bce6-3492-250869e6e759-b36e079a {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_09ca36a5-fae4-bce6-3492-250869e6e75b-b36e079a {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

#w-node-_09ca36a5-fae4-bce6-3492-250869e6e75f-b36e079a {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
}

#w-node-_09ca36a5-fae4-bce6-3492-250869e6e760-b36e079a {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
}

#w-node-_09ca36a5-fae4-bce6-3492-250869e6e761-b36e079a {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

/* ============================================================
   RESPONSIVE — Tablet ≤ 991px
   ============================================================ */
@media screen and (max-width: 991px) {
    .divider {
        max-width: 300px;
    }

        .divider.cc-dark-divider {
            max-width: 300px;
        }

    .section {
        margin-right: 5px;
        margin-left: 5px;
    }

        .section.cc-store-home-wrap {
            margin-right: 15px;
            margin-left: 15px;
        }

        .section.cc-product-detail {
            flex-direction: row;
        }

    .styleguide-block {
        text-align: center;
    }

    .button {
        justify-content: center;
    }

    .paragraph-light {
        text-align: left;
    }

    .heading-jumbo {
        font-size: 56px;
        line-height: 70px;
    }

    .text-field.cc-quantity-field {
        width: auto;
        margin-right: 0px;
        margin-bottom: 10px;
        text-align: center;
    }

    .cart-item-info-wrap {
        padding-right: 10px;
        padding-left: 10px;
    }

    .cart-container {
        min-width: 360px;
    }

    .intro-text {
        width: auto;
    }

    .picture-placeholder.cc-about-2 {
        height: 460px;
    }

    .contact-name-field-wrap {
        width: 100%;
        padding-right: 0px;
    }

    .email-name-field-wrap {
        width: 100%;
        padding-left: 0px;
    }

    .get-in-touch-form {
        text-align: left;
    }

    .credentials-inputs-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .grid {
        grid-template-areas: "." "." "." ".";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .number-contact-wrap {
        margin-bottom: 20px;
    }

    .blog-item {
        width: 80%;
    }

    .blog-preview-image {
        height: 460px;
    }

    .blog-summary-wrap {
        width: 100%;
    }

    .product-detail-main-details {
        max-width: 300px;
    }

    .product-details-wrap {
        width: 50%;
        margin-right: auto;
        margin-bottom: 40px;
        margin-left: auto;
        padding-right: 10px;
        padding-left: 10px;
        text-align: center;
    }

    .product-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .product-detail-cta-wrap {
        flex-direction: column;
        justify-content: center;
    }

    .product-detail-price {
        font-size: 25px;
        text-align: left;
    }

    .product-detail-name {
        font-size: 25px;
        text-align: left;
    }

    .full-width-form {
        padding: 40px;
    }

    .blog-detail-header-wrap {
        width: 70%;
    }

    .blog-header-image {
        height: 460px;
    }

    .product-detail-price-copy {
        font-size: 20px;
        text-align: left;
    }

    .section-4 {
        margin-right: 15px;
        margin-left: 15px;
        padding-top: 15px;
    }

    .div-block-7 {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }

    .linkcategorias {
        height: 300px;
    }

    .div-block-57 {
        display: flex;
        width: 50%;
        padding-right: 10px;
        padding-left: 10px;
        flex-direction: column;
        align-items: flex-end;
    }

    .product-image-2 {
        width: 100%;
        height: 300px;
        margin-right: 20px;
        margin-bottom: 40px;
    }

    .div-block-56 {
        width: 100%;
    }

    .product-image-3 {
        width: 300px;
        height: 300px;
        margin-right: 20px;
        margin-bottom: 0px;
    }

    .div-block-58 {
        width: 300px;
        margin-right: 20px;
    }

    .div-block-64 {
        padding-right: 5px;
        padding-left: 5px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    #w-node-_09ca36a5-fae4-bce6-3492-250869e6e75f-b36e079a {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 3;
        grid-row-end: 4;
    }

    #w-node-_09ca36a5-fae4-bce6-3492-250869e6e761-b36e079a {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 2;
    }
}

/* ============================================================
   RESPONSIVE — Mobile ≤ 767px
   ============================================================ */
@media screen and (max-width: 767px) {
    .section {
        margin-right: 15px;
        margin-left: 15px;
    }

        .section.cc-store-home-wrap {
            margin-right: 15px;
            margin-left: 15px;
        }

        .section.cc-product-detail {
            padding-top: 0px;
            flex-direction: column;
        }

    .container {
        text-align: center;
    }

        .container.cc-heading-wrap {
            margin-bottom: 50px;
        }

        .container.cc-full-width-form-wrap {
            flex-direction: column;
            align-items: stretch;
            text-align: left;
        }

    .paragraph-bigger {
        font-size: 16px;
        line-height: 28px;
    }

    .rich-text {
        width: 90%;
        max-width: 470px;
        text-align: left;
    }

    .heading-jumbo {
        font-size: 50px;
        line-height: 64px;
    }

    .heading-jumbo-small {
        font-size: 30px;
        line-height: 52px;
    }

    .status-message.cc-no-data {
        width: 80%;
        max-width: 470px;
    }

    .cart-item-info-wrap {
        padding-right: 10px;
        padding-left: 10px;
    }

    .text-field.cc-contact-field {
        text-align: left;
    }

    .text-field.cc-textarea {
        text-align: left;
    }

    .cart-container {
        min-width: 360px;
    }

    .intro-content {
        width: 80%;
    }

    .main-paragraph-wrap {
        grid-row-gap: 30px;
        grid-template-areas: "." ".";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .form-block {
        width: 90%;
        max-width: 470px;
    }

    .about-quote {
        width: 80%;
        max-width: 470px;
    }

    .get-in-touch-form-wrap {
        width: 90%;
        max-width: 470px;
    }

    .paragraph-contact-text {
        font-size: 16px;
        line-height: 28px;
    }

    .blog-item {
        width: 90%;
        max-width: 470px;
    }

    .blog-summary-wrap {
        text-align: center;
    }

    .utility-page-wrap {
        padding: 15px;
    }

    ._404-wrap {
        padding: 30px;
    }

    .product-detail-main-details {
        width: 100%;
    }

    .product-details-wrap {
        display: flex;
        width: 90%;
        flex-direction: column;
        align-items: center;
        align-self: center;
    }

    .add-to-cart {
        width: 100%;
        max-width: 300px;
    }

    .product-image {
        height: 500px;
    }

    .product-informations {
        width: 100%;
        max-width: 300px;
    }

    .product-detail-name {
        font-size: 20px;
    }

    .full-width-form {
        padding: 30px;
    }

    .blog-detail-header-wrap {
        width: 90%;
        max-width: 470px;
        text-align: left;
    }

    .div-block-9 {
        flex-direction: column;
        align-items: center;
        border-top: 1px solid #d8d8d8;
    }

    .div-block-10 {
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid #c4c4c4;
    }

    .section-4 {
        margin-right: 15px;
        margin-left: 15px;
        padding-top: 15px;
    }

    .div-block-7 {
        height: auto;
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .linkcategorias {
        height: 250px;
    }

    .heading-5 {
        font-size: 30px;
    }

    .div-block-57 {
        width: 100%;
        margin-bottom: 0px;
        align-items: center;
        align-self: flex-start;
    }

    .product-image-2 {
        height: 300px;
        margin-bottom: 0px;
    }

    .product-image-3 {
        height: 300px;
        margin-right: 0px;
        margin-bottom: 0px;
    }

    .div-block-58 {
        margin-right: -10px;
    }

    .div-block-64 {
        padding-right: 10px;
        padding-left: 10px;
        grid-template-columns: 1fr 1fr;
    }

    #w-node-_56f2b96e-ae6e-7af1-6a3b-a2d7387904dd-2d6e0792 {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 3;
    }

    #w-node-_09ca36a5-fae4-bce6-3492-250869e6e75b-b36e079a {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 3;
    }
}

/* ============================================================
   RESPONSIVE — Small ≤ 479px
   ============================================================ */
@media screen and (max-width: 479px) {
    h1 {
        font-size: 36px;
        line-height: 52px;
    }

    h2 {
        font-size: 34px;
        line-height: 46px;
    }

    .divider {
        width: 100%;
        align-self: center;
    }

        .divider.cc-dark-divider {
            width: 100%;
            min-width: auto;
            align-self: center;
        }

    .section {
        margin-right: 5px;
        margin-left: 5px;
    }

        .section.cc-store-home-wrap {
            margin-right: 0px;
            margin-left: 0px;
        }

        .section.cc-product-detail {
            margin-right: 10px;
            margin-left: 10px;
        }

    .button.cc-white-button {
        align-self: center;
    }

    .button.cc-cart {
        padding-right: 16px;
        padding-left: 16px;
    }

    .rich-text {
        width: 100%;
        max-width: none;
    }

    .heading-jumbo {
        font-size: 36px;
        line-height: 48px;
    }

    .status-message.cc-no-data {
        width: 100%;
    }

    .cart-item-info-wrap {
        margin-right: 10px;
        margin-left: 10px;
    }

    .cart-container {
        min-width: 320px;
    }

    .intro-content {
        display: flex;
        height: 70%;
        flex-direction: column;
        justify-content: space-between;
    }

    .main-heading-wrap {
        margin-bottom: 20px;
    }

    .main-paragraph-wrap {
        margin-top: 20px;
    }

    .form-block {
        width: 100%;
        max-width: none;
    }

    .about-quote {
        width: 100%;
        max-width: none;
    }

    .get-in-touch-form-wrap {
        width: 100%;
        max-width: none;
    }

    .blog-item {
        width: 100%;
        max-width: none;
    }

    .product-detail-main-details {
        width: 100%;
        align-self: center;
    }

    .product-details-wrap {
        width: 100%;
        max-width: none;
    }

    .add-to-cart {
        width: 100%;
        max-width: 300px;
        align-self: center;
    }

    .product-image {
        height: auto;
        padding-top: 100%;
    }

    .product-informations {
        width: 100%;
        max-width: 300px;
        align-self: center;
    }

    .list-item {
        flex-direction: column;
        align-items: center;
    }

    .product-detail-name {
        line-height: 30px;
    }

    .full-width-form {
        padding: 15px;
    }

    .order-item-description-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-item-content-wrap {
        margin-bottom: 5px;
    }

    .order-item-price {
        margin-left: 24px;
    }

    .blog-detail-header-wrap {
        width: 100%;
        max-width: none;
    }

    .slider {
        height: 400px;
    }

    .section-2 {
        margin-right: 15px;
        margin-left: 15px;
    }

    .section-3 {
        margin-right: 0px;
        margin-left: 0px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .section-4 {
        margin-right: 0px;
        margin-left: 0px;
        padding-top: 10px;
    }

    .div-block-7 {
        padding-right: 10px;
        padding-left: 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        grid-template-columns: 1fr;
    }

    .linkcategorias {
        height: 150px;
    }

    .hovercategorias {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .heading-5 {
        font-size: 30px;
        text-align: center;
    }

    .div-block-57 {
        padding-right: 0px;
        padding-left: 0px;
        align-self: center;
    }

    .product-image-2 {
        height: 200px;
    }

    .product-image-3 {
        width: 300px;
        height: 300px;
        margin-right: 0px;
    }

    .div-block-58 {
        width: 300px;
        margin-right: -10px;
        justify-content: center;
    }

    .thumbnailproducto-2 {
        width: 80px;
        height: 80px;
    }

    .div-block-64 {
        padding-bottom: 10px;
        grid-template-columns: 1fr;
    }
}

