.bread-link {
    color: #000000CC;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    display: inline-block;
    width: 1.375rem;
    height: 1.375rem;
    margin: 0 1.75rem 0 0.5rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3L10 8L6 13' stroke='%23000000' stroke-width='2.0' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    vertical-align: middle;
}

.active-breadcrumb-item,
.breadcrumb-item.active.active-breadcrumb-item,
.breadcrumb-item.active,
.breadcrumb-item.active span {
    color: #30734C !important;
    font-size: 1.25rem;
    font-weight: 700 !important;
}

.nav-breadcrumbs {
    padding-top: 2rem;
}

.bread-link:hover {
    box-shadow: inset 0 -2px 0 #344863;
    color: #344863;
}

.product-title {
    font-size: 1.75rem;
    color: #000000CC;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 2.43rem;
}


.product-detail-layout {
    display: grid;

    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr) minmax(0, 0.85fr);
    column-gap: 2rem;
    align-items: start;
}

.product-detail-layout__gallery {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.product-detail-layout__info {
    display: flex;
    flex-direction: column;
    width: 100%;

}

.product-detail-layout__buy-card {
    width: 100%;
    min-width: 20rem;
    position: relative;
}

.product-gallery {
    display: flex;
    gap: 0.625rem;
    align-items: stretch;
    position: relative;
    width: 100%;
}

.product-gallery__thumbnails-wrapper {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    align-self: stretch;
}

.product-gallery__thumbnails {
    display: flex;
    padding: 0.1rem;

    flex-direction: column;
    gap: 0.46875rem;
    overflow: hidden auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-gallery__thumbnails::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.product-gallery__thumb {
    border: 1px solid #979797;
    border-radius: 1.25rem;
    background: #fff;
    width: 12.785rem;
    height: 10rem;
    min-height: 10rem;
    flex: 0 0 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.product-gallery__thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-gallery__thumb:hover {
    border-color: #30734C;
    transform: translateY(-1px);
}

.product-gallery__thumb.is-active {
    border-color: #6fc192;
}

.product-gallery__main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.product-gallery__carousel {
    display: none;
}

.product-gallery__main-image {
    border-radius: 20px;
    border: 1px solid #979797;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 31rem;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
}

.product-gallery__image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}


.buy-card-wrapper {
    background: #F7F7F7;
    border-radius: 1.25rem;
    padding: 1.14rem 0.9375rem;
    position: sticky;
    top: 1rem;
}

.buy-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.price-main {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
}

.price-old {
    font-size: 1.1rem;
    color: #A8B1C1;
    text-decoration: line-through;
}

.price-note {
    font-size: 1.125rem;
    color: #979797;
    margin-bottom: 0.8125rem;
    line-height: 1.3;
    font-weight: 400;
}

.discount-badge {
    color:#30734C;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.buy-card-actions {
    display: flex;
    gap: 1.562rem;
    margin-bottom: 0.75rem;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 10.125rem;
    background: #fff;
}

.qty-btn {
    background: #fff;
    border: none;
    width: 1.5rem;
    height: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 1.6875rem;
    line-height: 130%;
    cursor: pointer;
    display: flex;
    color:#000000;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover:not(:disabled) {
    background-color: #f8f9fa;
}

.qty-btn:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.qty-input {
    width: 3rem;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 1.6875rem;
    line-height: 130%;
    color: #000000;
    pointer-events: none;
}

.add-btn-wrapper {
    flex: 1;
}


.btn-one-click {
    font-size: 1.375rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    transition: all 0.2s;
    border-color: #000;
    color: #000;
    padding: 0.625rem;
}
.btn-one-click:hover {
    background-color: #E6E6E6;
    color: #000;
}
.btn-one-click:active{
    background: #D0D0D0;
    color: #000;
}

.stock-status {
    margin-bottom: 1.5rem;
}
.status-title {
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5625rem;
    color: #000;
}
.status-details {
    color:#30734C;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pharmacy-loc {
    padding: 0.625rem;
    color: #979797;
    font-size: 1.125rem;
    display: flex;
    font-weight: 400;
    line-height: 130%;
    align-items: center;
    gap: 0.5rem;
}
.pharmacy-loc i {
    color: #0C7A4D;
    font-weight: 700;
}

.review-summary-inline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.review-rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6C7B97;
}

.review-stars {
    display: flex;
    gap: 0;
}
.review-stars .bi-star-fill {
    color: #C3CCD9;
    font-size: 1.625rem;
}
.review-stars .bi-star-fill.active {
    color: #f8a300;
}

.product-tabs {
    padding: 0;
}

.product-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 0;
    border-bottom: 1px solid #e4e9f2;
    padding-bottom: 0.75rem;
}

