.Advertisements {
    margin: auto;
    border-radius: 1em;
    width: min(95%, 80em);
    box-shadow: 0em 0.3em 0.5em rgba(0, 0, 0, 0.4);

    overflow: clip;
    position: relative;
}
.Advertisements .Button {
    opacity: 0.75;
    cursor: pointer;
    border-radius: 25%;
    background-color: #000;
    border: none; outline: none;
    width: 4em; aspect-ratio: 1;

    transition: 0.2s ease-out;
    position: absolute; top: 50%;
    translate: 0% -50%;
    z-index: 10;
}
.Advertisements .Button:hover {
    opacity: 1;
}
.Advertisements .Button#Left {
    transform: rotate(90deg);
    left: 2%;
}
.Advertisements .Button#Right {
    transform: rotate(-90deg);
    right: 2%;
}
.Advertisements .Button div {
    object-fit: contain;
    background-color: #fff;
    height: 50%; aspect-ratio: 1;

    position: absolute;
    top: 50%; right: 50%;
    translate: 50% -50%;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('Arrow.svg');
    -webkit-mask-image: url('Arrow.svg');
}
.Advertisements .Container img {
    object-fit: contain;
    pointer-events: none;
    object-position: center;
    width: 100%; height: 100%;

    display: block;
}

.MedicineShowcase {
    margin: auto;
    padding-top: 7.5em;
    width: min(95%, 80em);

    display: flex;
    flex-direction: column;
    align-items: center;
}
.MedicineShowcase .Title {
    text-align: center;
    margin-bottom: 0.2em;
    font: 700 2.75em Montserrat;
}
.MedicineShowcase .HelperText {
    color: #575757;
    text-align: center;
    font: 600 1.1em 'Merriweather Sans';
}
.MedicineShowcase .GridContainer {
    width: 100%; padding: 2.5em 0em;

    display: flex; gap: 2em;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}
.MedicineShowcase .GridContainer .Container {
    width: 25em;
    border-radius: 0.75em;
    background-color: #fff;
    padding: 1.25em; min-height: 100%;
    box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.3);

    transition: 0.2s ease-out;
    display: flex; gap: 0.5em;
    flex-direction: column;
    align-items: stretch;
}
.MedicineShowcase .GridContainer .Container:hover {
    transform: translateY(-0.15em);
    box-shadow: 0em 0.4em 0.25em rgba(0, 0, 0, 0.3);
}
.MedicineShowcase .GridContainer .Name {
    font: 700 1.25em Poppins;
}
.MedicineShowcase .GridContainer .Attributes {
    padding-left: 0.5em;
    padding-right: 1em;

    display: flex; gap: 0.25em;
    flex-wrap: wrap;
}
.MedicineShowcase .GridContainer .Attributes div {
    color: #222;
    border-radius: 1em;
    padding: 0.15em 0.75em;
    font: 600 0.8em Poppins;
    border: 0.1em solid #666;
    background-color: #ddd;
}
.MedicineShowcase .GridContainer .PriceAndOffer {
    margin-top: 0.25em;
    padding: 0.5em 0em;

    display: flex; gap: 0.5em;
    justify-content: space-between;
    align-items: center;
}
.MedicineShowcase .GridContainer .PriceDetails {
    display: flex; gap: 0.75em;
    align-items: center;
}
.MedicineShowcase .GridContainer .CostPerUnit {
    font: 700 1.3em Montserrat;
}
.MedicineShowcase .GridContainer .MRP {
    color: #000;
    padding-top: 0.1em;
    text-decoration: line-through;
    font: 300 0.85em 'Merriweather Sans';
}
.MedicineShowcase .GridContainer .Offer {
    color: #fff;
    padding: 0.25em 1em;
    border-radius: 0.75em;
    font: 700 0.8em Poppins;
    text-transform: uppercase;
    background-color: var(--BaseColor);
}
.MedicineShowcase .GridContainer .Footer {
    margin-top: auto;
}
.MedicineShowcase .GridContainer .AddToCart {
    cursor: pointer;
    margin-top: 1.5em;
    padding: 0.5em 1em;
    border-radius: 0.8em;
    font: 700 0.9em Poppins;
    text-transform: uppercase;
    width: 100%; color: #000;
    border: none; outline: none;
    background-color: #e0cf6b;

    transition: 0.2s ease-out;
}
.MedicineShowcase .GridContainer .AddToCart:hover {
    background-color: #cfbd58;
}
.MedicineShowcase .GridContainer .NumberSpinner {
    font-size: 0.8em;
    padding: 0.3em 1em;
    border-radius: 0.75em;
    margin: 1.5em 25% 0em 25%;
    border: 0.3em solid #d3be45;

    display: flex; gap: 1em;
    justify-content: space-between;
    align-items: center;
}
.MedicineShowcase .GridContainer .DecreaseUnit {
    cursor: pointer;
    width: 1em; aspect-ratio: 1;
    background: url('Minus.svg') center / contain no-repeat;
}
.MedicineShowcase .GridContainer .CurrentValue {
    font: 700 1em Montserrat;
}
.MedicineShowcase .GridContainer .IncreaseUnit {
    cursor: pointer;
    width: 1em; aspect-ratio: 1;
    background: url('Plus.svg') center / contain no-repeat;
}
.MedicineShowcase .GridContainer .OutOfStock {
    color: #f00;
    margin-top: 1.5em;
    text-align: center;
    font: 700 1.25em Poppins;
    text-transform: uppercase;
}
.MedicineShowcase .GridContainer .Hidden {
    display: none;
}
.MedicineShowcase .Button {
    color: #000;
    cursor: pointer;
    padding: 0.8em 1.5em;
    border-radius: 0.75em;
    text-transform: uppercase;
    border: 0.15em solid #000;
    font: 700 1em 'Merriweather Sans';

    transition: 0.2s ease-out;
}
.MedicineShowcase .Button:hover {
    transform: scale(1.05);
}

