/* --- Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* --- Global Color & Style Variables --- */
:root {
    --accent-color: #f28001;
    --white: #ffffff;
    --anti-flash-white: #f2f2f2;
    --chinese-black: #0b1014;
    --eerie-black: #1c1c1c;
    --dark-jet: #343434;
    --dark-charcoal: #2e2e2e;
    --granite-gray: #606366;
    --quick-silver: #a7a7a7;
    --spanish-gray: #9a9a9a;

    --shadow-color1: 0 8px 25px rgba(0, 0, 0, 0.05);
    --shadow-color2: 0 8px 25px rgba(0, 0, 0, 0.25);
    --shadow-color3: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* --- Base & Reset Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--anti-flash-white);
}

.page-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    margin: auto;
}

/* --- Buttons --- */
.btn-primary-fill {
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-color1);
    padding: 4px;
    display: inline-block;
    border: 1px solid var(--spanish-gray);
}

.btn-primary-fill button {
    background-color: var(--chinese-black);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.btn-primary-fill:hover {
    background-color: var(--anti-flash-white);
}

.btn-primary-fill button:hover {
    color: var(--eerie-black);
    background-color: var(--white);
}

/* ------ */
.btn-primary-outline {
    background-color: var(--anti-flash-white);
    border-radius: 50px;
    box-shadow: var(--shadow-color1);
    padding: 4px;
    display: inline-block;
    border: 1px solid var(--spanish-gray);
}

.btn-primary-outline button {
    background-color: var(--white);
    color: var(--eerie-black);
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.btn-primary-outline button:hover {
    color: var(--white);
    background-color: var(--chinese-black);
}

/* ------ */
.btn-accent-fill {
    background-color: var(--anti-flash-white);
    border-radius: 50px;
    box-shadow: var(--shadow-color1);
    padding: 4px;
    display: inline-block;
    border: 1px solid var(--accent-color);
}

.btn-accent-fill button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.btn-accent-fill:hover {
    background-color: var(--anti-flash-white);
}

.btn-accent-fill button:hover {
    color: var(--accent-color);
    background-color: var(--white);
}

/* ------ */
.btn-accent-outline {
    background-color: var(--anti-flash-white);
    border-radius: 50px;
    box-shadow: var(--shadow-color1);
    padding: 4px;
    display: inline-block;
    border: 1px solid var(--accent-color);
}

.btn-accent-outline button {
    background-color: var(--white);
    color: var(--accent-color);
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 140px;
    text-align: center;
}

.btn-accent-outline button:hover {
    color: var(--white);
    background-color: var(--accent-color);
}

/* --- Heading Container --- */
.heading-cont {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: start;
    color: black;
    background-color: var(--white);
    padding: 2px 20px;
    height: 50px;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

}

.heading-cont span {
    color: black;
    font-size: 1.5rem;
    background-color: var(--white);
}

/* ------  */
.heading-cont-tag {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: start;
    color: black;
    background-color: var(--white);
    padding: 4px 4px 4px 20px;
    height: 50px;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.heading-cont-tag .tag {
    color: var(--chinese-black);
    background-color: var(--anti-flash-white);
    width: fit-content;
    height: 100%;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
}

.heading-cont-tag .tag span {
    font-size: 14px;
    background-color: var(--anti-flash-white);
    text-align: center;
}

/* --- Radio Buttons --- */
.hidden-radio {
    display: none;
}

.radio-btn {
    display: inline-block;
    border-radius: 50px;
    padding: 4px;
    cursor: pointer;
    box-shadow: var(--shadow-color1);
    min-width: 140px;
    text-align: center;
    transition: all 0.2s ease;
}

.radio-btn span {
    display: block;
    border-radius: 50px;
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
    background-color: var(--white);
    color: var(--quick-silver);
}

@media (max-width: 576px) {
    .radio-btn span {

        font-size: 14px;
    }
}

.hidden-radio:checked+.btn-primary-fill span {
    background-color: var(--chinese-black);
    color: var(--white);
}

.hidden-radio:checked+.btn-primary-outline span {
    background-color: var(--chinese-black);
    color: var(--white);
}

.hidden-radio:checked+.btn-accent-outline span {
    background-color: var(--accent-color);
    color: var(--white);
}

/* --- Textarea --- */
textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px 20px;
    border-radius: 24px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    resize: vertical;
    box-shadow: var(--shadow-color1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 10px;
    scrollbar-width: none;
    color: var(--chinese-black);
}

textarea::-webkit-scrollbar {
    display: none;
}

textarea:last-child {
    margin-bottom: 0px;
}

textarea.small {
    min-height: initial;
}

textarea::placeholder {
    color: var(--quick-silver);
}

textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    textarea {
        min-height: 200px;
        height: auto;
    }
}

/* --- Navigation Buttons --- */
.navigation-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .navigation-buttons {
        gap: 10px;
    }

    .navigation-buttons button {
        width: 100%;
    }
}

.navigation-buttons button.nav-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- Page Wrapper Content & Main Container --- */
.page-wrapper-content {
    width: 100%;
}

.swiper-wrapper {
    transition: height 0.5s ease; 
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
    padding: 0 15px;
}

main .container {
    background-color: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-color1);
    width: 100%;
    max-width: 700px;
    padding: 12px;
}

