/* =========================================================
   WATERALL PRODUCT DETAILS PAGE
   File: public/css/show.css
========================================================= */

.product-show-page {
    --navy: #061b34;
    --navy-soft: #0b3558;
    --blue: #0b8fbe;
    --blue-bright: #12b5e5;
    --gold: #c89a3d;
    --text: #24394d;
    --muted: #6f8191;
    --line: #dce8f0;
    --surface: #ffffff;
    --surface-soft: #f5faff;
    --success: #087454;
    --danger: #d52b45;

    padding: 52px 20px 90px;
    background:
        radial-gradient(circle at 12% 18%, rgba(19, 172, 222, 0.11), transparent 28%),
        linear-gradient(180deg, #f8fcff 0%, #eaf6fd 100%);
    color: var(--text);
}

.product-show-shell {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 66px;
    align-items: start;
    background: var(--surface);
    border: 1px solid rgba(170, 198, 217, 0.58);
    border-radius: 28px;
    box-shadow:
        0 30px 80px rgba(7, 47, 78, 0.1),
        0 3px 12px rgba(7, 47, 78, 0.04);
}

.product-show-shell {
    align-items: start;
}

.product-gallery-panel,
.product-information-panel {
    align-self: start;
}

.product-gallery-panel {
    height: fit-content;
}


.product-show-shell.is-disabled .product-gallery-panel,
.product-show-shell.is-disabled .product-information-panel > :not(.admin-product-controls) {
    opacity: 0.68;
}

.product-gallery-panel {
    min-width: 0;
}

.product-image-stage {
    min-height: 530px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, #ffffff 0%, #f8fbfd 55%, #eaf4f9 100%);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.product-image-stage::before {
    content: "";
    position: absolute;
    inset: 24px;
    pointer-events: none;
    border: 1px solid rgba(16, 158, 208, 0.08);
    border-radius: 17px;
}

#main-image {
    width: 100%;
    max-width: 540px;
    height: 450px;
    position: relative;
    z-index: 1;
    display: block;
    object-fit: contain;
    cursor: zoom-in;
    filter: drop-shadow(0 24px 25px rgba(12, 46, 71, 0.14));
    transition: opacity 0.2s ease, transform 0.3s ease;
}

#main-image:hover {
    transform: scale(1.025);
}

.product-state-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    padding: 8px 13px;
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    box-shadow: 0 7px 18px rgba(12, 37, 59, 0.18);
}

.product-state-badge.is-sale {
    background: #e01c4d;
}

.product-state-badge.is-pending {
    background: #c77a0b;
}

.product-state-badge.is-sold {
    background: #bd2139;
}

