
        :root {
            --primary-color: #000;
            --secondary-color: #666;
            --light-bg: #f8f8f8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            color: var(--primary-color);
            overflow-x: hidden;
            background-color: white !important;
        }

        /* Product Section */
        .product-section {
            padding: 30px 0;
            background: #fff;
        }

        /* Product Image Section - Responsive */
        .product-image-container {
            display: flex;
            flex-direction: row;
            gap: 15px;
        }
        
        .product-thumbnails {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .thumbnail-item {
            width: 70px;
            height: 90px;
            border: 1px solid #ddd;
            cursor: pointer;
            overflow: hidden;
        }
        
        .thumbnail-item.active {
            border-color: #000;
        }
        
        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Main Image Slider */
        .product-main-image {
            flex: 1;
            background: #f5f5f5;
            position: relative;
            min-height: 500px;
            overflow: hidden;
        }

        .main-image-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .main-slider-container {
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease;
        }

        .main-slide {
            flex: 0 0 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: #fff;
            transform: scale(1.2);
        }

        .size-label-vertical {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            font-size: 11px;
            letter-spacing: 3px;
            color: #999;
            z-index: 10;
        }
        
        .share-section {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .share-btn {
            color: #000;
            text-decoration: none;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-info-section {
            padding-left: 30px;
        }

        .product-title {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .rating-section {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .stars {
            color: #ffa500;
            font-size: 14px;
        }

        .review-count {
            color: #666;
            font-size: 12px;
        }

        .price-section {
            margin-bottom: 12px;
        }

        .current-price {
            font-size: 26px;
            font-weight: 600;
            color: #d32f2f;
        }

        .original-price {
            font-size: 16px;
            color: #999;
            text-decoration: line-through;
            margin-left: 8px;
        }

        .discount-tag {
            background: #d32f2f;
            color: #fff;
            padding: 2px 6px;
            font-size: 11px;
            margin-left: 8px;
            border-radius: 2px;
        }

        .paypal-info {
            font-size: 12px;
            color: #666;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .paypal-info a {
            color: #0070ba;
            text-decoration: underline;
        }

        .paypal-logo svg {
            width: 80px;
            height: 24px;
        }

        .option-group {
            margin-bottom: 10px;
        }

        .option-label {
            font-size: 13px;
            margin-bottom: 10px;
            display: block;
        }

        .color-selector {
            display: flex;
            gap: 10px;
        }

        .color-box {
            width: 50px;
            height: 50px;
            border: 2px solid #ddd;
            cursor: pointer;
        }

        .color-box.active {
            border-color: #000;
        }

        .color-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .size-guide-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #d32f2f;
            text-decoration: none;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .size-selector {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .size-btn {
            padding: 8px 18px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            font-size: 13px;
        }

        .size-btn.active {
            background: #000;
            color: #fff;
            border-color: #000;
        }

        .shipping-badge {
            background: #f5f5f5;
            padding: 3px 8px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: #d32f2f;
            margin-bottom: 15px;
        }

        .measurements {
            background: #fafafa;
            padding: 12px;
            font-size: 12px;
            margin-bottom: 10px;
        }

       .measurement-row {
            display: flex;
            gap: 1rem;
        }

        .add-to-bag-section {
            display: flex;
            gap: 10px;
        }

        .add-bag-btn {
            flex: 1;
            background: #000;
            color: #fff;
            border: none;
            padding: 14px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
        }

        .wishlist-icon {
            width: 50px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .promo-section {
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .promo-item {
            font-size: 12px;
            margin-bottom: 8px;
        }

        .details-accordion {
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .details-header {
            display: flex;
            justify-content: space-between;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .details-content {
            display: none;
            margin-top: 15px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 4px;
        }

        .details-content.show {
            display: block;
        }

        .detail-item {
            display: flex;
            margin-bottom: 8px;
            font-size: 13px;
        }

        .detail-label {
            font-weight: 600;
            min-width: 120px;
        }

        .detail-value {
            flex: 1;
        }

        .bundle-section {
            padding: 20px;
            margin-bottom: 10px;
            background: #f9f9f9;
        }

        .bundle-title {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .bundle-products {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .bundle-product-item {
            width: 90px;
        }

        .bundle-product-item img {
            width: 100%;
            height: 40px;
            object-fit: cover;
        }

        .bundle-price {
            font-size: 12px;
            margin-bottom: 12px;
        }

        .add-selected-btn {
            width: 100%;
            background: #000;
            color: #fff;
            border: none;
            padding: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
        }

        .product-list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 3px 0;
            font-size: 11px;
        }

        .product-list-checkbox {
            height: 18px;
        }

        .product-list-img {
            width: 70px;
            height: 90px;
            object-fit: cover;
        }

        .product-list-info {
            flex: 1;
        }

        .product-list-price {
            font-weight: 600;
        }

        /* Mobile Review Section Styles */
        .mobile-review-section {
            padding: 20px 15px;
            background: #fff;
            border-top: 1px solid #eee;
        }

        .review-header-mobile {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .review-title-mobile {
            font-size: 18px;
            font-weight: 700;
            color: #000;
        }

        .review-summary-mobile {
            background: #f8f8f8;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
        }

        .review-score-mobile {
            font-size: 36px;
            font-weight: 700;
            color: #000;
            margin-bottom: 5px;
        }

        .review-stars-mobile {
            color: #ffb400;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .review-count-mobile {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .review-action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .write-review-btn-mobile {
            flex: 1;
            background: #000;
            color: #fff;
            border: none;
            padding: 12px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
        }

        .view-all-btn-mobile {
            flex: 1;
            background: #fff;
            color: #000;
            border: 1px solid #ddd;
            padding: 12px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
        }

        .review-item-mobile {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .review-meta-mobile {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .verified-tag-mobile {
            background: #000;
            color: #fff;
            padding: 4px 8px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 600;
        }

        .user-name-mobile {
            font-size: 14px;
            font-weight: 600;
            color: #000;
        }

        .review-stars-item-mobile {
            color: #ffb400;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .review-text-mobile {
            font-size: 14px;
            margin: 8px 0;
            line-height: 1.5;
            color: #333;
        }

        .review-date-mobile {
            font-size: 12px;
            color: #999;
        }

        .review-topbar-mobile {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0 15px 0;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .review-count-text-mobile {
            font-weight: 600;
            font-size: 14px;
        }

        .sort-select-mobile {
            border: 1px solid #ddd;
            padding: 8px 12px;
            font-size: 14px;
            cursor: pointer;
            background: #fff;
            border-radius: 4px;
        }

        /* Desktop Review Section */
        .desktop-review-section {
            padding: 30px 0;
            background: #fff;
            border-top: 1px solid #eee;
        }

        .review-container {
            background: #fff;
            padding: 30px;
            margin-top: 40px;
            font-family: 'Arial', sans-serif;
            border: 1px solid #eee;
            border-radius: 4px;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #f8f8f8;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .review-score {
            font-size: 36px;
            font-weight: bold;
            color: #000;
        }

        .review-score span {
            font-size: 16px !important;
            color: #ffa500;
        }

        .write-review-btn {
            padding: 12px 24px;
            border: 1px solid #000;
            background: #fff;
            color: #000;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .write-review-btn:hover {
            background: #000;
            color: #fff;
        }

        .review-topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 25px 0 20px 0;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
            font-size: 14px;
        }

        .sort-select {
            border: 1px solid #ddd;
            padding: 8px 12px;
            font-size: 14px;
            cursor: pointer;
            background: #fff;
            border-radius: 4px;
        }

        .review-item {
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }

        .review-meta {
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .verified-tag {
            background: #000;
            color: #fff;
            padding: 4px 8px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 600;
        }

        .user-name {
            font-size: 14px;
            font-weight: 600;
            color: #000;
        }

        .review-stars {
            color: #ffb400;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .review-text {
            font-size: 14px;
            margin: 10px 0;
            line-height: 1.5;
            color: #333;
        }

        .review-date {
            font-size: 12px;
            color: #999;
        }

        /* Updated Modal Styles for Right-to-Left Animation */
        .custom-right-modal {
            position: fixed;
            top: 0;
            right: -100%; /* Start off-screen to the right */
            width: 100%;
            max-width: 500px;
            height: 100vh;
            margin: 0;
            transition: right 0.4s ease-in-out;
            z-index: 1060;
            background: #fff;
        }

        .custom-right-modal.show {
            right: 0; /* Slide in to visible position */
        }

        .custom-right-modal .modal-content {
            height: 100%;
            border-radius: 0;
            border: none;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }

        .custom-right-modal .modal-header {
            border-bottom: 1px solid #dee2e6;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .custom-right-modal .modal-body {
            padding: 20px;
            overflow-y: auto;
        }

        .custom-right-modal .modal-footer {
            border-top: 1px solid #dee2e6;
            padding: 20px;
        }

        /* Modal backdrop styling */
        .modal-backdrop-custom {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1055;
            display: none;
        }

        .modal-backdrop-custom.show {
            display: block;
        }

        .file-upload-area {
            border: 2px dashed #ddd;
            padding: 40px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 4px;
        }

        .file-upload-area:hover {
            border-color: #000;
            background: #f9f9f9;
        }

        .file-upload-area i {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 10px;
        }

        .file-upload-area p {
            margin: 0;
            color: #666;
        }

        .rating-stars {
            display: flex;
            gap: 5px;
            margin-top: 10px;
        }

        .rating-stars span {
            font-size: 24px;
            cursor: pointer;
            color: #e0e0e0;
            transition: color 0.2s;
        }

        .rating-stars span:hover,
        .rating-stars span.active {
            color: #FFD700;
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
            color: #000;
        }

        .form-control {
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 4px;
            width: 100%;
        }

        .form-control:focus {
            outline: none;
            border-color: #000;
        }

        .btn-primary {
            background: #000;
            border: 1px solid #000;
            color: #fff;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background: #333;
            border-color: #333;
        }

        .section-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .product-card {
            position: relative;
            margin-bottom: 20px;
        }

        .product-image-box {
            position: relative;
            background: #d4d4d4;
            height: 380px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .shipping-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(255, 255, 255, 0.95);
            padding: 6px 10px;
            font-size: 11px;
            font-weight: 600;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .shipping-badge i {
            color: #b8860b;
        }

        .curve-text {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 4px;
            color: #666;
        }

        .product-image-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .product-info {
            padding: 12px 0;
        }

        .product-name {
            font-size: 13px;
            color: #333;
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .price-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }

        .sale-price {
            font-size: 16px;
            font-weight: 600;
            color: #d32f2f;
        }

        .discount-percent {
            font-size: 13px;
            color: #d32f2f;
        }

        .original-price {
            font-size: 13px;
            color: #999;
            text-decoration: line-through;
        }

        .regular-price {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .color-dots {
            display: flex;
            gap: 8px;
        }

        .color-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 1px solid #ddd;
            cursor: pointer;
        }

        .color-white {
            background: #fff;
        }

        .color-black {
            background: #000;
        }

        .color-brown {
            background: #654321;
        }

        .color-green {
            background: #00a86b;
        }

        .pagination-wrapper-main {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 0;
            gap: 10px;
        }

        .pagination-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            border-radius: 20px;
        }

        .pagination-btn:hover {
            border-color: #000;
        }

        .pagination-btn.active {
            background: #000;
            color: #fff;
            border-color: #000;
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Mobile Product Info Container */
        .mobile-product-info {
            display: none;
            background: #fff;
            padding: 20px;
            padding-top: 0px;
        }

        /* Hide the thumbnail slider completely */
        .product-thumbnails-slider {
            display: none !important;
        }

        /* Mobile horizontal scroll for Recent Viewed */
        .recent-viewed-container {
            overflow-x: auto;
            padding-bottom: 15px;
            margin-bottom: 20px;
            -webkit-overflow-scrolling: touch;
        }

        .recent-viewed-scroll {
            display: flex;
            gap: 15px;
            min-width: max-content;
        }

        .recent-viewed-scroll .product-card {
            flex: 0 0 200px;
            margin-bottom: 0;
        }

        /* Fixed bottom buttons for mobile */
        .mobile-fixed-buttons {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 12px 15px;
            display: flex;
            gap: 10px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .mobile-fixed-buttons.show {
            transform: translateY(0);
        }

        .mobile-fixed-buttons .add-bag-btn {
            flex: 1;
            background: #000;
            color: #fff;
            border: none;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
        }

        .mobile-fixed-buttons .wishlist-icon {
            width: 50px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .main-nav-links {
                flex-direction: column;
                gap: 15px;
            }

            .product-info-section {
                padding-left: 0;
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-sections {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .search-box {
                width: 100%;
                margin: 10px 0;
            }

            .search-box input {
                width: 100%;
            }
            
            .product-image-container {
                flex-direction: column;
            }
            
            .product-thumbnails {
                flex-direction: row;
                order: 2;
                justify-content: center;
                margin-top: 15px;
            }
            
            .product-main-image {
                order: 1;
                min-height: 400px;
            }
            
            .share-section {
                display: none; /* Hide share section on mobile */
            }
            
            .review-stars, .review-text {
                margin-left: 0;
            }

            /* Mobile product info styling */
            .product-info-section {
                display: none;
            }

            .mobile-product-info {
                display: block;
            }

            .mobile-product-info .product-title {
                font-size: 20px;
                font-weight: 500;
                margin-bottom: 15px;
                line-height: 1.4;
            }

            .mobile-product-info .rating-section {
                margin-bottom: 20px;
            }

            .mobile-product-info .price-section {
                margin-bottom: 20px;
            }

            .mobile-product-info .paypal-info {
                margin-bottom: 20px;
                padding: 10px;
                background: #f9f9f9;
                border-radius: 4px;
            }

            .mobile-product-info .option-group {
                margin-bottom: 20px;
                padding-bottom: 15px;
                border-bottom: 1px solid #eee;
            }

            .mobile-product-info .option-label {
                font-size: 14px;
                font-weight: 600;
                margin-bottom: 12px;
            }

            .mobile-product-info .size-selector {
                gap: 8px;
            }

            .mobile-product-info .size-btn {
                padding: 10px 15px;
                font-size: 14px;
            }

            .mobile-product-info .measurements {
                margin-bottom: 20px;
                font-size: 13px;
            }

            .mobile-product-info .add-to-bag-section {
                /* margin: 25px 0; */
                display: none;
            }

            .mobile-product-info .add-bag-btn {
                padding: 16px;
                font-size: 16px;
            }

            .mobile-product-info .wishlist-icon {
                width: 60px;
                font-size: 22px;
            }

            .mobile-product-info .promo-section {
                margin: 20px 0;
                padding-top: 20px;
            }

            .mobile-product-info .promo-item {
                font-size: 13px;
                margin-bottom: 10px;
            }

            .mobile-product-info .details-accordion {
                margin: 20px 0;
                padding-top: 20px;
            }

            .mobile-product-info .bundle-section {
                margin: 25px 0;
                padding: 25px 20px;
            }

            .mobile-product-info .bundle-title {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .mobile-product-info .bundle-price {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .mobile-product-info .add-selected-btn {
                padding: 14px;
                font-size: 14px;
            }

            .mobile-product-info .product-list-item {
                padding: 10px 0;
                font-size: 13px;
                border-bottom: 1px solid #f0f0f0;
            }

            .mobile-product-info .product-list-checkbox {
                height: 20px;
                width: 20px;
            }

            .mobile-product-info .product-list-price {
                font-size: 14px;
            }

            /* Hide desktop thumbnails on mobile */
            .product-thumbnails {
                display: none !important;
            }

            /* Mobile modal adjustments */
            .custom-right-modal {
                max-width: 100%;
            }

            /* Hide regular recent viewed on mobile */
            .recent-viewed-regular {
                display: none;
            }

            /* Show mobile scroll version */
            .recent-viewed-scroll-container {
                display: block;
            }

            /* Show fixed buttons on mobile */
            .mobile-fixed-buttons {
                display: flex;
            }

            /* Hide desktop review section on mobile */
            .desktop-review-section {
                display: none;
            }

            /* Show mobile review section on mobile */
            .mobile-review-section {
                display: block;
            }
        }

        @media (min-width: 769px) {
            .recent-viewed-scroll-container {
                display: none;
            }
            
            .mobile-fixed-buttons {
                display: none;
            }

            /* Hide mobile review section on desktop */
            .mobile-review-section {
                display: none;
            }

            /* Show desktop review section on desktop */
            .desktop-review-section {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .product-main-image {
                min-height: 350px;
            }
            
            .thumbnail-item {
                width: 60px;
                height: 80px;
            }
            
            .review-header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .review-topbar {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            .mobile-product-info .product-title {
                font-size: 18px;
            }

            .mobile-product-info .current-price {
                font-size: 24px;
            }

            .mobile-product-info .size-selector {
                justify-content: space-between;
            }

            .mobile-product-info .size-btn {
                flex: 1;
                text-align: center;
            }

            .measurement-row {
                flex-direction: column;
                gap: 8px;
            }

            .recent-viewed-scroll .product-card {
                flex: 0 0 180px;
            }
        }
    