@font-face {
    font-family: "AvantGardeITCbyBT-Book";
    src: url("../fonts/AvantGardeITCbyBT-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Abel-Regular";
    src: url("../fonts/Abel-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-primary-dark: #07364b;
    --color-primary-light: #c1c6c8;

    --color-supplementary-pink: #d5606b;
    --color-supplementary-blue: #abd2d2;
    --color-supplementary-red: #da291c;
    --color-supplementary-gray: #f8f8f8;

    --text-color-dark: #07364b;
    --text-color-light: white;

    --font-size-title: 2.4rem;
    --font-size-bodyLarger: 1.8rem;
    --font-size-body: 1.5rem;
    --font-size-small: 1.2rem;

    --font-heading: "AvantGardeITCbyBT-Book", sans-serif;
    --font-body: "Abel-Regular", sans-serif;
}

* {
    font-family: var(--font-body);
}

html {
    font-size: 12px;
}

a {
    text-decoration: none;
    color: var(--color-primary-dark);
}

img {
    width: 100%;
}

section {
    padding: 8rem 0;
    background-image: url("https://dvzghilqyx8nc.cloudfront.net/images/about-us/company-bg.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden;
}

body {
    background-color: var(--color-supplementary-gray);
}

/* Main Components */
.title-section {}

.auth-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-supplementary-gray);
    padding: 5rem 0;

    input::placeholder,
    textarea::placeholder {
        color: #999;
    }
}

.content {
    margin-top: 3rem;
}

.card {
    background-color: var(--color-primary-dark);
    padding: 2rem;
}

.form-control {
    background-color: #f8f8f8;
}

.custom-input-form {
    border: 0;
    padding: 1rem;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 1px 1px 2px 0px #c9c9c9;
}

.custom-input-form:disabled, .custom-textarea-form:disabled {
    opacity: 0.6;
    background-color: rgb(255, 255, 255);
    box-shadow: 1px 1px 2px 0px #c9c9c9;
}

.custom-textarea-form {
    border: 0;
    padding: 1rem;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 1px 1px 2px 0px #c9c9c9;
    appearance: none;
}

.custom-select-form {
    border: 0;
    padding: 1rem;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 1px 1px 2px 0px #c9c9c9;
    appearance: none;
}

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

.custom-select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8em;
    color: #495057;
}

input::placeholder {
    color: #9f9f9f;
}

hr {
    border: 1px solid;
    color: var(--color-supplementary-blue);
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    opacity: 1;
}

.pad-2 {
    padding: 3rem;
}

.desktop-px-4 {
    padding: 0 4rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
}

.mobile-nav {
    display: none !important;
}

/* Main Components */

/* Loader */
.overlay2 {
    /* box-shadow: inset 0px 0px 0 2000px rgba(0, 68, 145, 0.3); */
    background: var(--color-supplementary-blue);
    position: absolute;
    display: none;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    z-index: 9999;
}

.loader {
    opacity: 1 !important;
    width: 60px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,
            var(--color-primary-dark) 90%,
            #0000);
    background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
    background-size: calc(100% / 3) 50%;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    20% {
        background-position: 0% 0%, 50% 50%, 100% 50%;
    }

    40% {
        background-position: 0% 100%, 50% 0%, 100% 50%;
    }

    60% {
        background-position: 0% 50%, 50% 100%, 100% 0%;
    }

    80% {
        background-position: 0% 50%, 50% 50%, 100% 100%;
    }
}

/* Loader */

/* Text */
.title {
    font-size: var(--font-size-title);
    font-weight: bold;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--text-color-dark);
    line-height: 40px;
}

.larger {
    font-size: 4rem;
}

.subtitle {
    font-size: var(--font-size-small);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--text-color-dark);
}

.text {
    font-size: var(--font-size-body);
    color: var(--text-color-dark);
    /* letter-spacing: 1px; */
    letter-spacing: 0.02em;
    word-spacing: 0.08em;
    line-height: 24px;
}