.product-tab-button {
    border: none;
    border-radius: 0;
    padding: 0 0 0.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    background: transparent;
    color: #7d879c;
    transition: color 0.2s ease;
    cursor: pointer;
}

.product-tab-button:hover {
    color: #0c7a4d;
}

.product-tab-button.active {
    position: relative;
    color: #0c7a4d;
}

.product-tab-button.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.6rem;
    height: 2px;
    background: #0c7a4d;
    border-radius: 999px;
}

.product-tab-button.disabled {
    background: transparent;
    color: #bcc5d3;
    cursor: not-allowed;
}

.product-tabs__panes {
    position: relative;
}

.product-tab-pane {
    display: none;
    animation: fadeInTabs 0.25s ease;
}

.product-tab-pane.active {
    display: block;
    background: #f6f8f9;
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    margin-top: 1.5rem;
}

.product-tab-pane.disabled {
    display: none !important;
}

.product-tab-pane__content {
    position: relative;
    transition: max-height 0.3s ease;
}

.product-tab-pane__content.is-collapsible {
    max-height: 300px;
    overflow: hidden;
}

.product-tab-pane__content.is-collapsible:not(.is-expanded)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(246, 248, 249, 0) 0%, #f6f8f9 100%);
    pointer-events: none;
}

.product-tab-pane__content.is-collapsible.is-expanded {
    max-height: none;
    overflow: visible;
}

.product-tab-pane__content.is-collapsible.is-expanded::after {
    opacity: 0;
}

.product-tab-pane__toggle {
    display: none;
    margin-top: 1rem;
    border: none;
    background: transparent;
    color: #0c7a4d;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.product-tab-pane__toggle.is-visible {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.product-tab-pane__toggle.is-visible::after {
    content: "\25BC";
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.product-tab-pane__toggle.is-visible.is-expanded::after {
    transform: rotate(180deg);
}

.product-description {
    color: #344863;
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-description__empty,
.product-tab-placeholder {
    color: #7d879c;
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px dashed #cdd6e2;
}

.product-reviews-tab__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.product-reviews-tab__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #344863;
}

.product-reviews-tab__link {
    color: #0c7a4d;
    text-decoration: none;
    font-weight: 600;
}

.product-reviews-tab__link:hover {
    text-decoration: underline;
}

.product-reviews-tab__empty {
    color: #7d879c;
    font-size: 1.05rem;
}

.product-reviews-tab__action {
    color: #0c7a4d;
    font-weight: 600;
}
.product-reviews-tab__action:hover {
    text-decoration: underline;
    color:#0e4c33
}

.product-review-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
}

.product-review-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    color: #344863;
}

.product-review-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.product-review-card__stars {
    display: inline-flex;
    gap: 0.25rem;
}

.product-review-card__stars .bi-star-fill {
    font-size: 1.125rem;
    color: #d0d8e4;
}

.product-review-card__stars .bi-star-fill.active {
    color: #f8a300;
}

.product-review-card__date {
    font-size: 0.95rem;
    color: #7d879c;
    background: #edf6f1;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    line-height: 1.2;
}

.product-review-card__title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2f3f55;
}

.product-review-card__text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #344863;
}

.product-review-card__meta {
    margin-top: 1.25rem;
    font-size: 0.98rem;
    color: #7d879c;
}

.product-review-card__author strong {
    color: #2f3f55;
}

.product-review-card__actions {
    margin-top: 1.5rem;
    border-top: 1px solid #d6e7e0;
    padding-top: 1.25rem;
}

.product-review-card__vote-label {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2f3f55;
}

