/**
 * WooCommerce Styles
 *
 * @package PNLTD
 * @since 1.0.0
 */

/* ===== Shop Page ===== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    background: var(--pn-white);
    border-radius: var(--pn-radius-lg);
    overflow: hidden;
    box-shadow: var(--pn-shadow-sm);
    transition: all var(--pn-transition-base);
    border: 1px solid #e8e8e8;
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--pn-shadow-lg);
    transform: translateY(-4px);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product > a:first-child {
    display: flex;
    aspect-ratio: 1;
    background: #fff;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.woocommerce ul.products li.product a img {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: var(--pn-spacing-md);
    padding-bottom: var(--pn-spacing-xs);
    font-size: 14px;
    font-weight: 600;
    color: var(--pn-dark);
}

.woocommerce ul.products li.product .price {
    padding: 0 var(--pn-spacing-md);
    color: var(--pn-danger);
    font-size: 18px;
    font-weight: 700;
}

.woocommerce ul.products li.product .price del {
    color: var(--pn-gray);
    font-size: 14px;
    font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce ul.products li.product .button {
    display: block;
    margin: var(--pn-spacing-md);
    margin-top: var(--pn-spacing-sm);
    padding: 12px 20px;
    background: var(--pn-secondary);
    color: var(--pn-dark);
    border-radius: var(--pn-radius-full);
    text-align: center;
    font-weight: 600;
    transition: all var(--pn-transition-fast);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--pn-accent);
}

/* Sale Badge */
.woocommerce span.onsale {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--pn-danger) 0%, #ff4757 100%);
    color: var(--pn-white);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: var(--pn-radius-md);
    z-index: 2;
    min-height: auto;
    min-width: auto;
    line-height: 1;
}

/* ===== Single Product ===== */
.woocommerce div.product {
    background: var(--pn-white);
    border-radius: var(--pn-radius-xl);
    padding: var(--pn-spacing-xl);
    margin-bottom: var(--pn-spacing-xl);
}

.woocommerce div.product div.images {
    width: 50%;
    float: left;
}

.woocommerce div.product div.summary {
    width: 45%;
    float: right;
}

.woocommerce div.product .product_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--pn-dark);
    margin-bottom: var(--pn-spacing-md);
}

.woocommerce div.product p.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--pn-danger);
    margin-bottom: var(--pn-spacing-lg);
}

.woocommerce div.product p.price del {
    color: var(--pn-gray);
    font-size: 20px;
    font-weight: 400;
}

.woocommerce div.product form.cart {
    margin-bottom: var(--pn-spacing-lg);
}

.woocommerce div.product form.cart .quantity {
    margin-right: var(--pn-spacing-md);
}

.woocommerce div.product form.cart .quantity .qty {
    width: 80px;
    padding: 12px;
    border: 2px solid #e8e8e8;
    border-radius: var(--pn-radius-md);
    text-align: center;
    font-weight: 600;
}

.woocommerce div.product form.cart .button {
    padding: 14px 30px;
    background: var(--pn-secondary);
    color: var(--pn-dark);
    border-radius: var(--pn-radius-full);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--pn-transition-fast);
}

.woocommerce div.product form.cart .button:hover {
    background: var(--pn-accent);
    transform: translateY(-2px);
}

/* WhatsApp Button */
.single-product-whatsapp {
    margin-top: var(--pn-spacing-md);
    width: 100%;
    justify-content: center;
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs {
    clear: both;
    padding-top: var(--pn-spacing-xl);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e8e8e8;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 24px;
    color: var(--pn-gray);
    font-weight: 600;
    transition: all var(--pn-transition-fast);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--pn-primary);
    border-bottom: 3px solid var(--pn-secondary);
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: var(--pn-spacing-xl) 0;
}

/* Related Products */
.woocommerce .related.products {
    clear: both;
}

.woocommerce .related.products h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--pn-spacing-lg);
}

/* ===== Cart ===== */
.woocommerce-cart table.cart {
    background: var(--pn-white);
    border-radius: var(--pn-radius-lg);
    overflow: hidden;
}

.woocommerce-cart table.cart th {
    background: var(--pn-light);
    padding: var(--pn-spacing-md);
    font-weight: 600;
}

.woocommerce-cart table.cart td {
    padding: var(--pn-spacing-md);
    vertical-align: middle;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: var(--pn-white);
    border-radius: var(--pn-radius-lg);
    padding: var(--pn-spacing-xl);
}

/* ===== Checkout ===== */
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .woocommerce-form-login {
    background: var(--pn-white);
    border-radius: var(--pn-radius-lg);
    padding: var(--pn-spacing-xl);
    margin-bottom: var(--pn-spacing-lg);
}

.woocommerce form .form-row {
    margin-bottom: var(--pn-spacing-md);
}

.woocommerce form .form-row label {
    font-weight: 600;
    margin-bottom: var(--pn-spacing-xs);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: var(--pn-radius-md);
    transition: border-color var(--pn-transition-fast);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--pn-secondary);
    outline: none;
}

.woocommerce #payment {
    background: var(--pn-white);
    border-radius: var(--pn-radius-lg);
}

