﻿:root {
    --ff-primary: Roboto, sans-serif;
    /*    --ff-secondary: Bungee, cursive;
    --ff-accent: Bungee Shade, cursive;*/
    --color-gray: #3A3B3C;
    --color-secondary: rgba(0,0,0,0.18);
    --color-primary: red;
    --color-primary-darker: #e00;
    --color-success: green;
    --color-danger: red;
    --color-white: #fff;
    --color-blue: blue;
    --color-dark-gray: #242526;
}

.primary_color {
    color: var(--color-primary);
}

.success_color {
    color: var(--color-success);
}
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

a, a:visited {
    text-decoration: none;
    color: var(--color-gray);
}

.paginator > a.disabled {
    color: var(--color-gray);
}

.success, .info {
    color: var(--color-success);
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-primary);
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

.body-wrapper {
    max-width: 1400px;
    margin: 1rem auto;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

.dim {
    color: #666;
    outline: none;
    user-select: none;
}

.highlight {
    background-color: yellow;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

#merchant-name {
    font-size: 2rem;
    margin: 19px;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html: focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.flex {
    display: flex;
}

.login-links {
    display: flex;
}

    .login-links li {
        list-style: none;
        padding: 5px;
        margin: 5px;
    }

    .login-links a {
        text-decoration: none;
        color: #fff;
    }
/* Search */

.search-container {
    position: relative;
    flex-grow: 1;
    margin-inline-start: 2rem;
}

#searchForm .search-container {
    display: flex;
    align-items: center;
    position: relative;
}

    #searchForm .search-container .search-btn {
        border: none;
        background: transparent;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 0.5rem 1rem;
        cursor: pointer;
    }

#searchInput {
    width: 100%;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 1px;
    display: unset;
    line-height: normal;
    padding: 0.5rem 1rem;
}

#suggestions {
    position: absolute;
    width: 100%;
    max-height: 50vh;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    line-height: 1.2rem;
}

    .suggestion-item:hover {
        background-color: #f0f0f0;
    }

    .suggestion-item .name {
        font-weight: bold;
    }

    .suggestion-item .description {
        color: #666;
        font-size: 0.9em;
    }

/* end search */
#cart-drawer {
    border: 1px solid var(--ff-primary);
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
}

    #cart-drawer .slide-in {
        transform: translateY(0);
        opacity: 1;
    }

#cart-icon {
    position: relative;
    margin-block: auto;
}

#cart-quantity {
    position: absolute;
    background: red;
    color: #fff;
    line-height: 1;
    border-radius: 4px;
    padding: 6px;
    border-radius: 10px;
    right: -1rem;
    top: -1rem;
}

.text-success {
    color: var(--color-success);
}

.text-danger {
    color: red;
}

body {
    font-family: var(--ff-primary);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.content-wrapper {
    max-width: 1536px;
    margin-inline: auto;
    padding: 10px;
}

.footer-4 {
    text-align: right;
}

.form-check-input {
    display: none; /* Hide the default radio button */
}

.form-check-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

    .form-check-label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 2px;
        width: 20px;
        height: 20px;
        border: 2px solid #333;
        background-color: white;
        border-radius: 50%;
    }

.form-check-input:checked + .form-check-label::before {
    content: "✔";
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 20px;
}


.order-review-section {
    margin-block: 2rem;
}

.shipping-options-container {
    padding: 20px;
    display: flex;
    flex-direction: row !important;
    justify-content: start;
}

    .shipping-options-container .shipping-option {
        padding: 20px;
        margin-inline-end: 20px;
        border: 1px solid var(--color-gray);
        border-radius: 3px;
    }

#monerisCheckout-Frame {
    min-height: 700px;
}

    #monerisCheckout-Frame .col-12 {
        margin: 0;
        padding: 0;
    }

.filters-form-inputs {
    display: flex;
}
/*.sidebar form .form-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    width: 100%;
}

    .sidebar form .form-actions .form-group {
        margin: 0;
        padding:0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .sidebar form .form-actions .btn {
        max-width: 200px;
    }*/
