/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 * OFF require_tree .

 */

:root {
    --my-min-height: calc(100vh - 130px);
    --tw-ring-color: #C7A37F;
}


/* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black with opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
}

button {
    padding: 10px;
    /* margin-top: 10px; */
}

body {
    background-color: black;
    border-radius: 20px;
}

#content {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 130px);
}

#content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/assets/line.svg);
    background-repeat: repeat-x;
    background-position: center;
    background-size: 300px 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

#content>* {
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: radial-gradient(50% 50% at 50% 50%, #C7A37F 0%, #493928 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gradient-border {
    padding: 1px;
    background: linear-gradient(86.31deg, #302D29 -1.16%, #B79676 51.9%, #302D29 97.46%);
}

.gradient-border .bg-black {
    border-radius: 1000px;
    background-color: #000;
}

.inverted-rounded:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -70px;
    height: 70px;
    width: 70px;
    background: transparent;

    /* border-radius of pseudo element */
    border-bottom-right-radius: 50%;

    /* box shadow to give the shadow of the pseudo-element the same color as the background */
    box-shadow: 0 40px 0 0 rgb(34, 34, 34);
}

.inverted-rounded:after {
    content: "";
    position: absolute;
    top: -70px;
    right: 0;
    height: 70px;
    width: 70px;
    background: transparent;
    border-bottom-right-radius: 50%;
    box-shadow: 0 40px 0 0 rgb(34, 34, 34);
}

.notify_subscribe {
    height: 0;
    width: 0;
    display: none;
}

#notify-me:checked+.inverted-rounded {
    width: 100%;
}

#notify-me:checked+.inverted-rounded>div {
    width: 100%;
}

#notify-me:checked+.inverted-rounded .notify_subscribe {
    height: min-content;
    width: 100%;
    display: flex;
}

#notify-me:checked+.inverted-rounded>div>label {
    display: none;
}

#notify-me:checked+.inverted-rounded:before {
    display: none;
}

#notify-me:checked+.inverted-rounded:after {
    display: none;
}

.outline-button {
    display: flex;
    justify-items: center;
    align-items: center;
    border: 1px solid #C7A37F;
    border-radius: 50px;
    padding: 10px 24px;
    width: fit-content;
    margin: 0 auto;

    font-size: 14px;
    color: white;
}

.gradient-text {
    background: radial-gradient(circle at center, #C7A37F 0%, #493928 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-start {
    justify-content: flex-start;
}

.underline {
    text-underline-offset: 3px;
}

.text-balance {
    text-wrap: balance;
}

.hero-img {
    display: block;
    width: 100%;
    max-height: 885px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .hero-img {
        max-width: 70%;
    }
}

.cart-btn_icon {
    background: #F2F2F2;
    width: 52px;
    height: 52px;
    border-radius: 8px;

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

    margin-left: auto;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.custom-select-wrapper .select-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #4a5568;
}

.breadcrumbs li:last-child a {
    font-weight: 700;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

.order-details_col {
    min-width: 280px;
}

.cart-item:not(:first-child),
.shipment-items li:not(:first-child) {
    border-top: 1px solid #c7a37f;
}

.shipping-methods__rate:not(:first-child) {
    border-top: 1px solid #CFCFCF;
    padding-top: 1.5rem;
}

.hero_benefits_list {
    margin-top: -4.5rem;
}

.contact_cta_arrow {
    width: 18px;
    height: 18px;
}

@media screen and (max-width: 580px) {
    .product-submit .product-submit_actions {

        flex-wrap: wrap;
    }

    .product-submit .product-submit_actions #add-to-cart-button {
        order: 1;
    }

    .hero_benefits_list {
        margin-top: 0;
    }

    .contact_cta_arrow {
        width: 8px;
        height: 8px;
    }
}

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

    .checkout__summary,
    .order__summary {
        max-width: 470px;
        position: sticky;
        top: 1rem;
    }
}
