@font-face {
    font-family: 'Roman Grotesque Extralight';
    src: url('../fonts/Roman_Grotesque_WEB-Extralight.eot');
    src: url('../fonts/Roman_Grotesque_WEB-Extralight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roman_Grotesque_WEB-Extralight.woff') format('woff'),
        url('../fonts/Roman_Grotesque_WEB-Extralight.woff2') format('woff2');
}

@font-face {
    font-family: 'Good Sans Thin';
    src: url('../fonts/GoodSans-Thin.eot');
    src: url('../fonts/GoodSans-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoodSans-Thin.woff') format('woff'),
        url('../fonts/GoodSans-Thin.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
    font-style: normal;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: 22px;
    line-height: 28px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    font-optical-sizing: auto;
    -webkit-hyphenate-character: "-";
}

/* Text styles */

button {
    color: inherit;
}

.hero {
    font-family: 'Roman Grotesque Extralight', Times, serif;
    font-size: 36px;
    line-height: 1;
}

.copy {
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: 22px;
    line-height: 28px;
}

.minor {
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
}

h1 {
    font-family: 'Roman Grotesque Extralight', Times, serif;
    font-size: 30px;
    line-height: 1.1;
}

h2 {
    font-family: 'Roman Grotesque Extralight', Times, serif;
    font-size: 15px;
    line-height: 20px;
}

.block h1 {
    margin-bottom: 5px;
}

main {
    margin: 30px;
    flex-grow: 1;
}

header {
    position: fixed;
    top: 0;
    padding: 30px;
    width: 100%;
    z-index: 10;
}

header nav {
    display: flex;
    justify-content: space-between;
}

.nav-left,
.nav-right {
    width: 200px;
}

.nav-right {
    text-align: right;
}

.nav-right a {
    margin-left: 15px;
}

.logo {
    width: 250px;
    height: auto;
}

footer {
    padding: 30px;
    padding-top: 60px;
    width: 100%;
    position: relative;
    min-height: 30vh;
}

.footer-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-video-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.footer-video-wrapper video {
    width: 100%;
    min-height: 60vh;
    max-height: 60vh;
    object-fit: cover;
    display: block;
}

.footer_grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    margin-bottom: 200px;
}

a.insta_link {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #000;
    text-decoration: none;
}

button[disabled] {}

button {
    cursor: pointer;
    transition: opacity 1s;
}

.button a {
    transition: .5s;
}

