
/* ==========================================================================
    Product Detail Page START
========================================================================== */
.detail-old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
}

.review-modal-dialog {
    max-width: 950px;
}

.review-modal-content {
    border-radius: 32px;
    background: #fff;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .08),
        0 30px 80px rgba(0, 0, 0, .12);
}

.review-modal-body {
    padding: 40px;
}

.review-modal-content .modal-header {
    padding: 32px 40px 0;
}

.review-modal-content .modal-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.review-modal-content .text-muted {
    font-size: .95rem;
}

.review-modal-content .form-label {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.review-modal-content .form-control,
.review-modal-content .form-select {
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    min-height: 56px;
    padding: 14px 18px;
    font-size: .95rem;
    transition: .25s ease;
    box-shadow: none !important;
}

.review-modal-content textarea.form-control {
    min-height: 140px;
    resize: none;
}

.review-modal-content .form-control:focus,
.review-modal-content .form-select:focus {
    border-color: #000;
}

.review-rating-select {
    display: flex;
    gap: 14px;
}

.rating-star {
    border: none;
    background: none;
    font-size: 2.3rem;
    color: #d4d4d4;
    cursor: pointer;
    transition: .2s ease;
    padding: 0;
    line-height: 1;
}

.rating-star:hover,
.rating-star.active {
    color: #000;
    transform: scale(1.08);
}

.fit-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fit-selector button {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: .92rem;
    transition: .25s ease;
}

.fit-selector button:hover,
.fit-selector button.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.review-modal-content .form-range {
    margin-top: 10px;
}

.review-modal-content .btn-dark {
    height: 58px;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 600;
    padding: 0 40px;
    transition: .25s ease;
}

.review-modal-content .btn-dark:hover {
    transform: translateY(-2px);
}

.review-modal-content .btn-close {
    opacity: 1;
    transform: scale(1.1);
}

.review-modal-content input[type="file"] {
    padding: 16px;
    background: #fafafa;
}

.review-modal-content .row {
    --bs-gutter-x: 20px;
}

@media(max-width:768px) {

    .review-modal-body {
        padding: 24px;
    }

    .review-modal-content .modal-header {
        padding: 24px 24px 0;
    }

    .review-modal-content .modal-title {
        font-size: 1.5rem;
    }

}

.product-detail-section {
    padding: 110px 0 60px;
    background: #fff;
    overflow-x: hidden;
}

.custom-product-container {
    width: 100%;
    max-width: 1440px;
    padding-inline: 60px;
    margin: auto;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.product-breadcrumb a,
.product-breadcrumb span {
    font-size: 14px;
    color: #7c7c7c;
    text-decoration: none;
}

.product-breadcrumb .active {
    color: #111;
}

.product-main-image {
    width: 100%;
    height: 820px;
    overflow: hidden;
    background: #f4f4f4;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
    width: 100%;
}

.thumbnail-item {
    width: 100%;
    height: 180px;
    cursor: pointer;
    border: 1px solid transparent;
    overflow: hidden;
    transition: .25s ease;
}

.thumbnail-item.active {
    border-color: #111;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item img {
    transition: transform .35s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.04);
}

.product-detail-content {
    padding-left: 10px;
}

.detail-category {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #7d7d7d;
    margin-bottom: 12px;
}

.detail-title {
    font-size: 3.5rem;
    line-height: .95;
    font-weight: 500;
    color: #111;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.product-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.review-stars {
    color: #3f7f20;
    font-size: 16px;
}

.product-reviews span {
    color: #8b8b8b;
    font-size: 14px;
}

.detail-price {
    font-size: 28px;
    font-weight: 500;
    color: #111;
    margin-bottom: 28px;
}

.detail-description {
    font-size: 18px;
    line-height: 1.8;
    color: #6f6f6f;
    margin-bottom: 34px;
}

.product-option-block {
    margin-bottom: 28px;
}

.option-title {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-bottom: 16px;
}

.detail-colors {
    display: flex;
    gap: 14px;
}

.detail-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.detail-color.black {
    background: #111;
}

.detail-color.beige {
    background: #cbb48c;
}

.detail-color.navy {
    background: #24457a;
}

.detail-color.active::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #111;
}

/* DIVIDER */

.detail-divider {
    width: 100%;
    height: 1px;
    background: #e7e7e7;
    margin-bottom: 28px;
}

/* SIZE */

.size-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.size-header span {
    font-size: 15px;
    font-weight: 500;
}

