/* Single Product Section */
.single-product-section {
    padding: 40px 0 60px;
    background: #f9fafb;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #1e40af;
}

.breadcrumbs span {
    color: #999;
}

.breadcrumbs .current {
    color: #333;
    font-weight: 500;
}

/* Product Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/* Product Gallery */

.product-badge-single {
    position: absolute;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    z-index: 9;
}

.product-badge-single.new {
    top: 15px;
    left: 15px;
    background: #1e40af;
}

.product-badge-single.in-stock {
    top: 15px;
    right: 15px;
    background: #10b981;
}

.thumbnail-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumbnail-gallery::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #1e40af;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info-single {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-name {
    font-size: 32px;
    font-weight: 700;
    color: #1e40af;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 20px;
    color: #d1d5db;
}

.star.filled {
    color: #f59e0b;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

.product-price-single {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

.product-price-single .price {
    font-size: 36px;
    font-weight: bold;
    color: #1e40af;
}

.product-price-single .old-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.price-discount {
    background: #ef4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-item {
    display: flex;
    gap: 10px;
    font-size: 15px;
}

.meta-label {
    color: #666;
    min-width: 100px;
}

.meta-value {
    color: #333;
    font-weight: 500;
}

.meta-value a {
    color: #1e40af;
    text-decoration: none;
}

.meta-value a:hover {
    text-decoration: underline;
}

.in-stock-text {
    color: #10b981;
    font-weight: 600;
}

.product-description-short {
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 50px;
    background: #f3f4f6;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #e5e7eb;
}

.qty-input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    /* Hide number input arrows - Single Responsibility: only handles visual styling */
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.add-to-cart-single {
    flex: 1;
    padding: 15px 30px;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-single:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

.archive.tax-product_cat .add_to_cart_button, 
.single-product .add_to_cart_button {
    text-align: center;
}

.wishlist-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.wishlist-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.wishlist-btn.active {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

/* Product Features */
.product-features {
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.product-features h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1e40af;
}

.product-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features li {
    font-size: 14px;
    color: #666;
}

.product-features strong {
    color: #333;
}

/* Product Share */
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.product-share>span {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s;
    padding: 0;
}

.share-btn:hover {
    transform: translateY(-3px);
}

/* Product Tabs */
.product-tabs-single {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 30px;
    overflow-x: auto;
    list-style: none;
}

.tab-nav-btn {
    padding: 15px 0;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-nav-btn:hover,
.tab-nav-btn.active a {
    color: #1e40af;
}

.tab-nav-btn a {
    text-decoration: none;
    padding: 15px 25px;
    background: none;
    border: none;
    /* border-bottom: 3px solid transparent; */
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-nav-btn.active {
    border-bottom-color: #ea580c;
}


.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab-panel h3 {
    font-size: 24px;
    color: #1e40af;
    margin-bottom: 20px;
}

.tab-panel h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #333;
}

.tab-panel p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.tab-panel ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-panel li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

/* Specifications Table */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specifications-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.specifications-table td {
    padding: 15px;
    font-size: 15px;
}

.specifications-table td:first-child {
    color: #666;
    width: 30%;
}

.specifications-table td:last-child {
    color: #333;
    font-weight: 500;
}

/* Reviews */
.reviews-summary {
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.rating-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #1e40af;
}

.stars-large {
    display: flex;
    gap: 5px;
}

.stars-large .star {
    font-size: 28px;
}

.reviews-count {
    font-size: 16px;
    color: #666;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.review-item {
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

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

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.load-more-reviews {
    width: 100%;
    padding: 12px;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-reviews:hover {
    background: #1e3a8a;
}

/* Responsive */
@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .product-name {
        font-size: 26px;
    }

    .current-price-single {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    .wishlist-btn {
        width: 100%;
        height: 50px;
    }

    .tab-nav-btn {
        padding: 12px 20px;
        font-size: 14px;
    }



    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .thumbnail {
        height: 80px;
    }
}

@media (max-width: 576px) {
    
    .single-product-section {
        padding: 20px 0 40px;
    }

    .product-name {
        font-size: 22px;
    }

    .current-price-single {
        font-size: 26px;
    }

    .old-price-single {
        font-size: 18px;
    }



    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-price-single {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .specifications-table td {
        padding: 10px;
        font-size: 14px;
    }

    .specifications-table td:first-child {
        width: 40%;
    }
}

@media (max-width: 401px) {

    .product-actions {
        flex-direction: column;
    }

    .quantity-selector {
        width: 45%;
        margin: 0 auto;
    }
}

.related.products.product-tabs-single {
    margin-top: 40px;
}

.related.products.product-tabs-single h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af;
    line-height: 1.3;
    padding-bottom: 30px;
}

/* ===== WooCommerce Product Gallery Responsive Styles ===== */

/* Main gallery container */
.woocommerce-product-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.woocommerce-product-gallery .images {
    position: relative;
    width: 100%;
}

/* FlexSlider container */
.woocommerce-product-gallery .flex-viewport {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    border-radius: 12px;
    background: #f9fafb;
    height: auto !important;
    min-height: 300px;
    aspect-ratio: 1 / 1;
}

/* Wrapper slides */
.woocommerce-product-gallery__wrapper {
    display: flex;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.3s ease !important;
}

/* Individual slides */
.woocommerce-product-gallery__image {
    flex: 0 0 100%;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-right: 0 !important;
    float: none !important;
    position: relative;
}

/* Links in slides */
.woocommerce-product-gallery__image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Main images */
.woocommerce-product-gallery__image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.product-gallery {
    position: relative;
}

/* Sale Badge positioning */
.product-badge-single.onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 100;
    max-width: 150px;
}

/* Thumbnails container */
.flex-control-nav.flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: center;
}

/* Hide scrollbar for webkit browsers */
.flex-control-nav.flex-control-thumbs::-webkit-scrollbar {
    display: none;
}

/* Individual thumbnails */
.flex-control-nav.flex-control-thumbs li {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.flex-control-nav.flex-control-thumbs li img:hover,
.flex-control-nav.flex-control-thumbs li img.flex-active {
    border: 2px solid #1e40af;
    opacity: 1;
}

/* Images in thumbnails */
.flex-control-nav.flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

/* Navigation arrows (if any) */
.flex-direction-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.flex-direction-nav a {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    pointer-events: all;
    border: none;
    cursor: pointer;
}

.flex-direction-nav a:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
}

.flex-direction-nav .flex-prev {
    left: 10px;
}

.flex-direction-nav .flex-next {
    right: 10px;
}

/* Remove text from arrows and add icons */
.flex-direction-nav a:before {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1;
}

.flex-direction-nav .flex-prev:before {
    content: '‹';
}

.flex-direction-nav .flex-next:before {
    content: '›';
}

/* Adaptive media queries */
@media (min-width: 768px) and (max-width: 1024px) {
    .woocommerce-product-gallery {
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .woocommerce-product-gallery .flex-viewport {
        min-height: 400px;
    }

    .flex-control-nav.flex-control-thumbs li {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .woocommerce-product-gallery {
        margin-bottom: 20px;
    }

    .woocommerce-product-gallery .flex-viewport {
        min-height: 280px;
        border-radius: 8px;
    }

    .flex-control-nav.flex-control-thumbs {
        margin-top: 10px;
        gap: 6px;
    }

    .flex-control-nav.flex-control-thumbs li {
        width: 60px;
        height: 60px;
    }

    .flex-direction-nav a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .flex-direction-nav .flex-prev {
        left: 8px;
    }

    .flex-direction-nav .flex-next {
        right: 8px;
    }

    .product-badge-single.onsale {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
}


@media (max-width: 480px) {
    .woocommerce-product-gallery .flex-viewport {
        min-height: 250px;
    }

    .flex-control-nav.flex-control-thumbs li {
        width: 50px;
        height: 50px;
    }

    .flex-direction-nav a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .flex-direction-nav .flex-prev {
        left: 5px;
    }

    .flex-direction-nav .flex-next {
        right: 5px;
    }

    .product-badge-single.onsale {
        top: 8px;
        left: 8px;
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* Adaptability for the main product layout */
@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .woocommerce-product-gallery {
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 576px) {
    .product-layout {
        padding: 15px;
        gap: 20px;
    }

    .woocommerce-product-gallery {
        margin-bottom: 20px;
    }
}


@media (min-width: 1200px) {
    .woocommerce-product-gallery {
        max-width: 600px;
    }

    .woocommerce-product-gallery .flex-viewport {
        min-height: 500px;
    }

    .flex-control-nav.flex-control-thumbs li {
        width: 90px;
        height: 90px;
    }
}

/* Correction for inline styles FlexSlider */
.woocommerce-product-gallery .flex-viewport[style] {
    height: auto !important;
    min-height: 300px !important;
}

.woocommerce-product-gallery__wrapper[style] {
    width: 100% !important;
    height: 100% !important;
}

.woocommerce-product-gallery__image[style] {
    width: 100% !important;
    height: 100% !important;
    margin-right: 0 !important;
    float: none !important;
    display: flex !important;
}

/* Remove transition when changing the screen size */
@media (max-width: 768px) {
    .woocommerce-product-gallery__wrapper {
        transition: none !important;
    }
}

/* Loading images - skeleton effect */
.woocommerce-product-gallery__image img[src=""] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Improvements for accessibility */
.flex-control-nav.flex-control-thumbs li {
    outline: none;
}

.flex-control-nav.flex-control-thumbs li:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
}

.flex-direction-nav a:focus {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

/* ===== Responsive Tables in Product Description ===== */

/* Table container wrapper for horizontal scrolling on mobile */
.woocommerce-Tabs-panel--description {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Base table styles in product description */
.woocommerce-Tabs-panel--description table,
.woocommerce-Tabs-panel--description .entry-content table,
#tab-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 100%;
}

/* Table header styles */
.woocommerce-Tabs-panel--description table thead,
.woocommerce-Tabs-panel--description .entry-content table thead,
#tab-description table thead {
    background: #1e40af;
}

.woocommerce-Tabs-panel--description table th,
.woocommerce-Tabs-panel--description .entry-content table th,
#tab-description table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    border-bottom: 2px solid #1e3a8a;
    white-space: nowrap;
}

/* Table body styles */
.woocommerce-Tabs-panel--description table tbody,
.woocommerce-Tabs-panel--description .entry-content table tbody,
#tab-description table tbody {
    background: #fff;
}

.woocommerce-Tabs-panel--description table td,
.woocommerce-Tabs-panel--description .entry-content table td,
#tab-description table td {
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

/* Alternate row colors for better readability */
.woocommerce-Tabs-panel--description table tbody tr:nth-child(even),
.woocommerce-Tabs-panel--description .entry-content table tbody tr:nth-child(even),
#tab-description table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.woocommerce-Tabs-panel--description table tbody tr:hover,
.woocommerce-Tabs-panel--description .entry-content table tbody tr:hover,
#tab-description table tbody tr:hover {
    background: #f3f4f6;
}

/* Last row border removal */
.woocommerce-Tabs-panel--description table tbody tr:last-child td,
.woocommerce-Tabs-panel--description .entry-content table tbody tr:last-child td,
#tab-description table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive: Tablet and below - enable horizontal scroll */
@media (max-width: 992px) {
    .woocommerce-Tabs-panel--description {
        position: relative;
    }

    .woocommerce-Tabs-panel--description table,
    .woocommerce-Tabs-panel--description .entry-content table,
    #tab-description table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        min-width: 600px;
    }

    .woocommerce-Tabs-panel--description table thead,
    .woocommerce-Tabs-panel--description .entry-content table thead,
    #tab-description table thead {
        display: table-header-group;
    }

    .woocommerce-Tabs-panel--description table tbody,
    .woocommerce-Tabs-panel--description .entry-content table tbody,
    #tab-description table tbody {
        display: table-row-group;
    }

    .woocommerce-Tabs-panel--description table th,
    .woocommerce-Tabs-panel--description table td,
    .woocommerce-Tabs-panel--description .entry-content table th,
    .woocommerce-Tabs-panel--description .entry-content table td,
    #tab-description table th,
    #tab-description table td {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* Responsive: Mobile - card-based layout for very small screens */
@media (max-width: 768px) {
    .woocommerce-Tabs-panel--description table,
    .woocommerce-Tabs-panel--description .entry-content table,
    #tab-description table {
        min-width: 500px;
        font-size: 13px;
    }

    .woocommerce-Tabs-panel--description table th,
    .woocommerce-Tabs-panel--description table td,
    .woocommerce-Tabs-panel--description .entry-content table th,
    .woocommerce-Tabs-panel--description .entry-content table td,
    #tab-description table th,
    #tab-description table td {
        padding: 8px 10px;
        font-size: 13px;
    }

    /* Make first column stand out on mobile */
    .woocommerce-Tabs-panel--description table td:first-child,
    .woocommerce-Tabs-panel--description .entry-content table td:first-child,
    #tab-description table td:first-child {
        font-weight: 600;
        color: #1e40af;
    }
}

/* Responsive: Small mobile - further optimize */
@media (max-width: 576px) {
    .woocommerce-Tabs-panel--description table,
    .woocommerce-Tabs-panel--description .entry-content table,
    #tab-description table {
        min-width: 400px;
        border-radius: 6px;
    }

    .woocommerce-Tabs-panel--description table th,
    .woocommerce-Tabs-panel--description table td,
    .woocommerce-Tabs-panel--description .entry-content table th,
    .woocommerce-Tabs-panel--description .entry-content table td,
    #tab-description table th,
    #tab-description table td {
        padding: 8px;
        font-size: 12px;
    }

    .woocommerce-Tabs-panel--description table th,
    .woocommerce-Tabs-panel--description .entry-content table th,
    #tab-description table th {
        font-size: 13px;
        padding: 10px 8px;
    }
}

/* Scrollbar styling for webkit browsers */
.woocommerce-Tabs-panel--description::-webkit-scrollbar {
    height: 8px;
}

.woocommerce-Tabs-panel--description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.woocommerce-Tabs-panel--description::-webkit-scrollbar-thumb {
    background: #1e40af;
    border-radius: 4px;
}

.woocommerce-Tabs-panel--description::-webkit-scrollbar-thumb:hover {
    background: #1e3a8a;
}