button,
a.button {
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover,
a.button:hover,
.button a:hover {
    background-color: #000;
    color: #fff;
}

.accordion button:hover {
    background: none;
    color: #000;
}


/* Home */

.hero-section {
    position: relative;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-item {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 100px;
}

.intro-text {
    width: 85%;
    padding: 100px 30px;
    margin: 0 auto;
}


/* Product Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 180px 20px;
    margin-bottom: 100px;
}

.product {
    position: relative;
}

.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Ensures the image stays square */
    object-fit: cover;
    /* Keeps the image inside the square and cropped */
    margin-bottom: 5px;
}


/* Main Product Page Layout */
.product-page {
    display: flex;
    gap: 50px;
    /* Space between the two columns */
    margin-top: 120px;
}

.product-images-column {
    width: 40%;
    /* Left column (images) */
}

.product-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-info-column {
    width: 60%;
    /* Right column (info) */
    position: sticky;
    top: 120px;
    /* Adjust this value depending on your header height */
    align-self: start;
    /* Make the right column start at the top */
}

/* Inside the Right Column: Two Sub-columns */
.info-grid {
    display: flex;
    gap: 50px;
    /* Space between the two sub-columns */
}

.info-left {
    flex-grow: 1;
    padding: 0 20px;
    /* Left sub-column (title and info) takes up remaining space */
}

.info-right {
    width: 225px;
    min-width: 225px;
}

.variants {
    margin-top: 20px;
}

/* Related Products Section */
.related-products {
    margin-top: 200px;
}



/* Accordion Styles */

.accordion {
    display: block;
    margin-top: 50px;
}

.accordion-item {
    border-bottom: 1px solid #000;
    font-family: 'Roman Grotesque Extralight', Times, serif;
    font-size: 14px;
    line-height: 20px;
}

.accordion-item p {
    padding-bottom: 20px;
}

.accordion-header {
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    padding: 10px 0;
    font-family: 'Roman Grotesque Extralight', Times, serif;
    font-size: 14px;
    line-height: 20px;
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.accordion-item.active .accordion-content {}

.accordion-item.active .accordion-icon {
    content: "-";
}





/* Variants Grid */
.variants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.variant-item {
    cursor: pointer;
    text-align: center;
    padding: 4px;
    border: 1px solid transparent;
    border-radius: 100%;
    transition: 0.3s ease;
}

.variant-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 100%;
}

.variant-item.active {
    border-color: #000;
    /* Border for selected variant */
    transform: scale(0.9);
}

.selected-variant {
    margin-top: 10px;
}




/* Wrapper for the button */
.see-all-link {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 150px;
}

/* Button styling */
.button a {
    display: inline-block;
    padding: 10px 30px;
    /* Adjusted padding for better balance */
    background-color: transparent;
    /* Use transparent instead of inherit */
    text-decoration: none;
    border: 1px solid #000;
    /* Slightly thicker border for visibility */
    border-radius: 50px;
}

.shop-button {
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: 14px;
    background: none;
    border: 1px solid #000;
    outline: none;
    width: 100%;
    border-radius: 50px;
    padding: 5px;
}

.disabled-button {
    opacity: 0.5;
    border: 1px solid rgba(0, 0, 0, 0.5);
}


.add-form {
    margin-bottom: 40px;
}

.price {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
}

/* Blocks Section */
.blocks-section .block {
    display: flex;
    margin-bottom: 120px;
    align-items: flex-start;
    gap: 100px;
}

.block.image-right {
    flex-direction: row;
}

.block.image-left {
    flex-direction: row-reverse;
}

/* Adjust the flex percentages to account for the gap */
.block .text-content {
    flex: 0 0 calc(40% - 50px);
}

.block .image-content {
    flex: 0 0 calc(60% - 50px);
}

.block img {
    width: 100%;
    height: auto;
    object-fit: cover;
}




/* Final Image Section */
.final-image-section img {
    width: 80vw;
    height: auto;
    float: right;
    margin-bottom: 100px;
}

#cart-count-desktop,
#cart-count-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: normal;
    vertical-align: middle;
    margin-top: -4px;
    background: url(../images/Coarsee_Cart_Circle_01.png) no-repeat center center;
    background-size: cover;
    position: relative;
}

.cart-loading::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}





/* Cart Container */
.cart-container {
    max-width: 55%;
    margin: 0 auto;
    padding: 20px;
    margin-top: 150px;
}

/* Cart List */
.cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-item {
    margin-bottom: 50px;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

/* Title and Price */
.title-price-row {
    border-bottom: 1px solid #000;
}

/* Variant and Quantity Controls */
.variant-quantity-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.item-variant,
.item-unit-price {
    flex: 1;
}


/* Product Image */
.image-row {
    padding-top: 10px;
}

.product-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Cart Summary */
.cart-summary {
    padding-top: 10px;
    border-top: 1px solid #000;
    margin-top: 100px;
}

.cart-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.empty-cart-count {
    margin-bottom: 100px;
}

.cart-info-text {
    margin-top: 100px;
}

.checkout-form {
    margin-top: 50px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* General input styling */
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"] {
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: 14px;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    outline: none;
}

/* Half-width row styling */
.half-row {
    display: flex;
    gap: 10px;
    /* Adds space between the two inputs */
}

.half-row input {
    flex: 1;
    /* Allows each input to take up equal space within the row */
    width: auto;
    /* Ensures width doesn't override flex properties */
}

/* Button styling */
.inquiry-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 50px;
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: inherit;
    color: #000;
    cursor: pointer;
}

