:root{
    --black: #242627;
    --blackhover: #444647;
    --white: #fff;
    --white2: #d4d6db;
    --grey: #f4f6f7;
    --grey2: #e4e6e7;
    --grey3: #d4d6d7;
    --grey4: #747677;
    --grey5: #545657;
    --hover: #f2f2f2;
    --hover2: #eaeaea;
    --yellow: #f7b027;
    --yellowhover: #f9c153;
    --green: #060;
    --greenhover: #080;
    --blue: rgb(22, 146, 146);
    --bluehover: rgb(29, 175, 175);
    --radius: 6px;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--black);
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--grey);
}
h1 {
    margin: 40px 0;
}
h2 {
    margin: 20px 0;
}
h3 {
    margin: 10px 0;
}
p, ul {
    line-height: 24px;
    text-align: justify;
    text-justify: auto;
}
img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
figcaption {
    color: var(--grey5);
    font-size: 14px;
}
a {
    color: inherit;
    text-decoration: inherit;
}
input, select {
    height: 50px;
    padding: 0 10px;
    border: 1px solid var(--grey2);
    border-radius: var(--radius);
    width: 100%;
    background-color: #fff;
    transition: .2s;
}
input:focus {
    border-color: var(--grey3);
}
input.error, select.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    transform: scale(1.1);
}
button, .btn {
    cursor: pointer;
    transition: .2s;
}
button.active, .btn:active {
    transform: scale(.96);
}
button.loading, .btn.loading {
    cursor: wait;
    opacity: .5;
}
.relative {
    position: relative;
}
.hidden {
    display: none !important;
}
header {
    background-color: var(--black);
    color: var(--white);
    position: fixed;
    inset: 0 0 auto 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    z-index: 100;
    border-bottom: 2px solid var(--grey);
}
header > div {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 50px;
    height: 80px;
    justify-content: space-between;
    position: relative;
}
header :where(#logo-container, #icons-container) {
    width: 155px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
header #logo-container {
    height: 100%;
}
header #logo-container a {
    width: 100%;
    height: 60px;
    display: block;
}
header #logo-container img {
    max-width: 100%;
    max-height: 100%;
}
header #icons-container {
    justify-content: flex-end;
}
header #icons-container > a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header #icons-container img {
    width: 24px;
    height: 24px;
    transition: .2s;
}
header #icons-container > a:hover > img {
    width: 30px;
    height: 30px;
}
header #icon-cart {
    position: relative;
}
header #icon-cart.active::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cc0000;
    z-index: 2;
}
header #icon-cart.active::after {
    content: "";
    position: absolute;
    inset: -4px -4px auto auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(204, 0, 0, .8);
    z-index: 1;
    transform: scale(1);
    opacity: 0.6;
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}
@keyframes shake {
    0% { transform: translateX(0); }
    5% { transform: translateX(-3px) rotate(-3deg); }
    10% { transform: translateX(3px) rotate(3deg); }
    15% { transform: translateX(-3px) rotate(-3deg); }
    20% { transform: translateX(3px) rotate(3deg); }
    25%, 100% { transform: translateX(0); }
}
#icon-cart.active img {
    animation: shake 0.5s ease-in-out infinite;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-play-state: running;
    animation-duration: 5s;
}
header #icon-order-cart {
    position: absolute;
    inset: 50% 20px auto auto;
    transform: translateY(-50%);
    display: none;
}
footer {
    background-color: var(--black);
    color: var(--white);
    margin-top: 40px;
    padding: 40px 20px;
}
footer .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
footer .title {
    font-weight: 600;
    font-size: 18px;
}
footer .container > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
footer a {
    font-size: 14px;
}
footer a:hover {
    text-decoration: underline;
}
.container {
    width: 1310px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
#main-container {
    flex: 1;
}
#open-menu-mobile {
    display: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
#close-menu-mobile {
    display: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
#navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
    height: 100%;
    line-height: 50px;
}
#navigation li {
    position: relative;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 100%;
}
#navigation li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background-color: #fff;
    transition: .2s ease-in-out;
    transform: translateX(-50%);
}
#navigation li:hover::before {
    width: 100%;
}
#navigation li:not(:hover)::before {
    width: 0;
}
#navigation li .sub {
    transition: .2s ease-in-out;
    background-color: #fff;
    color: var(--black);
    position: absolute;
    left: 50%;
    bottom: -20px;
    min-width: 100%;
    transform: translate(-50%, 100%);
    border: 1px solid var(--grey2);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
}
#navigation li:hover .sub {
    bottom: 0;
    visibility: visible;
    opacity: 1;
}
#navigation a {
    display: block;
    white-space: nowrap;
}
#navigation li .sub a{
    padding: 0 20px;
}
#navigation li .sub a:hover {
    background-color: var(--grey2);
}
@media (max-width: 1290px){
    header > div {
        justify-content: space-between;
    }
    header :where(#logo-container, #icons-container) {
        width: auto;
    }
    #open-menu-mobile {
        display: flex;
    }
    #navigation {
        display: none;
        position: fixed;
        inset: 0 0 auto 0;
        height: 100%;
        z-index: 999;
        background-color: #fff;
        overflow: auto;
    }
    #navigation.open {
        display: block;
    }
    #navigation li {
        display: block;
        height: auto;
        background-color: #fff;
        color: var(--black);
        padding: 0;
        width: fit-content;
    }
    #navigation li::before {
        display: none;
    }
    #navigation li a {
        padding: 0 20px;
        font-weight: 600;
    }
    #navigation li a:hover {
        background-color: var(--grey2);
    }
    #navigation li .sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
    }
    #navigation li .sub a {
        font-weight: 400;
    }
    #navigation.open + #close-menu-mobile {
        display: block;
    }
}
nav .breadcrumb {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    font-size: 14px;
}
nav .breadcrumb li {
    position: relative;
    text-transform: capitalize;
}
nav .breadcrumb li:last-child {
    font-weight: 500;
}
nav .breadcrumb li:not(:first-child)::before {
    content: ">";
    margin-right: 10px;
    color: #666;
}
.products {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 0;
}
.productCard {
    width: calc(25% - 15px);
    border: 1px solid var(--grey2);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    position: relative;
}
@media (max-width: 1023px){
    .productCard {
        width: calc(50% - 10px);
    }
}
@media (max-width: 550px){
    .productCard {
        width: 100%;
    }
}
.productCard .picture-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}
.productCard .picture-container img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.productCard .picture-container img + img, .productCard .picture-container:hover img {
    display: none;
}
.productCard .picture-container:hover img + img {
    display: block;
    transform: translate(-50%, -50%) scale(2);
}
.productCard .text-container {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.productCard h3 {
    font-size: 16px;
    font-weight: 500;
}
.productCard .cardFooter {
    display: flex;
    justify-content: space-between;
}
.productCard .quickAddToCart,
.productCard .quickSoldOut {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--yellow);
}
.productCard .quickAddToCart:hover {
    background: var(--yellowhover);
}
.productCard[data-stock="0"] > * {
    opacity: .5;
}
.productCard[data-stock="0"]:before {
    content: "Rupture";
    position: absolute;
    inset: 5px auto auto 5px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: var(--radius);
    background-color: var(--grey);
}
.productCard .quickSoldOut {
    background: var(--grey2);
}
.price {
    display: flex;
    font-weight: 700;
    gap: 2px;
}
.price .price1 {
    font-size: 24px;
}
.price .price2 {
    font-size: 14px;
}
.price-decimal {
    position: absolute;
    opacity: 0;
}
.v_product nav .breadcrumb {
    margin-bottom: 20px;
}
.v_product .product-flex {
    display: flex;
    gap: 20px;
}
.v_product .pictures-container {
    display: flex;
    gap: 10px;
}
.v_product .pictures-container .pictures {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.v_product .pictures-container .pictures .updateMainProductPicture {
    width: 64px;
    height: 64px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
}
.v_product .pictures-container .pictures .updateMainProductPicture:hover {
    border: 1px solid var(--grey3);
}
.v_product .pictures-container .pictures img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.v_product #productMainPicture {
    width: 600px;
    padding-top: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.v_product #productMainPicture img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#zoomLens {
    position: fixed;
    z-index: 9999;
    width: 300px;
    height: 300px;
    border: 2px solid #333;
    border-radius: 50%;
    background-repeat: no-repeat;
    pointer-events: none;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.v_product h1 {
    margin: 0 0 20px;
}
#product-cart-infos {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#product-cart-infos[data-stock="1"] *[data-stock="0"],
#product-cart-infos[data-stock="0"] *[data-stock="1"],
.productCard[data-stock="1"] *[data-stock="0"],
.productCard[data-stock="0"] *[data-stock="1"] {
    display: none !important;
}
.setQuantity {
    display: flex;
}
.setQuantity :where(button, div) {
    display: block;
    width: 30px;
    height: 50px;
    background-color: var(--grey2);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.setQuantity > div {
    border-left: 1px solid var(--grey3);
    border-right: 1px solid var(--grey3);
    cursor: default;
}
.setQuantity button:hover {
    background-color: var(--grey3);
}
.setQuantity.loading button,
.v_cart #products.loading .setQuantity button,
.v_cart #products.loading .removeProductCart {
    cursor: wait;
}
#addToCart {
    background-color: var(--yellow);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius);
    font-weight: 500;
}
#addToCart:hover {
    background-color: var(--yellowhover);
}
#product-cart-infos[data-loading="1"] #addToCart {
    cursor: wait;
    transform: none;
}
#productSoldOut {
    background-color: var(--grey2);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius);
    font-weight: 500;
    opacity: .7;
    cursor: not-allowed;
    transform: none !important;
}
.shopStock {
    color: var(--green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.shopShipping {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.freeShipping {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--green);
    color: #fff;
    border-radius: 20px;
    width: fit-content;
}
.v_product .characteristics .title {
    margin-bottom: 10px;
    font-weight: 500;
}
.v_product .characteristics ul {
    padding-left: 20px;
}
@media (max-width: 1023px){
    .v_product .product-flex {
        flex-direction: column;
    }
    .v_product .pictures-container {
        flex-direction: column-reverse;
    }
    .v_product .pictures-container .pictures {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .v_product #productMainPicture {
        width: 100%;
    }
    .v_product {
        padding-bottom: 50px;
    }
    #addToCart, #productSoldOut {
        position: fixed;
        inset: auto 0 0 0;;
        z-index: 90;
        border-radius: 0;
    }
}
#addToCartPopup {
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0009;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}
#addToCartPopup.open {
    visibility: visible;
    opacity: 1;
}
#addToCartPopup .popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    width: 550px;
}
#addToCartPopup .popup-content p {
    text-align: center;
}
#addToCartPopup .gift {
    padding: 20px 0;
    text-align: center;
}
#addToCartPopup .gift svg {
    width: 80px;
}
#addToCartPopup .popup-content .close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
#addToCartPopup .buttons {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#addToCartPopup :where(button, a) {
    height: 40px;
    flex: 1 1 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: var(--radius);
    border: none;
    font-size: 16px;
}
#addToCartPopup a {
    background-color: var(--yellow);
}
#addToCartPopup a:hover {
    background-color: var(--yellowhover);
}
#addToCartPopup button {
    background-color: var(--grey2);
}
#addToCartPopup button:hover {
    background-color: var(--grey3);
}
@media (max-width: 600px){
    #addToCartPopup .popup-content {
        width: 100%;
        border-radius: 0;
    }
    #addToCartPopup .buttons {
        flex-direction: column;
    }
    #addToCartPopup :where(button, a) {
        width: 100%;
        flex: inherit;
    }
}
.v_cart #products {
    position: relative;
}
.v_cart #products.loading {
    height: 168px;
    background-color: #fff;
}
.v_cart #products.loading::before {
    content: "";
    position: absolute;
    inset: 20px auto auto 20px;
    width: 128px;
    height: 128px;
    background-color: var(--grey3);
    border-radius: var(--radius);
}
.v_cart #products.loading::after {
    content: "";
    position: absolute;
    inset: 75px 20px auto 168px;
    height: 18px;
    background-color: var(--grey3);
    border-radius: var(--radius);
}
.v_cart #products.loading p,
.v_cart #products:where(.loading,.empty) + .cartFooter a,
.v_cart #products.empty + .cartFooter .total,
.v_cart #products.loading .product {
    visibility: hidden;
    opacity: 0;
}
.v_cart #products.loading + .cartFooter .total {
    color: transparent;
    width: 88px;
    height: 28px;
    border-radius: var(--radius);
    background-color: var(--grey3);
}
.v_cart #products .product {
    background-color: #fff;
    padding: 20px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.v_cart #products .product[data-stock="0"] *[data-stock="1"],
