@font-face {
    font-family: "SpaceGrotesk";
    src: url("../fonts/SpaceGrotesk-VariableFont_wght.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
.index-flow {
    display: flex;
    flex-direction: column;
}
section {
    height: 100vh;
}

body {
    background-color: #070709;
    color: #dcbed4;
    margin: 0;
    font-size: clamp(12px, 1.1vw, 24px);

    font-family: "SpaceGrotesk", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

a {
    text-decoration: none;
}
header {
    display: flex;
    justify-content: center;
}
nav {
    background-color: #131317;
    border-radius: 999px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-left: 24px;
    padding-right: 24px;
    border: #564052 solid 1px;
    box-shadow: 0px 0px 20px 2px #ffabf237;
    margin-top: 1rem;
    align-items: center;
    position: fixed;
    width: 96vw;
    z-index: 99999;
}

main {
    margin-top: 8rem;
}
.nav-btn {
    padding-top: clamp(0.5rem, 0.625vw, 1rem);
    padding-bottom: clamp(0.5rem, 0.625vw, 1rem);
}
.web-title {
    color: #ffabf3;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(24px, 1.25vw,  32px);
    justify-self: start;
}

nav div {
    display: flex;
}

nav div a {
    display: flex;
    color: #dcbed4;
    font-size: clamp(15px, 0.9vw, 20px);
}

.nav-center {
    gap: 4rem;
    color: #dcbed4;
}

.nav-right {
    align-items: center;
    gap: 16px;
    place-self: end;
    align-self: center;
}

.nav-center a {
    color: #dcbed4;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: 0.2s;
    border-bottom: 2px solid transparent;

    /*add those for opera and mozilla support*/
}

.nav-center a:hover {
    border-color: #ffabf3;
    transform: scale(1.1);
    color: #ffabf3;
}

.normal-btn {
    font-weight: bold;
    background: linear-gradient(0.25turn, #ffffff, #a0a0a0);
    font-size: clamp(18px, 1vw, 24px);
    padding-right: 24px;
    padding-left: 24px;
    border-radius: 32px;
    border: none;
    box-shadow:
        inset 2px 2px 4px 0 rgba(255, 255, 255, 0.8),
        0 0 15px 0 rgba(255, 171, 243, 0.3);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
}
.normal-btn:hover {
    transform: scale(1.1);
    box-shadow:
        inset 2px 2px 4px 0 rgba(255, 255, 255, 0.8),
        0 0 25px 4px rgba(255, 171, 243, 0.4);
}
.product {
    position: relative;
    overflow: hidden;

    background: rgba(53, 52, 57, 0.2);

    box-shadow:
        inset 0 0 3px 3px rgba(255, 255, 255, 0.1),
        0 0 20px 0 rgba(255, 171, 243, 0.05);

    backdrop-filter: blur(13px) saturate(1.2);
    -webkit-backdrop-filter: blur(13px) saturate(1.2);
    padding-right: 40px;
    padding-left: 40px;

    border-radius: clamp(1rem, 2vw, 3rem);;
    min-width: clamp(2rem, 40vw, 40rem);
    border: rgba(255, 255, 255, 0.05) solid 1px;
}

.product::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* Light: -45°, 80% approximation */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.012) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0) 70%
    );
}