/*layout*/

main {
    flex-grow: 1;
    padding: 0;
}


/*endlayout*/
.svg-icon {
    height: 30px;
    fill: #ffffff;
}

.age-gate-overlay {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: gray;
    justify-content: center;
    align-items: center;
}

.age-gate-content {
    border: 1px solid white;
    margin: 10px;
    border-radius: 5px;
    padding: 1rem;
    background: white;
    text-align: center;
}

.container {
    max-width: 100rem;
    margin-inline: auto;
    padding-inline: 0.5rem;
}

.stacked {
    display: grid;
}

    .stacked > * {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

.products-grid-page {
    position: relative;
    overflow: hidden;
}

.product-grid-wrapper {
    padding: 1rem;
}

.product-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.filters-label {
    padding: 0.5rem 1rem;
    outline: none;
    background: red;
    max-width: fit-content;
    border-radius: 5px;
    margin-bottom: 15px;
}

.filters-label, .filters-checkbox {
    display: none;
}

.filters {
    transition: all 0.5s ease-in-out;
}

.product-detail-content p {
    margin: 0.5rem 0 !important;
}

.paginator {
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bolder;
    margin: 20px;
    padding: 10px;
    gap: 58px;
}

.sidebar > form {
    display: flex;
    justify-content: center;
    margin: 10px;
    padding: 10px;
}
/*  card  */
/*
.card {
    aspect-ratio: 1 / 1.7;
    /* border: 3px solid hotpink; 
    position:relative;
    overflow:hidden;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2), inset 2px 2px 5px rgba(0, 0, 0, 0.2);
}
    .card .details-button , .card a.details-button:visited {
        color: var(--color-white);
        position: absolute;
        right: 1rem;
        bottom: 3rem;
    }
.card__size {
    font-weight: bold;
    color: white;
    position: absolute;
    top: -65px;
    background: red;
    left: -113px;
    transform: rotate(-40deg);
    padding: 100px 100px 10px 100px;
}
    
    .card a {
        text-decoration: none;
        color: var(--color-gray)
    }

        .card a:visited {
            text-decoration: none;
            color: var(--color-gray)
        }

.card__content {
    background: white;
    align-self: end;
    margin: 0.5rem 0.5rem 0.5rem;
    padding: 0.5rem;
}

.card__title {
    font-size: 1.25rem;
    line-height: 1.1;
    color: firebrick;
    min-height: 4rem;
}

a.btn-add-cart{
    position: absolute;
    right: 5px;
    color:white;
}
a:visited.btn-add-cart{
    color:white;
}
.card__price {
    font-size: 1.75rem;
    height: 50px;
    line-height: 50px;
    position:absolute;
    left:10px;
}

.card__price__box{
    position:relative;
    display:flex;
    justify-content: space-around;
    padding:4px;
    border:1px solid gray;
    margin-top:14px;
    height:60px;
    border-radius:4px;
}

.card__price__box > .title{
    position:absolute;
    top:-14px;
    left:5px;
    background:white;
    padding:0 5px;
    border-radius:2px;
}

.card__img {
    padding: 1rem;
    width: 100%;
    aspect-ratio: 1 / 1.25;
    object-fit: contain;
}

.card__footer {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    align-items: end;
}

card end */
#filterForm .form-group {
    margin: auto;
}

.collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: minmax(200px, auto); /* Adjusted for typical e-commerce item height */
    gap: 20px; /* Slightly reduced for better mobile spacing */
    max-width: 1400px; /* Slightly reduced for better fit on smaller screens */
    margin: 0 auto; /* Center the grid */
    padding: 0 15px; /* Add padding for smaller screens */
}

    .collection > * {
        min-width: 0; /* Prevent content from overflowing */
    }


.product {
    padding: 10px;
    border: 1px solid lightgray;
}