.v_cart #products .product[data-stock="1"] *[data-stock="0"] {
    visibility: hidden;
    opacity: 0;
}
.v_cart #products .product[data-stock="0"]:before {
    content: "Rupture";
    position: absolute;
    inset: 5px auto auto 5px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: var(--radius);
    background-color: var(--grey);
}
.v_cart #products .product[data-stock="0"] > div > div:not(.removeProductCart) {
    opacity: .5;
}
.v_cart #products .product > div {
    display: flex;
    align-items: center;
    gap: 20px;
}
.v_cart #products .product > div:first-child {
    flex-grow: 1;
}
.v_cart #products .product > div:last-child {
    min-width: 400px;
    justify-content: space-between;
}
.v_cart #products .product > div > div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.v_cart #products .product .picture {
    width: 128px;
    height: 128px;
    min-width: 0;
}
.v_cart #products .product .name {
    flex-grow: 1;
    justify-content: flex-start;
    font-weight: 600;
}
.v_cart #products .product > div:first-child .removeProductCart {
    display: none;
    background-image: url('/img/close.svg');
}
.v_cart #products .product .price {
    font-weight: 400;
}
.v_cart #products .product .removeProductCart {
    background: no-repeat center / 20px;
    background-image: url('/img/trash.svg');
    min-width: 0;
    width: 50px;
    height: 50px;
}
.v_cart .cartFooter {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}
.v_cart .cartFooter > div {
    display: flex;
    flex-direction: column;
    gap: 40px;

}
.v_cart .cartFooter > div:last-child {
    align-items: flex-end;
}
.v_cart .cartFooter #promotionContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v_cart .cartFooter #promotionInput {
    padding-right: 80px;
}
#promotionContainer #promotionInput {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}
.v_cart .cartFooter #promotionInputContainer {
    position: relative;
}
#promotionContainer #promotionInputContainer.loading,
#promotionContainer #promotionInputContainer.loading input,
#promotionContainer #promotionInputContainer.loading button {
    cursor: wait;
    opacity: .7;
}
.v_cart .cartFooter #applyPromotion {
    position: absolute;
    inset: 0 0 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.v_order #applyPromotion {
    background-color: var(--grey3);
    border: none;
    border-radius: var(--radius);
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.v_cart .cartFooter .total {
    font-weight: 700;
    font-size: 24px;
}
.v_cart .cartFooter .btn {
    background-color: var(--yellow);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius);
    font-weight: 500;
    padding: 0 20px;
}
.v_cart .cartFooter .btn:hover {
    background-color: var(--yellowhover);
}
@media (max-width: 800px){
    .v_cart #products .product {
        flex-direction: column;
        align-items: flex-start;
    }
    .v_cart #products .product > div {
        width: 100%;
    }
    .v_cart #products .product > div:last-child {
        min-width: 0;
    }
    .v_cart #products .product > div:last-child > div {
        min-width: 0;
    }
    .v_cart #products .product > div:last-child .removeProductCart {
        display: none;
    }
    .v_cart #products .product > div:first-child .removeProductCart {
        display: block;
    }
}
body:where(.v_order, .v_pay) {
    padding-top: 0;
}
body:where(.v_order, .v_pay) #navigation,
body:where(.v_order, .v_pay) #open-menu-mobile,
body:where(.v_order, .v_pay) #icons-container,
body:where(.v_order, .v_pay) footer {
    display: none;
}
body:where(.v_order, .v_pay) header {
    background-color: unset;
    border-bottom: 1px solid var(--grey2);
    color: var(--black);
    position: static;
}
body:where(.v_order, .v_pay) header > div {
    justify-content: center;
}
body:where(.v_order, .v_pay) header #logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
body:where(.v_order, .v_pay) header #icon-order-cart {
    display: block;
}
.double-input {
    display: flex;
    gap: 10px;
}
.orderContainer {
    display: flex;
}
.orderContainer > div {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
}
.orderContainer > div:first-child {
    padding-right: 40px;
    border-right: 1px solid var(--grey3);
}
.orderContainer > div:last-child {
    padding-left: 40px;
}
#verifOrder {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background-color: var(--yellow);
    margin-top: 20px;
    border-radius: var(--radius);
}
#verifOrder:hover {
    background-color: var(--yellowhover);
}
.orderContainer .product {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.orderContainer .product .picture {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid var(--grey3);
    border-radius: var(--radius);
    overflow: hidden;
}
.orderContainer .product .quantity {
    width: 24px;
    height: 24px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--grey4);
    color: #fff;
    inset: -12px auto auto 50px;
}
.orderContainer .product .name {
    flex-grow: 1;
}
.orderContainer .product .price {
    font-weight: 400;
}
.orderContainer .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
}
.orderContainer .line:last-child {
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    align-items: flex-end;
}
.orderContainer .line:last-child > div {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.orderContainer .line .devise {
    font-weight: 200;
    font-size: 14px;
}
.orderContainer #products {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.orderContainer #products.loading {
    height: 64px;
}
.orderContainer #products.loading::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background-color: var(--grey3);
}
.orderContainer #products.loading::after {
    content: "";
    position: absolute;
    inset: 25px 0 auto 74px;
    height: 18px;
    border-radius: var(--radius);
    background-color: var(--grey3);
}
.orderContainer #products.loading ~ .line {
    color: transparent;
}
.orderContainer #products.loading ~ .line::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 150px;
    height: 18px;
    border-radius: var(--radius);
    background-color: var(--grey3);
}
.orderContainer #products.loading ~ .line::after {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 65px;
    height: 18px;
    border-radius: var(--radius);
    background-color: var(--grey3);
}
@media (max-width: 1023px){
    .orderContainer {
        flex-direction: column-reverse;
        gap: 30px;
        padding-bottom: 40px;
    }
    .orderContainer > div:first-child,
    .orderContainer > div:last-child {
        border: none;
        padding: 0;
        width: 100%;
    }
}
.v_thanks ul,
.v_cancel ul {
    line-height: 40px;
}
.v_thanks .order-details p:last-child,
.v_cancel .order-details p:last-child {
    margin-top: 40px;
    text-decoration: underline;
}
.h1bg {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    background-color: var(--black);
}
.h1bg .title {
    color: #eee;
    text-shadow: 3px 3px 1px rgba(0,0,0,.7);
    font-size: 2vw;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
@media (max-width: 1290px){
    .h1bg .title {
        font-size: 3.5vw;
    }
}
@media (max-width: 800px){
    .h1bg .title {
        font-size: 4.6vw;
    }
}
.h1banner {
    width: 100%;
    padding-top: 30%;
    position: relative;
}
.h1banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.h1banner .title {
    position: absolute;
    inset: 20px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    text-shadow: 3px 3px 1px rgba(0,0,0,.7);
    font-size: 3vw;
    font-weight: 700;
    margin: 0;
}
.img-txt {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}
@media(max-width: 1094px){
    .img-txt {
        justify-content: center;
    }
    .img-txt .img {
        order: 1;
    }
}
.img-txt.--reverse .img {
    order: 1;
}
.img-txt > div {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}
.img-txt .img {
    align-items: center;
}
.img-txt .txt {
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background-color: var(--hover2);
}
.img-txt .txt .title {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
}
.faq {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.faq .title2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.faq-item {
    border-bottom: 1px solid #ddd;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 16px;
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
    cursor: pointer;
}
.faq-question:hover {
    color: #0056b3;
}
.chevron {
    font-size: 1.2rem;
}
.faq-answer {
    padding: 10px 0;
    display: none;
    max-height: 0;
    overflow: hidden;
}
.faq-answer.open {
    display: block;
    max-height: inherit;
}
.faq-question.active .chevron {
    transform: rotate(180deg);
}
.faq-question.active {
    color: #0056b3;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.login-form {
    margin-top: 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 6px;
    width: 400px;
    max-width: 100%;
}
.login-form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-form button {
    background: #0077cc;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}
.login-form button:hover {
    background: #005fa3;
}
.banner-error {
  --bg: hsl(0 85% 97%);
  --border: hsl(0 70% 85%);
  --text: hsl(0 60% 25%);

  display: flex;
  align-items: flex-start;
  gap: .75rem;

  padding: .875rem 1rem;
  margin: .75rem 0;

  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid hsl(0 72% 50%);
  border-radius: .5rem;

  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  position: relative;
}
.banner-error::before {
  content: "⚠️";
  line-height: 1;
  font-size: 1rem;
  margin-top: .125rem;
}
.banner-error a {
  color: inherit;
  text-decoration: underline;
}
@media (prefers-reduced-motion: no-preference) {
  .banner-error {
    animation: bannerErrorIn .2s ease-out;
  }
  @keyframes bannerErrorIn {
    from { transform: translateY(-4px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
}
.btn-grey {
    background-color: var(--grey3);
    padding: 5px 10px;
    border-radius: 5px;
}