.product-review-card__votes {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-review-card__vote-form {
    margin: 0;
}

.product-review-card__vote-btn {
    min-width: 4.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.product-review-card + hr {
    display: none;
}

@keyframes fadeInTabs {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-write-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: transparent;
    color: #30734C;
    transition: all 0.2s ease;
    text-decoration: none;
}

.review-write-btn i {
    font-size: 1.25rem;
}

.review-write-btn:hover {
    background-color: #30734C;
    color: #FFFFFF;
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-summary-count {
    color: #0C7A4D;
    font-weight: 600;
    text-decoration: none;
}
.btn-action{
    background: linear-gradient(180deg, #4162E5 0%, #3C4C90 100%);
    color:white;
    border-radius:0.625rem;
    border:none;
    padding: 0.875rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 130%;
}

.btn-action:hover {
    background: linear-gradient(180deg, #2649DB 0%, #142775 100%);
}
.btn-action:active {
    background: linear-gradient(180deg, #2542BD 0%, #0E1D5C 100%);
}
.select-pharmacy-btn{
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 130%;
    padding: 0.625rem;
}

.extra-actions {
    margin-bottom: 0.75rem;
}
.btn-pharmacy {
    background-color: #E6E8EC;
    border: none;
    color: #7D879C;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.7rem;
    transition: all 0.2s;
}
.btn-pharmacy:hover {
    background-color: #d0d4da;
    color: #344863;
}

.btn-reserve {
    background-color: #3b5ba9;
    border-color: #3b5ba9;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.7rem;
}
.btn-reserve:hover {
    background-color: #2f4a8c;
}


.buy-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.stars-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.stars-visual {
    display: flex;
    align-items: center;
}
.stars-visual i {
    font-size: 1.1rem;
    margin-right: 2px;
}
.write-review-icon {
    font-size: 1.2rem;
    color: #979797;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.write-review-icon:hover {
    color: #3b5ba9;
}

.wishlist-container{
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-container button {
    background: none;
    border: none;
    padding: 0;
}
.btn-like-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    color: #C71878;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-like-item i {
    font-size: 1.3rem;
    line-height: 1;
}

.btn-like-item:hover {
    background: #dc83b3;
    color: #FFFFFF;
}

.wishlist-container > i {
    font-size: 1.5rem;
    color: #C71878;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-scroll-section {
    position: relative;
}

.product-scroll-title {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 130%;
    color:#000;
}

.product-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(16rem, 1fr);
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-snap-type: x proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-scroll::-webkit-scrollbar {
    display: none;
}

.product-scroll__item {
    scroll-snap-align: start;
}

.product-scroll__item > * {
    height: 100%;
}



.product-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000CC;
}

.product-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    color: #344863;
    font-size: 1.0625rem;
}

.product-info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.product-info-item span {
    font-weight: 400;
    line-height: 130%;
    font-size: 1.375rem;
    color: #979797;
}

.product-info-term {
    flex: 0 0 auto;
}


.product-extra-title {
    margin-top: 1.1875rem;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 130%;
    color: #000000CC;
}

.product-category-list {
    padding: 0 0.625rem;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-category-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.product-category-icon svg {
    width:1.5rem;
    height: 1.5rem;
}

.product-category-icon svg path {
    stroke: #000000;
    transition: stroke 0.2s ease;
}

.product-category-icon:hover {
    background-color: rgba(12, 122, 77, 0.08);
}

.product-category-icon:hover svg path {
    stroke: #0c7a4d;
}

.product-category-arrow {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.5rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3L10 8L6 13' stroke='%230c7a4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.product-category-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 992px) {
    .product-category-list {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .product-category-links {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .product-category-item {
        flex-direction: row;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        width: 1.1rem;
        height: 1.1rem;
        margin: 0 1.4rem 0 0.2rem;
    }

}

.product-category-link {
    color: #0c7a4d;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.375rem;
}

.product-category-link:hover {
    text-decoration: underline;
    color: #0e4c33;
}

.product-category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.product-instruction-card {
    margin-top: 1.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #f5f7fb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    color: #344863;
}

.product-instruction-icon {
    font-size: 1.5rem;
    color: #000000;
}

.product-instruction-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex: 1 1 auto;
}

.product-instruction-title {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 130%;
    color: #000000;
}

.product-instruction-link {
    font-weight: 400;
    color: #000000;
    font-size: 1.25rem;
    line-height: 130%;
}

.product-instruction-link:hover {
    text-decoration: none;
    color: #0e4c33;
}

.button-buy:active {
    color: #fff;
    background-color: #245a3a;
    border-color: #245a3a;
}

.button-buy:hover {
    color: #fff;
    background-color: #245a3a;
    border-color: #245a3a;
}

.button-buy:focus {
    color: #fff;
    background-color: #245a3a;
    border-color: #245a3a;
    box-shadow: 0 0 0 0.25rem rgb(48 115 76 / 25%);
}

.sec-hover {
    background-color: #C3CCD9;
    border-color: #C3CCD9;
}

.sec-hover:hover {
    background-color: #979da7;
    border-color: #adb5c1;
}

.sec-hover:active {
    color: #fff;
    background-color: #979da7;
    border-color: #979da7;
}

.btn-secondary:focus {
    color: #fff;
    background-color: #979da7;
    border-color: #979da7;
    box-shadow: 0 0 0 0.25rem rgb(130 138 145 / 50%);
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    background: rgba(199, 24, 120, 0.15);
    border: none;
    color: #C71878;
    opacity: 1;
}

.carusel-first-True { display: block; }
.carusel-first-False { display: none; }
.carusel-second-True { display: block; }
.carusel-second-False { display: none; }
.carusel-third-True { display: block; }
.carusel-third-False { display: none; }

@media (max-width: 770px) {
    .carusel-first-True { display: none; }
    .carusel-first-False { display: block; }
    .carusel-second-True { display: none; }
    .carusel-second-False { display: block; }
    .carusel-third-True { display: none; }
    .carusel-third-False { display: block; }
}


.display-card-show-fisrt { display: flex; }
.display-card-show-second { display: none; }
.display-filter-show { display: block; }
.display-offcanvas-button-show { display: none; }
.display-marketing-show { display: flex; }
.display-card-show-third { display: none; }

.btn-review-yes {
    color: #fff;
    background-color: #70C311;
    border-color: #70C311;
}
.btn-review-no {
    color: #fff;
    background-color: #e84858;
    border-color: #e84858;
}
.btn-review-yes:hover {
    color: #fff;
    background-color: #70C311;
    border-color: #70C311;
}
.btn-review-no:hover {
    color: #fff;
    background-color: #e84858;
    border-color: #e84858;
}

.form-control-review:focus {
    color: #212529;
    background-color: #fff;
    border-color: #304563;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(48 69 99 / 35%);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


@media (max-width: 1000px) {
    .product-detail-layout {
        grid-template-columns: 2fr 1fr;
        column-gap: 3.5rem;
    }

    .product-detail-layout__buy-card {
        grid-column: 2;
        grid-row: 1;
    }

    .product-detail-layout__info {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 2rem;
    }

    .display-card-show-fisrt { display: none; }
    .display-card-show-second { display: block; }

    .product-gallery {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .product-gallery__main {
        order: 1;
        width: 100%;
    }

    .product-gallery__thumbnails-wrapper {
        order: 2;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        height: auto;
    }

    .product-gallery__thumbnails {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.75rem;
    }

    .product-gallery__thumb {
        flex: 0 0 auto;
        min-height: 7rem;
        height: 7rem;
        width: auto;
        aspect-ratio: 4 / 3;
    }
    .product-extra-title {
        margin-top: 3.5rem;
    }
    .product-instruction-card{
        margin-bottom: 2.7rem;
    }
}
.start-word-price{
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 130%;
    margin-right: 0.4rem;
}
@media (max-width: 500px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .product-detail-layout__gallery {
        width: 100%;
    }

    .product-detail-layout__buy-card {
        grid-column: 1;
        grid-row: auto;
        margin-top: 1.5rem;
    }

    .product-detail-layout__info {
        grid-column: 1;
        grid-row: auto;
    }

    .display-filter-show { display: none; }
    .display-offcanvas-button-show { display: block; }

    .product-gallery {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .product-gallery:not(.product-gallery--single) .product-gallery__main,
    .product-gallery:not(.product-gallery--single) .product-gallery__thumbnails-wrapper {
        display: none;
    }

    .product-gallery--single .product-gallery__main {
        display: block;
        width: 100%;
    }

    .product-gallery--single .product-gallery__thumbnails-wrapper {
        display: none;
    }

    .product-gallery:not(.product-gallery--single) .product-gallery__carousel {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0.5rem 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-gallery--single .product-gallery__carousel {
        display: none;
    }

    .product-gallery__carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: center;
        display: flex;
        justify-content: center;
    }

    .product-gallery__carousel-image {
        width: 100%;
        height: auto;
        border-radius: 1.25rem;
        border: 1px solid #979797;
        background: #fff;
        padding: 0.75rem;
        object-fit: contain;
    }

    .product-gallery--single .product-gallery__main-image {
        border-radius: 1.25rem;
        padding: 0.75rem;
        min-height: 280px;
        height: auto;
        background: #fff;
    }

    .product-gallery--single .product-gallery__image {
        width: 100%;
        height: auto;
        max-height: 100%;
    }

    .product-gallery__carousel::-webkit-scrollbar {
        display: none;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        width: 0.6rem;
        height: 0.6rem;
    }
}

@media (max-width: 768px) {
    .product-gallery__main-image {
        width: 100%;
        min-height: 280px;
    }
    .bread-link{
        font-size: 0.9rem;
    }
    .active-breadcrumb-item, .breadcrumb-item.active.active-breadcrumb-item {
        font-size: 0.9rem;
    }
    .product-detail-layout__gallery,
    .product-detail-layout__info {
        width: 100%;
    }
    .product-instruction-title{
        font-size: 2rem;
    }
    .product-instruction-card{
        padding: 1.6rem 2.3rem;
    }
    .product-instruction-icon{
        font-size: 2.3rem;
    }
    .display-marketing-show { display: none; }
    .display-card-show-third { display: flex; }
    .display-card-show-second { display: none; }
    .product-instruction-card{
        gap:0.4rem;

    }
    .product-instruction-link{
        font-size: 2rem;
    }
    .buy-card-actions {
        gap:2rem;
    }
    .qty-wrapper {
        width: 11.6rem;
    }
}
@media (max-width: 320px) {
    .product-category-link{
        font-size: 0.982rem;
    }
    .product-instruction-icon{
        font-size: 1.1rem;
    }
    .product-instruction-card{
        padding: 0.8rem 1.1rem;
    }
    .product-instruction-title{
        font-size: 1.2rem;
    }
    .product-instruction-link{
        font-size: 1.2rem;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        width: 0.6rem;
        height: 0.6rem;
        margin: 0 0.6rem 0 0;
    }
    .product-category-arrow {
        width: 1.1rem;
        height: 1.1rem;
    }
}

.pharmacy-availability-section {
    background-color: #f9f9f9;
    margin-top: 3.75rem;
}
.filters-part{
    display: flex;
    flex-direction: column;
    padding: 0 2.625rem;
}
.filter-title{
    margin-bottom: 1.625rem;
}

.pharmacy-filters-container {
    display: flex;
    align-items: center;
    gap: 4.1875rem;
    margin-bottom: 2rem;
}

.pharmacy-filter-select {
    width: 25%;
    flex-shrink: 0;
}

.pharmacy-filter-search {
    width: 56%;
    flex-shrink: 0;
}

.pharmacy-filter-map {
    width: 10.4%;
    flex-shrink: 0;
}

.pharmacy-filter-map a {
    display: flex;
    align-items: center;
    gap: 1.27rem;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 130%;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.pharmacy-filter-map a i {
    font-size: 2.4rem;
    color: #000;
}

.pharmacy-filter-map a:hover {
    color: #357a38;
}

.pharmacy-filter-map a:hover i {
    color: #357a38;
}

.pharmacy-availability-section h3 {

    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.pharmacy-availability-section .form-select {
    border: 1.2px solid #979797;
    font-size: 1.5rem;
    color: #797776;
    padding: 1.25rem 2.25rem;
    line-height: 130%;
    border-radius: 0rem;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.25rem 1.25rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 4rem;
}

.pharmacy-availability-section .form-select:focus {
    border-color: #357a38;
    box-shadow: 0 0 0 0.2rem rgba(53, 122, 56, 0.25);
    outline: none;
}

.pharmacy-availability-section .form-select:hover {
    border-color: #357a38;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 2.25rem;
    font-size: 1.5rem;
    color: #797776;
    border: 1.2px solid #979797;
    border-radius: 1.5rem;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.custom-select:hover {
    border-color: #30734C;
}

.custom-select.active {
    border-color: #30734C;
    box-shadow: 0 0 0 0.2rem rgba(48, 115, 76, 0.25);
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.custom-select-value {
    flex: 1;
    color: #000;
}

.custom-select-arrow {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.custom-select-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
}

.custom-select.active .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1.2px solid #30734C;
    border-radius: 0rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    max-height: 20rem;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.2s ease;
}

.custom-select.active .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 1rem 2.25rem;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    transition: all 0.15s ease;
}

.custom-select-option:first-child {
    border-radius: 0;
    padding-top: 1.25rem;
}

.custom-select-option:last-child {
    border-radius: 0 0 1.5rem 1.5rem;
    padding-bottom: 1.25rem;
}

.custom-select-option:hover {
    background-color: #f0f7f1;
    color: #30734C;
}

.custom-select-option.selected {
    background-color: #30734C;
    color: #fff;
    font-weight: 500;
}

.custom-select-option.selected:hover {
    background-color: #275d3d;
    color: #fff;
}

.custom-select-dropdown::-webkit-scrollbar {
    width: 0.5rem;
}

.custom-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 1rem;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: #30734C;
    border-radius: 1rem;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #275d3d;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 2.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #797776;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1.25rem 2.25rem 1.25rem 5.5rem;
    font-size: 1.5rem;
    line-height: 130%;
    color: #797776;
    border: 1.2px solid #979797;
    border-radius: 1.5rem;
    outline: none;
    background-color: #fff;
}

.search-input::placeholder {
    color: #797776;
    opacity: 1;
}

.search-input:focus {
    border-color: #357a38;
    box-shadow: 0 0 0 0.2rem rgba(53, 122, 56, 0.25);
}

.pharmacy-list {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    margin-top: 2.75rem;
}

.pharmacy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 0.625rem;
    padding: 0;
}

.pharmacy-item-location {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 0 0 auto;
    padding: 0 0.9225rem;
    width: 27.4%;
}

.pharmacy-item-location .bi-geo-alt {
    color: #30734C;
    font-size: 2rem;
    flex-shrink: 0;
}

.pharmacy-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.pharmacy-item-name {
    font-size: 1.955rem;
    font-weight: 700;
    line-height: 130%;
    color: #000;
    text-decoration: underline;
}

.pharmacy-item-address {
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 130%;
    color: #000;
}

.pharmacy-item-schedule {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 130%;
    color: #979797;
    flex: 0 0 auto;
    width: 14%;
}

.pharmacy-item-availability {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 0 0 auto;
    align-items: center;
    width: 19%;
}

.pharmacy-item-stock {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 130%;
    color: #30734C;
}

.pharmacy-item-pickup {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 130%;
    color: #000;
}

.pharmacy-item-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 7.5%;
}

.pharmacy-item-price-label {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 130%;
    color: #979797;
}

.pharmacy-item-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 130%;
    color: #000;
}

.pharmacy-item-action {
    flex: 0 0 auto;
    width: 17.6%;
    display: flex;
    justify-content: flex-end;
}

.pharmacy-item-btn {
    background-color: #30734C;
    border: none;
    border-radius: 1.25rem;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 130%;
    padding: 1.625rem 2rem;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    white-space: nowrap;
}

.pharmacy-item-btn:hover {
    background-color: #265a3a;
}

.extra-pharmacy.d-none {
    display: none !important;
}

#togglePharmaciesBtn {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
}

#togglePharmaciesBtn:hover {
    color: #357a38;
    text-decoration: underline;
}

.extra-pharmacy.d-none {
    display: none !important;
}

.review-form-container {
    max-width: 50rem;
    margin: 3rem auto;
    padding: 0 1rem;
}

.review-form-wrapper {
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 130%;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
}

.review-form .form-floating {
    margin-bottom: 1.5rem;
}

.review-form .form-control-review {
    border: 1.2px solid #D9D9D9;
    border-radius: 0.75rem;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s ease;
}

.review-form .form-control-review:focus {
    border-color: #30734C;
    box-shadow: 0 0 0 0.2rem rgba(48, 115, 76, 0.15);
}

.review-form label {
    font-size: 1rem;
    font-weight: 500;
    color: #979797;
    padding-left: 0.25rem;
}

.review-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-review-submit {
    flex: 1;
    background-color: #30734C;
    border: none;
    border-radius: 0.625rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 130%;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-review-submit:hover {
    background-color: #265a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 115, 76, 0.3);
}

.btn-review-cancel {
    flex: 1;
    background-color: #fff;
    border: 1.2px solid #D9D9D9;
    border-radius: 0.625rem;
    color: #979797;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 130%;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-review-cancel:hover {
    background-color: #F3F5FA;
    border-color: #979797;
    color: #000;
}

@media (max-width: 1100px) {
    .pharmacy-availability-section {
        padding: 2rem 1rem !important;
    }
    
    .filter-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .pharmacy-filters-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pharmacy-filter-select,
    .pharmacy-filter-search,
    .pharmacy-filter-map {
        width: 100% !important;
    }
    
    .pharmacy-filter-select .form-select {
        font-size: 1rem;
        padding: 0.75rem 2.5rem 0.75rem 1rem;
        background-position: right 0.75rem center;
        background-size: 1rem 1rem;
    }
    
    .custom-select {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-radius: 1.5rem;
    }
    
    .custom-select-arrow svg {
        width: 1rem;
        height: 1rem;
    }
    
    .custom-select-dropdown {
        border-radius: 0;
        max-height: 15rem;
        top: calc(100% + 0.25rem);
    }
    
    .custom-select-option {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .custom-select-option:first-child {
        border-radius:0;
        padding-top: 1rem;
    }
    
    .custom-select-option:last-child {
        border-radius: 0 0 1rem 1rem;
        padding-bottom: 1rem;
    }
    
    .search-input-wrapper {
        height: auto;
        min-height: 3rem;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 0.75rem 1rem 0.75rem 3rem;
        height: 3rem;
    }
    
    .search-input-wrapper .search-icon {
        font-size: 1.125rem;
        left: 0.875rem;
    }
    
    .pharmacy-filter-map a {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .pharmacy-filter-map .bi-geo-alt {
        font-size: 1.25rem;
    }

    .pharmacy-list {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .pharmacy-item {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1rem;
        padding: 1.5rem;
        background-color: #fff;
        border: 1px solid #E6E8EC;
    }
    
    .pharmacy-item-location {
        width: 100% !important;
        padding: 0;
        gap: 0.75rem;
    }
    
    .pharmacy-item-location .bi-geo-alt {
        font-size: 1.5rem;
    }
    
    .pharmacy-item-info {
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .pharmacy-item-name {
        font-size: 1.125rem;
    }
    
    .pharmacy-item-address {
        font-size: 0.9375rem;
    }
    
    .pharmacy-item-schedule {
        width: 100% !important;
        font-size: 0.9375rem;
        padding-left: 2.25rem;
    }
    
    .pharmacy-item-availability {
        width: 100% !important;
        align-items: flex-start;
        padding-left: 2.25rem;
        gap: 0.25rem;
    }
    
    .pharmacy-item-stock {
        font-size: 1rem;
    }
    
    .pharmacy-item-pickup {
        font-size: 0.875rem;
    }
    
    .pharmacy-item-price {
        width: 100% !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 2.25rem;
    }
    
    .pharmacy-item-price-label {
        font-size: 0.9375rem;
    }
    
    .pharmacy-item-price-value {
        font-size: 1.125rem;
    }
    
    .pharmacy-item-action {
        width: 100% !important;
        padding-left: 2.25rem;
        justify-content: stretch;
    }
    
    .pharmacy-item-btn {
        width: 100%;
        font-size: 1.125rem;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
    }
    
    #togglePharmaciesBtn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .review-form-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .review-form-wrapper {
        padding: 1.5rem;
    }
    
    .review-form-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .review-form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-review-submit,
    .btn-review-cancel {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}