.woocommerce #payment #place_order {
    background: var(--pn-success);
    color: var(--pn-white);
    padding: 16px 40px;
    border-radius: var(--pn-radius-full);
    font-weight: 600;
    font-size: 18px;
    transition: all var(--pn-transition-fast);
}

.woocommerce #payment #place_order:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100%;
        float: none;
    }

    .woocommerce div.product div.images {
        margin-bottom: var(--pn-spacing-xl);
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product {
        padding: var(--pn-spacing-md);
    }
}

/* =========================================
   CUSTOM SINGLE PRODUCT PAGE STYLES
   ========================================= */

/* Breadcrumb — styles are in style.css, this just ensures no WooCommerce overrides */

/* Main Product Container */
.pnltd-single-product {
    padding: 20px 0 60px;
}

.pnltd-single-product .pn-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 380px;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 180px;
    height: fit-content;
}

.main-image-container {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f7f7f7 0%, #eee 100%);
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    margin-bottom: 16px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image-container:hover img {
    transform: scale(1.5);
}

.image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #CC0C39;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 5;
}

.wishlist-btn-large {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 5;
}

.wishlist-btn-large:hover {
    background: #fff;
    transform: scale(1.1);
}

.wishlist-btn-large:hover svg {
    stroke: #CC0C39;
    fill: #CC0C39;
}

.wishlist-btn-large svg {
    width: 24px;
    height: 24px;
    stroke: #666;
    fill: none;
    transition: all 0.2s;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumbnail {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: linear-gradient(135deg, #f7f7f7 0%, #eee 100%);
}

.thumbnail:hover {
    border-color: #C7511F;
}

.thumbnail.active {
    border-color: #C7511F;
    box-shadow: 0 0 0 2px rgba(199, 81, 31, 0.3);
}

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

/* Product Info */
.product-info {
    padding: 0 20px;
}

.product-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #007185;
    text-decoration: none;
    margin-bottom: 8px;
}

.product-brand:hover {
    color: #C7511F;
    text-decoration: underline;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F1111;
    line-height: 1.3;
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

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

.stars svg {
    width: 20px;
    height: 20px;
    fill: #FFA41C;
}

.stars svg.empty {
    fill: #ddd;
}

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

.rating-text:hover {
    color: #C7511F;
    text-decoration: underline;
    cursor: pointer;
}

.sku-text {
    font-size: 13px;
    color: #565959;
}

/* Price Section */
.price-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.old-price {
    font-size: 16px;
    color: #565959;
    text-decoration: line-through;
}

.old-price .woocommerce-Price-amount {
    font-size: 16px;
}

.discount-badge {
    background: #CC0C39;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #0F1111;
}

.current-price .woocommerce-Price-amount {
    font-size: 36px;
    font-weight: 700;
}

.current-price .woocommerce-Price-currencySymbol {
    font-size: 20px;
}

.current-price del {
    color: #565959;
    font-size: 18px;
    font-weight: 400;
}

.current-price ins {
    text-decoration: none;
}

.price-note {
    font-size: 13px;
    color: #565959;
    margin-top: 8px;
}

/* Short Description */
.short-description {
    margin-bottom: 24px;
}

.short-description h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0F1111;
    margin-bottom: 12px;
}

.short-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short-description li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #0F1111;
    margin-bottom: 8px;
}

.short-description p {
    font-size: 14px;
    color: #0F1111;
    line-height: 1.6;
}

/* Variants */
.variants-section {
    margin-bottom: 24px;
}

.variants-section .variations {
    margin-bottom: 20px;
}

.variants-section .variations td {
    padding: 10px 0;
}

.variants-section .variations label {
    font-weight: 600;
    color: #0F1111;
}

.variants-section .variations select {
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
}

/* Buy Box */
.buy-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 180px;
    height: fit-content;
}

.buy-box-price {
    font-size: 28px;
    font-weight: 700;
    color: #0F1111;
    margin-bottom: 16px;
}

.buy-box-price .woocommerce-Price-amount {
    font-size: 28px;
}