.product-container {
    border-width: 2px 0px 0px 0px;
    border-style: solid;
    border-image: linear-gradient(to right, #00dbe9, rgba(255, 255, 255, 0)) 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    align-items: center;
}

.product-container h2 {
    margin: 0;
}

.prices-index {
    display: flex;
}

.prices-index ul {
    list-style: none;
}

.price-quantities {
    border-width: 0px 1px 0px 0px;
    border-style: solid;
    border-image: linear-gradient(to bottom, #ffabf3, #d3fbff) 1;
    padding-right: 12px;
    text-align: right;
    padding-left: 0;
}

.price-tags {
    border-width: 0px 0px 0px 1px;
    border-style: solid;
    border-image: linear-gradient(to bottom, #ffabf3, #d3fbff) 1;
    padding-left: 12px;
    text-align: left;
}

.product-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}


.product-elem {
    margin-bottom: 4rem clamp(1rem, 2.5vw, 4rem);
}

.product-list li a img {
    width: clamp(6rem, 20vw, 25rem);
    height: clamp(6rem, 20vw, 25rem);
    border-radius: clamp(1rem, 2vw, 3rem);
    box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.75);
    object-fit: cover;
}

.product-list li a {
    display: flex;
    gap: clamp(1rem, 2vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 3rem);
    height: max-content;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-bottom p {
    padding: 0;
    margin: 0;
    color: #d3fbff;
    font-size: 16px;
}

.product-description {
    font-size: clamp(12px, 1.2vw, 24px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-container h2 {
    align-self: flex-start;
    color: #00dbe9;
}

.buy-btn {
    height: 4rem;
    padding-right: 2rem;
    padding-left: 2rem;
    font-size: 32px;
    box-shadow:
        inset -2px -2px 6px 1px rgba(0, 0, 0, 0.2),
        inset 2px 2px 6px 1px rgba(255, 255, 255, 0.9),
        inset 0px 0px 0px 1px rgba(255, 255, 255, 0.5),
        0px 0px 20px 0px rgba(255, 171, 243, 0.4);
}

.why-us {
    background-color: #131317;
    margin: 0;
    padding-top: 2rem;
    border-top: solid 1px #e5e7eb;
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
    padding-bottom: 6rem;
    height: auto;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #e5e1e7;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-left: 18rem;
    padding-right: 18rem;
    gap: 6rem;
}


.why-us-grid div h3 {
    font-size: 34px;
    color: #e5e1e7;
}
.why-us-grid div p {
    font-size: clamp(14px, 0.78vw, 20px);
    line-height: clamp(16.6px, 5vw ,40.6px);
    font-weight: 400;
}

.card {
    border-radius: clamp(1rem, 2vw, 3rem);
    padding-left: 3em;
    padding-right: 3em;
}

.card-purple {
    background-color: #353439;
    box-shadow: 0 0 20px 0 rgba(255, 171, 243, 0.05);
    display: flex;
  flex-direction: column;
  justify-content: space-evenly;
    padding-top: 3em;
    padding-bottom: 3em;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card-purple:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px 0 rgba(255, 171, 243, 0.4);
}
.card-purple {
    background-color: #353439;
    box-shadow: 0 0 20px 0 rgba(255, 171, 243, 0.05);
    padding-bottom: 4rem;
}

.card-purple-container {
    border-width: 2px 0px 0px 0px;
    border-style: solid;
    border-image: linear-gradient(to right, #ffabf3, rgba(255, 255, 255, 0)) 1;
    padding-top: clamp(1rem, 1.875vw, 3rem);
}

.card-teal {
    background-color: #353439;
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-top: 3em;
    padding-bottom: 3em;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card-teal:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.3);
}

.card-fancy {
    background-image: url(/static/fancy-bg.webp);
    background-size: 100% auto;
    background-position: bottom right;
    background-repeat: no-repeat;

    grid-column: span 2;
    color: #131317;
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.1);
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card-fancy:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.3);
}

#card-fancy-title {
    color: #131317;
}

.description-icon {
    height: clamp(1.5rem, 1.5625vw, 2.5rem);
    width: min-content;
}

.lab {
        background: linear-gradient(to bottom, #131317, #070709);

    padding-left: 30rem;
    padding-right: 30rem;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lab-card {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #2a292e;
    border-radius: clamp(1rem, 2vw, 3rem);
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    font-size: clamp(12px, 1.1vw, 24px);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.lab-card:hover {
    transform: scale(1.02);
    box-shadow:
        0 5px 20px 0 rgba(0, 219, 233, 0.3),
        0 -5px 20px 0 rgba(255, 171, 243, 0.3);
}

.lab-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: clamp(1rem, 2vw, 3rem);
    padding: 2px;
    background: linear-gradient(45deg, #00dbe9, #ffabf3);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.lab-card h3 {
    color: #e5e1e7;
    font-size: clamp(16px, 1.5vw, 36px);
    line-height: clamp(20px, 2vw, 20.4px);
    letter-spacing: -0.32px;
}
.lab-card p {
    font-size: 20px;
    font-weight: 400;
}

.lab-link {
    position: relative;
    z-index: 9999;
    color: #ffabf3;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
}

.lab-link:hover {
    border-color: #ffabf3;
    transform: scale(1.1);
    color: #ffabf3;
}

.lab-icon-container {
    border-radius: 999px;
    background: linear-gradient(0.25turn, #ffffff, #a0a0a0);
    width: 3.5em;
    padding-top: 3em;
    padding-bottom: 3em;
    padding-right: 3em;
    padding-left: 3em;
    border: none;
    box-shadow:
        inset 2px 2px 4px 0 rgba(255, 255, 255, 0.8),
        0 0 15px 0 rgba(255, 171, 243, 0.3);
    margin-bottom: 1rem;
}

.lab-icon {
    height: 3em;
}

.lab-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50%;
}

.shipping {
    height: 35vh;

    display: flex;
    justify-content: center;
    gap: 2em;
    font-size: clamp(28px, 1.5vw, 36px);
    line-height: 35px;
    align-items: center;
}

.shipping div {
    width: 25vw;
    height: 18vh;
    background-color: #2a292e;
    border-radius: clamp(1rem, 2vw, 3rem);
    position: relative;
    display: flex;
}
.discrete {
    box-shadow:
        inset 0px 4px 0px 0px #2a292e,
        inset 0px -4px 0px 0px #2a292e,
        inset 6px 0px 0px 0px #ffabf3;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.discrete:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0px 4px 0px 0px #2a292e,
        inset 0px -4px 0px 0px #2a292e,
        inset 6px 0px 0px 0px #ffabf3,
        0px 0px 20px 0px rgba(255, 171, 243, 0.4);
}

.fast {
    box-shadow:
        inset 0px 4px 0px 0px #2a292e,
        inset 0px -4px 0px 0px #2a292e,
        inset 6px 0px 0px 0px #d3fbff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.fast:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0px 4px 0px 0px #2a292e,
        inset 0px -4px 0px 0px #2a292e,
        inset 6px 0px 0px 0px #d3fbff,
        0px 0px 20px 0px rgba(211, 251, 255, 0.4);
}

.priority {
    box-shadow:
        inset 0px 4px 0px 0px #2a292e,
        inset 0px -4px 0px 0px #2a292e,
        inset 6px 0px 0px 0px #bac8dd;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.priority:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0px 4px 0px 0px #2a292e,
        inset 0px -4px 0px 0px #2a292e,
        inset 6px 0px 0px 0px #bac8dd,
        0px 0px 20px 0px rgba(186, 200, 221, 0.4);
}

.emoji {
    position: absolute;
    top: 0;
    right: 5%;
}

.shipping-text {
    align-self: center;
    margin-left: 5%;
}


.contacts h1 {
    text-align: center;
    margin-bottom: 8rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
    height: 70vh;
    gap: 2rem;
    padding-left: 20rem;
    padding-right: 20rem;
}
.card-gradient {
    background: linear-gradient(0.6turn, #d9d2e2, #682a77);
    color: #e5e1e7;
    padding-left: 4.5rem;
    font-weight: 600;
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.3);
}

.pgp {
    grid-column: span 2;
    grid-row: span 3;

    background: linear-gradient(0.4turn, #dcbed4, #d3fbff);
    box-shadow: 0 0 30px 0 rgba(0, 219, 233, 0.2);
    padding-top: 3rem;
    border-radius: 5rem;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    
}

.pgp:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.5);
}
.pgp div {
    color: #131317;
    opacity: 0.8;
}
.card-teal-contacts {
    background-color: #353439;
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card-teal-contacts:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px 0 rgba(0, 219, 233, 0.4);
}
.contacts-card {
    display: flex;
    align-items: center;
    font-size: 36px;
    border-radius: clamp(1rem, 3vw, 5rem);
    padding-bottom: 0;
          padding-left: 4.5rem;

}

.card-purple-container-contacts {
    height: 100%;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
    margin-top: 0;
}

.contacts-icon {
    height: 5rem;
}

.card-purple-container-contacts a {
    color: #dcbed4;
    text-decoration: underline;
}
.pgp h2 {
    color: #131317;
    font-size: 48px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    margin-right: 20rem;
    margin-left: 20rem;
    gap: 2rem;
    height: 70vh;
}

.review-button {
    grid-column: span 3;
    background: linear-gradient(0.4turn, #d3fbff, #d3fbff, #00dbe9);
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
    border-radius: 4rem;
    box-shadow:
        inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05),
        0 0 20px 0 rgba(255, 171, 243, 0.05);
    height: 3rem;
    font-size: 44px;
    color: #3a3b41;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.review-button:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05),
        0 0 20px 0 rgba(255, 171, 243, 0.3);
}

.glass-card {
    position: relative;
    overflow: hidden;

    background: rgba(53, 52, 57, 0.2);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 20px 0 rgba(255, 171, 243, 0.05);

    backdrop-filter: blur(13px) saturate(1.2);
    -webkit-backdrop-filter: blur(13px) saturate(1.2);
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* Light: -45°, 80% approximation */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.012) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0) 70%
    );
}