.product__image {
    background-color: transparent;
    display: block;
    height: 350px;
    width: 100%;
}

    .product__image img {
        max-width: 100%; /* Ensure image fits within div width */
        max-height: 100%; /* Ensure image fits within div height */
        object-fit: cover; /* Maintain aspect ratio */
        margin: auto;
        height: 350px;
    }


.product__name p {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.product__name a {
    color: #000000;
    text-decoration: none;
}

.bold {
    font-weight: bold;
}

.product__price {
    font-size: 1.3rem;
}

.product__bulk__price .title {
    font-size: 0.8rem;
}

.product__bulk__price .bold {
    color: var(--color-primary);
}

.product_avail_tag, .product_noavail_tag {
    align-items: center;
    text-align: left;
    width: 100%;
}

    .product_avail_tag .small {
        font-size: 0.7rem;
    }

    .product_avail_tag::before {
        content: '\2713';
        color: green;
        margin-right: 8px;
        font-size: 16px;
    }



.product_notavail_tag::before {
    content: '\2718';
    color: red;
    margin-right: 8px;
    font-size: 16px;
}

.addToCartForm .addToCartBtn {
    padding: 2px 5px;
}

.product-actions > form {
    padding: 0.5rem 0;
}

@media (max-width: 600px) {
    .collection {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .product-grid-wrapper {
        padding: 0;
    }
}

@media (min-width: 60em) {
    /*    .card__img {
        aspect-ratio: 1 / 1;
    }

    .card.featured {
        grid-row: span 2;
        grid-column: span 2;
    }

        .card.featured .card__img {
            aspect-ratio: 1 / 1.25;
        }

        .card.featured .card__title {
            font-size: 1.75rem;
        }*/
}

.main-title {
    font-size: 2rem;
    line-height: 1;
    color: white;
    background: linear-gradient(-45deg, blue, red);
    padding: 0.125em 0.5em;
    margin-bottom: 1em;
    width: fit-content;
}

p.max-content {
    width: max-content;
}

p.min-content {
    width: min-content;
}
/* navigation*/

nav {
    position: relative;
    z-index: 99;
    width: 100%;
    background: var(--color-dark-gray);
}

.top-nav {
    padding-inline: 1rem;
}

.top-nav-right {
    display: grid;
    grid-template-columns: 1fr auto;
}

.logout-form {
    padding: 0 !important;
}

    .logout-form button {
        margin: 0;
        padding: 0;
        line-height: 1;
        background: transparent;
        color: #fff;
        font-size: inherit;
        border: none;
    }

.divider {
    border-bottom: 0.5px solid lightgray;
}

nav .wrapper {
    position: relative;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-input-group {
    flex-grow: 0.5;
    margin-inline: auto;
    display: inline-block;
    height: 37px;
    position: relative;
}

    .search-input-group > .svg-icon {
        position: absolute;
        top: 4px;
        right: 0;
    }

#search-input {
    width: 100%;
    display: flex;
    line-height: initial;
    padding: 5px 10px;
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
}

    .wrapper .logo a span {
        margin: 3px;
        padding: 0;
        line-height: 1;
    }

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

    .nav-links li a, .nav-links li label {
        color: #f2f2f2;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        padding: 9px 15px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .nav-links li a:hover {
            background: #3A3B3C;
        }

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}



.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

    .mega-box .content {
        background: #242526;
        padding: 25px 20px;
        display: flex;
        width: 100%;
        justify-content: space-between;
        box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    }

        .mega-box .content .row {
            width: calc(25% - 30px);
            line-height: 45px;
        }

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

    .row .mega-links li a {
        padding: 0px;
        padding: 0 20px;
        color: #d9d9d9;
        font-size: 17px;
        display: block;
    }

        .row .mega-links li a:hover {
            color: #f2f2f2;
        }

.hamburger-menu-btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    margin-left: 1rem;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
    display: none;
}