.text.large {
    font-size: var(--font-size-bodyLarger);
    /* font-weight: bolder; */
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.title.products {
    font-size: var(--font-size-bodyLarger);
    font-family: var(--font-heading);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.text.products {
    line-height: 20px;
}

.text.small {
    font-size: var(--font-size-small);
}

.text.label {
    padding: 0 0.5rem;
    font-family: var(--font-heading);
    text-align: start;
}

.text-light {
    color: var(--text-color-light);
}

.text-primary {
    color: var(--color-primary-dark) !important;
}

.disabled-text {
    opacity: 50%;
}

.justified {
    text-align: justify;
}

.justified-d {
    text-align: justify;
}

.centered {
    text-align: center;
}

.row-centered {
    align-items: center;
    justify-content: center;
}

.hyperlink a {
    text-decoration: underline;
    color: var(--color-primary-dark);
    font-weight: bold;
}

.hyperlink a:hover {
    color: var(--color-supplementary-pink) !important;
}

.highlight {
    color: var(--color-supplementary-pink);
}

.text-error {
    color: red;
}

.text-success {
    color: green;
}

.alert {
    border-radius: 0.5rem;
    color: white;
    padding: 0.5rem;
    margin: 0;
    width: 50%;
}

.alert.success {
    background-color: var(--color-primary-dark);
}

.alert.error {
    background-color: var(--color-supplementary-red);
}

/* Text */

/* Button */
.button-main {
    display: inline-block;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    width: 15rem;
    background-color: var(--color-primary-dark);
    color: white;
    border: 1px solid var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: var(--font-size-small);
    text-transform: uppercase;
}

.button-main:hover {
    background-color: white !important;
    color: var(--color-primary-dark) !important;
    border: 1px solid var(--color-primary-dark);
}

.button-main.red {
    background-color: var(--color-supplementary-pink) !important;
    color: var(--color-supplementary-gray);
    border: 1px solid var(--color-supplementary-pink);
}

.button-main.red:hover {
    background-color: white !important;
    color: var(--color-supplementary-pink) !important;
    border: 1px solid var(--color-supplementary-pink);
}

.button-main.alert {
    width: 10rem;
    margin: 1rem 0.5rem;
}

.button-main.alert:hover {
    background-image: none !important;
    width: 10rem;
    margin: 1rem 0.5rem;
}

/* Button */

/* Navbar */
.navbar {
    background-color: var(--color-supplementary-gray);
    box-shadow: 1px 1px 2px 0px #c9c9c9;
}

.nav-link {
    position: relative;
    font-size: var(--font-size-body);
    font-family: var(--font-heading);
}

.nav-link.active {
    color: var(--color-supplementary-pink) !important;
    /* text-decoration: underline; */
}

.nav-item a:hover {
    color: var(--color-supplementary-pink) !important;
}

#cart a:hover {
    .cart-badge {
        background-color: var(--color-supplementary-pink) !important;
    }
}

.cart-badge {
    position: absolute;
    bottom: 1px;
    right: 3px;
    transform: translate(10%, 10%);
    background-color: var(--color-primary-dark);
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dropdown-menu {
    background-color: white;
    --bs-dropdown-min-width: 6rem !important;
    right: 10%;
}

.dropdown-item:hover {
    /* color: var(--color-primary-light) !important; */
}

.nav-logo {
    width: 10rem;
}

.navbar-nav {
    display: flex;
    gap: 2rem;
}

.navbar-toggler {
    border: 0;
}

.burger {
    margin: 6px 0;
    position: relative;
    width: 32px;
    height: 28px;
    background: transparent;
    cursor: pointer;
    display: block;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--color-primary-dark);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 23px;
    left: 5px;
}

/* styles.css */
.dropdown:hover .dropdown-menu {
    font-weight: bold;
    display: block;
}

.dropdown-menu {
    margin-top: 0;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Navbar */

/* Loader */

.loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.8;
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 200px;
    height: 60px;
    position: relative;
    z-index: 1;
}

.circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-supplementary-blue);
    left: 15%;
    transform-origin: 50%;
    animation: circle7124 0.5s alternate infinite ease;
}