/* Terms row styling */
.terms-row {
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding-bottom: 150px;
}

.terms-row a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* General checkbox styling */
.terms-row input[type="checkbox"] {
    margin-right: 10px;
}

/* Hide the default checkbox input */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    display: flex;
    /* Ensures the label and checkbox are aligned */
    align-items: center;
    /* Vertically centers items in the flex container */
    margin-right: 30px;
}

/* Style for the custom checkbox */
.custom-checkbox .checkbox-mark {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    /* Circle shape for the checkbox */
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

/* Filled black box when the checkbox is checked */
.custom-checkbox input[type="checkbox"]:checked+.checkbox-mark {
    background-color: #000;
    /* Fill color for checked state */
}


/* Flex container to ensure aligned elements */
.quantity-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* General button styling similar to .shop-button */
.quantity-button,
.remove-button {
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: 14px;
    background: none;
    border: 1px solid #000;
    outline: none;
    border-radius: 50px;
    height: 30px;
    /* Fixed height for alignment */
    display: inline-flex;
    align-items: center;
    /* Center content vertically */
    justify-content: center;
    /* Center content horizontally */
    padding: 0 15px;
    /* Horizontal padding for spacing */
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Remove button specific styling */
.remove-button {
    color: #000;
    line-height: 1;
    /* Ensures no additional vertical spacing */
}

/* Styling for the entire quantity button container */
.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    border-radius: 50px;
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: 14px;
    height: 30px;
    /* Matches .remove-button height */
    margin-top: 2.5px;
}

/* Styling for the minus and plus buttons within the quantity control */
.quantity-control button {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    font-family: 'Good Sans Thin', Arial, sans-serif;
    font-size: 14px;
    outline: none;
    padding: 0 12px;
    /* Padding to match style */
}

/* Quantity display styling (centered inside the button) */
.displayed-quantity {
    font-size: 14px;
    text-align: center;
    width: 30px;
    /* Fixed width for consistency */
    line-height: 1;
    /* Aligns quantity number vertically */
}



/* About */

.about section {
    padding: 0 30px;
}

.about-main {
    margin-top: 120px;
    margin-bottom: 255px;
}

.about-main p {
    width: 85%;
    margin: 0 auto;
}

.about-main img,
.production img {
    display: block;
    margin: 0 auto;
    max-width: 60%;
    padding-bottom: 45px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col .col {
    width: 50%;
}

.two-col img {
    max-height: 90vh;
    width: 100%;
    object-fit: cover;
}

section.production {
    margin: 255px 0;
    padding-top: 155px;
    padding-bottom: 120px;
    background-color: #d7d2bb;
}

section.production p {
    margin-left: 50%;
}

.text-image-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 255px;
}

.text-image-right .text {
    margin-left: 30%;
}

.text-image-right .image {
    margin-top: 60px;
    margin-left: 30px;
    width: 60%
}

.mobile-logo,
.mobile-menu {
    display: none;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.empty-cart-message{
    margin-bottom: 2em;
}


/* B-I-G */

@media only screen and (min-width: 2300px) {

    h2 {
        font-family: 'Roman Grotesque Extralight', Times, serif;
        font-size: 18px;
        line-height: 23px;
    }

    .minor {
        font-family: 'Good Sans Thin', Arial, sans-serif;
        font-size: 17px;
        line-height: 22px;
    }

    .hero-image {
        height: auto;
    }

    .hero-image img {
        height: auto;
    }

    .intro-text {
        width: 50%;
        padding: 200px 30px;
    }

    .blocks-section .block {
        margin: 0 auto;
        width: 70%;
        padding-bottom: 200px;
        gap: 200px;
    }

    .final-image-section img {
        width: 60vw;
        height: auto;
        float: right;
        margin-bottom: 200px;
        margin-right: 200px;
    }

    .product-page {
        margin: 250px;
    }

    .info-left {
        padding: 70px 200px 0 100px;
    }

    .info-right {
        width: 300px;
        min-width: 300px;
    }

    .about section {
        padding: 0 200px;
    }

    .about-main {
        margin-top: 250px;
        margin-bottom: 300px;
    }

    .about-main p {
        width: 50%;
    }

    section.two-col {
        margin: 0 150px;
    }

    section.production {
        margin: 400px 0 300px 0;
        padding: 200px 400px;
    }

    section.production p {
        margin-left: 70%;
    }

    .text-image-right .text {
        margin-left: 50%;
    }

    section.text-image-right {
        margin-bottom: 500px;
    }

    footer {}

    .mobile-logo,
    .mobile-menu {
        display: none;
    }

    .block.image-right {
        margin-left: 200px;
    }

    .block.image-left {
        margin-right: 200px;
    }

    .products-grid {
        margin-bottom: 200px;
    }

    .production img {
        max-width: 80%;
    }

    .text-image-right .image {
        margin-left: 150px;
    }

    .cart-container {
        max-width: 40%;
    }

}


/* M-O-B-I-L-E */

@media only screen and (max-width: 768px) {
    body {
        font-size: 18px;
        line-height: 24px;
    }

    header nav {
        display: none;
        /* Hide desktop menu */
    }


    /* Mobile Menu Trigger */

    .menu-toggle-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
        color: #000;
        width: 100%;
        height: 70px;
        cursor: pointer;
        border: none;
    }

    .bottom-sheet-overlay {
        position: fixed;
        inset: 0;
        background: transparent;
        display: none;
        z-index: 1000;
    }

    .bottom-sheet-overlay.open {
        display: flex;
        align-items: flex-end;
    }

    .bottom-sheet {
        width: 100%;
        max-height: 80vh;
        animation: slideUp 0.3s ease-out;
    }



    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0%);
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(0%);
        }

        to {
            transform: translateY(100%);
        }
    }


    /* Menu Header (Trigger Area) */
    .menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        text-align: center;
        cursor: pointer;
        margin-top: 15px;
        padding-bottom: 10px;
    }

    /* Arrow Styles */
    .menu-triangle {
        width: 30px;
        height: 20px;
        background: url(../images/UPON.png) no-repeat center center;
        background-size: contain;
    }

    /* Arrow Points Down When Open */
    .bottom-sheet .menu-triangle {
        width: 30px;
        height: 20px;
        background: url(../images/CLOSE.png) no-repeat center center;
        background-size: contain;
    }


    /* Menu Links */
    .menu-links {
        padding: 20px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: left;
        text-align: left;
    }

    .menu-links-second {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        gap: 10px;
        align-items: left;
        text-align: left;
    }

    .mobile-logo {
        display: block;
        margin: 0 auto;
        width: 200px;
    }

    .mobile-menu {
        display: block
    }

    .botttom {
        position: absolute;
        left: 30px;
        bottom: 30px;
    }



    /* Text styles */

    .hero {
        font-family: 'Roman Grotesque Extralight', Times, serif;
        font-size: 24px;
        line-height: 1;
    }

    .copy {
        font-family: 'Good Sans Thin', Arial, sans-serif;
        font-size: 16px;
        line-height: 24px;
    }

    .minor {
        font-family: 'Good Sans Thin', Arial, sans-serif;
        font-size: 14px;
        line-height: 20px;
    }

    h1 {
        font-family: 'Roman Grotesque Extralight', Times, serif;
        font-size: 22px;
        line-height: 1.1;
    }

    h2 {
        font-family: 'Roman Grotesque Extralight', Times, serif;
        font-size: 15px;
        line-height: 20px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px 0;
        margin-bottom: 40px;
    }

    .products-grid-products-page {
        margin-bottom: 60px;
    }

    .blocks-section .block {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 100px;
    }

    .block .text-content {
        padding: 0 30px;
    }

    .block h1 {
        margin-bottom: 10px;
    }

    .block .text-content,
    .block .image-content {
        flex: 0 0 100%;
        /* Make each item take full width */
        width: 100%;
    }

    .block img {
        width: 100%;
        height: auto;
    }

    .final-image-section img {
        width: 100%;
        height: auto;
        margin-bottom: 100px;
    }

    .footer_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px 0;
        margin-bottom: 200px;
    }

    .hero-image {
        height: 35vh;
    }

    .hero-image img {
        height: 35vh;
    }

    .hero-item {
        padding-bottom: 15px;
    }

    .intro-text {
        width: 100%;
        padding: 80px 30px;
    }

    .products .intro-text {
        padding-top: 0;
    }

    main {
        margin: 10px;
    }

    footer {
        padding-top: 30px;
    }

    nav.minor {
        display: none;
    }

    a.insta_link {
        display: none;
    }

    .product-page,
    .info-grid {
        display: block;
        gap: 0;
    }

    picture img{
        min-width: 100%;
    }

    .product-info-column {
        width: 100%;
        position: relative;
        top: 0;
        align-self: auto;
    }

    .info-left {
        margin-top: 50px;
    }

    .info-right {
        width: 100%;
        padding: 0 20px;
        margin-top: 30px;
    }

    .shop-button {
        display: block;
        width: 50%;
        margin: 0 auto;
    }

    .accordion {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .product-images-column {
        width: 100%;
    }

    .related-products {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .product-images-rest img {
        margin-bottom: 15px;
    }

    .about-main img,
    .production img {
        max-width: 100%;
        padding-bottom: 45px;
    }

    .about-main p {
        width: 90%;
    }

    .about section {
        padding: 0 15px;
    }

    .about-main {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .two-col {
        display: block;
        margin-top: 100px;
    }

    .two-col .col {
        width: 100%;
        margin-top: 15px;
    }

    section.production {
        margin: 50px 0;
        padding-bottom: 60px;
        background-color: #FFF;
    }

    section.production p {
        margin-left: 0;
        padding-bottom: 80px;
        margin: 0 auto;
        width: 90%;
    }

    section.production h1 {
        margin: 0 auto;
        width: 90%;
        padding-top: 60px;
        margin-bottom: 10px;
    }

    .text-image-right {
        display: block;
        margin-bottom: 100px;
    }

    .text-image-right .text {
        margin-left: 0;
        margin: 0 auto;
        width: 90%;
    }

    .text-image-right .image {
        margin-top: 80px;
        margin-left: 15%;
        width: 70%;
    }

    .cart-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 20px;
        margin-top: 100px;
    }

    .product-image {
        max-width: 100%;
    }

    .variant-quantity-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 0px;
        text-align: right;
        margin-top: 5px;
    }

    .item-unit-price {
        text-align: left !important;
    }

    .grid-full {
        grid-area: 2 / 1 / 3 / 4;
        margin: 10px 0;
    }

    .grid-full-last {
        grid-area: 3 / 1 / 4 / 4;
        text-align: left;
    }

    .half-row,
    .terms-row {
        display: block;
    }

    .terms-row {
        margin-top: 20px;
        padding-bottom: 100px;
    }

    .custom-checkbox {
        margin-bottom: 20px;
    }

    .inquiry-button {
        display: block;
        margin: 50px auto;
    }

    .see-all-link {
        margin-top: 0;
        margin-bottom: 100px;
    }

    .see-all-link.product-detail {
        margin-top: 50px;
    }

    .cart-widget {
        position: fixed;
        top: 20px;
        right: 15px;
    }

    button:hover,
    a.button:hover,
    .button a:hover {
        background-color: #fff;
        color: #000;
    }

}