@media screen and (max-width: 970px) {
    .body-wrapper {
        padding: 1rem;
    }

    .hamburger-menu-btn {
        display: block;
    }

    .footer-grid, .footer-4, .footer-section {
        text-align: center;
    }

        .footer-grid .footer-1 .footer-section {
            text-align: center;
        }

        .footer-grid .footer-4 .footer-section {
            text-align: center;
        }

        .footer-grid li {
            list-style: none;
        }

    .filters-label {
        display: block;
    }

    .filters-form-inputs {
        flex-direction: column;
    }

    #filterForm .form-group {
        width: 100%;
    }
    /*    .filters {
        border: 1px solid;
        box-shadow: -3px 3px 52px gray;
        background-color: var(--color-white);
        position: absolute;
        z-index: 99;
        right: -100%;
    }*/
    #chk-filter:checked ~ .filters {
        right: 0;
    }

    .wrapper .logo a {
        font-size: 1.3rem;
    }

    .wrapper .logo a {
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    }

    .cart-item-actions {
        justify-content: space-around !important;
        margin: 8px;
    }

    .sidebar .form-actions .form-group {
        margin: 0 auto;
    }

    .wrapper .nav-links-wrapper {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .wrapper .nav-links {
        flex-direction: column;
    }

    .wrapper .btn.close-btn {
        display: flex;
    }

    nav .wrapper {
        line-height: normal;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked ~ .nav-links-wrapper {
        left: 0%;
    }

    #menu-btn:checked ~ .btn.menu-btn {
        display: none;
    }

    #close-btn:checked ~ .btn.menu-btn {
        display: block;
    }

    input[type="radio"] + .drop-menu {
        transition: all 0.3s ease;
        max-height: 0px;
    }

    input[type="radio"] + .mega-box {
        transition: all 0.3s ease;
        max-height: 0px;
    }

    input[type="radio"]:checked + .drop-menu {
        max-height: 500px;
    }

    input[type="radio"]:checked + .mega-box {
        max-height: 500px;
    }

    .nav-links {
        padding: 20px 0px;
    }

        .nav-links li {
            margin: 5px 1px;
        }

            .nav-links li a, .nav-links li label {
                display: block;
                font-size: 20px;
            }

        .nav-links .drop-menu {
            position: static;
            opacity: 1;
            top: 65px;
            visibility: visible;
            padding-left: 20px;
            width: 100%;
            /*        max-height: 0px;
*/ overflow: hidden;
            box-shadow: none;
            transition: all 0.3s ease;
        }

    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .nav-links .mobile-item:hover {
            background: #3A3B3C;
        }

    .drop-menu li {
        margin: 0;
        padding: 0px;
    }

        .drop-menu li a {
            border-radius: 5px;
            font-size: 18px;
        }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .mega-box .content {
            box-shadow: none;
            flex-direction: column;
            padding: 20px 20px 0 20px;
        }

            .mega-box .content .row {
                width: 100%;
                margin-bottom: 15px;
                border-top: 1px solid rgba(255,255,255,0.08);
            }

                .mega-box .content .row:nth-child(1),
                .mega-box .content .row:nth-child(2) {
                    border-top: 0px;
                }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }

    #footer-main {
        padding: 1rem !important;
    }

    .footer-grid {
        margin: 0;
        padding: 0;
        text-align: center;
    }


    .paginator {
        font-size: 1rem !important;
    }
}

nav input {
    display: none;
}
/* Product Details */
.product-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    min-height: 40rem;
    margin: 3rem 0;
}

.product-detail-image {
    display: flex;
    justify-content: center;
    align-items: start;
}

.product-detail-content {
    padding: 0 3rem;
}

    .product-detail-content p {
        margin: 1rem 0;
    }

    .product-detail-content h1, .product-actions {
    }

.product-features {
    margin: 1.5rem 0;
}
/* footer */
#footer-main {
    background-color: #f8f8f8;
    border: none;
    padding: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 10px;
    margin: 0 auto;
    max-width: 100%;
    padding: 1rem;
}

    .footer-grid li {
        list-style: none;
    }

    .footer-grid a {
        text-decoration: none;
        color: var(--color-gray);
        line-height: 2.0;
        cursor: pointer;
    }



