/* Product Page Styles - Clean Professional Layout */

.product-main {
    min-height: 100vh;
    padding-top: 80px;
    background-color: #ffffff;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb-list a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: #A0522D;
}

.breadcrumb-list .current {
    color: #8B4513;
    font-weight: 500;
}

/* Product Section - Clean Split Layout */
.product-section {
    padding: 0 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-layout {
    display: grid;
    grid-template-columns: 58% 40%;
    gap: 4rem;
    align-items: start;
}

/* Product Images - Clean Gallery */
.product-images {
    position: sticky;
    top: 100px;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.main-image-container:hover {
    transform: translateY(-2px);
}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: all 0.3s ease;
    background: #fafafa;
}

.zoom-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.main-image-container:hover .zoom-hint {
    opacity: 1;
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.badge {
    background: #000;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Thumbnail Grid */
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
    max-width: 100%;
}

.thumbnail-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.thumbnail-item:hover {
    border-color: #ddd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail-item.active {
    border-color: #8B4513;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.thumbnail-item.active .thumbnail-overlay {
    background: rgba(139, 69, 19, 0.1);
}

/* Hover Zoom Functionality */
.main-image-container {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.zoom-lens {
    position: absolute;
    border: 3px solid #03c6fb;
    cursor: none;
    width: 120px;
    height: 120px;
    opacity: 0;
    pointer-events: none;
    background: rgba(3, 198, 251, 0.15);
    border-radius: 8px;
    transition: opacity 0.2s ease;
    box-shadow: 0 0 25px rgba(3, 198, 251, 0.4);
}

.main-image-container:hover .zoom-lens {
    opacity: 1;
}

.zoom-result {
    position: fixed;
    top: 50%;
    right: 20px;
    width: 300px;
    height: 300px;
    border: 3px solid #03c6fb;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(0.9);
}

.main-image-container:hover .zoom-result {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.zoom-result img {
    width: auto;
    height: auto;
    position: absolute;
    object-fit: cover;
}

/* Add zoom indicator */
.zoom-result::before {
    content: 'Zoomed View';
    position: absolute;
    top: -35px;
    left: 0;
    background: #03c6fb;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1001;
}

/* Product Information */
/* Product Info - Clean Professional Layout */
.product-info {
    padding-top: 1rem;
}

.product-header {
    margin-bottom: 2rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: #ddd;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.star.filled {
    color: #D4AF37;
}

.rating-text {
    color: #666;
    font-size: 0.875rem;
}

/* Pricing - Clean Style */
.product-pricing {
    margin-bottom: 1.5rem;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B4513;
}

.original-price {
    font-size: 1.125rem;
    color: #999;
    text-decoration: line-through;
}

.savings {
    background: #000;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-warning {
    color: #e74c3c;
    font-weight: 600;
    margin: 0;
    font-size: 0.875rem;
}

/* Financing Info */
.financing-info {
    margin-bottom: 2rem;
}

.financing-text {
    color: #666;
    font-size: 0.875rem;
}

/* Product Description */
.product-description {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 2rem;
}

.option-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Color Options */
.color-options {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.color-option.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: white;
}



/* Option Label */
.option-label {
    display: block;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Size Options - Clean Button Style */
.size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-width: 500px;
}

.size-option {
    height: 4.5rem;
    min-width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #8B4513;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-option.available:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
    font-weight: 600;
}

.size-option.active {
    background: #8B4513;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

.size-option.unavailable {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
    position: relative;
}

.size-option.unavailable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #6c757d;
    transform: rotate(-45deg);
}

.size-guide-btn {
    background: none;
    border: none;
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0;
}

.size-guide-btn:hover {
    color: #1a252f;
}

/* Quantity Selector - Clean Style */
.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #8B4513;
    background: transparent;
    color: #8B4513;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #8B4513;
    color: white;
}

.qty-input {
    width: 3rem;
    height: 2.5rem;
    border: 1px solid #8B4513;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    background: white;
    color: #8B4513;
}

.qty-input:focus {
    outline: none;
}

/* Action Buttons - Clean Professional Style */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #8B4513;
    color: white;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    background: #A0522D;
}

.buy-now-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #03c6fb;
    color: white;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-now-btn:hover {
    background: #029ad1;
}

.more-payment-options {
    text-align: center;
    color: #666;
    text-decoration: underline;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.wishlist-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.wishlist-btn:hover {
    border-color: #1a1a1a;
    background: #f8f9fa;
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.product-features h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.25rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 600;
}

/* Accordion */
.product-details-accordion {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
    background: #f8f9fa;
}

.accordion-content ul {
    margin: 1rem 0 0 0;
    padding-left: 1rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

/* Size Guide Modal */
.size-guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.size-guide-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background: #fff;
    margin: auto;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid #03c6fb;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #03c6fb 0%, #0099cc 100%);
    color: #fff;
    border-bottom: none;
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    padding: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    max-height: 65vh;
    overflow-y: auto;
    background: #fafafa;
}

.modal-body p {
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.modal-body p strong {
    color: #03c6fb;
}

.modal-body em {
    color: #666;
    font-style: italic;
    background: #e8f4fd;
    padding: 0.75rem;
    border-left: 4px solid #03c6fb;
    display: block;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
}

.size-guide-section {
    margin: 2rem 0;
}

.size-guide-section h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #03c6fb;
    display: inline-block;
}

.size-chart {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.size-chart th {
    background: linear-gradient(135deg, #03c6fb 0%, #0099cc 100%);
    color: #fff;
    font-weight: 600;
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.size-chart td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    color: #333;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.size-chart tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.size-chart tbody tr:hover {
    background: #e8f4fd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(3, 198, 251, 0.2);
}

.size-chart tbody tr:last-child td {
    border-bottom: none;
}

.size-chart small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.size-disclaimer {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 0.75rem;
    margin: 1rem 0;
    text-align: center;
}

.size-disclaimer small {
    color: #856404;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Reviews Section - Clean Style */
.reviews-section {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin: 0;
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars .star {
    font-size: 1.5rem;
    color: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rating-stars .star.filled {
    color: #03c6fb;
    animation: starGlow 0.6s ease-in-out;
}

@keyframes starGlow {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.3);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.no-reviews {
    color: #666;
    font-size: 0.875rem;
}

.write-review-btn {
    background: #03c6fb;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.write-review-btn:hover {
    background: #029ad1;
}

.reviews-list {
    display: grid;
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
}

.review-rating .star {
    font-size: 1rem;
}

.review-date {
    color: #6c757d;
    font-size: 0.875rem;
}

.review-title {
    margin: 0 0 0.75rem 0;
    color: #2c3e50;
    font-size: 1.125rem;
}

.review-content {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .main-image {
        height: 400px;
    }

    .product-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-main {
        padding-top: 70px;
    }

    .product-section {
        padding: 1rem;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        font-size: 0.8rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 1.25rem;
    }

    .size-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .size-option {
        height: 3rem;
        font-size: 0.8rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .modal-content {
        margin: 1rem;
        max-width: none;
    }

    .image-thumbnails {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-pricing {
        padding: 1rem;
    }

    .price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .quantity-selector {
        width: 100%;
    }

    .qty-input {
        flex: 1;
    }

    .modal-body {
        padding: 1rem;
    }

    .size-chart th,
    .size-chart td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* Animation Classes */
.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-left.fade-in,
.fade-right.fade-in,
.fade-up.fade-in {
    opacity: 1;
    transform: translate(0);
}

/* Reviews Section Styles */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

.reviews-section .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
    position: relative;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 2px;
}

.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    max-width: 400px;
    margin: 0 auto;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-count, .no-reviews {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

.write-review-btn {
    background: #8B4513;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.write-review-btn:hover {
    background: #A0522D;
}

.reviews-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reviewer-name {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.verified-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: fit-content;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.review-rating .star {
    color: #ffc107;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
    transition: transform 0.1s ease;
}

.review-rating .star:not(.filled) {
    color: #e9ecef;
}

.review-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.review-comment {
    color: #495057;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    text-align: justify;
}

.review-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-all-reviews {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.view-all-btn {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #8B4513;
}

.view-all-btn:hover {
    background: white;
    color: #8B4513;
    text-decoration: none;
}