.Testimonials {
    width: min(95%, 80em);
    padding: 7.5em 0em 0em; margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.Testimonials .Title {
    margin-bottom: 0.2em;
    font: 700 3em Montserrat;
}
.Testimonials .HelperText {
    color: #575757;
    text-align: center;
    font: 600 1.1em 'Merriweather Sans';
}
.Testimonials .GridContainer {
    width: 100%;
    padding: 2.5em 0em;

    display: flex; gap: 1em;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}
.Testimonials .GridContainer .Container {
    padding: 1.25em 1em;
    border-radius: 0.75em;
    background-color: #fff;
    width: 18em; height: 100%;
    box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.4);

    transition: 0.2s ease-out;
    display: flex; gap: 0.5em;
    flex-direction: column;
    align-items: center;
}
.Testimonials .GridContainer .Container:hover {
    transform: translateY(-0.15em);
    box-shadow: 0em 0.4em 0.25em rgba(0, 0, 0, 0.3);
}
.Testimonials .GridContainer .Icon {
    margin: 1em 0em;
    width: 3.5em; aspect-ratio: 1;
    background-color: var(--BaseColor);

    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}
.Testimonials .GridContainer .Icon.FastShipping {
    mask-image: url('FastShipping.svg');
    -webkit-mask-image: url('FastShipping.svg');
}
.Testimonials .GridContainer .Icon.TrustedBrand {
    mask-image: url('TrustedBrand.svg');
    -webkit-mask-image: url('TrustedBrand.svg');
}
.Testimonials .GridContainer .Icon.ExpertCertified {
    mask-image: url('ExpertCertified.svg');
    -webkit-mask-image: url('ExpertCertified.svg');
}
.Testimonials .GridContainer .Icon.PremiumQuality {
    mask-image: url('PremiumQuality.svg');
    -webkit-mask-image: url('PremiumQuality.svg');
}
.Testimonials .GridContainer .Quality {
    font: 800 1em 'Merriweather Sans';
}
.Testimonials .GridContainer .Description {
    font: 700 0.9em 'Nunito Sans';
    color: #444; text-align: center;
}


@media screen and (max-aspect-ratio: 1.875) {
    .MedicineShowcase .GridContainer .Container {width: 30em;}
}
@media screen and (max-aspect-ratio: 1.5) {
    .MedicineShowcase .GridContainer .Container {width: 25em;}
}
@media screen and (max-aspect-ratio: 1.25) {
    .MedicineShowcase .GridContainer .Container {width: 30em;}
}
@media screen and (max-aspect-ratio: 1) {
    .Advertisements .Button {display: none;}
}
@media screen and (max-aspect-ratio: 0.6) {
    body {font-size: 3.25vmin;}

    .Advertisements {
        border-radius: unset;
        box-shadow: unset; width: 100%;
    }

    .MedicineShowcase {padding-top: 5em;}
    .MedicineShowcase .Title {font-size: 2.5em;}
    .MedicineShowcase .HelperText {font-size: 1em;}

    .Testimonials .GridContainer .Container {width: 25em;}
}