/* Bouqshop product detail page */

.bq-product-page {
    --bq-green: #123f34;
    --bq-green-soft: #eaf6dc;
    --bq-cream: #f7f4ef;
    --bq-border: #eeeeee;
    --bq-muted: #777;
    --bq-text: #222;
    background: #ffffff;
    padding-bottom: 48px;
}

.bq-product-page .layout-container {
    max-width: 1280px;
}

.bq-product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 14px 0 14px;
    font-size: 13px;
    color: var(--bq-muted);
}

.bq-product-breadcrumbs a {
    color: #333;
    text-decoration: none;
}

.bq-product-breadcrumbs a:hover {
    text-decoration: underline;
}

.bq-product-breadcrumbs .is-current {
    color: #555;
}

.bq-product-top-section {
    width: 100%;
    max-width: 100%;
}

.bq-product-top-grid {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 1fr)
        minmax(280px, 340px);
    gap: 20px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.bq-product-gallery-col,
.bq-product-details-col,
.bq-product-shop-col {
    min-width: 0;
    max-width: 100%;
}

.bq-product-gallery-col {
    grid-column: 1;
    grid-row: 1;
}

.bq-product-details-col {
    grid-column: 2;
    grid-row: 1;
}

.bq-product-shop-col {
    grid-column: 3 !important;
    grid-row: 1 !important;
    width: auto;
    max-width: 100%;
}

.bq-product-details-card,
.bq-product-shop-card,
.bq-product-content-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: none;
}

.bq-product-gallery,
.bq-product-gallery-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.bq-product-gallery-main {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    background: #f3f1ed;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bq-product-main-image-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.bq-product-gallery-main .bq-product-main-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transform: none !important;
    scale: 1 !important;
    zoom: 1 !important;
    transition: opacity 0.2s ease !important;
    pointer-events: none;
}

.bq-product-gallery-main:hover .bq-product-main-image,
.bq-product-main-image:hover {
    transform: none !important;
    scale: 1 !important;
    zoom: 1 !important;
}

.bq-product-gallery .zoomImg,
.bq-product-gallery .zoomContainer,
.bq-product-gallery-main .zoomImg,
.bq-product-gallery-main .zoomContainer {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.bq-product-gallery-badge,
.bq-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f0ebe3;
    color: #3d3a35;
    font-size: 11px;
    font-weight: 600;
}

.bq-product-gallery-wishlist,
.bq-product-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.94);
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.bq-product-gallery-wishlist:hover,
.bq-product-wishlist-btn:hover {
    color: #c0392b;
    border-color: #f0c9c9;
}

.bq-product-gallery-arrow,
.bq-product-gallery-prev,
.bq-product-gallery-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--bq-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
}

.bq-product-gallery-prev { left: 14px; }
.bq-product-gallery-next { right: 14px; }