main .container .content {
    background-color: var(--anti-flash-white);
    padding: 10px;
    border: 1px solid var(--spanish-gray);
    border-radius: 22px;
}


@media (max-width: 992px) {
    main .container {
        max-width: 100%;
    }
}

/* --------------------------------- Header --------------------------------- */
.main-logo {
    /* margin-bottom: 60px; */
    cursor: pointer;
    padding: 15px 15px 0 15px;
}

.main-logo .logo {
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    color: var(--eerie-black);
}

@media (max-width: 992px) {
    .main-logo {
        /* margin-bottom: 40px; */
    }

    .main-logo .logo {
        font-size: 48px;
        font-weight: 900;
        text-align: center;
        color: var(--eerie-black);
    }
}

/* --------------------------------- Footer --------------------------------- */
footer {
    text-align: center;
    width: 100%;
    margin-top: 80px;
    padding: 0 15px 30px 15px;
}

footer nav {
    background-color: var(--white);
    border: 1px solid var(--spanish-gray);
    border-radius: 50px;
    box-shadow: var(--shadow-color1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 35px;
    gap: 16px;
    width: auto;
}

footer nav a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 14px;
    font-weight: 700;
}

footer nav a:hover {
    text-decoration: none;
    color: var(--granite-gray);
    font-size: 14px;
    font-weight: 700;
}

footer nav span {
    color: var(--dark-charcoal);
    font-weight: 700;
}

@media (max-width: 578px) {
    footer {
        margin-top: 60px;
    }

    footer nav {
        padding: 12px;
        gap: 12px;
    }

    footer nav a {
        font-size: 13px;
    }
}

/* -------------------------------------------------------------------------- */
/*                           Main Tag Sections Style                          */
/* -------------------------------------------------------------------------- */
.start-page {
    width: 100%;
    gap: 60px;
}

@media (max-width: 578px) {
    .start-page {
        gap: 40px;
    }
}

.start-page .info-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    align-items: stretch;
}

.start-page .info-cards .card {
    background-color: var(--white);
    border-radius: 28px;
    flex: 1;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    opacity: 0;
    animation: cardFadeUp 0.8s ease forwards;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.start-page .info-cards .card:hover .card-scale {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.start-page .info-cards .card:hover {
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-color2);
}

@media (max-width: 992px) {
    .start-page .info-cards .card:hover {
        box-shadow: none;
    }
}

.card-scale {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

@keyframes cardFadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.start-page .info-cards .card:nth-child(1) {
    animation-delay: 0.2s;
}

.start-page .info-cards .card:nth-child(2) {
    animation-delay: 0.4s;
}

.start-page .info-cards .card:nth-child(3) {
    animation-delay: 0.6s;
}

.start-page .info-cards .card .card-inner {
    background-color: var(--anti-flash-white);
    border: 1px solid var(--spanish-gray);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 20px;
    height: 100%;
}

@media (max-width: 576px) {
    .start-page .info-cards .card .card-inner {
        padding: 20px 15px;
    }
}

.start-page .info-cards .card-inner img {
    width: fit-content;
    height: 100px;
    object-fit: contain;
}

.start-page .info-cards .card-inner .cart-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    font-weight: 700;
}

.start-page .info-cards .card-inner .cart-content h2 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--dark-jet);
}

.start-page .info-cards .card-inner .cart-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--spanish-gray);
}

.start-page .info-cards .card-inner .cart-content .highlight {
    color: var(--accent-color);
}

.start-page .search-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.start-page .search-form {
    display: flex;
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-color1);
    overflow: hidden;
    border: 1px solid var(--spanish-gray);
    max-width: 500px;
    width: 100%;
}

.start-page .search-form input {
    border: none;
    padding: 15px 15px 15px 20px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    width: 100%;
    min-width: 300px;
    color: var(--dark-charcoal);
}

.start-page .search-form input::placeholder {
    color: var(--granite-gray);
}

.start-page .search-form input:focus {
    outline: none;
}