@keyframes circle7124 {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

.circle:nth-child(2) {
    left: 45%;
    animation-delay: 0.2s;
}

.circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}

.shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-supplementary-gray);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow046 0.5s alternate infinite ease;
}

@keyframes shadow046 {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: 0.7;
    }

    100% {
        transform: scaleX(0.2);
        opacity: 0.4;
    }
}

.shadow:nth-child(4) {
    left: 45%;
    animation-delay: 0.2s;
}

.shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}

/* Loader */

/* Homepage - Main Banner */
#mainBanner {
    padding: 0;
}

.main-banner-bg {
    aspect-ratio: 9/10;
    display: flex;
    align-items: start;
    background-size: cover;
    background-position: center;
    padding: 5rem;
}

/* Homepage - Main Banner */

/* Homepage - Products */
#products {
    padding: 4rem;
    background-image: none;

    .product-img {
        width: 95%;
        overflow: hidden;
        position: relative;
    }

    .product-img img {
        aspect-ratio: 3/4;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .photo-hover {
        position: absolute;
        top: 0;
        left: 0%;
        opacity: 0;
        transition: opacity 0.8s ease;
    }

    .product-img:hover .photo {
        opacity: 0;
        transition: opacity 0.8s ease;
    }

    .product-img:hover .photo-hover {
        opacity: 1;
    }

    a:hover .text.large {
        text-decoration: underline;
        color: var(--color-supplementary-pink);
    }
}

figure.zoom {
    & img:hover {
        opacity: 0;
    }

    img {
        transition: opacity 0.5s;
        display: block;
        width: 100%;
    }

    background-position: 50% 50%;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.product-bg {
    aspect-ratio: 3/2;
    background-position: center;
    background-size: cover;
    padding: 3rem 6.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: inset 0px 0px 0 2000px rgba(0, 0, 0, 0.3);
}

#products .product-bg:hover {
    transition: all 0.6s ease;
    box-shadow: inset 0px 0px 0 2000px rgba(0, 0, 0, 0.7);
}

/* Homepage - Products */

/* Features */
#features {
    padding: 0;

    img {
        aspect-ratio: 4/5;
        object-fit: cover;
    }

    .feature-text {
        padding: 2rem 8rem;
    }
}

/* Features */

/* Homepage - About Us */
#about {
    background-image: url("https://dvzghilqyx8nc.cloudfront.net/images/home/about-bg.webp");
    background-size: cover;
    background-position: center;
    box-shadow: inset 0px 0px 0 2000px rgba(0, 0, 0, 0.2);

    .button-main {
        padding: 0.5rem 2rem;
        border-radius: 10rem;
        background-color: white;
        color: var(--color-supplementary-pink);
    }

    .button-main:hover {
        background-color: var(--color-supplementary-pink);
        color: white !important;
    }
}

/* Homepage - Abous Us */

/* Product Detail Page */
#productDetailHeader,
#productDetailBody {
    padding: 4rem 0 !important;
}

#productDetailHeader {
    background-image: url("https://dvzghilqyx8nc.cloudfront.net/images/product-detail-bg.webp");

    .large {
        font-size: 3rem;
    }
}

/* #productDetailHeader .swiper-slide img {
    aspect-ratio: 4/3;
    object-fit: cover;
} */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 2rem !important;
    bottom: 0 !important;
    text-align: center;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    border: 1px solid white;
    background-color: var(--color-primary-dark) !important;
}

.gallerySwiper {
    height: 80%;
    width: 100%;
}

.thumbnailSwiper {
    height: 20%;
    box-sizing: border-box;
}

.gallerySwiper img,
.thumbnailSwiper img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.thumbnailSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.thumbnailSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.qtyBox {
    border: 1px solid var(--color-primary-dark);
    border-radius: 4px;
    padding: .5rem;
}

/* Tabs */
.tabs {
    margin-bottom: 2rem;
    text-align: center;
}