.bq-product-gallery-preview,
.bq-product-gallery-preview-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.bq-product-gallery-count {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 5;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.bq-product-gallery-thumbnails {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    padding: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.bq-product-gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.bq-product-thumb {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    border-radius: 11px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bq-product-thumb.is-active {
    border-color: #244f43;
    box-shadow: 0 0 0 1px #244f43;
}

.bq-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
    transform: none !important;
}

.bq-gallery-modal-content {
    border-radius: 16px;
    overflow: hidden;
}

.bq-gallery-modal-count {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.bq-gallery-modal-stage {
    width: 100%;
    min-height: 280px;
    max-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 12px;
    overflow: hidden;
}

.bq-gallery-modal-image {
    max-width: 100%;
    max-height: 72vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bq-gallery-modal-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: #fff;
    color: #244f43;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bq-gallery-modal-prev { left: 8px; }
.bq-gallery-modal-next { right: 8px; }

@media (max-width: 991px) {
    .bq-product-gallery-main {
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
    }
}

@media (max-width: 575px) {
    .bq-product-gallery-main {
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
    }

    .bq-product-thumb {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }
}

.bq-product-details-card {
    width: 100%;
    min-width: 0;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: none;
}

.bq-product-category-label {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: var(--bq-green-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bq-green);
}

.bq-product-title {
    margin: 0 0 8px;
    font-family: inherit;
    font-size: 28px;
    font-weight: 400;
    color: var(--bq-text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.bq-product-florist-link {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.bq-product-florist-link a {
    color: var(--bq-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bq-product-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #444;
}

.bq-product-rating-row a {
    color: #555;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bq-product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--bq-text);
    margin-bottom: 10px;
}

.bq-product-price del {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin-left: 8px;
}

.bq-product-short-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin-bottom: 16px;
}

.bq-product-highlight-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.bq-product-pill {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--bq-cream, #f7f4ef);
    border: 1px solid #ece7df;
    font-size: 13px;
    color: #333;
}

.bq-product-pill i {
    color: var(--bq-green);
    font-size: 18px;
    margin-top: 1px;
}

.bq-product-pill strong {
    display: block;
    font-weight: 700;
}

.bq-product-deliver-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 13px;
    color: #444;
}

.bq-product-deliver-row .change-link {
    color: var(--bq-green);
    font-weight: 600;
    text-decoration: underline;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.bq-delivery-date-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.bq-delivery-date-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.bq-delivery-date-btn {
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    min-height: 62px;
}

.bq-delivery-date-btn strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.bq-delivery-date-btn.is-active {
    border-color: var(--bq-green);
    background: var(--bq-green-soft);
    color: var(--bq-green);
}

.bq-delivery-date-btn:disabled,
.bq-delivery-date-btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bq-delivery-date-custom {
    position: relative;
    min-width: 0;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

/* Invisible date input covers the Custom date control so the native picker anchors here. */
.bq-custom-date-input {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    /* Fully transparent inputs often fail to open the native picker in Chrome/Safari. */
    opacity: 0.011;
    cursor: pointer;
    font-size: 16px; /* avoid iOS zoom; keep control tappable */
    color: transparent;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.bq-custom-date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 1;
    cursor: pointer;
    background: transparent;
    color: transparent;
}

.bq-product-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.bq-product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 0;
}

.bq-product-actions button {
    width: 100%;
}

.bq-product-out-of-stock {
    margin-top: 10px;
}

.bq-btn-primary,
.bq-product-details-card .add-to-cart,
.bq-product-details-card #added_to_cart_btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 12px !important;
    background: var(--bq-green) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bq-btn-secondary,
.bq-product-details-card .buy-now {
    width: 100%;
    height: 48px;
    border: 1px solid var(--bq-green) !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--bq-green) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.bq-btn-outline {
    width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.bq-product-trust-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #eeeeee;
}

.bq-product-trust-icons .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 11px;
    line-height: 1.35;
    color: #555555;
}

.bq-product-trust-icons .item i {
    display: block;
    font-size: 20px;
    color: #244f43;
    margin-bottom: 0;
}

.bq-product-shop-card {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: none;
}

.bq-product-shop-logo {
    width: 92px;
    height: 92px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e8e1d8;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.bq-product-shop-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 6px;
    display: block;
}

.bq-product-shop-name {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #202020;
}

.bq-product-shop-name a {
    color: inherit;
    text-decoration: none;
}

.bq-product-shop-name a:hover {
    color: #244f43;
}

.bq-product-shop-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
    font-size: 12px;
}

.bq-product-shop-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.bq-product-shop-stars i,
.bq-product-shop-stars .rating i {
    margin-right: 0 !important;
    font-size: 14px;
    color: #e5a323;
}

.bq-product-shop-rating-value {
    font-weight: 600;
    color: #333333;
}

.bq-product-shop-review-count {
    color: #666666;
    text-decoration: none;
}

.bq-product-shop-review-count:hover {
    color: #244f43;
    text-decoration: underline;
}

.bq-product-shop-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 6px;
    font-size: 12px;
    color: #777777;
}

.bq-product-shop-description {
    margin: 16px 0 18px;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    color: #606060;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bq-product-shop-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.bq-product-shop-visit {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #244f43;
    border-radius: 8px;
    background: #ffffff;
    color: #244f43;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.bq-product-shop-visit:hover {
    background: #244f43;
    color: #ffffff;
}

.bq-product-shop-message {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.bq-product-shop-message:hover {
    border-color: #244f43;
    color: #244f43;
}

.bq-product-shop-benefits {
    display: flex;
    flex-direction: column;
    gap: 13px;
    list-style: none;
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid #eeeeee;
    text-align: left;
}

.bq-product-shop-benefits li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #5f5f5f;
}

.bq-product-shop-benefits li:before {
    content: none;
}

.bq-product-shop-benefits li i {
    width: 20px;
    font-size: 17px;
    text-align: center;
    color: #315d4f;
}

@media (min-width: 1200px) {
    .bq-product-shop-card {
        position: sticky;
        top: 100px;
    }
}

.bq-product-tabs {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    margin: 28px 0 18px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 0;
}

.bq-product-tabs a {
    flex-shrink: 0;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: #777;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.bq-product-tabs a.is-active,
.bq-product-tabs a:hover {
    color: var(--bq-green);
    border-bottom-color: var(--bq-green);
}

.bq-product-desc-care-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.6fr);
    gap: 18px;
    margin-bottom: 22px;
    align-items: stretch;
}

.bq-product-content-card {
    padding: 22px;
}

.bq-product-content-card h2 {
    margin: 0 0 12px;
    font-family: inherit;
    font-size: 20px;
    font-weight: 400;
}

.bq-product-content-card .aiz-editor-data {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.bq-product-feature-list {
    margin: 14px 0 0;
    padding-left: 18px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

/* Care Tips — two illustrated cards */
.bq-care-section {
    width: 100%;
    margin-top: 0;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: none;
}

.bq-care-header {
    margin-bottom: 18px;
}

.bq-care-title {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
}

.bq-care-subtitle {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.55;
    color: #777777;
}

.bq-care-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.bq-care-card {
    display: grid;
    grid-template-columns: minmax(130px, 38%) minmax(0, 1fr);
    min-width: 0;
    min-height: 245px;
    overflow: hidden;
    border: 1px solid;
    border-radius: 16px;
}

.bq-care-card.is-relevant {
    box-shadow: 0 8px 22px rgba(36, 79, 67, 0.07);
}

.bq-care-card-flower {
    background: linear-gradient(135deg, #fff8f6 0%, #fdf0ee 100%);
    border-color: #f2e1dd;
}

.bq-care-card-plant {
    background: linear-gradient(135deg, #f8fbf5 0%, #eef5e9 100%);
    border-color: #e0e9da;
}

.bq-care-card-image {
    position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
}

.bq-care-card-image img {
    width: 100%;
    height: 100%;
    min-height: 245px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.bq-care-card-content {
    min-width: 0;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bq-care-eyebrow {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #244f43;
}

.bq-care-card-content h3 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #242424;
}

.bq-care-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bq-care-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #555555;
}

.bq-care-list li i {
    flex: 0 0 auto;
    margin-top: 2px;
    font-size: 16px;
    color: #486f61;
}

.bq-product-specific-care {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eeeeee;
}

.bq-product-specific-care strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #244f43;
}

.bq-product-specific-care-body {
    font-size: 13px;
    line-height: 1.55;
    color: #555555;
}

.bq-product-specific-care-body p:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .bq-care-card {
        grid-template-columns: minmax(105px, 34%) minmax(0, 1fr);
    }
}

.bq-product-section {
    margin-bottom: 22px;
}

.bq-product-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.bq-product-section-head h2 {
    margin: 0;
    font-family: inherit;
    font-size: 22px;
    font-weight: 400;
    color: var(--bq-text);
    letter-spacing: -0.01em;
}

.bq-product-section-head a {
    color: var(--bq-green);
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
}

.bq-customer-reviews {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 22px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: none;
}

.bq-reviews-heading-row {
    margin-bottom: 0;
}

.bq-reviews-title {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
}

.bq-reviews-layout {
    display: grid;
    grid-template-columns: minmax(245px, 300px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.bq-reviews-summary {
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.bq-review-score {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #222222;
}

.bq-review-stars {
    margin-top: 8px;
}

.bq-review-stars i {
    color: #e6a326;
}

.bq-review-total {
    margin-top: 8px;
    font-size: 13px;
    color: #777777;
}

.bq-rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
}

.bq-rating-breakdown-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 38px;
    gap: 8px;
    align-items: center;
}

.bq-rating-label {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: #555555;
}

.bq-rating-label i {
    color: #e6a326;
}

.bq-rating-progress {
    width: 100%;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #ececec;
}

.bq-rating-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #e6a326;
}

.bq-rating-percent {
    font-size: 11px;
    text-align: right;
    color: #777777;
}

.bq-write-review-btn {
    margin-top: 18px;
    min-height: 40px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #315d4f;
    border-radius: 7px;
    background: #ffffff;
    color: #315d4f;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.bq-write-review-btn:hover {
    background: #315d4f;
    color: #ffffff;
}

.bq-reviews-content {
    min-width: 0;
}

.bq-reviews-empty {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border: 1px dashed #e5e5e5;
    border-radius: 14px;
    background: #ffffff;
}

.bq-reviews-empty-icon {
    margin-bottom: 10px;
    font-size: 26px;
    color: #557569;
}

.bq-reviews-empty h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
}

.bq-reviews-empty p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #777777;
}

.bq-review-cards-wrap {
    position: relative;
    min-width: 0;
}

.bq-review-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bq-review-cards.is-scrollable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.bq-review-cards.is-scrollable::-webkit-scrollbar {
    display: none;
}

.bq-review-cards.is-scrollable .bq-review-card {
    flex: 0 0 calc((100% - 24px) / 3);
    scroll-snap-align: start;
}

.bq-review-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #ffffff;
}

.bq-review-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bq-review-avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    overflow: hidden;
    border-radius: 50%;
    background: #f1f1f1;
}

.bq-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bq-review-customer {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bq-review-customer strong {
    font-size: 12px;
    color: #282828;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bq-review-verified {
    margin-top: 2px;
    font-size: 10px;
    color: #48705f;
}

.bq-review-date {
    margin-left: auto;
    font-size: 10px;
    color: #999999;
    white-space: nowrap;
}

.bq-review-card-stars {
    margin-top: 10px;
}

.bq-review-card-stars i {
    font-size: 13px;
    margin-right: 1px !important;
    color: #e6a326;
}

.bq-review-comment {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.55;
    color: #555555;
}

.bq-review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.bq-review-photo {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f7f7;
    cursor: pointer;
}

.bq-review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bq-reviews-prev,
.bq-reviews-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #ffffff;
    color: #315d4f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transform: translateY(-50%);
}

.bq-reviews-prev {
    left: -10px;
}

.bq-reviews-next {
    right: -10px;
}

.bq-reviews-prev:hover,
.bq-reviews-next:hover {
    border-color: #315d4f;
}

#reviewImageModal:not(.show) {
    display: none !important;
}

