.product-container {
    display: grid;
    grid-template-areas: 'prd-img prd-dt';
    grid-template-columns: 50% 50%;
}

.product-container > div {
    padding: 15px;
    /* border: 1px solid; */
}

.product-images {
    grid-area: prd-img;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 20px;
}

.product-details {
    grid-area: prd-dt;
    display: flex;
    align-items: center;
    
}

/* Product Images */
.img-thumb {
    max-width: 500px;
    margin: 0 auto;
}

.product-images img {
    display: block;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    margin-left: auto;
}

.product-images .img-small {
    display: flex;
    column-gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.product-images .img-small img {
    object-fit: cover;
    width: 23%;
}

/* Product Details */
.product-details h2 {
    font-weight: 600;
}

.product-details p {
    font-size: 14px;
    /* color: #666; */
    margin-bottom: 20px;
}

.product-details .description {
    max-width: 750px;
}

/* .product-details .description {
    width: 100%;
} */

.buy-now {
    width: 100%;
    height: 50px;
}

.product-size-container {
    display: flex;
    justify-content: space-between;
}

/* Start Btn and couner Area*/
.btn-and-counter {
    display: flex;
    margin-bottom: 30px;
}

/* .add-cart {
    width: 100%;
} */

/* Start Quantity Counter */
.counter {
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: var(--topback);
    margin-right: 30px;
}

.counter span {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.counter .plus,
.counter .minus {
    border: 0;
    outline: 0;
    padding: 10px;
    width: 80px;
    background: none;
    cursor: pointer;
}

.counter span.num {
    font-size: 20px;
    border-right: 2px solid rgba(0,0,0,0.2);
    border-left: 2px solid rgba(0,0,0,0.2);
}
/* End Btn and couner Area*/


/* Responsive */
@media only screen and (max-width: 1150px) {
    .product-container {
        display: grid;
        grid-template-areas: 'prd-img prd-img'
                             'prd-dt prd-dt';
    }
}

/* Image Zoom */
.img-zoom-container {
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.img-zoom {
	transition: transform 0.2s ease;
	cursor: zoom-in;
	will-change: transform;
}
.img-zoom.active {
	cursor: zoom-out;
}

/* ################################ */
/* START PRODUCT PAGE JSX FILE CSS */
/* ############################## */
/* Base Styles */
b {
    font-weight: 700;
}

/* .modern-product-page {
    padding: 20px 0;
} */

/* Breadcrumb */
.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6c757d;
    flex-wrap: wrap;
}

.product-breadcrumb a {
    color: var(--theme);
    text-decoration: none;
    transition: color 0.3s;
}

.product-breadcrumb a:hover {
    color: var(--theme);
}

/* Product Container */
.modern-product-container {
    display: grid;
    grid-template-columns: 45% 35% 20%;
    gap: 5px;
    margin-bottom: 20px;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    height: fit-content;
}

.main-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1/1;
    flex: 1;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--theme);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
}

.stock-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stock-badge.in-stock {
    color: #00802f;
    border: 2px solid #00802f;
}

.stock-badge.out-stock {
    color: #dc3545;
    border: 2px solid #dc3545;
}

.img-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    flex-shrink: 0;
}

.thumbnail {
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: white;
}

.thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thumbnail.active {
    border-color: var(--theme);
    box-shadow: 0 8px 25px rgba(0, 77, 31, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    background: white;
    padding: 0px 15px;
}

.product-title {
    font-size: 36px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 16px;
    line-height: 1.2;
}

.category-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #6c757d;
    flex-wrap: wrap;
}

.category-links a {
    color: #004d1f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 4px 12px;
    border-radius: 8px;
}

.category-links a:hover {
    background: #e8f5e9;
    color: #00802f;
}

.product-description {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 15px;
}

/* Price Section */
.price-section {
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 32px;
    font-weight: 600;
    color: var(--theme);
    display: flex;
    align-items: center;
}

.original-price {
    font-size: 20px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 400;
}

.save-badge {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    background: #fef2f2;
    padding: 6px 12px;
    border-radius: 5px;
}

/* Size Selector */
.size-selector {
    margin-bottom: 32px;
}