.tab {
    padding: 0 6rem;
    cursor: pointer;
    background-color: transparent;
    opacity: 0.5;
    border: none;
    font-family: var(--font-heading);
    transition: all 0.5s ease;
}

.tab:hover {
    font-size: 2.2rem;
    color: var(--color-supplementary-pink);
}

.tab.active {
    opacity: 1;
    font-weight: 500;
    font-size: 2.2rem;
    color: var(--color-supplementary-pink);
}

.grid {
    display: flex;
    flex-wrap: wrap;
}

.grid-item {
    width: 100%;
}

.element-item {
    width: 100px;
    height: 100px;
    background-color: #bada55;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-diff {
    ul {
        /* background-color: gray; */
        box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
        background-color: var(--color-primary-dark);
        padding: 1rem 3rem;
        border-radius: 0.3rem;
    }

    li {
        margin-top: 0.1rem;
        color: var(--text-color-light);
        font-size: var(--font-size-body);
    }

    li::marker {
        color: var(--color-supplementary-pink);
    }
}

.ingredients {
    table {
        /* background-color: var(--color-primary-dark); */
        background-color: var(--color-supplementary-blue);

        .text {
            color: var(--color-primary-dark) !important;
        }
    }

    th {
        border: 3px solid var(--color-primary-dark);
        padding: 10px;
        text-align: center;
    }

    td {
        border: 3px solid var(--color-primary-dark);
        padding: 1rem 3rem;
    }

    img {
        aspect-ratio: 1/1;
        object-fit: cover;
    }
}

.text-ingredients {
    height: 6rem;
    text-align: center;
}

.step-bg {
    /* border: 1px solid var(--color-primary-dark); */
    background-color: var(--color-primary-dark);
    border-radius: 3rem;
    padding: 1rem;

    img {
        aspect-ratio: 1/1;
        width: 80%;
    }
}

.bg-step-seq {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid var(--color-supplementary-pink); */
    background-color: white;
    border-radius: 100px;
    aspect-ratio: 1/1;
    /* width: 50%; */

    .text {
        /* color: var(--color-supplementary-pink) !important; */
        margin-bottom: 0 !important;
    }
}

.step {
    .text {
        color: var(--text-color-light);
        font-size: var(--font-size-small);
        margin-bottom: 0 !important;
    }
}

.step-flex {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-number {
    display: flex;
    background-color: white;
    color: var(--color-primary-dark);
    padding: 1rem;
    height: 3rem;
    width: 3rem;
    border-radius: 10rem;
    align-items: center;
    justify-content: center;
}

.routines {
    display: flex;
    /* align-items: center; */
    justify-content: start;
    /* border: 1px solid var(--color-primary-dark); */
    /* border-radius: 1rem; */
    /* background-color: var(--color-primary-dark); */
    /* padding: 1rem; */
    /* height: 100%; */

    img {
        height: 27rem;
        object-fit: contain;
        object-position: left;
    }
}

.row-flex-responsive {
    flex-direction: column;
}

/* Product Detail Page */

/* Company Page */

.company-banner-bg {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    padding: 4rem 12rem;
    background-image: url("https://dvzghilqyx8nc.cloudfront.net/images/about-us/company-banner.webp");
}

#mission-commitment {}

#mission-commitment img {
    aspect-ratio: 4/5;
    object-fit: cover;
}

#formula {
    background-image: none !important;
}

#formula img {
    aspect-ratio: 3/2;
    object-fit: cover;
}

#community {
    padding: 8rem 20rem !important;
    background-image: none !important;
    background-color: var(--color-primary-dark);
}

/* .photo {
    aspect-ratio: 1/1;
    background-size: cover;
    width: 60%;
    transition: opacity 0.5s ease;
} */

/* .photo-300x400 {
    aspect-ratio: 3/4;
    background-size: cover;
} */

.mobile-slider {
    display: none;
}

/* Company Page */

/* Cart Page */

#cartPage {
    padding: 12rem;
}

.cart-products {
    padding: 4rem 6rem;
}

.text-cart {
    font-size: var(--font-size-body);
    font-family: var(--font-heading);
}

