/* =============================================================================
   Product Details — Custom Styles
   ============================================================================= */


/* -----------------------------------------------------------------------------
   Related Products Swiper (fade-in on init)
   ----------------------------------------------------------------------------- */

.products-apparel {
    opacity: 0;
    animation: swiperFadeIn 0.4s ease 0.3s forwards;
}

@keyframes swiperFadeIn {
    to { opacity: 1; }
}

.swiper-slide.product-wrap {
    display: flex !important;
    flex-direction: column;
    height: auto;
}


/* -----------------------------------------------------------------------------
   Product Card (related / shop listing)
   ----------------------------------------------------------------------------- */

.custom-product-card {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.custom-product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.custom-product-card .product-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.custom-product-card .product-price {
    margin-top: auto;
}


/* -----------------------------------------------------------------------------
   Call-to-Order Button (shop listing cards)
   ----------------------------------------------------------------------------- */

.btn-call-order {
    padding: 0.55em 0.85em !important;
    font-size: 1.2rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
}

.btn-call-order i {
    font-size: 1.2rem;
}

@media (max-width: 575px) {
    .btn-call-order {
        font-size: 1rem;
        padding: 0.45em 0.5em !important;
    }
    .btn-call-order i { font-size: 1rem; }
}

@media (max-width: 350px) {
    .btn-call-order {
        font-size: 0.9rem;
        padding: 0.5em 0.75em !important;
    }
    .btn-call-order i { font-size: 0.9rem; }
}


/* -----------------------------------------------------------------------------
   Dealer Note
   ----------------------------------------------------------------------------- */

.dealer-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 4px;
    padding: 7px 14px;
    font-size: 13px;
    color: #795548;
    margin-bottom: 15px;
}