.size-label {
    font-weight: 700;
    font-size: 16px;
    color: #212529;
    margin-bottom: 12px;
    display: block;
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.size-btn {
    padding: 12px 24px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    color: #495057;
}

.size-btn:hover:not(:disabled) {
    border-color: #004d1f;
    background: #f8f9fa;
    color: #000;
    transform: translateY(-2px);
}

.size-btn.active {
    background: #004d1f;
    color: white;
    border-color: #004d1f;
    box-shadow: 0 4px 15px rgba(0, 77, 31, 0.3);
}

.size-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Quantity Section */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.quantity-label {
    font-weight: 600;
    font-size: 15px;
    color: #212529;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

.quantity-display {
    min-width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 16px;
}

.primary-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.add-to-cart-btn {
    background: white !important;
    color: var(--theme) !important;
    border: 1px solid var(--theme) !important;
}

.add-to-cart-btn:hover:not(:disabled) {
    background: #fff5f5 !important;
}

.buy-now-btn {
    background: var(--theme) !important;
    color: white !important;
    border: 1px solid var(--theme) !important;
}

.buy-now-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-2px);
}

.primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Contact Section */
.contact-section {
    padding-top: 4px;
}

.contact-title {
    font-weight: 700;
    font-size: 16px;
    color: #212529;
    margin-bottom: 12px;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.contact-card-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-card-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-card-sub {
    font-size: 12px;
    color: #6c757d;
}

/* Phone Style */
.contact-card-btn.phone {
    border-color: #fee2e2;
    background: #fef2f2;
}

.contact-card-btn.phone .contact-icon {
    color: var(--theme);
}

.contact-card-btn.phone .contact-card-title {
    color: var(--theme);
}

.contact-card-btn.phone:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

/* WhatsApp Style */
.contact-card-btn.whatsapp {
    border-color: #dcfce7;
    background: #f0fdf4;
}

.contact-card-btn.whatsapp .contact-icon {
    color: #16a34a;
}

.contact-card-btn.whatsapp .contact-card-title {
    color: #16a34a;
}

.contact-card-btn.whatsapp:hover {
    background: #dcfce7;
    border-color: #bbf7d0;
}

/* Messenger Style */
.contact-card-btn.messenger {
    border-color: #dbeafe;
    background: #eff6ff;
}

.contact-card-btn.messenger .contact-icon {
    color: #2563eb;
}

.contact-card-btn.messenger .contact-card-title {
    color: #2563eb;
}

.contact-card-btn.messenger:hover {
    background: #dbeafe;
    border-color: #bfdbfe;
}

/* Horizontal Trust Features Banner */
.trust-features-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff8f6;
    border-radius: 12px;
    padding: 20px 32px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-banner-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-banner-item i {
    font-size: 28px;
}

.trust-banner-text h6 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #343a40;
}

.trust-banner-text p {
    font-size: 11px;
    color: #6c757d;
    margin: 0;
}

.trust-banner-divider {
    width: 1px;
    height: 35px;
    background: #e5e7eb;
}