.delivery-info {
    margin-bottom: 20px;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.delivery-item svg {
    width: 22px;
    height: 22px;
    stroke: #007600;
    flex-shrink: 0;
}

.delivery-item-text {
    font-size: 14px;
    color: #0F1111;
}

.delivery-item-text strong {
    color: #007600;
}

.stock-status {
    font-size: 18px;
    font-weight: 600;
    color: #007600;
    margin-bottom: 16px;
}

.stock-status.low {
    color: #C7511F;
}

.stock-status.out {
    color: #CC0C39;
}

/* Add to Cart in Buy Box */
.add-to-cart-wrapper {
    margin-bottom: 16px;
}

.add-to-cart-wrapper form.cart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.add-to-cart-wrapper .quantity {
    width: 100%;
}

.add-to-cart-wrapper .quantity .qty {
    width: 100%;
    padding: 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.add-to-cart-wrapper .single_add_to_cart_button {
    width: 100%;
    padding: 16px 24px;
    background: #FFD814;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #0F1111;
    cursor: pointer;
    transition: all 0.2s;
}

.add-to-cart-wrapper .single_add_to_cart_button:hover {
    background: #F7CA00;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #25D366;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.whatsapp-btn svg {
    width: 22px;
    height: 22px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #565959;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    stroke: #565959;
}

/* Product Tabs */
.product-tabs-section {
    margin-bottom: 40px;
}

.product-tabs {
    display: flex;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 0;
    overflow-x: auto;
}

.tab-btn {
    padding: 16px 32px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #565959;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}

.tab-btn:hover {
    color: #C7511F;
}

.tab-btn.active {
    color: #C7511F;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #C7511F;
    border-radius: 2px 2px 0 0;
}

.tab-content {
    display: none;
    background: #fff;
    border-radius: 0 0 12px 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tab-content.active {
    display: block;
}

/* Description Tab */
.product-description {
    font-size: 15px;
    line-height: 1.8;
    color: #0F1111;
}

.product-description h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0F1111;
}

.product-description p {
    margin-bottom: 16px;
}

.product-description ul {
    margin: 16px 0;
    padding-left: 24px;
}

.product-description li {
    margin-bottom: 8px;
}

/* ===== Product Description Tables (woocommerce-table) ===== */
.product-description table.woocommerce-table,
.woocommerce-product-details__short-description table.woocommerce-table,
.woocommerce-Tabs-panel table.woocommerce-table,
table.woocommerce-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

table.woocommerce-table thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

table.woocommerce-table thead tr th {
    padding: 14px 18px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: none;
    white-space: nowrap;
}

table.woocommerce-table thead tr th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

table.woocommerce-table tbody tr {
    transition: background-color 0.15s ease;
}

table.woocommerce-table tbody tr:nth-child(even) {
    background-color: #f8f9fb;
}

table.woocommerce-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

table.woocommerce-table tbody tr:hover {
    background-color: #eef2ff;
}

table.woocommerce-table tbody tr td {
    padding: 13px 18px;
    color: #374151;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    vertical-align: middle;
}

table.woocommerce-table tbody tr td:last-child {
    border-right: none;
}

table.woocommerce-table tbody tr:last-child td {
    border-bottom: none;
}

table.woocommerce-table tbody tr td:first-child {
    font-weight: 600;
    color: #111827;
    background-color: rgba(0, 0, 0, 0.015);
}

/* Mobile: horizontal scroll wrapper */
@media (max-width: 768px) {
    .product-description table.woocommerce-table,
    .woocommerce-product-details__short-description table.woocommerce-table,
    .woocommerce-Tabs-panel table.woocommerce-table,
    table.woocommerce-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 16px -4px;
        border-radius: 10px;
        font-size: 13px;
    }

    table.woocommerce-table thead tr th {
        padding: 12px 14px;
        font-size: 12px;
    }

    table.woocommerce-table tbody tr td {
        padding: 11px 14px;
        white-space: nowrap;
    }
}

/* Small mobile: card-style stacked layout for 2-column tables */
@media (max-width: 480px) {
    table.woocommerce-table {
        white-space: normal;
    }

    table.woocommerce-table tbody tr td {
        white-space: normal;
        min-width: 120px;
    }
}

/* Specifications Tab */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:nth-child(odd) {
    background: #f9f9f9;
}

.specs-table th,
.specs-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #e8e8e8;
}

.specs-table th {
    width: 35%;
    font-weight: 600;
    color: #0F1111;
}

.specs-table td {
    color: #565959;
}

/* Related Products */
.related-products {
    margin-top: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0F1111;
    margin-bottom: 24px;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.products-slider::-webkit-scrollbar {
    height: 6px;
}

.products-slider::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.products-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.product-card-small {
    flex: 0 0 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.product-card-small:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.product-card-small .card-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f7f7f7 0%, #eee 100%);
    overflow: hidden;
}

.product-card-small .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card-small:hover .card-image img {
    transform: scale(1.05);
}

.product-card-small .card-info {
    padding: 16px;
}

.product-card-small .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #0F1111;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-small .card-price {
    font-size: 16px;
    font-weight: 700;
    color: #B12704;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .buy-box {
        grid-column: 1 / -1;
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .buy-box > * {
        grid-column: span 2;
    }

    .delivery-info {
        grid-column: span 1;
    }

    .trust-badges {
        grid-column: span 1;
        border-top: none;
        padding-top: 0;
    }
}

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

    .product-gallery {
        position: static;
    }

    .product-info {
        padding: 0;
    }

    .buy-box {
        display: block;
        position: static;
    }

    .product-title {
        font-size: 24px;
    }

    .current-price,
    .current-price .woocommerce-Price-amount {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .product-tabs {
        gap: 0;
    }

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

    .tab-content {
        padding: 20px;
    }

    .product-card-small {
        flex: 0 0 180px;
    }

    .specs-table th,
    .specs-table td {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .product-main-grid {
        padding: 15px;
    }

    .product-title {
        font-size: 20px;
    }

    .current-price,
    .current-price .woocommerce-Price-amount {
        font-size: 24px;
    }

    .thumbnail-gallery {
        gap: 8px;
    }

    .thumbnail {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .specs-table th {
        width: 40%;
    }
}