/* general */
.disabled {
    pointer-events: none;
    color: gray;
    text-decoration: none;
    cursor: default;
}

.flex {
    display: flex;
    gap: var(--gap, 1rem);
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.grid {
    display: grid;
    gap: var(--gap, 1rem);
}

.d-block {
    display: block;
}

/*.flow > *:where(:not(:first-child)) {
    margin-top: var(--flow-space, 1rem);
}*/

.flow--space-small {
    --flow-space: .75rem;
}

.btn {
    border-radius: 3px;
    padding: 0.5rem 1rem;
    margin: 5px 0px;
    border: none;
    border: none;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    min-width: 5rem;
}

.btn-outline {
    background-color: var(--color-white);
    border: 1px solid;
    border-radius: 3px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white !important;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-gray);
}

.btn-success {
    background-color: var(--color-success);
    color: white !important;
}

.btn-danger {
    background-color: var(--color-danger);
    color: white !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* added line */
    border: 0;
}

form {
    width: 100%;
    padding: 1rem;
}

    form .form-control {
        padding: 0.5rem 1rem;
    }

.cart-summary {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    margin: 10px 0;
    border-bottom: 1px solid lightgray;
}

    .cart-item img {
        max-height: 100px;
    }

.cart-item-image-price {
    display: flex;
    gap: .6rem;
    flex-grow: 1;
}

.price-group {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.cart-item-info {
    width: 100%;
}

.cart-item-price, .cart-item-discount {
    font-weight: bold;
}

    .cart-item-price span {
        font-weight: 600;
    }

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-block: 10px;
}

.text-right {
    text-align: right;
}

.text-end {
    text-align: end;
}

.detail-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

/* pop up */
.popup {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: top 0.5s ease-in-out;
    z-index: 1000;
}

    .popup img {
        max-width: 150px;
        margin-inline: auto;
    }

    .popup.show {
        top: 20px;
    }

.popup-content {
    position: relative;
}

    .popup-content h2 {
        margin: 0 0 10px;
    }

    .popup-content p {
        margin: 0 0 20px;
    }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

    .overlay.show {
        display: block;
    }

.centered-bordered-box {
    max-width: 40rem;
    margin: 3rem auto;
    padding: 1.5rem;
    border: 1px solid red;
    border-radius: 5px;
}

/*
.hero {

}

.cell-1 {
    grid-area: cell-1;
    background-color: red;
}

.cell-2 {
    grid-area: cell-2;
    background-color: green;
}

.cell-3 {
    grid-area: cell-3;
    background-color: blue;
}


.hero {
    background: url('/images/hero-bg.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b8860b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

    .cta-button:hover {
        background-color: #daa520;
    }*/

.shipping-info {
    font-size: 1rem;
    margin-top: 10px;
}

.age-verification {
    margin-top: 20px;
}

    .age-verification button {
        padding: 8px 16px;
        margin: 0 10px;
        cursor: pointer;
    }

.price {
    font-weight: bold;
    color: #b8860b;
}

.add-to-cart {
    padding: 8px 16px;
    background-color: #b8860b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .add-to-cart:hover {
        background-color: #daa520;
    }

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

    .newsletter-form input {
        padding: 10px;
        width: 250px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

.incentive {
    font-size: 1rem;
    color: #b8860b;
}


#outerDiv {
    margin: 2rem 0;
}

    #outerDiv body {
        background: #fff !important;
    }

.pac-container {
    z-index: 1000;
    padding: 4px;
    border: 1px solid red;
    font-family: Arial, sans-serif;
}

/* order */
.confirmed > td {
    background-color: aqua;
}

.pending > td {
    background-color: darkorange;
}

.shipped > td {
    background-color:greenyellow;
}

.readyforpickup > td {
    background-color:lawngreen;
}

.completed  > td {
    background-color:gray;
}
