    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .product-card {
        background: #fff;
        border-radius: 10px;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .zoom-wrapper {
        position: relative;
        display: inline-block;
    }

    .main-image-container {
        position: relative;
        width: 100%;
        max-width: 600px;
    }

    .main-image-container img {
        width: 100%;
        border-radius: 8px;
        display: block;
    }

    .main-image-container video {
        width: 100%;
        border-radius: 8px;
        display: block;
    }

    .zoom-result {
        display: none;
        position: absolute;
        top: 0;
        left: 105%;
        /* Show to the right of main image */
        width: 400px;
        height: 100%;
        background-repeat: no-repeat;
        background-size: 200% 200%;
        border: 1px solid #ccc;
        z-index: 1000;
    }

    .thumbnails {
        margin-top: 1rem;
        display: flex;
        gap: 0.5rem;
    }

    .thumbnails img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .thumbnails video {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .thumbnails img.active {
        border-color: #3498db;
    }

    .thumbnails video.active {
        border-color: #3498db;
    }

    .product-title {
        font-weight: bold;
        margin-top: 1rem;
    }

    .product-price {
        color: #2ecc71;
        margin-top: 0.3rem;
    }

    @media (max-width: 768px) {

        .thumbnails {
            overflow-x: auto;
            white-space: nowrap;
        }

        .thumbnails img {
            display: inline-block;
            margin-right: 10px;
        }

        .thumbnails video {
            display: inline-block;
            margin-right: 10px;
        }

        .zoom-result {
            display: none !important;
        }

        .zoom-wrapper {
            flex-direction: column;
            align-items: center;
        }
    }

    .product-reviews {
        background: white;
    }

    .description-content {
        background: white;
    }

    .product-review-section {
        padding: 40px 0;
        background: #f9f9f9;
    }

    .review-tabs-container {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .review-tab-nav {
        border-bottom: 1px solid #f1f2f6;
    }

    .review-tab-nav .nav-tabs {
        border-bottom: none;
    }

    .review-tab-nav .nav-item {
        margin-bottom: -1px;
    }

    .review-tab-nav .nav-link {
        padding: 18px 25px;
        font-size: 16px;
        font-weight: 600;
        color: #6c757d;
        border: none;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .review-tab-nav .nav-link i {
        font-size: 18px;
    }

    .review-tab-nav .nav-link.active {
        color: #2d3436;
        border-bottom-color: #3498db;
        background: transparent;
    }

    .review-tab-nav .nav-link:hover:not(.active) {
        color: #2d3436;
    }

    .review-count-badge {
        display: inline-block;
        background: #3498db;
        color: white;
        border-radius: 12px;
        padding: 2px 8px;
        font-size: 12px;
        margin-left: 5px;
    }

    .tab-content {
        padding: 30px;
    }

    .product-description {
        line-height: 1.8;
        color: #57606f;
    }

    .review-summary-card {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .summary-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .summary-header h2 {
        font-size: 24px;
        font-weight: 700;
        color: #2d3436;
        margin: 0;
    }

    .overall-rating {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .average-rating {
        font-size: 36px;
        font-weight: 700;
        color: #2d3436;
        line-height: 1;
    }

    .star-rating {
        color: #ffa502;
        font-size: 18px;
        margin: 5px 0;
    }

    .review-count {
        font-size: 14px;
        color: #57606f;
    }

    .summary-body {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .summary-body p {
        margin: 0;
        color: #57606f;
        font-size: 15px;
    }

    .btn-write-review {
        background: #2d3436;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .btn-write-review:hover {
        background: #1e272e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .reviews-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .review-card {
        background: #fff;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .review-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        background: #3498db;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 18px;
    }

    .reviewer-details h4 {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 5px;
        color: #2d3436;
    }

    .review-date {
        font-size: 13px;
        color: #7f8c8d;
    }

    .review-rating {
        color: #ffa502;
    }

    .review-body p {
        color: #57606f;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .review-images {
        margin-top: 15px;
    }

    .review-image {
        max-width: 200px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .review-image:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .review-footer {
        margin-top: 15px;
    }

    .btn-helpful {
        background: none;
        border: 1px solid #dfe4ea;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 13px;
        color: #57606f;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }

    .btn-helpful:hover {
        background: #f1f2f6;
        border-color: #bdc3c7;
    }

    .no-reviews {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
        text-align: center;
    }

    .no-reviews-content i {
        font-size: 48px;
        color: #bdc3c7;
        margin-bottom: 15px;
    }

    .no-reviews-content h3 {
        font-size: 20px;
        color: #2d3436;
        margin-bottom: 10px;
    }

    .no-reviews-content p {
        color: #7f8c8d;
        margin-bottom: 20px;
    }

    .review-pagination {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    /* Review Modal Styles */
    .modal-content {
        border: none;
        border-radius: 12px;
        overflow: hidden;
    }

    .modal-header {
        border-bottom: 1px solid #f1f2f6;
        padding: 20px 25px;
    }

    .modal-title {
        font-weight: 700;
    }

    .modal-body {
        padding: 25px;
    }

    .rating-input {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        margin-bottom: 20px;
    }

    .rating-input input {
        display: none;
    }

    .rating-input label {
        color: #dfe4ea;
        font-size: 28px;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-right: 5px;
    }

    .rating-input input:checked~label,
    .rating-input input:hover~label {
        color: #ffa502;
    }

    .rating-input label:hover,
    .rating-input label:hover~label {
        color: #ffa502;
    }

    .image-upload-container {
        margin-top: 10px;
    }

    .upload-box {
        border: 2px dashed #dfe4ea;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .upload-box:hover {
        border-color: #3498db;
        background: #f8fafc;
    }

    .upload-box i {
        font-size: 24px;
        color: #7f8c8d;
    }

    .upload-box span {
        color: #57606f;
        font-size: 14px;
    }

    .btn-submit-review {
        background: #3498db;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 6px;
        font-weight: 600;
        width: 100%;
        margin-top: 15px;
        transition: all 0.3s ease;
    }

    .btn-submit-review:hover {
        background: #2980b9;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .summary-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .summary-body {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .review-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .review-image {
            max-width: 100%;
        }
    }