/* Tabs Section */
.tabs-section {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.tab-navigation {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 16px 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin-bottom: -2px;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #004d1f;
}

.tab-btn.active {
    color: #004d1f;
    border-bottom-color: #004d1f;
}

.tab-content {
    color: #495057;
    line-height: 1.8;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.info-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #212529;
    width: 30%;
}

.info-table td {
    color: #495057;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* ===================================
         PRODUCT SIDEBAR CARD
         =================================== */
.product-sidebar-container {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #f0e8e8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.why-love-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-love-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-love-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bg-blue-light { background: #eef2ff; color: #4f46e5; }
.bg-orange-light { background: #fff7ed; color: #ea580c; }
.bg-green-light { background: #f0fdf4; color: #16a34a; }

.why-love-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.why-love-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.sidebar-product-summary {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e9ecef;
}

.sidebar-product-summary img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-product-summary > div {
    min-width: 0;
    overflow: hidden;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #212529;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-variant {
    font-size: 12px;
    color: #6c757d;
}

.sidebar-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sidebar-current-price {
    font-size: 15px;
    font-weight: 400;
    color: var(--theme);
}

.sidebar-original-price {
    font-size: 14px;
    color: #adb5bd;
    text-decoration: line-through;
}

.sidebar-save-badge {
    font-size: 11px;
    font-weight: 500;
    color: var(--theme);
    background: #fef2f2;
    padding: 3px 8px;
    border-radius: 20px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.trust-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.trust-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.trust-feature-content h4 {
    font-size: 13px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1px;
}

.trust-feature-content p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.trusted-by {
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.trusted-by-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2px;
}

.trusted-by-label {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.trusted-count {
    font-size: 18px;
    font-weight: 800;
    color: var(--theme);
}

.trusted-sub {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
}

.avatar-group {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.avatar-group img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.trusted-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 14px;
}

.trusted-rating-text {
    font-size: 11px;
    color: #6c757d;
    margin-left: 4px;
}

.estimated-delivery {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #e9ecef;
}

.delivery-icon {
    color: #212529;
    font-size: 24px;
    flex-shrink: 0;
}

.delivery-text h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #212529;
}

.delivery-text p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}
/* ===================================
          RESPONSIVE STYLES - 1300px
          =================================== */
@media (max-width: 1300px) {
    .modern-product-container {
        grid-template-columns: 50% 50%;
        gap: 15px;
    }
    .product-gallery {
        grid-column: 1;
        grid-row: 1;
    }
    .product-info {
        grid-column: 2;
        grid-row: 1;
    }
    .product-sidebar-container {
        grid-column: 1 / -1;
        grid-row: 2;
        position: static;
        margin-top: 15px;
        
        /* Split aside inner content into 2 columns */
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: stretch;
        padding: 0;
    }
    .product-sidebar-container > .sidebar-card {
        margin-bottom: 0 !important;
    }
    .sidebar-product-summary {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none; /* Remove broken border */
    }
    .sidebar-price-row {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        justify-content: flex-end; /* Align price nicely to the right */
    }
    .trust-features {
        grid-column: 1;
        grid-row: 2 / 4;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .trusted-by {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .estimated-delivery {
        grid-column: 2;
        grid-row: 3;
    }
}

/* ===================================
          RESPONSIVE STYLES - TABLET
          =================================== */
@media (max-width: 968px) {
    .modern-product-container {
        grid-template-columns: 1fr;
        gap: 5px;
        /* margin-bottom: 50px; */
    }

    .product-gallery {
        flex-direction: column-reverse;
        grid-column: auto;
        grid-row: auto;
    }

    .product-info {
        grid-column: auto;
        grid-row: auto;
    }

    .product-sidebar-container {
        grid-column: auto;
        grid-row: auto;
        margin-top: 15px;
    }

    .thumbnail-grid {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .product-sidebar-container {
        position: static;
    }
    .product-breadcrumb {
        font-size: 13px;
        gap: 6px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .product-sidebar-container {
        grid-template-columns: 1fr;
    }
    
    /* .modern-product-page {
        padding: 15px 0;
    } */

    /* Product Info */
    /* .product-info {
        padding: 30px 24px;
        border-radius: 20px;
    } */

    .product-title {
        font-size: 28px;
    }

    /* Price */
    .current-price {
        font-size: 36px;
    }

    .original-price {
        font-size: 20px;
    }

    .price-section {
        padding: 20px;
    }

    /* Buttons */
    .primary-btn {
        padding: 16px 28px;
        font-size: 15px;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-btn {
        padding: 14px;
    }

    /* Tabs */
    .tabs-section {
        padding: 30px 24px;
        border-radius: 20px;
        margin-bottom: 50px;
    }

    .tab-navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tab-navigation::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .info-table th,
    .info-table td {
        padding: 14px 18px;
        font-size: 14px;
    }

    .info-table th {
        width: 38%;
    }
}

/* ===================================
          RESPONSIVE STYLES - MOBILE
          =================================== */
@media (max-width: 640px) {
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .primary-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* .modern-product-page {
        padding: 10px 0;
    } */

    /* Breadcrumb */
    .product-breadcrumb {
        font-size: 11px;
        gap: 5px;
        margin-bottom: 20px;
    }

    /* Gallery */
    .main-image-wrapper {
        border-radius: 20px;
        margin-bottom: 15px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .thumbnail {
        border-radius: 12px;
        border-width: 2px;
    }

    /* Badges */
    .discount-badge,
    .stock-badge {
        font-size: 11px;
        padding: 6px 12px;
        top: 12px;
    }

    .discount-badge {
        right: 12px;
    }

    .stock-badge {
        left: 12px;
    }

    /* Product Info */
    /* .product-info {
        padding: 24px 20px;
        border-radius: 16px;
    } */

    .product-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .category-links {
        font-size: 12px;
        gap: 6px;
    }

    .category-links a {
        padding: 3px 10px;
    }

    .product-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Price */
    .price-section {
        padding: 18px 16px;
        margin-bottom: 24px;
        border-radius: 12px;
    }

    .price-row {
        gap: 12px;
    }

    .current-price {
        font-size: 32px;
    }

    .original-price {
        font-size: 18px;
    }

    .save-amount {
        font-size: 13px;
    }

    /* Size Selector */
    .size-selector {
        margin-bottom: 24px;
    }

    .size-label {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .size-grid {
        gap: 8px;
    }

    .size-btn {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* Quantity */
    .quantity-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .quantity-label {
        font-size: 15px;
    }

    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .quantity-display {
        min-width: 50px;
        font-size: 16px;
    }

    /* Buttons */
    .action-buttons {
        margin-bottom: 24px;
    }

    .primary-btn {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* Contact */
    .contact-section {
        padding-bottom: 20px;
    }

    .contact-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .contact-btn {
        font-size: 15px;
        padding: 12px 10px;
        border-radius: 8px;
    }

    /* Tabs */
    .tabs-section {
        padding: 24px 18px;
        border-radius: 16px;
        margin-bottom: 40px;
    }

    .tab-navigation {
        gap: 6px;
        margin-bottom: 24px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px 8px 0 0;
    }

    .tab-content {
        font-size: 14px;
    }

    /* Info Table */
    .info-table {
        font-size: 13px;
        border-radius: 10px;
    }

    .info-table th,
    .info-table td {
        padding: 12px 14px;
    }

    .info-table th {
        width: 42%;
        font-size: 13px;
    }

    .info-table td {
        font-size: 13px;
    }
}

/* ===================================
          RESPONSIVE STYLES - EXTRA SMALL
          =================================== */
@media (max-width: 375px) {
    .product-title {
        font-size: 20px;
    }

    .current-price {
        font-size: 28px;
    }

    .original-price {
        font-size: 16px;
    }

    /* .product-info {
        padding: 20px 16px;
    } */

    .tabs-section {
        padding: 20px 16px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .info-table th,
    .info-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .contact-btn {
        font-size: 14px;
        padding: 10px 8px;
    }
}

/* ===================================
          RESPONSIVE STYLES - LARGE DESKTOP
          =================================== */
@media (min-width: 1400px) {
    .modern-product-container {
        gap: 5px;
    }

    /* .product-info {
        padding: 50px;
    } */

    .tabs-section {
        padding: 50px;
    }
}



/* Reviews Section Styles start  */
.reviews-container {
    max-width: 100%;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e9ecef;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px dashed #dee2e6;
}

.average-rating {
    font-size: 48px;
    font-weight: 900;
    color: #212529;
    line-height: 1;
    margin-bottom: 8px;
}

.rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.star {
    color: #ffc107;
    font-size: 20px;
}

.star.empty {
    color: #dee2e6;
}

.total-reviews {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.review-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.review-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-form-container h3 i {
    color: #000000ff;
}

.user-info-badge {
    background: linear-gradient(135deg, #004d1f, #00802f);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label i {
    color: #000000;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.rating-input {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 32px;
    color: #dee2e6;
    transition: all 0.2s;
    margin-bottom: 0;
    line-height: 1;
}

.rating-input input:checked~label,
.rating-input label:hover,
.rating-input label:hover~label {
    color: #ffc107;
}

.submit-review-btn {
    background: linear-gradient(135deg, #000000ff, #333333ff);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-review-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #333333ff, #000000ff);
}

.submit-review-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.reviews-list-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.reviews-list-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-list-container h3 i {
    color: #000000ff;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom scrollbar for reviews list */
.reviews-list::-webkit-scrollbar {
    width: 6px;
}

.reviews-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.reviews-list::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.review-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 51px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(89, 89, 89) 0%, rgb(0, 0, 0) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 77, 31, 0.2);
}

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 4px 0;
}

.review-date {
    font-size: 13px;
    color: #6c757d;
    display: block;
}

.review-rating {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.review-comment {
    color: #495057;
    line-height: 1.7;
    font-size: 15px;
    padding: 12px 0 0 0;
    border-top: 1px solid #e9ecef;
    margin-top: 12px;
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.no-reviews i {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 16px;
}

.no-reviews h3 {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.no-reviews p {
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive styles for reviews section */
@media (max-width: 992px) {
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .review-form-container {
        position: static;
    }

    .reviews-header {
        flex-direction: column;
        align-items: stretch;
    }

    .rating-summary {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .review-form-container,
    .reviews-list-container {
        padding: 24px;
    }

    .review-form-container h3,
    .reviews-list-container h3 {
        font-size: 20px;
    }

    .reviews-list {
        max-height: 500px;
    }
}

@media (max-width: 480px) {

    .review-form-container,
    .reviews-list-container {
        padding: 20px 16px;
    }

    .review-form-container h3,
    .reviews-list-container h3 {
        font-size: 18px;
    }

    .form-control {
        padding: 10px 14px;
        font-size: 14px;
    }

    .rating-input label {
        font-size: 28px;
    }

    .review-item {
        padding: 16px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .reviewer-details h4 {
        font-size: 15px;
    }

    .review-date {
        font-size: 12px;
    }

    .review-comment {
        font-size: 14px;
    }

    .average-rating {
        font-size: 40px;
    }

    .rating-stars .star {
        font-size: 18px;
    }
}
/* ############################## */
/* END PRODUCT PAGE JSX FILE CSS */
/* ############################ */