#cartProducts,
#productDetailHeader {
    svg:hover {
        color: var(--color-supplementary-pink);
        cursor: pointer;
    }
}

.remove:hover {
    color: var(--color-supplementary-pink);
    cursor: pointer;
}

.disabled {
    opacity: 0.5 !important;
    pointer-events: none;
    color: #aaa;
    /* Optional: change color to gray */
}

.total-box {
    background-color: lightgrey;
}

/* Cart Page */

/* Checkout Page */

#checkoutPage {
    padding: 0;
}

.checkoutLeft {
    padding: 6rem 5rem;
}

.checkoutRight {
    padding: 9.3rem 5rem;
}

/* Searchable Dropdown */
.select-container {
    position: relative;
    width: 100%;
}

.custom-select {
    display: none;
}

.select-trigger {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: white;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 1px 1px 2px 0px #c9c9c9;
    opacity: 1;
}

.select-trigger.placeholder {
    color: #999;
}

.select-search {
    width: 100%;
    padding: 12px 16px;
    /* font-size: 16px; */
    border: 1px solid #0066cc;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    box-sizing: border-box;
    margin-bottom: -1px;
    display: none;
}

.select-search:focus {
    outline: none;
}

#country-code-dropdown {
    .dropdown-content {
        width: 400%;
    }

    .select-trigger {
        justify-content: start;
    }

    .code-size {
        font-size: 14px;
    }

    .arrow {
        right: 4px;
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 0 0 4px 4px;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    text-align: start;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

.dropdown-open .dropdown-content,
.dropdown-open .select-search {
    display: block;
}

.dropdown-open .select-trigger {
    border-radius: 0;
    border-color: #0066cc;
    display: none;
}

.arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Searchable Dropdown */

/* Checkout Page */

/* Footer */
#footer {
    background-image: none;
    background-color: #ededed !important;
    padding: 0;

    a:hover {
        color: var(--color-supplementary-pink);
    }
}

.footer-highlight-text {
    text-decoration: underline;
    color: #8f8f8f !important;
    cursor: pointer;
}

#tnc-list {

    ol {
        counter-reset: item;
    }

    ol>li {
        counter-increment: item;
    }

    ol ol>li {
        display: block;
    }

    ol ol>li:before {
        content: counters(item, ".") ". ";
        margin-left: -20px;
    }

    li {
        font-size: var(--font-size-body);
        color: var(--text-color-dark);
        /* letter-spacing: 1px; */
        letter-spacing: 0.02em;
        word-spacing: 0.08em;
        line-height: 24px;
        text-align: start;
    }

    li::marker {
        font-weight: bold !important;
    }
}

.no-scroll {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.83;
    z-index: 9999;
    display: block;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 3rem;
    border-radius: 5px;
    z-index: 10000;
    width: 40rem;
    max-height: 95%;
    overflow-y: auto;
}

.overlay-tnc-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 3rem;
    border-radius: 5px;
    z-index: 10000;
    width: 55rem;
    max-height: 95%;
    overflow-y: auto;
}

.overlay-privpol-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 3rem;
    border-radius: 5px;
    z-index: 10000;
    width: 55rem;
    max-height: 95%;
    overflow-y: auto;
}

.input-container {
    position: relative;
}

.input-container input[type="text"] {
    font-size: 16px;
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--color-supplementary-blue);
    background-color: transparent;
    outline: none;
    padding: 5px 0 0;
    color: black;
}

#stay-update .input-container input[type="text"] {
    color: white;
}

.input-container .label {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-primary-light);
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-container input[type="text"]:focus~.label,
.input-container input[type="text"]:valid~.label {
    top: -20px;
    color: var(--color-primary-dark);
}

#stay-update .input-container input[type="text"]:focus~.label,
#stay-update .input-container input[type="text"]:valid~.label {
    color: white;
}

.input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--color-primary-dark);
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.input-container input[type="text"]:focus~.underline,
.input-container input[type="text"]:valid~.underline {
    transform: scaleX(1);
}