.review {
    border-radius: 4rem;
    box-shadow:
        inset 0px 0px 0px 1px white,
        0 0 20px 0 rgba(0, 219, 233, 0.05);
    padding: 0rem 4rem 4rem 4rem;
    grid-row: span 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.review:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0px 0px 0px 1px white,
        0 0 20px 0 rgba(0, 219, 233, 0.3);
}

.review div p {
    font-size: clamp(24px, 1.2vw, 36px);
    color: #e5e1e7;
    line-height: 30.6px;
    font-weight: 300;
}

.review p {
    font-size: clamp(24px, 1.2vw, 36px);
    color: #dcbed4;
    font-weight: 300;
}

.review div h2 {
    font-size: 64px;
    color: #d3fbff;
    text-align: start;
}

footer {
    background-color: #0e0e12;
    box-shadow: inset 0px 1px 0px 0px #e5e7eb;
    border-top-left-radius: 20rem;
    border-top-right-radius: 20rem;
    display: flex;
    padding-top: 1rem;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 10vh;
    justify-self: flex-end;
}

footer h1 {
    margin: 0;
    font-size: 40px;
    color: #ffabf3;
    line-height: 48.4px;
    letter-spacing: 3.2px;
    font-weight: 600;
}

footer p {
    font-size: 16px;
    color: #d3fbff;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.product-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.product-link:hover {
    transform: scale(1.02);
}