.start-page .search-form button {
    background-color: var(--chinese-black);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    margin: 4px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start-page .search-form button:hover {
    background-color: var(--granite-gray);
}


.start-page .navigation-buttons button {
    min-width: 200px;
}

@media (max-width: 992px) {
    .start-page .info-cards {
        flex-direction: column;
        order: 2;
    }

    .start-page .info-cards .card {
        width: 100%;
        max-width: 600px;
        margin: auto;
    }

    .start-page .info-cards .card .card-inner {
        flex-direction: row;
    }

    .start-page .info-cards .card-inner img {
        width: 100px;
        height: auto;
        object-fit: contain;
    }

    .start-page .search-form {
        order: 1;
        max-width: initial;
        width: 100%;
    }

    .start-page .navigation-buttons {
        order: 3;
    }
}

@media (max-width: 576px) {
    .start-page .info-cards .card {
        width: 100%;
        max-width: initial;
        margin: auto;
    }
}

@media (max-width: 480px) {
    .start-page .info-cards .card .card-inner {
        flex-direction: column;
    }

    .start-page .search-form input {
        min-width: initial;
    }
}

/* -------------------------------------------------------------------------- */
.how-it-works .steps-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    color: var(--quick-silver);
    background-color: var(--white);
    padding: 20px;
    border-radius: 22px;
}

@media (max-width: 576px) {
    .how-it-works .steps-container {
        padding: 20px 15px;
    }
}

.how-it-works .steps-container .step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--eerie-black);
}

.how-it-works .steps-container .step p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--eerie-black);
}

@media (max-width: 576px) {
    .how-it-works h2 {
        font-size: 15px;
    }

    .how-it-works .steps-container .step h3 {
        font-size: 17px;
    }

    .how-it-works .steps-container .step h3 {
        font-size: 17px;
    }

    .how-it-works .steps-container .step p {
        font-size: 13px;
    }
}

/* -------------------------------------------------------------------------- */
.pharmacy-list .pharmacy-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pharmacy-list .pharmacy-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-color1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

@media (max-width: 576px) {
    .pharmacy-list .pharmacy-card {
        padding: 20px 15px;
    }
}


.pharmacy-list .pharmacy-card:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-color2);
}

.pharmacy-list .pharmacy-details {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 4px;
}

@media (max-width: 576px) {
    .pharmacy-list .pharmacy-details {
        gap: 8px;
    }
}

.pharmacy-list .pharmacy-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--chinese-black);
}


.pharmacy-list .pharmacy-details .address {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--spanish-gray);
}

.pharmacy-list .pharmacy-details .hours {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--chinese-black);
}

.pharmacy-list .distance-and-options {
    display: flex;
    gap: 30px;
}

.pharmacy-list .distance {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--spanish-gray);
}

.pharmacy-list .distance img {
    width: auto;
    height: 24px;
}


.pharmacy-list .pharmacy-options {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pharmacy-list .pharmacy-card {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pharmacy-list .pharmacy-details {
        text-align: center;
    }

    .pharmacy-list .pharmacy-options {
        flex-direction: row;
    }
    .pharmacy-list .distance-and-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

}

@media (max-width: 480px) {
    .pharmacy-list .pharmacy-options {
        flex-direction: column;
    }
}

/* -------------------------------------------------------------------------- */
.options-list .options-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.options-list .option-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-color1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 130px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

@media (max-width: 576px) {
    .options-list .option-card {
        padding: 20px 15px;
    }
}


.option-card.nav-btn {
    cursor: pointer;
}

.options-list .option-card:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-color2);
}

.options-list .option-card:last-child {
    border-bottom: none;
}

.options-list .option-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-jet);
}

.options-list .option-card p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--spanish-gray);
}

@media (max-width: 576px) {
    .options-list .option-card h3 {
        font-size: 18px;
    }

    .options-list .option-card p {
        font-size: 14px;
    }
}

/* -------------------------------------------------------------------------- */
.symptom-selection-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.symptom-selection-form .form-section {
    margin-bottom: 30px;
}

.symptom-selection-form .input-cont h2 {
    font-size: 16px;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    padding: 0 20px;
}

.symptom-selection-form .buttons-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.symptom-selection-form .buttons-grid-three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}


.symptom-selection-form .section-details {
    text-align: center;
    padding: 0 15px;
}

.symptom-selection-form .section-details p {
    font-size: 16px;
    font-weight: 700;
    color: var(--chinese-black);
}

.symptom-selection-form .section-details span {
    color: var(--accent-color);
}


@media (max-width: 576px) {
    .symptom-selection-form .input-cont h2 {
        font-size: 14px;
        padding: 0 15px;
    }

    .symptom-selection-form .section-details p {
        font-size: 14px;
    }


    .symptom-selection-form .buttons-grid-two-col {
        grid-template-columns: 1fr;
    }

    .symptom-selection-form .buttons-grid-three-col {
        grid-template-columns: 1fr;
    }

    .symptom-selection-form .section-details {
        padding: 0;
    }
}