.bq-review-image-modal-body {
    position: relative;
}

.bq-review-image-modal-body #modalReviewImage {
    max-height: 40vh;
    width: 100%;
    object-fit: contain;
}

.bq-review-image-modal-body #prevImageBtn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.bq-review-image-modal-body #nextImageBtn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.bq-review-image-close {
    position: absolute;
    top: -15px;
    right: -15px;
}

.bq-pairings-or {
    text-align: center;
    font-weight: 700;
    color: #999;
    margin: 10px 0;
}

.bq-pairing-row,
.bq-more-florist-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.bq-pairing-card,
.bq-more-florist-card {
    background: #fff;
    border: 1px solid var(--bq-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.bq-pairing-card .img,
.bq-more-florist-card .img {
    aspect-ratio: 1;
    background: #f5f5f5;
    display: block;
}

.bq-pairing-card img,
.bq-more-florist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bq-pairing-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
}

.bq-pairing-add {
    border: 1px solid var(--bq-green);
    background: #fff;
    color: var(--bq-green);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    cursor: pointer;
    white-space: nowrap;
}

.bq-pairing-add:hover {
    background: var(--bq-green);
    color: #fff;
}

.bq-delivery-date-note {
    margin: 8px 0 0;
    font-size: 12px;
    color: #a35b00;
}

.bq-product-page .right-side-cws,
.bq-product-page .warranty-section,
.bq-product-details-card .compare {
    display: none !important;
}

.bq-pairing-card .body,
.bq-more-florist-card .body {
    padding: 10px;
}

.bq-pairing-card .name,
.bq-more-florist-card .name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bq-pairing-card .price,
.bq-more-florist-card .price {
    font-size: 13px;
    font-weight: 700;
    color: var(--bq-green);
}

.bq-trust-strip {
    display: none !important;
}

.bq-trust-strip .item {
    text-align: center;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

.bq-trust-strip i {
    display: block;
    font-size: 22px;
    color: var(--bq-green);
    margin-bottom: 6px;
}

.bq-trust-strip strong {
    display: block;
    color: #222;
    margin-bottom: 2px;
}

.bq-product-details-card .right-side-cws {
    display: none;
}

.bq-product-details-card > h1.fs-20 {
    display: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .bq-product-top-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.95fr)
            minmax(240px, 280px);
        gap: 14px;
    }

    .bq-product-gallery-col {
        grid-column: 1;
        grid-row: 1;
    }

    .bq-product-details-col {
        grid-column: 2;
        grid-row: 1;
    }

    .bq-product-shop-col {
        grid-column: 3 !important;
        grid-row: 1 !important;
    }

    .bq-product-shop-card {
        max-width: 280px;
    }

    .bq-pairing-row,
    .bq-more-florist-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .bq-trust-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .bq-product-top-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        gap: 16px;
    }

    .bq-product-gallery-col {
        grid-column: 1;
        grid-row: 1;
    }

    .bq-product-details-col {
        grid-column: 2;
        grid-row: 1;
    }

    .bq-product-shop-col {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
    }

    .bq-product-shop-card {
        max-width: none;
    }

    .bq-product-desc-care-grid,
    .bq-reviews-layout {
        grid-template-columns: 1fr;
    }

    .bq-review-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bq-review-cards.is-scrollable .bq-review-card {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .bq-care-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bq-pairing-row,
    .bq-more-florist-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bq-product-top-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bq-product-gallery-col {
        grid-column: 1;
        grid-row: 1;
    }

    .bq-product-details-col {
        grid-column: 1;
        grid-row: 2;
    }

    .bq-product-shop-col {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }

    .bq-product-shop-card {
        max-width: none;
    }

    .bq-product-desc-care-grid,
    .bq-reviews-layout {
        grid-template-columns: 1fr;
    }

    .bq-review-cards,
    .bq-review-cards.is-scrollable {
        display: grid;
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .bq-review-cards.is-scrollable .bq-review-card {
        flex: none;
    }

    .bq-reviews-prev,
    .bq-reviews-next {
        display: none;
    }

    .bq-care-grid {
        grid-template-columns: 1fr;
    }

    .bq-delivery-date-options {
        grid-template-columns: 1fr 1fr;
    }

    .bq-delivery-date-options .bq-delivery-date-custom {
        grid-column: 1 / -1;
    }

    .bq-product-trust-icons {
        grid-template-columns: 1fr;
    }

    .bq-product-trust-icons .item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .bq-pairing-row,
    .bq-more-florist-row {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 6px;
    }

    .bq-pairing-card,
    .bq-more-florist-card {
        min-width: 150px;
        max-width: 150px;
        flex: 0 0 auto;
    }

    .bq-trust-strip {
        grid-template-columns: 1fr;
    }

    .bq-product-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .bq-customer-reviews {
        padding: 16px;
    }

    .bq-care-section {
        padding: 16px;
    }

    .bq-care-card {
        grid-template-columns: 1fr;
    }

    .bq-care-card-image {
        height: 190px;
    }

    .bq-care-card-image img {
        min-height: 190px;
    }

    .bq-care-card-content {
        padding: 18px;
    }
}