.promo-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 90vh;
}

.new-arrival {
    font-weight: 600;
    color: #ffabf3;
    letter-spacing: 0.6px;
    font-size: 16px;
    padding-left: 2.7rem;
    padding-right: 2.7rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    width: fit-content;
    box-shadow:
        inset 0px 0px 0px 1px rgba(255, 171, 243, 0.2),
        0 0 15px 0 rgba(255, 171, 243, 0.15);

    border-radius: 200px;
    position: relative;
    overflow: hidden;

    background: rgba(53, 52, 57, 0.2);

    backdrop-filter: blur(13px) saturate(1.2);
    -webkit-backdrop-filter: blur(13px) saturate(1.2);
}

.new-arrival::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* Light: -45°, 80% approximation */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.012) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0) 70%
    );
}

.promo-img-container {
    background-image: url(/static/promo-bg.webp);
    background-size: 100% 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    width: 35vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-img-container img {
    width: clamp(120px, 15vw, 15vw)
}

.promo-description h1 {
    background-clip: border-box;
    font-weight: bold;
    font-size: clamp(42px, 5.6vw, 108px);
    margin: 0;
    background: -webkit-linear-gradient(left, #ffabf3, #d3fbff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-description p {
    color: #e4fdff;
    font-weight: bold;
}

.promo-text {
    font-size: clamp(16px, 2vw, 46px);
    max-width: min(90vw, 40rem);
}

.promo-btn {
    margin-top: 1em;
    font-size: clamp(16px, 2.4vw, 46px);
    padding-block: clamp(1rem, 1.5vw, 2rem);
    padding-inline: clamp(2rem, 3.3vw, 4rem);
    border-radius: 999px;
    box-shadow:
        inset -2px -2px 6px 1px rgba(0, 0, 0, 0.2),
        inset 2px 2px 6px 1px rgba(255, 255, 255, 0.9),
        inset 0px 0px 0px 1px rgba(255, 255, 255, 0.5),
        0px 0px 20px 0px rgba(255, 171, 243, 0.4);
}

.logout-image {
    height: 1.5rem;
    transition: transform 0.2s ease;
}

.logout {
    background: none;
    border: none;
    height: 1.5rem;
    cursor: pointer;
}

.logout-image:hover {
    transform: scale(1.1);
}

.cart-icon {
    height: 1.5rem;
    padding-top: 0;
    transition: transform 0.2s ease;
}
.cart-icon:hover {
    transform: scale(1.1);
}

.logout-form {
    height: fit-content;
}

.products-title {
    color: #e5e1e7;
    text-align: center;
    margin-bottom: 3rem;
}

h2 {
    color: #e5e1e7;
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(16px, 2vw, 40px);
}

.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
    background-image: url(/static/bg-teal-2.webp);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.glass-container {
    position: relative;
    overflow: hidden;

    background: rgba(53, 52, 57, 0.2);
    border-radius: 6rem;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 5px -2px white,
        0 0 20px 0 rgba(255, 171, 243, 0.05);

    backdrop-filter: blur(13px) saturate(1.2);
    -webkit-backdrop-filter: blur(13px) saturate(1.2);
}

.glass-container::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* Light: -45°, 80% approximation */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.012) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0) 70%
    );
}