/* -------------------------------------------------------------------------- */
.products-list .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.products-list .product-card {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.products-list .product-card .product-content-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    justify-content: space-between;
    align-items: center;
}

.products-list .product-card .product-image {
    flex: 0.5;
    height: 90px;
    border-radius: 8px;
    object-fit: contain;
}

.products-list .product-card .product-info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.products-list .product-card .brand-logo {
    width: 80px;
    height: auto;
    margin-bottom: 4px;
}

.products-list .product-card .product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--chinese-black);
}

.products-list .product-card .product-details {
    font-size: 12px;
    font-weight: 600;
    color: var(--chinese-black);
}

.products-list .product-card .quantity-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.products-list .product-card .price-bubble {
    background-color: var(--anti-flash-white);
    border-radius: 50px;
    padding: 8px 16px;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid var(--quick-silver);
}

.products-list .product-card .product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--chinese-black);
}

.products-list .product-card .quantity-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background-color: var(--anti-flash-white);
    border-radius: 50px;
    padding: 6px 8px;
    box-shadow: var(--shadow-color1);
    height: 50px;
    border: 1px solid var(--quick-silver);
}

.products-list .product-card .quantity-buttons button {
    background-color: var(--white);
    border: none;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    font-size: 14px;
    font-weight: 700;
    color: var(--chinese-black);
    cursor: pointer;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--quick-silver);
}

.products-list .product-card .quantity-buttons button:hover {
    background-color: var(--chinese-black);
    color: var(--white);
}

.products-list .product-card .quantity-buttons .quantity-display {
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--chinese-black);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
}

@media (max-width: 768px) {
    .products-list .product-grid {
        grid-template-columns: 1fr;
    }
}



.error-text {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin: 0 0 10px 0;
    padding: 0 15px;
    color: #606366;
}

.quantity-buttons button:disabled {
    cursor: not-allowed !important;
    opacity: 0.5;
}

@media (max-width: 576px) {
    .error-text {
        font-size: 14px;
        text-align: center;
    }

}

/* -------------------------------------------------------------------------- */
.address-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.address-form .form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-form .form-row {
    display: flex;
    gap: 30px;
}

.address-form .input-field {
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    min-height: 50px;
    background-color: var(--white);
    color: var(--chinese-black);
    transition: border-color 0.2s ease;
    border: 1px solid var(--quick-silver);
}

.address-form .input-field::placeholder {
    color: var(--quick-silver);
}

.address-form .input-field:focus {
    border: 1px solid var(--border-color);
    outline: none;
}

.address-form .row-50-50 .input-field:first-child {
    width: 50%;
}

.address-form .row-50-50 .input-field:last-child {
    width: 50%;
}

.address-form .row-60-40 .input-field:first-child {
    width: 60%;
}

.address-form .row-60-40 .input-field:last-child {
    width: 40%;
}

.address-form .row-70-30 .input-field:first-child {
    width: 70%;
}

.address-form .row-70-30 .input-field:last-child {
    width: 30%;
}

.address-form .input-field.full-width {
    width: 100%;
}

@media (max-width: 576px) {
    .address-form .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .address-form .input-field {
        width: 100% !important;
    }

}

/* -------------------------------------------------------------------------- */
.cart-summary {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-summary .header-container {
    background-color: var(--anti-flash-white);
    border-radius: 50px;
    padding: 12px 24px;
    color: var(--granite-gray);
}

.cart-summary .header-container p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.cart-summary .cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 22px;
}

@media (max-width: 576px) {
    .cart-summary .cart-items {
        padding: 20px 15px;
    }

}

.cart-summary .item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-summary .item-details {
    display: flex;
    flex-direction: column;
}

.cart-summary .item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--eerie-black);
    margin: 0;
}

.cart-summary .item-sub-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-jet);
    margin: 0;
}

.cart-summary .item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--eerie-black);
}

.cart-summary .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--spanish-gray);
}

.cart-summary .total-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--eerie-black);
    margin: 0;
}

.cart-summary .total-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--eerie-black);
    margin: 0;
}

.cart-summary .info-text {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--eerie-black);
    margin-top: 15px;
    padding: 0 15px;
}

.cart-summary .payment-logos {
    background-color: var(--white);
    height: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
    border-radius: 22px;
}

.cart-summary .payment-logos img {
    height: 30px;
    width: auto;
}

@media (max-width: 576px) {
    .cart-summary .header-container {
        padding: 10px 18px;
    }

    .cart-summary .header-container p {
        font-size: 14px;
    }

    .cart-summary .item-name,
    .cart-summary .item-price,
    .cart-summary .total-text,
    .cart-summary .total-price {
        font-size: 14px;
    }

    .cart-summary .payment-logos {
        padding: 20px 15px;
    }

}