.dealer-note i   { color: #f9a825; font-size: 13px; }
.dealer-note a   { color: #e65100; font-weight: 600; text-decoration: none; }
.dealer-note a:hover { text-decoration: underline; }


/* -----------------------------------------------------------------------------
   Variant Radio Swatches
   ----------------------------------------------------------------------------- */

.variant-options-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

.variant-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.variant-group-label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.variant-group-label .selected-value-label {
    font-weight: 400;
    color: #222;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}

.variant-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.variant-option {
    margin: 0;
    cursor: pointer;
}

.variant-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Text pill */
.variant-option span {
    display: inline-block;
    padding: 5px 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    background: #fafafa;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
    white-space: nowrap;
    line-height: 1.5;
}

.variant-option:hover span {
    border-color: #9DC9D8;
    color: #fff;
    background: #9DC9D8;
}

.variant-option input[type="radio"]:checked + span {
    border-color: #336699;
    background: #336699;
    color: #fff;
    font-weight: 600;
}

/* Color swatch */
.variant-option-color .color-swatch {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2.5px solid #e0e0e0;
    cursor: pointer;
    transition: border-color 0.18s, transform 0.15s, box-shadow 0.15s;
    vertical-align: middle;
}

.variant-option-color:hover .color-swatch,
.variant-option-color input[type="radio"]:checked + .color-swatch {
    border-color: #336699;
    transform: scale(1.12);
    box-shadow: 0 0 0 3px rgba(51, 102, 153, 0.2);
}

/* Unavailable */
.variant-option.unavailable span,
.variant-option.unavailable .color-swatch {
    opacity: 0.3;
    text-decoration: line-through;
    cursor: not-allowed;
}

.variant-option.unavailable input[type="radio"] {
    pointer-events: none;
}


/* -----------------------------------------------------------------------------
   Product Info Chips
   ----------------------------------------------------------------------------- */

.product-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-info-row {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13.5px;
}

.product-info-label  { color: #888; font-weight: 500; }
.product-info-value  { color: #222; font-weight: 600; }

.product-info-value.current-price { color: #e53935; }

.discount-badge {
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
}

.status-instock    { color: #2e7d32; font-weight: 600; }
.status-lowstock   { color: #e65100; font-weight: 600; }
.status-outofstock { color: #c62828; font-weight: 600; }

.product-short-desc p { margin: 0; }


/* -----------------------------------------------------------------------------
   Add to Cart Form
   ----------------------------------------------------------------------------- */

.product-single .product-qty-form {
    flex: 0 0 clamp(12rem, 15vw, 14rem) !important;
    max-width: clamp(12rem, 15vw, 14rem) !important;
}

.btn-add-cart {
    flex: 1;
    margin-bottom: 1rem;
    padding: 0 1.6rem;
    border-radius: 3px;
    max-width: clamp(14rem, 30vw, 25rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: clamp(1.2rem, 1.6vw + 0.4rem, 1.6rem);
    height: clamp(3.2rem, 4vw + 1rem, 4.4rem);
}

.btn-add-cart .btn-cart-icon {
    font-size: clamp(1.2rem, 1.6vw + 0.4rem, 1.6rem);
    flex-shrink: 0;
    line-height: 1;
    font-weight: 600;
}

.btn-add-cart .btn-cart-label {
    font-size: inherit;
    white-space: nowrap;
}

@media (max-width: 360px) {
    .btn-add-cart {
        gap: 0.3rem;
        padding: 0 1rem;
    }
}


/* ── Mini-popup notification ───────────────────────────────────────── */
#cart-minipopup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #fff;
    /* border-left: 4px solid #9DC9D8; */
    border-radius: 6px;
    padding: 10px 16px 10px 10px;
    min-width: 260px;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}
#cart-minipopup.show {
    transform: translateX(0);
    opacity: 1;
}
#cart-minipopup .minipopup-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0; /* allow text truncation */
}
#cart-minipopup .minipopup-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#cart-minipopup .minipopup-sub {
    font-size: 12px;
    color: #336699;
    font-weight: 500;
}

/* Mobile: centered on screen, scale in */
@media (max-width: 575.98px) {
    #cart-minipopup {
        left: 50%;
        right: auto;
        bottom: auto;
        top: 50%;
        min-width: 260px;
        max-width: 85vw;
        width: auto;
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0;
    }
    #cart-minipopup.show {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Out-of-stock state */
.btn-out-of-stock {
    background-color: #9e9e9e !important;
    border-color: #9e9e9e !important;
    color: #fff !important;
    cursor: not-allowed !important;
    opacity: 0.75;
}

.btn-out-of-stock:hover {
    background-color: #9e9e9e !important;
    border-color: #9e9e9e !important;
}

/* Loading spinner */
.btn-cart-spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    animation: btn-spin 0.65s linear infinite;
    flex-shrink: 0;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.cart-error-msg {
    margin-top: 8px;
    font-size: 13px;
    color: #c62828;
    font-weight: 500;
}


/* -----------------------------------------------------------------------------
   Page Layout
   ----------------------------------------------------------------------------- */

.product-card-wrapper {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 2.5rem 2.5rem 0 2.5rem;
    margin-bottom: 2rem;
}

.product-card-wrapper .product-gallery {
    border-right: 1px solid #f0f0f0;
    padding-right: 2rem;
}

.product-card-wrapper hr.product-divider {
    border-color: #f0f0f0;
    margin: 1.5rem 0;
}

/* -----------------------------------------------------------------------------
   Product Gallery — Main Swiper
   ----------------------------------------------------------------------------- */

.product-single-swiper {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-single-swiper .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background: #fff;
    overflow: hidden;
    margin: 0;
}

.product-single-swiper .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-single-swiper .product-image img:hover {
    transform: scale(1.03);
}

/* Zoom button */
.product-gallery-btn.product-image-full {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 3.4rem;
    height: 3.4rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #333;
    opacity: 1;
    transition: background 0.2s, color 0.2s;
}

.product-gallery-btn.product-image-full:hover {
    background: #0D1B2B;
    color: #fff;
}


/* -----------------------------------------------------------------------------
   Thumbnail Strip
   ----------------------------------------------------------------------------- */

.product-thumbs-wrap {
    margin-top: 0.8rem;
    overflow: hidden;
    border-radius: 6px;
}

/* Before Swiper init: clamp slides to 25% so they don't render full-width */
.product-thumbs-wrap:not(.swiper-container-initialized) .product-thumb {
    flex: 0 0 25%;
    max-width: 25%;
}

@keyframes thumbsFadeIn {
    to { opacity: 1; }
}

.product-thumb {
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #f5f5f5;
    transition: border-color 0.2s, box-shadow 0.2s;
    aspect-ratio: 1 / 1;
    /* background: #f5f5f5; */
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

/* .product-thumb:hover img { transform: scale(1.06); } */

/* .product-thumb.active,
.product-thumb:hover {
    border-color: #9DC9D8;
    box-shadow: 0 0 0 1px rgba(51, 102, 153, 0.25);
} */


/* -----------------------------------------------------------------------------
   Below-fold Layout
   ----------------------------------------------------------------------------- */

.product-below-layout {
    display: flex;
    gap: 2.5rem;
}

.product-below-main {
    flex: 1;
    min-width: 0;
}

.product-below-sidebar {
    flex: 0 0 26rem;
    width: 26rem;
    align-self: flex-start;
}

.product-tabs-wrapper {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

/* -----------------------------------------------------------------------------
   Sidebar (right panel)
   ----------------------------------------------------------------------------- */

.sidebar-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 2rem;
    overflow: hidden;
}

.sidebar-card .sidebar-section {
    padding: 2rem;
    border-bottom: 1px solid #f4f4f4;
}

.sidebar-card .sidebar-section:last-child { border-bottom: none; }

.sidebar-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 1.5rem;
}

.sidebar-card .icon-box.icon-box-side {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f8f8;
}

.sidebar-card .icon-box.icon-box-side:first-child { padding-top: 0; }
.sidebar-card .icon-box.icon-box-side:last-child  { border-bottom: none; padding-bottom: 0; }

.sidebar-card .icon-box-icon {
    font-size: 2.2rem;
    color: #336699;
    flex-shrink: 0;
    width: 3.6rem;
    text-align: center;
}

.sidebar-card .product.product-widget {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f8f8;
}

.sidebar-card .product.product-widget:first-child { padding-top: 0; }
.sidebar-card .product.product-widget:last-child  { border-bottom: none; padding-bottom: 0; }

.sidebar-card .product-widget .product-media {
    flex: 0 0 6rem;
    width: 6rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.sidebar-card .product-widget .product-media img {
    width: 100%;
    height: 6rem;
    object-fit: cover;
    display: block;
}

.sidebar-card .product-widget .product-details {
    flex: 1;
    min-width: 0;
    padding: 0;
}

.sidebar-card .product-widget .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #336699;
}


/* -----------------------------------------------------------------------------
   Specification Table
   ----------------------------------------------------------------------------- */

.spec-group { margin-bottom: 28px; }

.spec-group-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #00568d;
    padding: 8px 14px;
    background: #f0f5fb;
    border-left: 3px solid #00568d;
    border-radius: 0 3px 3px 0;
    margin-bottom: 0;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr:nth-child(odd)  { background: #fafafa; }
.spec-table tr:nth-child(even) { background: #fff; }
.spec-table tr:last-child td   { border-bottom: 1px solid #efefef; }

.spec-table td {
    padding: 9px 14px;
    font-size: 13px;
    border-top: 1px solid #efefef;
    line-height: 1.5;
}

.spec-label {
    width: 25%;
    color: #666;
    font-weight: 500;
    word-break: break-word;
}

.spec-value {
    color: #222;
    font-weight: 400;
    vertical-align: top;
    word-break: break-word;
}


/* -----------------------------------------------------------------------------
   Sidebar Drawer — custom 1280px breakpoint
   (overrides theme's hardcoded 992px sidebar-fixed behaviour)
   ----------------------------------------------------------------------------- */

.product-detail-sidebar .sidebar-toggle { display: flex; }

@media (min-width: 1280px) {
    .product-detail-sidebar .sidebar-toggle,
    .product-detail-sidebar .sidebar-overlay {
        display: none !important;
    }

    .product-detail-sidebar.right-sidebar .sidebar-content,
    .right-sidebar-active .product-detail-sidebar.right-sidebar .sidebar-content {
        position: static !important;
        transform: none !important;
        -webkit-transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        box-shadow: none !important;
        padding: 0 !important;
        z-index: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}


/* =============================================================================
   Responsive Overrides
   ============================================================================= */

/* ── ≤1279px: stack below-layout, remove gallery border ── */
@media (max-width: 1279px) {
    .product-below-layout                           { flex-direction: column; }
    .product-below-sidebar                          { width: 100%; flex: none; }
    .sidebar-card                                   { position: static; }
}

/* ── ≤991px: gallery goes full width (col-lg breakpoint) ── */
@media (max-width: 991px) {
    .product-card-wrapper .product-gallery          { border-right: none; padding-right: 0; margin-bottom: 1.5rem; }
    .product-gallery-sticky                         { position: static !important; top: auto !important; }
    .product-single-swiper .product-image           { aspect-ratio: 4 / 3; }
    .product-single .product-title  { font-size: 2rem; }
    .product-single .product-price  { font-size: 2.6rem; }
    .product-single .old-price      { font-size: 1.8rem; }
    .product-info-row               { font-size: 12.5px; padding: 4px 10px; }
    .variant-group-label            { font-size: 11.5px; }
    .variant-option span            { font-size: 12.5px; padding: 5px 11px; }
    .product-short-desc             { font-size: 1.3rem; }
    .dealer-note                    { font-size: 12.5px; }
    .ratings-container              { font-size: 1.3rem; }
}

/* ── ≤767px ── */
@media (max-width: 767px) {
    .product-thumbs-wrap                            { margin-top: 0.6rem; }
    .related-product-section                        { padding: 0; }

    .product-single .product-title  { font-size: 1.8rem; line-height: 1.35; }
    .product-single .product-price  { font-size: 2.4rem; }
    .product-single .old-price      { font-size: 1.6rem; }
    .product-info-section           { gap: 5px; }
    .product-info-row               { font-size: 12px; padding: 4px 9px; }
    .variant-group-label            { font-size: 11px; }
    .variant-option span            { font-size: 12px; padding: 4px 10px; }
    .product-short-desc             { font-size: 1.25rem; }
    .dealer-note                    { font-size: 12px; padding: 6px 10px; }
    .ratings-container              { font-size: 1.2rem; }
    .social-icons .social-icon      { font-size: 1.4rem; width: 3rem; height: 3rem; }
}

/* ── ≤575px ── */
@media (max-width: 575px) {
    .product-single-swiper .product-image           { aspect-ratio: 1 / 1; }
    .product-thumb                                  { border-radius: 4px; border-width: 1.5px; }
    .product-single .product-title  { font-size: 1.7rem; }
    .product-single .product-price  { font-size: 2.2rem; }
    .product-single .old-price      { font-size: 1.4rem; }
    .product-info-row               { font-size: 11px; padding: 4px 8px; gap: 4px; }
    .variant-option span            { font-size: 11.5px; padding: 4px 9px; }
    .product-short-desc             { font-size: 1.2rem; }
    .dealer-note                    { font-size: 11.5px; }
    .spec-label                     { width: 35%; font-size: 12px; white-space: normal; }
    .spec-table td                  { padding: 8px 10px; font-size: 12px; }
}

/* ── ≤480px ── */
@media (max-width: 480px) {
    .product-thumb                  { border-radius: 4px; border-width: 1.5px; }
    .product-single .product-title  { font-size: 1.6rem; }
    .product-single .product-price  { font-size: 2rem; }
    .product-single .old-price      { font-size: 1.3rem; }
    .product-info-row               { font-size: 10px; padding: 3px 7px; }
    .variant-group-label            { font-size: 10.5px; }
    .variant-option span            { font-size: 11px; padding: 4px 8px; }
    .variant-option-color .color-swatch { width: 24px; height: 24px; }
    .dealer-note                    { font-size: 11px; padding: 5px 8px; }
    .ratings-container              { font-size: 1.1rem; }
}

/* ── ≤360px ── */
@media (max-width: 360px) {
    .product-single .product-title  { font-size: 1.6rem; }
    .product-single .product-price  { font-size: 1.8rem; }
    .product-single .old-price      { font-size: 1.2rem; }
    .product-info-row               { font-size: 9px; padding: 3px 6px; }
    .variant-option span            { font-size: 10.5px; padding: 3px 7px; }
    .dealer-note                    { font-size: 10px; }
    .btn-add-cart                   { gap: 0.3rem; padding: 0 1rem; }
}


/* =============================================================================
   Product Tabs — Responsive
   ============================================================================= */

/* Base overrides — slightly tighter than theme's 4rem gap */
.product-tabs .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.product-tabs .nav-tabs::-webkit-scrollbar {
    display: none;
}

.product-tabs .nav-item {
    margin-right: 0 !important;
    text-align: center;
}

.product-tabs .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.2rem 2.4rem;
    color: #0D1B2B !important;
    background-color: transparent !important;
    border: 1px solid #0D1B2B !important;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    position: relative;
}

/* Hide theme underline indicators */
.product-tabs .nav-link::after {
    display: none !important;
}

/* Active State */
.product-tabs .nav-tabs .nav-link.active {
    background: #0D1B2B !important;
    color: #fff !important;
    border: 1px solid #0D1B2B !important;
}

/* Hover State */
.product-tabs .nav-tabs .nav-link:hover:not(.active) {
    background: #0D1B2B !important;
    color: #fff !important;
    border: 1px solid #0D1B2B !important;
}

/* Tab Pane Styles */
.product-tabs .tab-pane {
    padding: 1.5rem 0 1.5rem;
}

/* responsive media queries */
@media (max-width: 1279px) {
    .product-tabs .nav-tabs {
        gap: 9px;
    }

    .product-tabs .nav-link {
        font-size: 1.45rem;
        padding: 1.1rem 2.2rem;
    }
}

@media (max-width: 991px) {
    .product-tabs .nav-tabs {
        gap: 8px;
    }

    .product-tabs .nav-link {
        font-size: 1.4rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 767px) {
    .product-tabs .nav-tabs {
        gap: 7px;
    }

    .product-tabs .nav-link {
        font-size: 1.35rem;
        padding: 0.9rem 1.8rem;
    }
}

@media (max-width: 575px) {
    .product-tabs .nav-tabs {
        gap: 6px;
    }

    .product-tabs .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-tabs .nav-tabs {
        flex-wrap: wrap; /* wrap on small mobiles if text is long */
        gap: 5px;
    }

    .product-tabs .nav-link {
        font-size: 1.25rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 360px) {
    .product-tabs .nav-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }

    .product-tabs .nav-link {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
}