.products-index {
    background-image: url(/static/bg-purple-1.webp);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 3rem;
    height: auto;
}

.reviews {
    background-image: url(/static/bg-teal-1.webp);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.cart-menu {
    position: relative;
}

.cart-summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.cart-summary::-webkit-details-marker {
    display: none;
}

.cart-count {
    align-items: center;
    background: #00dbe9;
    border-radius: 999px;
    color: #070709;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 18px;
    justify-content: center;
    min-width: 18px;
    padding: 0 4px;
    position: absolute;
    right: -10px;
    top: -8px;
}
.pgp textarea {
    width: auto;
    min-height: 40vh;
    text-align: center;
    border: none;
    background: transparent;
            font-size: 24px;

}
.cart-panel {
    color: #dcbed4;
    display: block;
    max-height: 70vh;
    overflow-y: auto;
    padding: 16px;
    position: absolute;
    right: 0;
    top: 44px;
    width: 340px;
    background-color: #35343933;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid;
    border-color: #ffffff0d;
    box-shadow:
        0px 0px 20px #ffabf30d,
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 1px 0 0 rgba(255, 255, 255, 0.32),
        inset 0 -1px 4px rgba(0, 0, 0, 0.13),
        inset -1px 0 4px rgba(0, 0, 0, 0.11);
    backdrop-filter: blur(6.5px) brightness(100%) saturate(100%);
    -webkit-backdrop-filter: blur(6.5px) brightness(100%) saturate(100%);
}

.cart-panel-title {
    color: #e5e1e7;
    font-size: 20px;
    margin: 0 0 12px;
    text-align: left;
}

.cart-panel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-panel-item {
    border-bottom: 1px solid rgba(220, 190, 212, 0.18);
    display: grid;
    gap: 6px 12px;
    grid-template-columns: 1fr auto;
    padding-bottom: 12px;
}

.cart-panel-item-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cart-panel-product {
    color: #e5e1e7;
    font-size: 16px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.cart-panel-meta,
.cart-panel-line-total {
    color: #d3fbff;
    font-size: 14px;
}

.cart-panel-remove-form {
    grid-column: 1 / -1;
}

.cart-panel-remove {
    background: none;
    border: none;
    color: #ffabf3;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    padding: 0;
}

.cart-panel-total {
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    margin-top: 14px;
}

.cart-panel .cart-panel-checkout {
    border-radius: 8px;
    color: #070709;
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-top: 14px;
    padding: 10px 12px;
    text-align: center;
}
.cart-panel .cart-panel-checkout:hover {
    transform: scale(1.02);
}
.cart-panel-empty {
    color: #d3fbff;
    font-size: 16px;
    margin: 0;
}
@keyframes animateDown {
    0% {
        opacity: 0;
        transform: translatey(-15px);
    }
    100% {
        opacity: 1;
        transform: translatey(0);
    }
}

.cart-menu[open] .cart-panel {
    animation: animateDown 0.2s linear forwards;
}

.user-message .message-content {
    text-align: right;
}

@media screen and (width < 2280px) {
    .why-us-grid {
        padding-left: 6rem;
        padding-right: 6rem;
    }
    .lab {
        padding-left: 6rem;
        padding-right: 6rem;
    }
    .pgp {
        font-size: 18px;
    }
        .pgp textarea{
        font-size: 18px;
    }

    .contacts-grid {
        padding-left: 12rem;
        padding-right: 12rem;
    }
}

@media screen and (width < 1800px) {
    section {
                height: auto;
        min-height: fit-content;

    }
    .contacts-grid {
        display: flex;
        flex-direction: column;
        padding-left: 10rem;
        padding-right: 10rem;
        height: auto;
        min-height: fit-content;
    }
    .card-teal {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .card-purple {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .card-fancy {
        order: 2332;
    }
    .contacts-icon {
        padding-top: 2rem;
    }
    .card-gradient {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .contacts-card a {
        padding-bottom: 2rem;
    }
    .reviews-grid {
        display: flex;
        flex-direction: column;
        margin-right: 10rem;
        margin-left: 10rem;
        height: auto;
    }
}

@media screen and (width < 1720px) {
    .why-us-grid {
        display: flex;
        flex-direction: column;
    }
    .why-us-grid div {
        height: clamp(160px, 20vh, 22rem);
    }

    .shipping {
        flex-direction: column;
        font-size: 42px;
        height: 50vh;
    }
    .shipping div {
        width: 75vw;
    }

}

@media screen and (width < 1200px) {
        .promo-section {
        flex-direction: column;
        text-align: center;

    }
        .shipping {
        height: 35vh;
    }

    nav {
        display: flex;
        justify-content: center;
        padding: 1rem;
        align-items: center;
    }
    .web-title {
        display: none;
    }
    .nav-right {
        margin-left: 4rem;
    }
    .why-us-grid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lab {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .contacts-grid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lab-card {
        flex-direction: column;
        align-items: center;
    }

    .reviews-grid {
        margin-right: 2rem;
        margin-left: 2rem;
    }
    .product-link button {
        display: none;
    }


    .product {
        min-width: auto;
    }
    .pgp {
        font-size: 14px;
    }
    .pgp textarea {
        font-size: 14px;
    }
    .card-fancy {
        background-image: none;
        background: linear-gradient(to right, #e0e0e0, #b0b0b0);
    }
    footer h1 {
        font-size: 26px;
        text-align: center;
    }
    footer p {
        font-size: 14px;
    }
    .nav-center {
        display: flex;
        justify-content: space-around;
        width: 100%;
        font-weight: bold;
    }
}

@media screen and (width < 1200px) {
    .products-index {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .promo-description {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .promo-section {
        padding: 0;
        width: 100vw;
    }

      .promo-img-container {
    min-height: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    width: clamp(300px, 80vw, 460px);
  }
    .product-list {
        padding: 0;
        max-width: 90vw;
    }
    .product-elem {
        max-width: 90vw;
    }

    .why-us-grid div h3 {
        font-size: clamp(18px, 1.1vw, 26px);
        margin-bottom: 0;
    }

    .shipping {
        min-height: 90vh;
        font-size: 24px;
    }
    .contacts-card {
        font-size: 22px;
    }
    .card {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .contacts-icon {
        height: 4rem;
    }
    .contacts-grid {
        height: auto;
    }
    .contacts {
        height: auto;
    }
    .review-button {
        font-size: 40px;
    }
    .review div p {
        font-size: 24px;
    }
    .review div h2 {
        font-size: 40px;
    }
    .review p {
        font-size: 24px;
    }
    .nav-center {
        gap: 2rem;
        margin-left: auto;
    }

    nav {
        flex-direction: column;
        border-radius: 2rem;
        width: 90vw;
    }
    .nav-center {
        margin: 0;
    }
    .nav-right {
        margin-left: 0;
        margin-top: 1rem;
        display: flex;
    justify-content: space-around;
    width: 100%;
    }
    nav div a {
        font-size: clamp(12px, 2.5vw ,16px);
    }
    .lab-card p {
        font-size: 14px;
    }
    .why-us-grid div {
        max-height: 30vh;
    }
    .why-us-grid {
        gap: 1rem;
    }
    .shipping {
        min-height: auto;
    }
}

@media screen and (width < 800px) {

    .product-bottom p {
        font-size: 12px;
    }

     .contacts-icon {
        height: 2rem;
     }
     .contacts-card {
        font-size: 14px;
     }
          .pgp{
            padding-bottom: 2rem;
          }

     .review-button {
        font-size: 20px;
     }
     .review-button {
        padding: 2rem;
        text-align: center;
        height: auto;
     }
     .review {
        padding: 0rem 1rem 1rem 1rem;
     }
     .review div p {
        font-size: 14px;
     }
     .review p {
                font-size: 14px;
                
     }
    .review div h2 {
        font-family: 28px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .new-arrival {
        padding: 1rem;
          font-size: 12px;
    }

     .pgp {
        border-radius: 2rem;
     }
          .pgp textarea{
        border-radius: 2rem;
     }



  .product-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    
  }
  .why-us {
    padding-bottom: 0;
  }
  .lab-card h3 {
        margin:0;

  }

  .shipping {
    font-size: 14px;
  }
  .shipping div {
    height: 10vh;
  }
}



@media screen and (width < 800px) {
    .contacts-card {
        font-size: 16px;
    }
    .contacts {
        height: fit-content;
        margin-bottom: 0;
    }
    footer {
        height: 15vh;
        border-top-left-radius: 4rem;
        border-top-right-radius: 4rem;
        margin-top: 1rem;
    }
    footer h1 {
        font-size: 20px;
    }
    footer p {
        font-size: 14px;
        text-align: center;
    }
    .nav-center {
        gap: 0.5rem;
    }
    .cart-panel {
        width: auto;
        min-width: 200px;
    left: 0px;
    }
    .product-list li a img {
                width: 60vw;
        height: 60vw;

    }
    .product-list li a {
        flex-direction: column;
        width: 60vw;
    }
}
/* --- AUTO-ZOOM: Simulate Browser Zoom (115%) --- */
html {
    /* This sets the base size. 16px is default. 18.4px is 115% of 16px. */
    font-size: 18.4px !important; 
    /* Change 18.4px to 17.6px for 110%, or 19.2px for 120% */
}

/* Ensure body inherits this to prevent conflicts */
body {
    font-size: 100% !important; 
}
/* --- FIX: Shipping Section Layout --- */
section.shipping {
    display: flex !important;
    flex-direction: column !important; /* Forces them to stack VERTICALLY */
    align-items: center !important;    /* Centers them horizontally */
    gap: 20px !important;              /* Space between the stacked boxes */
    width: 100% !important;            /* Ensures it takes full width */
    max-width: 800px !important;       /* Limits width so text doesn't stretch too far */
    margin: 0 auto !important;         /* Centers the whole section on the page */
}

/* Fix the individual boxes */
section.shipping .discrete, 
section.shipping .fast,
section.shipping .priority {
    width: 100% !important;            /* Make each box full width of the container */
    max-width: 100% !important;
    box-sizing: border-box !important; /* Ensures padding doesn't add to width */
    padding: 20px !important;          /* Adds space INSIDE the box so text doesn't touch edges */
    text-align: center !important;     /* Centers the text inside */
}

/* --- FIX: Trust Box Text Overflow --- */
/* Assuming the trust box has a class like .trust or similar. 
   If you know the exact class, replace .trust below with it. */
.trust, .trust-box, [class*="trust"] {
    padding: 20px !important;          /* More room inside */
    word-wrap: break-word !important;  /* Forces long words to break to next line */
    overflow-wrap: break-word !important;
    white-space: normal !important;    /* Allows text to wrap naturally */
    line-height: 1.5 !important;       /* Better spacing between lines */
}
/* --- FIX: Gap Between Lab Tests and Shipping --- */
section.lab-tests {
    margin-bottom: 40px !important; /* Pushes the Shipping section down */
}

section.shipping {
    margin-top: 0 !important;       /* Ensures no negative margin pulls it up */
    display: flex !important;
    flex-direction: column !important; /* Stacks Discrete and Fast vertically */
    align-items: center !important;
    gap: 25px !important;           /* Space between Discrete and Fast boxes */
    width: 100% !important;
    max-width: 800px !important;    /* Keeps boxes from stretching too wide */
    margin-left: auto !important;   /* Centers the whole group */
    margin-right: auto !important;
}

/* Fix the individual shipping boxes */
section.shipping .discrete, 
section.shipping .fast {
    width: 100% !important;
    padding: 20px !important;       /* Space inside the box */
    box-sizing: border-box !important;
    text-align: center !important;
}

/* --- FIX: Trust Box Text Overflow --- */
/* Targets any box with 'trust' in the class name */
[class*="trust"], .trust-box, .trust-card {
    padding: 20px !important;       /* More room inside */
    word-wrap: break-word !important; /* Breaks long words */
    overflow-wrap: break-word !important;
    white-space: normal !important; /* Allows text to wrap */
    line-height: 1.5 !important;    /* Better line spacing */
    max-width: 100% !important;     /* Prevents overflow */
    overflow: visible !important;   /* Ensures text isn't cut off */
}
/* Simple space between sections */
section.lab-tests {
    margin-bottom: 50px; /* Adds 50px of empty space BELOW the lab tests */
}

section.shipping {
    margin-top: 20px; /* Adds a little space ABOVE the shipping box */
}


footer {
    width: 100vw;
}