.img-counter {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    padding: 7px 12px;
    color: #fff;
    background: rgba(5, 28, 50, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.pager {
    min-height: 12px;
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 17px;
}

.pager .dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c7d4df;
    cursor: pointer;
}

.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.product-thumbnail-button {
    width: 84px;
    height: 84px;
    padding: 6px;
    background: #fff;
    border: 1px solid #d7e4ed;
    border-radius: 13px;
    cursor: pointer;
    box-shadow: 0 5px 14px rgba(17, 54, 82, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-thumbnail-button:hover,
.product-thumbnail-button.is-active {
    transform: translateY(-3px);
    border-color: var(--blue);
    box-shadow: 0 10px 22px rgba(13, 122, 168, 0.15);
}

.product-thumbnail-button .thumbnail {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.product-zoom-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin: 12px 0 0;
    color: #7990a1;
    font-size: 12px;
}

.product-information-panel {
    min-width: 0;
    padding-top: 8px;
}

.product-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

.product-category-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-category-label::before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
}

.product-sale-label {
    padding: 6px 10px;
    color: #8a5a05;
    background: #fff5db;
    border: 1px solid #f0daa5;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    margin: 0 0 13px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2px;
}

.product-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: inherit;
    text-decoration: none;
}

.product-rating-stars,
.review-score-stars,
.review-card-rating {
    color: #e8a600;
    letter-spacing: 1px;
}

.product-rating-stars {
    font-size: 18px;
}

.product-rating-text {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.product-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    color: #39546b;
    background: #f4f8fb;
    border: 1px solid #dce8f0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.product-meta-badge i {
    color: var(--blue);
}

.product-description {
    margin-bottom: 26px;
    padding: 20px 22px;
    background: #f8fbfd;
    border: 1px solid #e0eaf1;
    border-left: 4px solid var(--gold);
    border-radius: 14px;
}

.product-description h2 {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.product-description p {
    margin: 0;
    color: #536b7f;
    font-size: 16px;
    line-height: 1.75;
}

.product-price-area {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 27px;
    padding-bottom: 27px;
    border-bottom: 1px solid #e2eaf0;
}

.product-current-price {
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 43px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.product-old-price {
    color: #8b99a8;
    font-size: 18px;
    font-weight: 600;
    text-decoration: line-through;
}

.product-saving-badge {
    padding: 6px 10px;
    color: var(--success);
    background: #e9f9f2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-actions form {
    margin: 0;
}

.product-button {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-button:hover {
    transform: translateY(-2px);
}

.product-button-primary {
    color: #fff;
    background: linear-gradient(135deg, #082d52, #075f8d);
    border: 1px solid transparent;
    box-shadow: 0 13px 25px rgba(7, 67, 104, 0.2);
}

.product-button-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #061f3b, #0781b9);
    box-shadow: 0 18px 32px rgba(7, 67, 104, 0.27);
}

.product-button-secondary {
    color: #06304e;
    background: #fff;
    border: 1px solid #9dc7dc;
}

.product-button-secondary:hover {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.product-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 17px;
}

.product-trust-item {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    color: #52697d;
    background: #f8fbfd;
    border: 1px solid #e0eaf1;
    border-radius: 11px;
}

.product-trust-item > i {
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: #e4f5fc;
    border-radius: 50%;
    font-size: 13px;
}

.product-trust-item span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 10px;
    line-height: 1.3;
}

.product-trust-item strong {
    color: #29465e;
    font-size: 11px;
}

.product-unavailable-message {
    display: flex;
    gap: 11px;
    align-items: center;
    padding: 16px 18px;
    color: #7b4c04;
    background: #fff7df;
    border: 1px solid #ecd493;
    border-radius: 12px;
    font-weight: 700;
}

.admin-product-controls {
    margin-top: 23px;
    padding: 17px;
    background: #f7f9fb;
    border: 1px dashed #c9d7e2;
    border-radius: 14px;
}

.admin-product-controls-heading {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 13px;
}

.admin-product-controls-heading > i {
    color: var(--blue);
}

.admin-product-controls-heading div {
    display: flex;
    flex-direction: column;
}

.admin-product-controls-heading strong {
    color: #29465e;
    font-size: 13px;
}

.admin-product-controls-heading span {
    color: #7b8e9e;
    font-size: 11px;
}

.admin-product-controls-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-product-controls-grid form {
    margin: 0;
}

.admin-product-controls-grid button,
.admin-product-controls-grid a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 13px;
    color: #14324c;
    background: #fff;
    border: 1px solid #cbd8e2;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.admin-product-controls-grid button:hover,
.admin-product-controls-grid a:hover {
    color: #fff;
    background: #0a6f9c;
    border-color: #0a6f9c;
}

.product-review-section {
    width: 100%;
    max-width: 1420px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 24px;
}

.review-summary-panel,
.review-form-panel,
.review-list-panel {
    background: #fff;
    border: 1px solid rgba(170, 198, 217, 0.58);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(7, 47, 78, 0.07);
}

.review-summary-panel {
    padding: 34px;
}

.review-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.review-summary-panel h2,
.review-form-panel h2 {
    margin: 0;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.review-score-row {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 24px 0 19px;
}

.review-score-row > strong {
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 50px;
    line-height: 1;
}

.review-score-stars {
    font-size: 19px;
}

.review-score-row span {
    color: var(--muted);
    font-size: 12px;
}

.review-summary-panel > p,
.review-form-panel > p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.review-form-panel {
    padding: 34px;
}

.review-form-panel form {
    margin-top: 22px;
}

.review-field label,
.review-rating-label {
    display: block;
    margin-bottom: 7px;
    color: #29465e;
    font-size: 13px;
    font-weight: 800;
}

.review-field textarea,
.review-reply-form textarea {
    width: 100%;
    padding: 15px 16px;
    color: #24394d;
    background: #fbfdff;
    border: 1px solid #cfdee8;
    border-radius: 12px;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-field textarea:focus,
.review-reply-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(11, 143, 190, 0.1);
}

.review-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-top: 18px;
}

.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 3px;
}

.rating-stars input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-stars label {
    margin: 0;
    color: #d8dee9;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: color 0.18s ease, transform 0.18s ease, text-shadow 0.18s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #f4b522;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    transform: scale(1.1);
}

.review-submit-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    color: #fff;
    background: var(--navy-soft);
    border: 0;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 9px 20px rgba(7, 67, 104, 0.16);
}

.review-submit-button:hover {
    background: var(--blue);
}

.review-list-panel {
    grid-column: 1 / -1;
    padding: 34px;
}

.review-list {
    display: grid;
    gap: 15px;
}

.review-card {
    position: relative;
    padding: 22px;
    background: #fbfdff;
    border: 1px solid #dce8f0;
    border-radius: 15px;
}

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

.review-author-avatar {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0a476f, #10a7d4);
    border-radius: 50%;
    font-weight: 800;
}

.review-author-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.review-author-details strong {
    color: var(--navy);
}

.review-author-details span {
    color: var(--muted);
    font-size: 12px;
}

.review-card-rating {
    margin-left: auto;
    white-space: nowrap;
    font-size: 15px;
}

.review-menu {
    margin-left: 6px;
}

.review-menu-button {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #48677f;
    background: #fff;
    border: 1px solid #d5e2eb;
    border-radius: 9px;
}

.review-content {
    margin: 16px 0 0;
    color: #3d5569;
    font-size: 15px;
    line-height: 1.7;
}

.review-reply-form {
    margin-top: 17px;
}

.review-reply-form button {
    margin-top: 9px;
    padding: 9px 14px;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 8px;
    font-weight: 700;
}

.review-official-reply {
    margin: 17px 0 0 52px;
    padding: 16px 18px;
    background: #eef8fd;
    border-left: 3px solid var(--blue);
    border-radius: 0 12px 12px 0;
}

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

.review-official-reply-header strong {
    color: var(--navy);
}

.review-official-reply-header strong i {
    color: var(--blue);
}

.review-official-reply-header span {
    color: var(--muted);
    font-size: 11px;
}

.review-official-reply-header form {
    margin-left: auto;
}

.review-official-reply-header button {
    color: #c93a4e;
    background: transparent;
    border: 0;
}

.review-official-reply p {
    margin: 8px 0 0;
    color: #456177;
}

.review-empty-state {
    padding: 36px;
    text-align: center;
    color: var(--muted);
}

.review-empty-state > i {
    color: var(--blue);
    font-size: 35px;
}

.review-empty-state h3 {
    margin: 12px 0 5px;
    color: var(--navy);
}

.review-empty-state p {
    margin: 0;
}

/* Existing modals */
.modal-backdrop {
    z-index: 1040 !important;
}

.modal {
    z-index: 1050 !important;
}

.modal-dialog.modal-lg {
    max-width: 900px;
}

/* Lightbox classes created by JavaScript */
.lbPro {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

/* Responsive */
@media (max-width: 1100px) {
    .product-show-shell {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 42px;
    }

    .product-information-panel {
        padding-top: 0;
    }

    .product-review-section {
        grid-template-columns: 1fr;
    }

    .review-list-panel {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .product-show-page {
        padding: 22px 12px 60px;
    }

    .product-show-shell {
        display: block;
        padding: 17px;
        border-radius: 18px;
    }

    .product-image-stage {
        min-height: 350px;
        padding: 17px;
        border-radius: 15px;
    }

    #main-image {
        height: 315px;
    }

    .product-thumbnails {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 2px 2px 12px;
    }

    .product-thumbnail-button {
        flex: 0 0 76px;
        width: 76px;
        height: 76px;
    }

    .product-information-panel {
        margin-top: 34px;
    }

    .product-title {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .product-heading-row {
        align-items: flex-start;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .product-button-primary {
        order: 1;
    }

    .product-button-secondary {
        order: 2;
    }

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

    .product-current-price {
        font-size: 37px;
    }

    .admin-product-controls-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .admin-product-controls-grid form,
    .admin-product-controls-grid button,
    .admin-product-controls-grid a {
        width: 100%;
    }

    .product-review-section {
        margin-top: 18px;
        gap: 15px;
    }

    .review-summary-panel,
    .review-form-panel,
    .review-list-panel {
        padding: 22px 18px;
        border-radius: 17px;
    }

    .review-rating-row {
        align-items: stretch;
        flex-direction: column;
    }

    .review-submit-button {
        width: 100%;
    }

    .review-card-header {
        flex-wrap: wrap;
    }

    .review-card-rating {
        order: 4;
        width: 100%;
        margin-left: 53px;
    }

    .review-menu {
        margin-left: auto;
    }

    .review-official-reply {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .product-image-stage {
        min-height: 300px;
    }

    #main-image {
        height: 270px;
    }

    .product-title {
        font-size: 33px;
    }

    .product-meta-row {
        gap: 7px;
    }

    .product-meta-badge {
        padding: 7px 10px;
        font-size: 11px;
    }

    .admin-product-controls-grid {
        grid-template-columns: 1fr;
    }
}


#image-wrap {
    cursor: grab;
}

#image-wrap:active {
    cursor: grabbing;
}


.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #ffffff;
    background: rgba(5, 28, 50, 0.58);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;

    opacity: 0;
    visibility: hidden;

    cursor: pointer;
    pointer-events: none;

    transform: translateY(-50%);

    backdrop-filter: blur(7px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.gallery-arrow-left {
    left: 18px;
}

.gallery-arrow-right {
    right: 18px;
}

.product-image-stage:hover .gallery-arrow {
    opacity: 0.9;
    visibility: visible;
    pointer-events: auto;
}

.gallery-arrow:hover {
    opacity: 1;
    background: #078fbe;
}

.gallery-arrow-left:hover {
    transform: translateY(-50%) scale(1.06);
}

.gallery-arrow-right:hover {
    transform: translateY(-50%) scale(1.06);
}

@media (max-width: 768px) {

    .gallery-arrow {
        width: 34px;
        height: 44px;

        /* فلش همیشه در موبایل دیده شود */
        opacity: 0.85;
        visibility: visible;
        pointer-events: auto;

        /* حذف دایره */
        background: transparent;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
        box-shadow: none;

        color: #ffffff;
        font-size: 20px;

        /* برای اینکه روی عکس واضح باشد */
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
    }

    .gallery-arrow-left {
        left: 8px;
    }

    .gallery-arrow-right {
        right: 8px;
    }

    .gallery-arrow:hover,
    .gallery-arrow:focus,
    .gallery-arrow:active {
        background: transparent;
        border: none;
        box-shadow: none;
    }
}

.product-overview-text {
    white-space: normal;
    color: #536d82;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   WATERALL PRODUCT OVERVIEW
   ========================================================= */

.product-description {
    margin-top: 28px;
    padding: 28px 30px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7fbfe 100%
        );

    border: 1px solid #d9e7f0;
    border-left: 4px solid #d3a52d;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(6, 35, 60, 0.055);
}


/* HEADING */

.product-description-heading {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 20px;
}


.product-description-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #e9f7fc;

    color: #0799cc;

    font-size: 17px;
}


.product-description-eyebrow {
    display: block;

    margin-bottom: 2px;

    color: #078dbc;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.product-description h2 {
    margin: 0;

    color: #071d36;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.25;
}


/* OVERVIEW */

.product-overview-text {
    color: #506a80;

    font-size: 16px;
    line-height: 1.75;
}


.product-overview-text p {
    margin: 0 0 13px;
}


.product-overview-text p:last-child {
    margin-bottom: 0;
}


/* FEATURES */

.product-feature-section {
    margin-top: 24px;
    padding-top: 22px;

    border-top: 1px solid #dce8ef;
}


.product-feature-section h3 {
    margin: 0 0 17px;

    color: #071d36;

    font-size: 16px;
    font-weight: 800;
}


.product-feature-list {
    display: grid;
    gap: 11px;
}


.product-feature-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 12px 14px;

    background: rgba(239, 249, 253, 0.7);

    border: 1px solid #e1edf3;

    border-radius: 11px;
}


.product-feature-check {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #079dcc;

    color: #ffffff;

    font-size: 10px;
}


.product-feature-content {
    display: flex;
    flex-direction: column;

    gap: 3px;

    min-width: 0;
}


.product-feature-content strong {
    color: #09233d;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.4;
}


.product-feature-content span {
    color: #60778a;

    font-size: 13.5px;
    line-height: 1.55;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .product-description {
        margin-top: 22px;

        padding: 21px 18px;

        border-radius: 15px;
    }


    .product-description-heading {
        gap: 11px;

        margin-bottom: 17px;
    }


    .product-description-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        border-radius: 10px;
    }


    .product-description h2 {
        font-size: 19px;
    }


    .product-description-eyebrow {
        font-size: 9.5px;
    }


    .product-overview-text {
        font-size: 15px;

        line-height: 1.7;
    }


    .product-feature-section {
        margin-top: 20px;

        padding-top: 19px;
    }


    .product-feature-item {
        padding: 11px 12px;
    }


    .product-feature-content strong {
        font-size: 13.5px;
    }


    .product-feature-content span {
        font-size: 13px;
    }
}