/* =========================================================
   RYNA WOMAN - COMMON PRODUCT PAGE
   Exact screenshot-style layout
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff6f8;
    color: #302c2d;
}

.product-details-page {
    width: 100%;
    min-height: 100vh;
    background: #fff6f8;
}


/* =========================================================
   PRODUCT AREA
   ========================================================= */

.product-main {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;

    padding: 28px 0 170px;

    display: grid;
    grid-template-columns: 630px 370px;
    justify-content: space-between;
    align-items: start;

    gap: 60px;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-gallery {
    width: 630px;
}

.product-main-image {
    position: relative;

    width: 630px;
    height: 680px;

    overflow: hidden;

    background: #e8e6e5;
}

.product-main-image > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    background: #e8e6e5;
}

.fullscreen-button {
    position: absolute;

    right: 14px;
    bottom: 14px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 0, 0, .15);
    background: rgba(255, 255, 255, .9);

    color: #333;

    cursor: pointer;
}

.fullscreen-button:hover {
    background: #fff;
}

.image-unavailable {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;
    font-size: 12px;
}


/* =========================================================
   THUMBNAILS
   ========================================================= */

.product-thumbnails {
    display: flex;
    gap: 8px;

    margin-top: 10px;

    overflow-x: auto;

    scrollbar-width: none;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.product-thumbnail {
    flex: 0 0 66px;

    width: 66px;
    height: 72px;

    padding: 0;

    border: 1px solid transparent;

    background: #ebe7e6;

    cursor: pointer;

    overflow: hidden;
}

.product-thumbnail.active {
    border-color: #292526;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   RIGHT INFORMATION
   ========================================================= */

.product-information {
    width: 370px;
    min-width: 0;

    padding-top: 3px;
}

.product-category {
    margin: 0 0 11px;

    color: #8d8585;

    font-size: 11px;
    line-height: 1.2;
}

.product-title {
    margin: 0 0 19px;

    color: #211d1e;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;
    line-height: 1.08;
    font-weight: 400;
}

.product-rating {
    display: none;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 9px;

    margin: 0;
}

.product-price {
    color: #252122;

    font-size: 17px;
    line-height: 1;

    font-weight: 500;
}

.product-price-row del {
    display: inline;
    color: #8d8585;
    font-size: 13px;
    text-decoration: line-through;
}

.discount-badge {
    display: none;
}

.tax-note {
    margin: 7px 0 19px;

    color: #908888;

    font-size: 10px;
    line-height: 1.2;
}


/* =========================================================
   REWARD BOX
   ========================================================= */

.reward-box {
    width: 100%;

    min-height: 74px;

    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin: 0 0 31px;
    padding: 12px 13px;

    border: 1px solid #e6ddda;

    background: #fbf4f0;
}

.reward-icon {
    display: none;
}

.reward-box strong {
    display: block;

    margin: 0 0 5px;

    color: #5c5655;

    font-size: 10px;
    line-height: 1.35;

    font-weight: 400;
}

.reward-box p {
    margin: 0;

    color: #5c5655;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   VARIANT SECTIONS
   ========================================================= */

.variant-section {
    width: 100%;
    margin: 0 0 28px;
}

.variant-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 0 0 9px;

    color: #817979;

    font-size: 11px;
    line-height: 1.2;
}

.variant-heading span {
    color: #817979;
}

.variant-heading strong {
    color: #2e2a2b;
    font-weight: 400;
}

.variant-heading a {
    color: #827a79;

    font-size: 10px;

    text-decoration: underline;
}


/* =========================================================
   COLOUR BUTTONS
   ========================================================= */

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.color-option {
    min-height: 30px;

    padding: 6px 11px;

    border: 1px solid #d6cdcf;

    background: transparent;

    color: #383334;

    font-size: 11px;
    line-height: 1;

    cursor: pointer;

    transition: .15s ease;
}

.color-option:hover,
.color-option.active {
    border-color: #1f1c1d;

    background: #1f1c1d;

    color: #fff;
}


/* =========================================================
   SIZE BUTTONS
   ========================================================= */

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.size-option {
    min-width: 39px;
    height: 38px;

    padding: 0 9px;

    border: 1px solid #d6cdcf;

    background: transparent;

    color: #393536;

    font-size: 11px;

    cursor: pointer;
}

.size-option:hover,
.size-option.active {
    border-color: #292526;

    background: #292526;

    color: #fff;
}

.size-option:disabled {
    color: #aaa;

    background: #f5eff0;

    cursor: not-allowed;

    text-decoration: line-through;
}

.size-message {
    display: block;

    margin-top: 8px;

    color: #8c8484;

    font-size: 9px;
}


/* =========================================================
   STOCK
   ========================================================= */

.stock-status {
    display: none;
}


/* =========================================================
   QUANTITY
   ========================================================= */

.quantity-section {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin: 0 0 33px;

    color: #8a8181;

    font-size: 11px;
}

.quantity-control {
    display: flex;
    align-items: center;

    width: 106px;
    height: 39px;

    border: 1px solid #d6cdcf;
}

.quantity-control button {
    width: 35px;
    height: 37px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #302c2d;

    cursor: pointer;

    font-size: 14px;
}

.quantity-control input {
    width: 36px;
    height: 37px;

    padding: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: #302c2d;

    text-align: center;

    font-size: 11px;

    appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}


/* =========================================================
   ADD TO BAG
   ========================================================= */

.add-to-cart-button {
    width: 100%;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: #aaa5a6;

    color: #fff;

    font-size: 11px;
    font-weight: 500;

    cursor: pointer;

    transition: background .2s ease;
}

.add-to-cart-button i {
    display: none;
}

.add-to-cart-button:hover {
    background: #8f898a;
}

.add-to-cart-button:disabled {
    opacity: .55;

    cursor: not-allowed;
}


/* =========================================================
   SAVE FOR LATER
   ========================================================= */

.save-button {
    width: 100%;
    height: 48px;

    margin-top: 10px;

    border: 1px solid #252223;

    background: transparent;

    color: #373233;

    font-size: 11px;

    cursor: pointer;
}

.save-button i {
    display: none;
}

.save-button:hover,
.save-button.saved {
    background: #252223;

    color: #fff;
}


/* =========================================================
   SHARE
   ========================================================= */

.share-section {
    display: none;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.short-info-block {
    width: 100%;

    margin-top: 43px;
    padding: 22px 0 26px;

    border-top: 1px solid #e5dcdd;
    border-bottom: 1px solid #e5dcdd;
}

.short-info-block > span {
    display: block;

    margin: 0 0 12px;

    color: #817878;

    font-size: 11px;
}

.short-info-block p {
    margin: 0;

    color: #4c4748;

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   DELIVERY
   ========================================================= */

.delivery-block {
    padding-top: 25px;
}

.delivery-block strong {
    display: block;

    margin-bottom: 5px;

    color: #3c3738;

    font-size: 11px;

    font-weight: 500;
}

.delivery-block p {
    margin: 0;

    color: #8c8383;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   PRODUCT DETAILS
   ========================================================= */

.product-details-section {
    width: 100%;

    padding: 75px 30px;

    border-top: 1px solid #e4dcdd;

    background: #fff6f8;
}

.details-container {
    width: min(1100px, 100%);

    margin: 0 auto;
}

.details-header {
    margin-bottom: 34px;
}

.details-header > span {
    display: block;

    margin-bottom: 7px;

    color: #8b8282;

    font-size: 10px;
    letter-spacing: .4px;
}

.details-header h2 {
    margin: 0;

    color: #292526;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    font-weight: 400;
}

.details-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 70px;

    border-top: 1px solid #e5dddd;
}

.detail-item {
    padding: 19px 0;

    border-bottom: 1px solid #e5dddd;
}

.detail-item span {
    display: block;

    margin-bottom: 8px;

    color: #8b8282;

    font-size: 10px;
}

.detail-item p {
    margin: 0;

    color: #4c4748;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section {
    width: 100%;

    padding: 75px 30px;

    border-top: 1px solid #e5dddd;

    background: #f8eeed;
}

.reviews-container {
    width: min(1100px, 100%);

    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 32px;
}

.reviews-header > div:first-child > span {
    display: block;

    margin-bottom: 7px;

    color: #8b8282;

    font-size: 10px;
    letter-spacing: .4px;
}

.reviews-header h2 {
    margin: 0;

    color: #292526;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    font-weight: 400;
}

.review-summary {
    min-width: 130px;

    text-align: right;
}

.review-summary strong {
    display: block;

    color: #292526;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;

    font-weight: 400;
}

.review-summary span {
    display: block;

    margin: 3px 0;

    letter-spacing: 2px;

    font-size: 11px;
}

.review-summary small {
    color: #8b8282;

    font-size: 10px;
}

.review-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;
}

.review-card {
    padding: 21px;

    border: 1px solid #e1d7d5;

    background: #fffaf9;
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 9px;
}

.review-top strong {
    font-size: 12px;

    font-weight: 500;
}

.review-top span {
    color: #888;

    font-size: 9px;
}

.review-stars {
    margin-bottom: 10px;

    letter-spacing: 2px;

    font-size: 11px;
}

.review-card h3 {
    margin: 0 0 7px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;
    font-weight: 400;
}

.review-card p {
    margin: 0;

    color: #555;

    font-size: 12px;
    line-height: 1.65;
}

.no-reviews {
    padding: 43px 20px;

    border: 1px solid #e1d7d5;

    background: #fffaf9;

    text-align: center;
}

.no-reviews > span {
    letter-spacing: 3px;

    font-size: 12px;
}

.no-reviews h3 {
    margin: 12px 0 7px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 400;
}

.no-reviews p {
    margin: 0;

    color: #777;

    font-size: 11px;
}


/* =========================================================
   RELATED PRODUCTS
   ========================================================= */

.related-section {
    width: 100%;

    padding: 75px 30px 100px;

    background: #fff6f8;
}

.related-heading {
    width: min(1100px, 100%);

    margin: 0 auto 32px;
}

.related-heading > span {
    display: block;

    margin-bottom: 7px;

    color: #8b8282;

    font-size: 10px;
}

.related-heading h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    font-weight: 400;
}

.related-grid {
    width: min(1100px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.related-card {
    color: #302c2d;

    text-decoration: none;
}

.related-image {
    width: 100%;
    aspect-ratio: .82;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ece7e6;

    color: #999;

    font-size: 10px;
}

.related-card > span {
    display: block;

    padding-top: 9px;

    font-size: 11px;
}

.related-card > strong {
    display: block;

    padding-top: 4px;

    font-size: 11px;

    font-weight: 400;
}


/* =========================================================
   NOT FOUND
   ========================================================= */

.pd-not-found {
    min-height: 70vh;

    padding: 160px 30px 100px;

    background: #fff6f8;

    text-align: center;
}

.pd-not-found > span {
    color: #8b8282;

    font-size: 10px;
}

.pd-not-found h1 {
    margin: 10px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 40px;
    font-weight: 400;
}

.pd-not-found p {
    color: #777;

    font-size: 13px;
}

.pd-not-found a {
    display: inline-block;

    margin-top: 17px;
    padding: 12px 22px;

    background: #252223;

    color: #fff;

    text-decoration: none;

    font-size: 11px;
}


/* =========================================================
   LARGE LAPTOP
   ========================================================= */

@media (max-width: 1250px) {

    .product-main {
        width: min(1120px, calc(100% - 50px));

        grid-template-columns:
            minmax(0, 1fr)
            350px;

        gap: 60px;
    }

    .product-gallery,
    .product-main-image {
        width: 100%;
    }

    .product-main-image {
        height: auto;
        aspect-ratio: 630 / 680;
    }

    .product-information {
        width: 100%;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .product-main {
        width: min(720px, calc(100% - 32px));

        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 25px;
        padding-bottom: 80px;
    }

    .product-gallery,
    .product-main-image,
    .product-information {
        width: 100%;
    }

    .product-main-image {
        height: auto;

        aspect-ratio: 630 / 680;
    }

    .product-information {
        padding: 0;
    }

    .product-title {
        font-size: 30px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .product-main {
        width: calc(100% - 24px);

        padding-top: 18px;
        padding-bottom: 55px;

        gap: 30px;
    }

    .product-main-image {
        aspect-ratio: 1 / 1.08;
    }

    .product-title {
        font-size: 28px;
    }

    .reward-box {
        min-height: auto;

        padding: 11px;
    }

    .color-option {
        min-height: 29px;

        padding: 6px 9px;

        font-size: 10px;
    }

    .product-details-section,
    .reviews-section,
    .related-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .review-summary {
        text-align: left;
    }

    .review-list {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   REVIEW FORM
   ========================================================= */

.review-write {
    margin: 0 0 28px;
    padding: 24px;
    border: 1px solid #e1d7d5;
    background: #fffaf9;
}

.review-write h3 {
    margin: 0 0 18px;
    color: #292526;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
}

.review-form-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.review-form-row > label {
    color: #817878;
    font-size: 11px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 2px;
}

.rating-input input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-input label {
    color: #cfc6c5;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #2d292a;
}

.review-input {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 13px;
    border: 1px solid #d9d0d0;
    outline: none;
    background: #fff;
    color: #3b3637;
    font: inherit;
    font-size: 12px;
}

.review-input:focus {
    border-color: #777071;
}

.review-textarea {
    min-height: 105px;
    resize: vertical;
}

.review-submit {
    min-width: 150px;
    height: 42px;
    padding: 0 20px;
    border: 0;
    background: #292526;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
}

.review-submit:hover {
    background: #171516;
}

.review-login-note {
    margin: 0;
    color: #777;
    font-size: 12px;
}

.review-login-note a {
    color: #292526;
    text-decoration: underline;
}

.review-alert {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #ddd4d3;
    background: #fffaf9;
    font-size: 11px;
}

.review-alert.success {
    color: #536652;
}

.review-alert.error {
    color: #9a4d4d;
}

@media (max-width: 600px) {
    .review-write {
        padding: 17px;
    }

    .review-form-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
.product-thumbnails {
    display: none !important;
}
/* =========================================================
   REVIEW FORM
   ========================================================= */

.review-form-card {
    width: 100%;
    margin: 0 0 28px;
    padding: 28px 30px;
    border: 1px solid #e1d7d5;
    background: #fffaf9;
}

.review-form-card h3 {
    margin: 0 0 7px;
    color: #292526;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
}

.review-form-card > p {
    margin: 0 0 22px;
    color: #777071;
    font-size: 12px;
    line-height: 1.6;
}

.review-form-card form {
    width: 100%;
}

.review-form-card .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.review-form-card .form-group label {
    margin-bottom: 7px;
    color: #5f595a;
    font-size: 11px;
    font-weight: 500;
}

.review-form-card input[type="text"],
.review-form-card select,
.review-form-card textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid #d9d0d0;
    outline: none;
    background: #fff;
    color: #302c2d;
    font-family: inherit;
    font-size: 12px;
}

.review-form-card input[type="text"],
.review-form-card select {
    height: 43px;
}

.review-form-card textarea {
    min-height: 125px;
    resize: vertical;
    line-height: 1.6;
}

.review-form-card input:focus,
.review-form-card select:focus,
.review-form-card textarea:focus {
    border-color: #8d8585;
}

.review-form-card input::placeholder,
.review-form-card textarea::placeholder {
    color: #aaa2a2;
}

.review-form-card .rating-input {
    display: flex;
    gap: 4px;
    align-items: center;
}

.review-form-card .rating-input label {
    margin: 0;
    cursor: pointer;
    color: #b9afad;
    font-size: 20px;
}

.review-form-card .rating-input input {
    display: none;
}

.review-form-card .submit-review {
    min-width: 155px;
    padding: 13px 22px;
    border: 1px solid #292526;
    background: #292526;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
}

.review-form-card .submit-review:hover {
    background: transparent;
    color: #292526;
}

.no-reviews {
    width: 100%;
    box-sizing: border-box;
    padding: 55px 20px;
    border: 1px solid #e1d7d5;
    background: #fffaf9;
    text-align: center;
}

.no-reviews h3 {
    margin: 12px 0 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
}

.no-reviews p {
    margin: 0;
    color: #777;
    font-size: 11px;
}

@media (max-width: 700px) {

    .review-form-card {
        padding: 22px 18px;
    }

    .review-form-card .submit-review {
        width: 100%;
    }

}
/* =========================================================
   REVIEW SECTION - ENHANCED SPACING
   ========================================================= */

.reviews-section {
    padding: 70px 0 90px;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 35px;
}

.reviews-header > div:first-child span {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.reviews-header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
}

.review-summary {
    text-align: center;
    min-width: 100px;
}

.review-summary strong {
    display: block;
    margin-bottom: 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.review-summary span {
    display: block;
    margin-bottom: 7px;
    letter-spacing: 3px;
    font-size: 11px;
    line-height: 1.4;
}

.review-summary small {
    display: block;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   REVIEW FORM
   ========================================================= */

.review-form-card {
    width: 100%;
    margin: 0 0 30px;
    padding: 32px;
    border: 1px solid #e1d5ca;
    background: rgba(255, 250, 242, 0.75);
    box-sizing: border-box;
}

.review-form-heading {
    margin-bottom: 28px;
}

.review-form-heading h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.35;
}

.review-form-heading p {
    margin: 0;
    color: #71685f;
    font-size: 12px;
    line-height: 1.7;
}


/* SUCCESS / ERROR MESSAGE */

.review-form-message {
    margin: 0 0 24px;
    padding: 13px 16px;
    font-size: 12px;
    line-height: 1.6;
}

.review-form-message.success {
    background: #f2f7ef;
    border: 1px solid #d5e2ce;
    color: #42613a;
}

.review-form-message.error {
    background: #fff2f0;
    border: 1px solid #ead2ce;
    color: #8b4038;
}


/* FORM */

.review-form {
    width: 100%;
}

.review-form-row {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 22px;
    margin-bottom: 22px;
}

.review-form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 22px;
}

.review-form-row .review-form-field {
    margin-bottom: 0;
}


/* LABEL */

.review-form-field label {
    display: block;
    margin: 0 0 9px;
    color: #4e4946;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
}


/* INPUT / SELECT / TEXTAREA */

.review-form-field input,
.review-form-field select,
.review-form-field textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d8ccc0;
    border-radius: 0;
    outline: none;
    background: #fffdf8;
    color: #302b29;
    font-family: inherit;
    font-size: 12px;
    line-height: 1.6;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.review-form-field input,
.review-form-field select {
    height: 44px;
    padding: 0 14px;
}

.review-form-field textarea {
    min-height: 130px;
    padding: 13px 14px;
    resize: vertical;
}

.review-form-field input::placeholder,
.review-form-field textarea::placeholder {
    color: #aaa19a;
}

.review-form-field input:focus,
.review-form-field select:focus,
.review-form-field textarea:focus {
    border-color: #a78b68;
    box-shadow: 0 0 0 2px rgba(167, 139, 104, 0.08);
}


/* SUBMIT BUTTON */

.review-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 44px;
    padding: 0 24px;
    border: 1px solid #171515;
    border-radius: 0;
    background: #171515;
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    line-height: 1;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.review-submit-button:hover {
    background: transparent;
    color: #171515;
}


/* =========================================================
   REVIEW LIST
   ========================================================= */

.review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.review-card {
    width: 100%;
    box-sizing: border-box;
    padding: 24px;
    border: 1px solid #e1d5ca;
    background: rgba(255, 250, 242, 0.75);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 13px;
}

.review-top strong {
    color: #302b29;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.review-top span {
    color: #8b827a;
    font-size: 9px;
    line-height: 1.5;
}

.review-stars {
    margin-bottom: 12px;
    letter-spacing: 3px;
    font-size: 11px;
    line-height: 1.5;
}

.review-card h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}

.review-card p {
    margin: 0;
    color: #5e5752;
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   NO REVIEWS
   ========================================================= */

.no-reviews {
    width: 100%;
    box-sizing: border-box;
    padding: 60px 25px;
    border: 1px solid #e1d5ca;
    background: rgba(255, 250, 242, 0.75);
    text-align: center;
}

.no-reviews > span {
    display: block;
    margin-bottom: 14px;
    letter-spacing: 4px;
    font-size: 11px;
    line-height: 1.5;
}

.no-reviews h3 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.4;
}

.no-reviews p {
    margin: 0;
    color: #77706a;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .reviews-section {
        padding: 50px 0 60px;
    }

    .reviews-header {
        flex-direction: column;
        gap: 25px;
    }

    .review-summary {
        text-align: left;
    }

    .review-form-card {
        padding: 22px 18px;
    }

    .review-form-row {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 0;
    }

    .review-form-row .review-form-field {
        margin-bottom: 22px;
    }

    .review-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-submit-button {
        width: 100%;
    }

}