#contactForm textarea {
    border: 1px solid var(--color-supplementary-blue);
    border-radius: 4px;
    color: var(--color-primary-dark);
    padding: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

#shippingOption .customRadio .shipping-radio {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
}

.customRadio>div,
.customRadio>label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.customRadio>div+div,
.customRadio>label+label {
    margin-block-start: 1rem;
}

.customRadio label,
.customRadio label .text, .customRadio label .subtitle {
    cursor: pointer;
    color: var(--color-primary-light);
    transition: color 150ms ease-in-out;
}

#contactForm,
#shippingOption {
    .shipping-radio {
        cursor: pointer;
    }

    input[type="radio"] {
        appearance: none;
        outline: none;
        width: 1.5rem;
        height: 1.5rem;
        aspect-ratio: 1;
        padding: 0.25rem;
        background: transparent;
        border: 1px solid var(--color-primary-light);
        border-radius: 50%;
        display: grid;
        place-content: center;
        cursor: pointer;
        position: relative;
    }

    input[type="radio"]::after {
        content: "";
        position: absolute;
        inset: 0.25rem;
        opacity: 0;
        scale: 0;
        transition: opacity 150ms ease-in-out, scale 150ms ease-in-out;
        background-color: var(--color-primary-dark);
        border-radius: inherit;
    }


    .shipping-radio:hover .free-ship {
        color: red !important;
    }

    .shipping-radio:hover .text, .shipping-radio:hover .subtitle,
    .shipping-radio:hover input[type="radio"] {
        color: var(--color-primary-dark);
        border-color: var(--color-primary-dark);
    }

    .shipping-radio:hover input[type="radio"]::after {
        opacity: 1;
        scale: 1;
        background-color: var(--color-primary-dark);
    }

    input[type="radio"]:checked+div .free-ship {
        color: red !important;
    }

    input[type="radio"]:checked+div .text, input[type="radio"]:checked+div .subtitle {
        color: var(--color-primary-dark);
    }

    input[type="radio"]:checked {
        border-color: var(--color-primary-dark);
    }

    input[type="radio"]:checked::after {
        opacity: 1;
        scale: 1;
    }

    label:hover,
    input[type="radio"]:focus-visible,
    input[type="radio"]:focus-visible+label,
    input[type="radio"]:hover,
    input[type="radio"]:hover+label {
        color: var(--color-primary-dark);
        border-color: var(--color-primary-dark);
    }

    input[type="radio"]:focus-visible::after,
    input[type="radio"]:hover::after {
        opacity: 1;
        scale: 1;
        background-color: var(--color-primary-dark);
    }

    input[type="radio"]:checked+label:not(:hover),
    input[type="radio"]:checked:not(:hover) {
        color: var(--color-primary-dark);
        border-color: var(--color-primary-dark);
    }

    input[type="radio"]:checked::after {
        opacity: 1;
        scale: 1;
    }
}

.breakdown-toggle {
    background: none;
    border: none;
    color: var(--color-primary-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 150ms ease-in-out;
    margin-left: auto;
}

.breakdown-toggle:hover {
    color: var(--color-primary-dark);
    background-color: var(--color-primary-light);
}

.breakdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 150ms ease-in-out;
}

.breakdown-toggle.active::after {
    transform: rotate(-135deg) translate(-4px);
}

.price-breakdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-out;
    margin-top: 0;
    width: 100%;
}

.price-breakdown.show {
    max-height: 500px;
    transition: max-height 500ms ease-in;
}

.breakdown-content {
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(2, 95%);
    gap: 0.5rem 2rem;
}

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

.breakdown-item.total {
    grid-column: span 2;
    font-weight: bold;
    color: var(--color-primary-dark);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.item-label {
    color: var(--color-primary-dark);
}

.item-value {
    font-weight: 500;
    color: var(--color-primary-dark);
}

/* Footer */

/* Login */
.otp-link {
    font-weight: bold;
}

.otp-link.disabled {
    pointer-events: none;
    cursor: none;
    color: #999 !important;
    /* Optional: Change color to indicate it's disabled */
}

/* Login */