
button {
    padding: 0px;
}
    .customer-feedback-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            background-color: white;
            padding: 40px;
            border-radius: 8px;
        }

        .feedback-heading {
            font-size: 28px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        .qa-section, .rating-section {
            min-width: 0;
            overflow: hidden;
        }

        .customer-feedback-card {
            display: flex;
            gap: 20px;
            padding: 30px 0;
            border-bottom: 1px solid #e5e5e5;
        }

        .customer-feedback-card:last-child {
            border-bottom: none;
        }

        .user-avatar-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #c8e6e6;
            flex-shrink: 0;
        }

        .feedback-details {
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .star-rating-display {
            color: #ff9900;
            font-size: 16px;
            margin-bottom: 0px;
            letter-spacing: 2px;
        }

        .feedback-message {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 12px;
        }

        .product-images-container {
            display: flex;
            gap: 10px;
            margin-top: 12px;
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 10px;
            scroll-behavior: smooth;
            position: relative;
        }

        .product-images-wrapper {
            position: relative;
            margin-top: 12px;
        }

        .product-images-container::-webkit-scrollbar {
            height: 6px;
        }

        .product-images-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .product-images-container::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .product-images-container::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .product-image-thumbnail {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #e5e5e5;
            cursor: pointer;
            transition: transform 0.2s;
            flex-shrink: 0;
        }

        .product-image-thumbnail:hover {
            transform: scale(1.05);
        }

        /* Image Modal Styles */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s;
            padding: 20px;
        }

        .image-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content-wrapper {
            position: relative;
            max-width: 85%;
            max-height: 85%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 85vh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
            display: block;
        }

        .modal-close {
            position: absolute;
            top: -15px;
            right: -15px;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            z-index: 1001;
            line-height: 1;
            padding: 0;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #000;
            transform: scale(1.1);
        }

        .modal-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            color: #333;
            transition: all 0.2s;
            z-index: 1001;
        }

        .modal-nav-btn:hover {
            background-color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .modal-prev {
            left: 20px;
        }

        .modal-next {
            right: 20px;
        }

        .modal-nav-btn i {
            pointer-events: none;
        }

        .feedback-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
        }

        .posted-date {
            font-size: 14px;
            color: #666;
        }

        .reply-action-link {
            color: #007185;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .reply-action-link:hover {
            text-decoration: underline;
        }

        .customer-details {
            margin-top: 0px;
        }

        .customer-display-name {
            font-weight: 600;
            font-size: 15px;
            color: #1a1a1a;
        }

        .member-since-label {
            font-size: 13px;
            color: #666;
            margin-top: 4px;
        }

        .overall-rating-display {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .overall-stars {
            color: #ff9900;
            font-size: 18px;
            letter-spacing: 2px;
        }

        .rating-score-number {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .rating-breakdown {
            margin-bottom: 30px;
        }

        .breakdown-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .star-label {
            font-size: 14px;
            color: #333;
            min-width: 50px;
        }

        .progress-bar-wrapper {
            flex: 1;
            height: 24px;
            background-color: #e5e5e5;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .progress-bar-inner {
            height: 100%;
            background-color: #007f7f;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 8px;
            color: white;
            font-size: 13px;
            font-weight: 600;
        }

        .rating-calculation-info {
            margin-top: 20px;
        }

        .rating-calculation-info a {
            color: #666;
            font-size: 14px;
            text-decoration: none;
        }

        .rating-calculation-info a:hover {
            color: #007185;
            text-decoration: underline;
        }

        @media (max-width: 1200px) {
            .customer-feedback-wrapper {
                max-width: 100%;
                gap: 40px;
            }
        }

        @media (max-width: 968px) {
            .customer-feedback-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 20px;
            }

            .feedback-heading {
                font-size: 24px;
            }

            .customer-feedback-card {
                flex-direction: column;
                gap: 15px;
            }

            .user-avatar-circle {
                width: 60px;
                height: 60px;
            }

            .feedback-message {
                font-size: 15px;
            }

            .product-image-thumbnail {
                width: 90px;
                height: 90px;
            }

            .breakdown-item {
                gap: 10px;
            }

            .star-label {
                min-width: 45px;
                font-size: 13px;
            }
        }

        @media (max-width: 640px) {
            body {
                padding: 20px 10px;
            }

            .customer-feedback-wrapper {
                padding: 15px;
                gap: 30px;
            }

            .feedback-heading {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .user-avatar-circle {
                width: 50px;
                height: 50px;
            }

            .star-rating-display, .overall-stars {
                font-size: 14px;
            }

            .feedback-message {
                font-size: 14px;
            }

            .product-image-thumbnail {
                width: 80px;
                height: 80px;
            }

            .posted-date, .reply-action-link {
                font-size: 12px;
            }

            .customer-display-name {
                font-size: 14px;
            }

            .member-since-label {
                font-size: 12px;
            }

            .rating-score-number {
                font-size: 20px;
            }

            .progress-bar-wrapper {
                height: 20px;
            }

            .progress-bar-inner {
                font-size: 11px;
            }
        }