.theme-2 {

    /* Product */
    .products {
        position: relative;
        overflow: hidden;
    }

    .products .item {
        display: block;
        text-decoration: none;
        text-align: center;
        padding: 3px;
        color: var(--text-color);
        background-color: white;
        border-radius: 18px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .products .item:hover {
        scale: 1.025;
    }

    .products .item .wrapper {
        border-radius: 18px;
        overflow: hidden;
    }

    @media (max-width: 767px) {
        .products .item .wrapper {
            display: grid;
            grid-template-areas: "header header" "title info" "img info" "img totals" "footer footer";
            grid-template-columns: 1fr 1fr;
            align-items: center;
            -moz-column-gap: 0.5em;
            column-gap: 0.5em;
            padding: 0.5em 0;
        }
    }

    .products .item .item-header {
        grid-area: title;
        padding: 0.25em 0.5em;
        background-color: var(--primary-color-light);
        font-weight: 800;
        color: var(--light-1);
        font-style: italic;
        color: var(--text-color);
    }

    @media (max-width: 767px) {
        .products .item .item-header {
            background-color: transparent;
            font-size: 0.9em;
            padding: 0;
            color: var(--secondary-color);
        }
    }

    .products .item .item-img {
        grid-area: img;
    }

    .products .item .item-img .supply {
        padding: 1em 0.5em;
        text-align: center;
        line-height: 1;
    }

    @media (max-width: 767px) {
        .products .item .item-img .supply {
            font-size: 0.8em;
            padding: 0;
        }
    }

    .products .item .item-img .supply b {
        display: block;
        font-size: 1.75em;
    }

    @media (max-width: 767px) {
        .products .item .item-img .supply b {
            font-size: 1.25em;
        }
    }

    .products .item .item-img img {
        max-height: 200px;
    }

    .products .item .item-info {
        grid-area: info;
    }

    .products .item .item-info .price {
        display: flex;
        text-align: start;
        gap: 0.25em;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        align-items: center;
        line-height: 1;
        font-size: 22px !important;
        font-weight: bold;
    }

    .products .item .item-info .price b {
        font-size: 4em;
        text-align: center;
    }

    @media (max-width: 767px) {
        .products .item .item-info .price b {
            font-size: 2.8em;
            letter-spacing: -0.06em;
        }
    }

    .products .item .item-info .price sup {
        font-size: 0.45em;
        top: 0;
    }

    .products .item .item-info .price span {
        font-weight: 800;
        letter-spacing: 0;
    }

    @media (max-width: 767px) {
        .products .item .item-info .price span {
            font-size: 0.65em;
        }
    }

    .products .item .item-info .savings {
        font-size: 0.7em;
        font-weight: 800;
    }

    @media (max-width: 767px) {
        .products .item .item-info .savings {
            font-size: 0.65em;
        }
    }

    .products .item .item-info .savings>div {
        padding: 0.5em;
        align-items: center;
        justify-content: center;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.4196078431);
    }

    .products .item .item-info .savings>div:first-child {
        border-top: 1px dashed rgba(0, 0, 0, 0.4196078431);
        color: var(--secondary-color);
    }

    .products .item .item-info .savings>div:nth-child(2) {
        display: none;
    }

    @media (max-width: 767px) {
        .products .item .item-info .savings>div {
            padding: 0.5em 0;
        }
    }

    .products .item .item-info .savings span {
        display: flex;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        gap: 0.25em;
        line-height: 1;
    }

    @media (max-width: 767px) {
        .products .item .item-info .savings span {
            letter-spacing: -0.4px;
        }
    }

    .products .item .item-info .savings span::before {
        content: "\f270";
        font-family: "bootstrap-icons";
        font-size: 1.5em;
        font-weight: normal;
    }

    @media (max-width: 767px) {
        .products .item .item-info .savings span::before {
            font-size: 1em;
        }
    }

    .products .item .item-buy {
        grid-area: footer;
    }

    .products .item .item-buy .button {
        padding: 0.65em;
        margin: 0.5em 0.25em;
        font-style: italic;
        display: block;
    }

    @media (max-width: 767px) {
        .products .item .item-buy .button {
            margin-top: 0;
            margin-bottom: 0;
            font-size: 1.15em;
            font-style: italic;
        }
    }

    .products .item .item-buy .button span {
        display: flex;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        gap: 0.25em;
        color: black;
        font-weight: 900;
        font-size: 1.4em;
        line-height: 1;
        padding: .25em 0;
    }

    .products .item .item-buy .button span::before {
        content: "\f23e";
        font-family: "bootstrap-icons";
        font-weight: normal;
        margin-top: -0.1em;
    }

    .products .item .item-buy .card-flags {
        max-width: 220px;
        margin-bottom: 0.5em;
    }

    @media (max-width: 767px) {
        .products .item .item-buy .card-flags {
            display: none;
        }
    }

    .products .item .item-totals {
        grid-area: totals;
        font-size: 0.9em;
        padding-bottom: 1em;
    }

    @media (max-width: 767px) {
        .products .item .item-totals {
            font-size: 0.8em;
        }
    }

    .products .item .item-totals .totals s {
        text-decoration-color: red;
        text-decoration-thickness: 2px;
    }

    .products .item .item-totals .totals span {
        color: var(--contrast-color);
    }

    .products .item .item-totals .shipping {
        font-weight: 800;
    }

    .products .item .item-totals .shipping span {
        color: #dc3545;
    }

    .products .item.promo {
        color: white;
        background-color: white;
        text-shadow: 0px 2px rgba(0, 0, 0, 0.6392156863);
        border: 4px solid white;
        filter: drop-shadow(0 0 2.5px var(--secondary-color));
        box-shadow: 0 0 10px var(--secondary-color-dark);
    }

    .products .item.promo .wrapper {
        background-image: radial-gradient(var(--secondary-color), black);
    }

    @media (max-width: 767px) {
        .products .item.promo .wrapper {
            grid-template-areas: "header header" "img info" "img totals" "footer footer";
        }
    }

    .products .item.promo .item-header {
        grid-area: header;
        background-color: white;
        color: var(--secondary-color);
        text-shadow: none;
        font-size: 1.2em;
    }

    @media (max-width: 767px) {
        .products .item.promo .item-header {
            margin: -0.55em 0 0.5em;
            padding: 0.25em;
        }
    }

    .products .item.promo .item-img img {
        max-height: 240px;
    }

    .products .item.promo .item-info .savings>div {
        color: white;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.4196078431);
    }

    .products .item.promo .item-info .savings>div:first-child {
        color: #fccd15;
        border-top: 1px dashed rgba(255, 255, 255, 0.4196078431);
    }

    .products .item.promo .item-info .savings>div:nth-child(2) {
        display: block;
    }

    .products .item.promo .item-buy .button {
        color: var(--text-color) !important;
        background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
        text-shadow: none;
        font-style: italic;
    }

    .products .item.promo .item-buy .button:hover {
        background-image: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
    }

    .products .item.promo .item-totals .shipping {
        color: #fccd15;
    }

    .products .item.promo .item-totals .shipping span {
        color: #fccd15;
    }
}