.size-header a {
    color: #4b7b29;
    text-decoration: none;
    font-size: 14px;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.size-option {
    width: 100%;
    height: 52px;
    border: 1px solid #dcdcdc;
    background: #fff;
    font-size: 16px;
    transition: .25s ease;
}

.size-option.active,
.size-option:hover {
    border-color: #111;
}

/* QUANTITY */

.quantity-box {
    width: 160px;
    height: 52px;
    border: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16px;
}

.quantity-box button {
    border: none;
    background: transparent;
    font-size: 28px;
}

.quantity-box input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 18px;
}

/* ACTIONS */

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.add-cart-btn {
    flex: 1;
    height: 56px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-cart-btn:hover {
    background: #2e6905;
}

.wishlist-action {
    width: 56px;
    height: 56px;
    border: 1px solid #111;
    background: #fff;
    font-size: 24px;
}

.accordion-button:not(.collapsed) {
    color: #000 !important;
}

/* FEATURES */

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.feature-box {
    border: 1px solid #e4e4e4;
    padding: 24px 12px;
    text-align: center;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 14px;
    color: #111;
}

.product-detail-list {
    margin: 0;
    padding-left: 18px;
}

.product-detail-list li {
    margin-bottom: 0px !important;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.product-detail-list li::marker {
    color: #3f7f20 !important;
}

/* FOOTER */

.accordion-footer {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #e7e7e7;
}

.accordion-footer p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.accordion-footer p span {
    font-weight: 600;
    color: #111;
}

.product-accordion {
    margin-top: 28px;
}

.product-accordion .accordion-item {
    border-radius: 0;
    border: 1px solid #e4e4e4;
}

.product-accordion .accordion-button {
    background: #fff;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 18px;
}

.product-accordion .accordion-body {
    padding-top: 0;
}

.product-accordion ul {
    margin: 0;
    padding-left: 18px;
}

.product-accordion li {
    margin-bottom: 12px;
    color: #666;
    line-height: 1.7;
}

.accordion-header {
    background: #eee;
    color: #000;
}

.accordion-button:not(.collapsed) {
    color: #000;
}

.accordion-button:hover {
    background: #eee !important;
}

@media(max-width:1199px) {

    .detail-title {
        font-size: 52px;
    }

    .size-option {
        width: 74px;
    }

}

@media(max-width:991px) {

    .custom-product-container {
        padding-inline: 24px;
    }

    .product-main-image {
        height: 650px;
    }

    .product-detail-content {
        padding-left: 0;
        margin-top: 40px;
    }

}

@media(max-width:767px) {

    .custom-product-container {
        padding-inline: 16px;
    }

    .detail-title {
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .product-main-image {
        height: 500px;
    }

    .product-thumbnails {
        overflow-x: auto;
    }

    .thumbnail-item {
        min-width: 90px;
        height: 90px;
    }

    .size-grid {
        flex-wrap: wrap;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

}

.customer-reviews-section {
    padding: 90px 0 80px;
    background: #fff;
}

.reviews-container {
    width: 100%;
    max-width: 1120px;
    margin: auto;
    padding-inline: 40px;
}

.inside-review-container {
    padding: 0px 100px
}

/* DIVIDER */

.review-divider {
    width: 100%;
    height: 1px;
    background: #e7e7e7;
}

/* HEADING */

.reviews-heading {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
    margin-top: 60px;
    margin-bottom: 55px;
    letter-spacing: -2px;
}

/* REVIEW ITEM */

.review-item {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid #ececec;
}

/* STARS */

.review-stars {
    font-size: 18px;
    color: #3f7f20;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* META */

.review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* AUTHOR */

.review-author {
    font-size: 26px;
    font-weight: 500;
    color: #111;
}

/* VERIFIED */

.verified-badge {
    background: #edf5e8;
    color: #4a7b2a;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 1;
}

/* TIME */

.review-time {
    font-size: 16px;
    color: #8a8a8a;
}

/* TEXT */

.review-text {
    font-size: 28px;
    line-height: 1.7;
    color: #6d6d6d;
    font-weight: 400;
    margin: 0;
    max-width: 950px;

    word-break: break-word;
    overflow-wrap: break-word;
}

@media(max-width:1199px) {

    .reviews-heading {
        font-size: 48px;
    }

    .review-text {
        font-size: 24px;
    }

}

@media(max-width:991px) {

    .reviews-container {
        padding-inline: 24px;
    }

    .reviews-heading {
        font-size: 42px;
    }

    .review-author {
        font-size: 22px;
    }

    .review-text {
        font-size: 20px;
        line-height: 1.7;
    }

    .inside-review-container {
        padding: 0px;
    }

}

@media(max-width:767px) {

    .customer-reviews-section {
        padding: 70px 0;
    }

    .reviews-container {
        padding-inline: 16px;
    }

    .reviews-heading {
        font-size: 34px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .inside-review-container {
        padding: 0px;
    }

    .review-author {
        font-size: 18px;
    }

    .review-text {
        font-size: 16px;
        line-height: 1.8;
        max-width: 100%;
    }

    .review-meta {
        gap: 8px;
    }

}

.related-products-section {
    padding: 90px 0 110px;
    background: #fff;
}

/* CONTAINER */

.related-products-container {
    width: 100%;
    max-width: 1520px;
    margin: auto;
    padding-inline: 60px;
}

/* HEADING */

.related-heading {
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

/* CARD */

.related-product-card {
    position: relative;
}

/* IMAGE */

.related-product-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f5f5f5;
}

.related-product-image img {
    width: 100%;
    height: 466px;
    object-fit: cover;
    transition: transform .6s ease;
}

/* IMAGE HOVER */

.related-product-card:hover .related-product-image img {
    transform: scale(1.04);
}

/* CONTENT */

.related-product-content {
    padding-top: 20px;
}

/* TITLE */

.related-product-title {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
}

.related-product-card:hover .related-product-title {
    color: #4d7e2b;
}

.related-product-title:hover {
    color: #4d7e2b;
}

/* PRICE */

.related-product-price {
    font-size: 20px;
    font-weight: 400;
    color: #7b7b7b;
}

@media(max-width:1399px) {

    .related-product-image img {
        height: 520px;
    }

}

@media(max-width:1199px) {

    .related-heading {
        font-size: 46px;
    }

    .related-product-image img {
        height: 460px;
    }

    .related-product-title {
        font-size: 21px;
    }

}

@media(max-width:991px) {

    .related-products-container {
        padding-inline: 24px;
    }

    .related-products-section {
        padding: 70px 0 90px;
    }

    .related-product-image img {
        height: 420px;
    }

}

@media(max-width:767px) {

    .related-products-container {
        padding-inline: 16px;
    }

    .related-heading {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .related-product-image img {
        height: 360px;
    }

    .related-product-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .related-product-price {
        font-size: 17px;
    }

}

/* ==========================================================================
    Product Detail Page END
========================================================================== */

.reviews-section {
    text-align: center;
    padding: 40px;
}

.section-title {
    color: #2d5a27;
    font-weight: 700;
    margin-bottom: 30px;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-card {
    position: relative;
    width: 300px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-card img {
    width: 100%;
    border-radius: 0px;
    height: 180px;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.name {
    color: #2d5a27;
    font-weight: 700;
    margin: 15px 0 10px;
}

.text {
    font-size: 14px;
    color: #2d5a27;
    margin-bottom: 8px;
    line-height: 1.4;
    padding: 0px 23px;
    font-weight: 500;
}

.stars {
    color: #2d5a27;
    font-size: 18px;
    padding-bottom: 18px;
}

.review-btn {
    background: #2d5a27;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    margin-top: 30px;
    font-weight: 600;
    cursor: pointer;
}

.no-reviews-msg {
    font-style: italic;
    color: #888;
    padding: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    font-weight: bold;
}

.swiper {
    padding: 0 50px;
}

.reviews-section {
    position: relative;
    max-width: 1000px;
    margin: 18px auto;
    padding: 0 0;
}

.mySwiper {
    padding: 20px 0;
}

.review-card {
    background: #ffff;
    padding: 0px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
    color: #333 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 25px !important;
    font-weight: bold;
}

.swiper-button-prev {
    left: -40px !important;
}

.swiper-button-next {
    right: -40px !important;
}

.swiper-wrapper {
    padding-bottom: 3rem !important;
}

.swiper-slide-active.review-card {
    transform: scale(1.05);
    transition: all 0.3s ease;
    border-radius: 2rem;
}

.swiper-slide:not(.swiper-slide-active) {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 600px;
    max-width: 95%;
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* Modal Overlay: Pure screen ko cover karega */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Background dark shade */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modal Content: Ye wo "card" hai jiske uper shadow hai */
.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 25px;
    /* Rounded corners */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    /* Deep shadow for 3D look */
    position: relative;
    text-align: center;
}

/* Modal Header styling */
.modal-header {
    color: #2d5a27;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Inputs styling */
.modal-input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

.modal-input:focus {
    border-bottom: 2px solid #2d5a27;
    outline: none;
}

/* Star Rating styling */
.star-rating {
    font-size: 30px;
    color: #cccccc;
    margin-bottom: 30px;
}

.star-rating i.active {
    color: #2d5a27;
}

/* Buttons */
.next-btn,
.submit-btn {
    background: #2d5a27;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}



.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, .5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    border-radius: 2rem !important;
    max-width: 45rem !important;
}


.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    text-align: center !important;
    justify-content: center !important;
}

.modal-main-content {
    width: 700px;
    max-width: 95%;
}

.modal-content {
    width: 100%;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.review-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 45px;
    margin-top: -4rem;
    z-index: 99999;
    display: flex;
    position: relative;
}

.fake-input {
    display: flex;
    align-items: center;
    min-height: 50px;
    cursor: default;
    align-items: center;
    justify-content: center;
}

.modal-content {
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.modal-header {
    color: #3b6833;
    margin-bottom: 25px;
}

.dashed-box {
    border: 2px solid #3b6833;
    border-radius: 15px;
    padding: 30px;
    margin: 0 auto 15px;
    width: 250px;
    cursor: pointer;
}

.dashed-box i {
    font-size: 30px;
    color: #3b6833;
    margin-bottom: 10px;
}

.description {
    color: #a9a9a9;
    /* Light grey color from image */
    font-size: 13px;
    line-height: 1.4;
    max-width: 400px;
    margin: 0 auto 25px;
}

.form-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.form-row input {
    border: none;
    border-bottom: 1px solid #3b6833;
    padding: 8px 0;
    width: 180px;
    outline: none;
}

.image-preview-wrapper {
    margin-top: 15px;
    text-align: center;
}

.image-preview-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.dashed-box {
    width: 42%;
    height: 142px;
    border: 2px solid #3f6f37;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.modal-content {
    padding: 40px;
    font-family: sans-serif;
}

.modal-header {
    color: #2d5a27;
    margin-bottom: 25px;
}

.review-prompt {
    color: #a9a9a9;
    font-size: 14px;
    margin-bottom: 30px;
}

.review-prompt ul {
    list-style: none;
    padding: 0;
}

.review-prompt li {
    margin-bottom: 5px;
}

.textarea-group {
    position: relative;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 77px;
    border: none;
    border-bottom: 2px solid #2d5a27;
    outline: none;
    resize: none;
    padding: 10px 0;
    font-size: 16px;
    resize: none !important;
}

.char-counter {
    text-align: right;
    font-size: 12px;
    color: #a9a9a9;
    margin-top: 5px;
}

.submit-btn {
    background-color: #2d5a27;
    color: white;
    border: none;
    padding: 12px 50px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

#imagePreview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#uploadContent {
    text-align: center;
}

.review-step {
    font-size: 28px;
    font-weight: 500;
    color: #fdfdfd;
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-arrow {
    width: 62px;
    height: 62px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    color: white;
}

.review-arrow i {
    font-size: 20px;
}

.review-arrow:hover {
    background: #2f5e2b;
    border-color: #2f5e2b;
    color: #fff;
}

.review-arrow.disabled {
    opacity: .3;
    pointer-events: none;
}

.thank-you-slide {
    background: #2F6B05;
    border-radius: 25px;
    overflow: hidden;
}

.thank-you-wrapper {
    min-height: 534px;
    padding: 53px 60px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thank-you-wrapper h2 {
    font-size: 71px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #fff;
}

.thank-you-wrapper p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
}

.another-review-btn {
    margin-top: 40px;
    border: none;
    background: #fff;
    color: #2F6B05;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
}

.another-review-btn:hover {
    transform: translateY(-2px);
}

.keep-shopping {
    margin-top: auto;
    align-self: flex-end;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width: 768px) {
    .dashed-box {
        width: 96%;
        height: 142px;
        border: 2px solid #3f6f37;
        border-radius: 20px;
        cursor: pointer;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .form-row {
        display: block;
    }

    .form-row input {
        border: none;
        border-bottom: 1px solid #3b6833;
        padding: 8px 0;
        width: 280px;
        outline: none;
        text-align: center;
    }

    .another-review-btn {
        margin-top: 40px;
        border: none;
        background: #fff;
        color: #2F6B05;
        font-size: 18px;
        font-weight: 600;
        padding: 15px 23px;
        border-radius: 50px;
        cursor: pointer;
        transition: .3s;
        margin-bottom: 19px;
    }

    .thank-you-wrapper {
        min-height: 534px;
        padding: 38px 28px;
        text-align: center;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .thank-you-wrapper h2 {
        font-size: 60px;
        font-weight: 500;
        margin-bottom: 40px;
        color: #fff;
    }
}
/* product detail gallery */

.product-gallery {
    width: 100%;
}

.productMainSlider {
    width: 100%;
    position: relative !important;
    overflow: hidden;
}

.productMainSlider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.productMainSlider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   GYMSHARK STYLE PAGINATION
======================================== */

.productMainSlider .swiper-pagination {
    position: absolute !important;
    left: 50% !important;
    bottom: 20px !important;
    transform: translateX(-50%) !important;

    width: auto !important;
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;

    z-index: 20;
}

/* Inactive dots */
.productMainSlider .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0 !important;

    background: #d9d9d9;
    opacity: 1;

    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active pill */
.productMainSlider .swiper-pagination-bullet-active {
    width: 28px;
    height: 5px;

    background: #666;
    border-radius: 999px;
}

/* Mobile */
@media (max-width: 768px) {
    .productMainSlider .swiper-pagination {
        bottom: 15px !important;
        padding: 7px 10px;
    }

    .productMainSlider .swiper-pagination-bullet-active {
        width: 24px;
    }
}


/* ==========================================================================
    Strip SECTION  END
========================================================================== */

/* ==========================================================================
    Support PAGE START
========================================================================== */

.support-section {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.support-heading {
    font-size: clamp(2rem, 5vw, 1.7rem);
    line-height: 1.2;
    font-weight: 400 !important;
    color: #000;
    margin-bottom: 12px;
}

.support-subheading {
    font-size: 16px;
    color: #7d7d7d;
    margin-bottom: 0;
}

.support-card {
    background: #ffffff;
    text-align: center;
    padding: 20px 30px;
    height: 100%;
    transition: 0.4s;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.support-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e4e7de;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: 0.4s;
}

.support-icon i {
    color: #3d7b12;
    font-size: 28px;
    transition: 0.4s;
}

.support-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.support-card p {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 0;
    line-height: 1.6;
}

.support-card:hover .support-icon {
    background: #dce8d2;
}

.support-card:hover .support-icon i {
    transform: scale(1.1);
}

@media(max-width:991px) {

    .support-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .support-subheading {
        font-size: 1rem;
    }

    .support-card {
        padding: 40px 25px;
    }

    .support-card h4 {
        font-size: 1.5rem;
    }

    .support-card p {
        font-size: 1rem;
    }

}

.mini-cart-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .4);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

}

.mini-cart-overlay.active {

    opacity: 1;
    visibility: visible;

}

.mini-cart-drawer {

    position: fixed;

    top: 0;
    right: 0;

    width: 420px;
    max-width: 100%;

    height: 100vh;

    background: #fff;

    z-index: 9999;

    transform: translateX(100%);

    transition: .35s ease;

    display: flex;
    flex-direction: column;

}

.mini-cart-drawer.active {

    transform: translateX(0);

}

.mini-cart-header {

    padding: 24px;

    border-bottom: 1px solid #eee;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.mini-cart-close {

    border: none;
    background: none;

    font-size: 2rem;

    line-height: 1;

}

.mini-cart-body {

    flex: 1;

    overflow-y: auto;

    padding: 24px;

}

.mini-cart-footer {

    border-top: 1px solid #eee;

    padding: 24px;

}

.mini-cart-subtotal {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

}

.mini-cart-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 54px;

    border-radius: 999px;

    border: 1px solid #111;

    color: #111;

    text-decoration: none;

    margin-bottom: 12px;

    font-weight: 600;

}

.mini-cart-btn.dark {

    background: #111;
    color: #fff;

}

.mini-cart-item {

    display: flex;

    gap: 16px;

    margin-bottom: 24px;

}

.mini-cart-item img {

    width: 90px;
    height: 110px;

    object-fit: cover;

    border-radius: 14px;

}

.mini-cart-item-title {

    font-size: .95rem;
    font-weight: 600;

    margin-bottom: 8px;

}

.mini-cart-remove {

    border: none;
    background: none;

    padding: 0;

    color: red;

    font-size: .85rem;

}

.wishlist-count-badge {
    position: absolute;
    top: 2px;
    right: 38px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 0 5px;
    z-index: 10;
}

/* ==========================================================================
    Support PAGE  END
========================================================================== */

