@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.custom-product-cards-wrapper {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

/* Grid Layout */
.custom-product-cards-wrapper.layout-grid .custom-product-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 100, 100, 0.15) 0%, rgba(0, 50, 80, 0.2) 100%);
    padding: 1px;
}

/* Slider Layout */
.custom-product-cards-wrapper.layout-slider {
    overflow: hidden;
    padding: 20px 0;
}

.custom-product-cards-wrapper.layout-slider .custom-product-cards-container {
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 100, 100, 0.15) 0%, rgba(0, 50, 80, 0.2) 100%);
    padding: 1px;
    transition: transform 0.3s ease-in-out;
}

.custom-product-cards-wrapper.layout-slider .custom-product-cards-container.dragging {
    cursor: grabbing;
    transition: none;
    user-select: none;
    -webkit-user-select: none;
}

.custom-product-cards-wrapper.layout-slider .custom-product-cards-container img {
    -webkit-user-drag: none;
    user-drag: none;
}

.custom-product-cards-wrapper.layout-slider .custom-product-cards-container a {
    cursor: pointer;
}

.custom-product-cards-wrapper.layout-slider .custom-product-cards-container.dragging a,
.custom-product-cards-wrapper.layout-slider .custom-product-cards-container.dragging .product-image-link,
.custom-product-cards-wrapper.layout-slider .custom-product-cards-container.dragging .product-title-link {
    pointer-events: none;
    cursor: grabbing;
}

/* Default: 4 slides */
.custom-product-cards-wrapper.layout-slider .custom-product-card {
    flex: 0 0 calc(25% - 7.5px);
    min-width: 200px;
}

/* Dynamic slides support via data attribute - handled by JS inline styles */

/* Slider Progress Bar */
.slider-progress-container {
    width: 100%;
    padding: 30px 0 10px;
    display: flex;
    justify-content: center;
}

.slider-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer;
    border-radius: 2px;
}

.slider-progress-bar {
    height: 100%;
    background: #e9242d;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
    transition: left 0.15s ease-out, width 0.15s ease-out;
    cursor: grab;
    min-width: 30px;
}

.slider-progress-bar:hover {
    background: #ff3a43;
}

.slider-progress-bar.dragging {
    cursor: grabbing;
    transition: none;
}

.slider-progress-bar::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    bottom: -10px;
}

/* Individual Product Card */
.custom-product-card {
    position: relative;
    background: rgba(0, 0, 0, 0.52);
    color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
}

/* Product Badges - Stacked vertically, shown as thin lines by default, expand on hover */
.product-badges {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: none;
}

/* Slide in from left on hover */
.custom-product-card:hover .product-badges {
    transform: translateY(-50%);
}

.product-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    box-sizing: border-box;
    overflow: hidden;
    transition: width 0.4s ease, min-height 0.4s ease;
}

/* Sale badge - thin red line by default, expands on hover */
.product-badge.badge-sale {
    background: #e9242d;
    color: #ffffff;
    min-height: 55px;
    width: 3px;
    padding: 0;
    font-size: 0;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    transition: width 0.4s ease, font-size 0.3s ease, padding 0.4s ease;
}

.custom-product-card:hover .product-badge.badge-sale {
    width: 35px;
    padding: 8px 0;
    font-size: 14px;
}

/* Aktuelno badge - thin white line by default, expands on hover */
.product-badge.badge-aktuelno {
    background: #ffffff;
    min-height: 90px;
    width: 3px;
    padding: 0;
}

.custom-product-card:hover .product-badge.badge-aktuelno {
    width: 35px;
    padding: 8px 0;
}

.product-badge.badge-aktuelno span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.custom-product-card:hover .product-badge.badge-aktuelno span {
    opacity: 1;
}

/* New badge - thin white line by default, expands on hover */
.product-badge.badge-new {
    background: #ffffff;
    min-height: 70px;
    width: 3px;
    padding: 0;
}

.custom-product-card:hover .product-badge.badge-new {
    width: 35px;
    padding: 8px 0;
}

.product-badge.badge-new span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.custom-product-card:hover .product-badge.badge-new span {
    opacity: 1;
}

/* Hide empty badges container */
.product-badges:empty {
    display: none;
}

/* Legacy WoodMart Product Labels - keeping for backwards compatibility */
.product-labels-wrapper {
    position: absolute;
    top: -30px;
    left: -160px;
    width: 190px;
    height: 25px;
    transform: rotate(-90deg);
    transform-origin: bottom left;
    overflow: visible;
    z-index: 10;
    transition: left 0.5s ease;
}

/* Hover effect - slide entire wrapper in */
.custom-product-card:hover .product-labels-wrapper {
    left: 0;
}

/* Only show wrapper if it has labels */
.product-labels-wrapper:empty {
    display: none;
}

/* Style for WoodMart labels container */
.product-labels-wrapper .product-labels {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
    height: 25px;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Individual label styling */
.product-labels-wrapper .product-label {
    position: static !important;
    display: inline-block !important;
    min-width: 40px;
    max-width: 160px;
    height: 25px !important;
    padding: 0 10px !important;
    line-height: 25px !important;
    text-align: center;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 0 2px !important;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    border-radius: 0 !important;
    float: none !important;
}

/* Sale/discount label (red) */
.product-labels-wrapper .product-label.onsale {
    background: #e9242d !important;
    color: #ffffff !important;
    min-width: 50px !important;
    width: 50px !important;
}

/* Other labels (new, hot, etc) - gray background */
.product-labels-wrapper .product-label.new,
.product-labels-wrapper .product-label.featured,
.product-labels-wrapper .product-label.out-of-stock {
    background: #e0e0e0 !important;
    color: #000000 !important;
}

/* Optional: Keep old sale badge styles for reference/fallback */
.product-sale-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sale-percentage {
    background: #ff0000;
    color: #ffffff;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 18px;
    font-family: '"Poppins" Black', '"Poppins" Bold', Gadget, sans-serif;
    text-align: center;
    min-width: 50px;
}

.sale-label {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0;
    min-height: 80px;
}

.sale-text-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #000000;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    font-family: "Poppins", sans-serif;
}

.novo-label {
    background: #000000;
    color: #ffffff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: 700;
    font-size: 11px;
    padding: 8px 10px;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

/* Product Header (Brand, SKU, Price) */
.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    position: relative;
    z-index: 5;
}

.product-brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-brand {
    color: #ffffff;
    font-size: 19px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.product-sku {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.product-price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.product-price-current {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    font-family: "Poppins", sans-serif;
}

.product-price-regular {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: line-through;
    font-family: "Poppins", sans-serif;
}

/* Product Actions (Heart & Cart Icons) */
.product-card-actions {
    position: absolute;
    right: 20px;
    top: 80px;
    z-index: 5;
    display: flex;
    gap: 0px;
    flex-direction: column;
    justify-content: flex-end;
}

.product-action-btn {
    background: transparent !important;
    color: #ffffff !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin-bottom: 2px !important;
}

.product-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.product-action-btn:last-child {
    margin-bottom: 0 !important;
}

.product-action-btn svg {
    width: 26px;
    height: 26px;
}

.wishlist-btn:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.5);
}

.cart-btn:hover {
    background: rgba(0, 200, 200, 0.15);
    border-color: rgba(0, 200, 200, 0.5);
}

/* Product Image */
.product-image-link {
    display: block;
    position: relative;
    margin: 0 auto 12px;
    max-width: 240px;
    width: 100%;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* Product Footer (Title) */
.product-card-footer {
    margin-top: auto;
    padding-top: 12px;
}

.product-title-link {
    text-decoration: none !important;
    color: #ffffff !important;
}

.product-title {
    color: #707070 !important;
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    transition: color 0.3s ease;
}

.product-title-link:hover .product-title {
    color: #ffffff;
}

/* Supplier Code */
.product-supplier-code {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .custom-product-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .custom-product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-brand {
        font-size: 16px;
    }
    
    .product-price-current {
        font-size: 18px;
    }
    
    .product-price-regular {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .custom-product-card {
        padding: 12px 12px 20px;
    }
    
    .product-brand {
        font-size: 14px;
    }
    
    .product-sku {
        font-size: 9px;
    }
    
    .product-price-current {
        font-size: 14px;
    }
    
    .product-price-regular {
        font-size: 10px;
    }
    
    .product-card-actions {
        right: 12px;
        top: 55px;
    }
    
    .product-action-btn {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 1px !important;
    }

    .product-action-btn svg {
        width: 20px;
        height: 20px;
    }

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

    .product-image-link {
        max-width: 160px;
        margin-bottom: 8px;
    }

    .product-supplier-code {
        font-size: 9px;
    }
    
    .product-card-footer {
        padding-top: 8px;
    }
    
    .slider-progress-container {
        padding: 20px 0 8px;
    }

    /* Badges always visible on mobile (no hover) */
    .product-badges {
        transform: translateY(-50%);
    }

    .product-badge.badge-sale {
        width: 20px;
        padding: 4px 0;
        font-size: 10px;
        min-height: 35px;
    }

    .product-badge.badge-aktuelno {
        width: 20px;
        padding: 4px 0;
        min-height: 55px;
    }

    .product-badge.badge-aktuelno span {
        opacity: 1;
        font-size: 10px;
    }

    .product-badge.badge-new {
        width: 20px;
        padding: 4px 0;
        min-height: 45px;
    }

    .product-badge.badge-new span {
        opacity: 1;
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .custom-product-cards-wrapper {
        padding: 10px 0;
    }
    
    .custom-product-card {
        padding: 10px 10px 15px;
    }
    
    .product-card-header {
        margin-bottom: 8px;
    }
    
    .product-brand {
        font-size: 12px;
    }
    
    .product-sku {
        font-size: 8px;
    }
    
    .product-price-current {
        font-size: 12px;
    }
    
    .product-price-regular {
        font-size: 9px;
    }
    
    .product-card-actions {
        right: 10px;
        top: 45px;
        gap: 0;
    }
    
    .product-action-btn {
        width: 28px !important;
        height: 28px !important;
        margin-bottom: 2px !important;
    }
    
    .product-action-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .product-image-link {
        max-width: 140px;
        margin-bottom: 10px;
    }
    
    .product-title {
        font-size: 9px;
        line-height: 1.3;
    }
    
    .product-card-footer {
        padding-top: 6px;
    }
    
    /* Slider progress bar for mobile */
    .slider-progress-container {
        padding: 15px 0 5px;
    }
    
    .slider-progress-track {
        height: 3px;
    }
    
    /* Labels on mobile */
    .product-labels-wrapper {
        width: 140px;
        height: 20px;
        top: -25px;
        left: -120px;
    }
    
    .product-labels-wrapper .product-labels {
        height: 20px;
    }
    
    .product-labels-wrapper .product-label {
        height: 20px !important;
        line-height: 20px !important;
        font-size: 10px !important;
        padding: 0 6px !important;
        min-width: 35px;
    }
    
    .product-labels-wrapper .product-label.onsale {
        min-width: 40px !important;
        width: 40px !important;
    }
}

@media (max-width: 400px) {
    .custom-product-card {
        padding: 8px 8px 12px;
    }
    
    .product-brand {
        font-size: 11px;
    }
    
    .product-price-current {
        font-size: 11px;
    }
    
    .product-price-regular {
        font-size: 8px;
    }
    
    .product-card-actions {
        right: 8px;
        top: 40px;
    }
    
    .product-action-btn {
        width: 24px !important;
        height: 24px !important;
    }
    
    .product-action-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .product-image-link {
        max-width: 120px;
        margin-bottom: 8px;
    }
    
    .product-title {
        font-size: 8px;
    }
}

/* Loading State */
.custom-product-cards-container.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Added to Cart Animation */
@keyframes addedToCart {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.product-action-btn.added {
    animation: addedToCart 0.5s ease;
}

.product-action-btn.added svg {
    fill: currentColor;
}

/* Accessibility */
.product-action-btn:focus {
    outline-offset: 2px;
}

.product-title-link:focus,
.product-image-link:focus {
    outline-offset: 4px;
}

/* Optional: Dark teal/cyan glow effect on hover (matching the uploaded image background) */
.custom-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 150, 150, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.custom-product-card:hover::before {
    opacity: 1;
}

/* Ensure content stays above the glow */
.product-card-header,
.product-card-actions,
.product-image-link,
.product-card-footer {
    position: relative;
    z-index: 2;
}

/* Notification Styles */
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: #ffffff;
    color: #000000;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    max-width: 300px;
}

.custom-notification.show {
    transform: translateX(0);
}

.custom-notification-success {
    border-left: 4px solid #00cc00;
}

.custom-notification-error {
    border-left: 4px solid #ff0000;
}

@media (max-width: 600px) {
    .custom-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ============================================
   Nselection Shop Styles
   ============================================ */

/* Nselection Shop Header */
.nselection-shop-header {
    margin-bottom: 40px;
    text-align: center;
}

.nselection-shop-title {
    font-size: 42px;
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Nselection Shop Toolbar */
.nselection-shop-toolbar {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.nselection-shop-toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nselection-result-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.nselection-ordering select {
    padding: 10px 40px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nselection-ordering select:hover {
    border-color: var(--nselection-primary);
}

.nselection-ordering select:focus {
    outline: none;
    border-color: var(--nselection-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Nselection Products Grid */
.nselection-products-wrapper {
    margin-bottom: 40px;
}

.nselection-products-wrapper .products {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nselection-products-wrapper .products.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.nselection-products-wrapper .products.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.nselection-products-wrapper .products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.nselection-products-wrapper .products.columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* Nselection Product Item Enhancements */
body.nselection-shop .product,
body.nselection-product .related.products .product {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

body.nselection-shop .product:hover,
body.nselection-product .related.products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

/* Nselection Pagination */
.nselection-pagination {
    margin-top: 50px;
    text-align: center;
}

.nselection-pagination ul {
    display: inline-flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nselection-pagination li {
    margin: 0;
}

.nselection-pagination a,
.nselection-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nselection-pagination a:hover {
    background: var(--nselection-primary);
    border-color: var(--nselection-primary);
    color: white;
    transform: translateY(-2px);
}

.nselection-pagination .current {
    background: linear-gradient(135deg, var(--nselection-primary) 0%, var(--nselection-secondary) 100%);
    border-color: var(--nselection-primary);
    color: white;
}

/* No Products State */
.nselection-no-products {
    text-align: center;
    padding: 60px 20px;
}

.nselection-no-products .woocommerce-info {
    font-size: 18px;
    color: #666;
}

/* Nselection Breadcrumbs */
body.nselection-page .woocommerce-breadcrumb,
body.nselection-page .woodmart-breadcrumbs {
    margin-bottom: 30px;
}

body.nselection-page .woocommerce-breadcrumb a,
body.nselection-page .woodmart-breadcrumbs a {
    color: var(--nselection-primary);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nselection-products-wrapper .products.columns-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nselection-products-wrapper .products.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nselection-shop-title {
        font-size: 32px;
    }
    
    .nselection-shop-toolbar-inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nselection-result-count,
    .nselection-ordering {
        text-align: center;
    }
    
    .nselection-products-wrapper .products.columns-4,
    .nselection-products-wrapper .products.columns-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nselection-products-wrapper .products.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nselection-pagination a,
    .nselection-pagination span {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nselection-shop-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .nselection-products-wrapper .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .nselection-pagination ul {
        gap: 5px;
    }
    
    .nselection-pagination a,
    .nselection-pagination span {
        min-width: 34px;
        height: 34px;
        padding: 0 8px;
        font-size: 12px;
    }
}

/* WoodMart Theme Compatibility */
.woodmart-theme body.nselection-shop .site-content {
    padding-top: 40px;
    padding-bottom: 40px;
}

.woodmart-theme body.nselection-product .product-image-summary {
    margin-bottom: 40px;
}

/* Nselection Product Single Page */
body.nselection-product .summary .price {
    color: var(--nselection-primary);
}

body.nselection-product .single_add_to_cart_button {
    border: none;
    transition: all 0.3s ease;
}

body.nselection-product .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Nselection Loading State */
.nselection-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.nselection-loading:after {
    content: "";
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--nselection-primary);
    border-radius: 50%;
    animation: nselection-spin 1s linear infinite;
}

@keyframes nselection-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   Nselection Shop Page - New Dark Theme Layout
   ============================================ */

.nselection-shop-page {
    min-height: 100vh;
    width: 100%;
    background-color: #0a0a0a;
    background-image: url('https://nsportdevv.digitalflow.dev/wp-content/uploads/2026/01/component-scaled.png');
    background-size: cover;
    background-position: right;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-top: -40px;
}

/* Page Header with Title and Breadcrumbs - Top of Page */
.nselection-page-header {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 30px 25px 20px 25px;
}

.nselection-page-header-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nselection-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nselection-title-line {
    width: 40px;
    height: 3px;
    background: #e9242d;
    flex-shrink: 0;
}

.nselection-title-line:last-child {
    display: none;
}

.nselection-page-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}

.nselection-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.nselection-breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nselection-breadcrumbs a:hover {
    color: #ffffff;
}

.nselection-breadcrumbs .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.nselection-breadcrumbs .breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

.nselection-shop-container {
    display: flex;
    max-width: 1480px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Sidebar Styles */
.nselection-sidebar {
    width: 280px;
    min-width: 280px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 40px 25px 30px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: visible;
    max-height: none;
    position: relative;
    top: auto;
    align-self: flex-start;
}

.nselection-filters-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Filter Group */
.nselection-filter-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.nselection-filter-group:last-of-type {
    border-bottom: none;
}

.nselection-filter-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.nselection-filter-title:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nselection-collapsible {
    cursor: pointer;
}

.filter-toggle-icon {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    width: 16px;
    text-align: center;
}

.nselection-filter-group:not(.is-open) .nselection-filter-title {
    margin-bottom: 0;
}

.nselection-filter-content {
    transition: all 0.3s ease;
}

/* Filter List */
.nselection-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nselection-scrollable {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.nselection-scrollable::-webkit-scrollbar {
    width: 4px;
}

.nselection-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.nselection-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.nselection-filter-item {
    margin: 0;
    padding: 0;
}

/* Category Links */
.nselection-category-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
}

.nselection-category-item a:hover,
.nselection-category-item a.active {
    color: #ffffff;
}

/* Checkbox Styles */
.nselection-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    transition: color 0.2s ease;
}

.nselection-checkbox-label:hover {
    color: #ffffff;
}

.nselection-checkbox-label input[type="checkbox"] {
    display: none;
}

.nselection-checkbox-custom {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.nselection-checkbox-label input[type="checkbox"]:checked + .nselection-checkbox-custom {
    background: transparent;
    border-color: #e9242d;
}

.nselection-checkbox-label input[type="checkbox"]:checked + .nselection-checkbox-custom::after {
    content: '✓';
    color: #e9242d;
    font-size: 10px;
    font-weight: bold;
}

.nselection-checkbox-text {
    flex: 1;
}

.nselection-filter-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-left: auto;
}

/* Size Grid */
.nselection-size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.nselection-size-label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 4px;
    transition: all 0.2s ease;
}

.nselection-size-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.nselection-size-label.active,
.nselection-size-label:has(input:checked) {
    background: #e9242d;
    border-color: #e9242d;
}

.nselection-size-label input {
    display: none;
}

.nselection-size-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
}

/* Apply Filters Button */
.nselection-filter-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nselection-apply-filters {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #e9242d;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nselection-apply-filters:hover {
    background: #c91e26;
    transform: translateY(-1px);
}

.nselection-clear-filters {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #e9242d;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nselection-clear-filters:hover {
    background: #c91e26;
    transform: translateY(-1px);
}

/* Main Content Area */
.nselection-main-content {
    flex: 1;
    padding: 20px 30px;
    min-width: 0;
}

/* Toolbar */
.nselection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.nselection-sorting {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nselection-sort-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nselection-sort-link:hover,
.nselection-sort-link.active {
    color: #ffffff;
}

.nselection-sort-link .sort-arrow {
    font-size: 13px;
}

.sort-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
}

.nselection-result-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nselection-product-count {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.nselection-pagination-mini {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nselection-pagination-mini .page-num {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.nselection-pagination-mini .page-num:hover,
.nselection-pagination-mini .page-num.active {
    color: #ffffff;
}

.nselection-pagination-mini .page-ellipsis {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
}

/* Products Grid - Override wrapper styles */
.nselection-products-grid .custom-product-cards-wrapper {
    padding: 0;
}

.nselection-products-grid .custom-product-cards-wrapper.layout-grid .custom-product-cards-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: transparent;
    padding: 0;
}

/* No Products */
.nselection-no-products {
    text-align: center;
    padding: 80px 40px;
    color: rgba(255, 255, 255, 0.7);
}

.nselection-no-products p {
    font-size: 16px;
    margin-bottom: 20px;
}

.nselection-no-products .nselection-clear-filters {
    display: inline-block;
    width: auto;
}

/* Bottom Pagination */
.nselection-pagination-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    padding: 20px 0;
}

.nselection-bottom-count {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.nselection-bottom-pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nselection-bottom-pages .page-num {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.nselection-bottom-pages .page-num:hover {
    color: #ffffff;
}

.nselection-bottom-pages .page-num.active {
    color: #ffffff;
    padding-left: 6px;
    font-size: 18px;
}

.nselection-bottom-pages .page-next {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.nselection-bottom-pages .page-next:hover {
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 1400px) {
    .nselection-products-grid .custom-product-cards-wrapper.layout-grid .custom-product-cards-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .nselection-products-grid .custom-product-cards-wrapper.layout-grid .custom-product-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nselection-sidebar {
        width: 220px;
        min-width: 220px;
    }
}

@media (max-width: 992px) {
    .nselection-shop-container {
        flex-direction: column;
    }
    
    .nselection-sidebar {
        width: 100%;
        min-width: 100%;
        max-height: none;
        position: relative;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nselection-filters-form {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .nselection-filter-actions {
        grid-column: 1 / -1;
    }
    
    .nselection-size-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .nselection-filters-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nselection-products-grid .custom-product-cards-wrapper.layout-grid .custom-product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nselection-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nselection-sorting {
        order: 2;
    }
    
    .nselection-result-info {
        order: 1;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .nselection-filters-form {
        grid-template-columns: 1fr;
    }

    .nselection-products-grid .custom-product-cards-wrapper.layout-grid .custom-product-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        padding: 0 10px;
    }

    .nselection-main-content {
        padding: 0;
    }

    .nselection-products-grid {
        padding: 0;
    }

    .nselection-sidebar {
        padding: 20px 15px;
    }

    .nselection-size-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nselection-page-header {
        padding: 15px 20px;
        background: #ffffff;
    }

    .nselection-page-header-inner {
        align-items: center;
    }

    .nselection-title-wrapper {
        justify-content: center;
        gap: 15px;
    }

    .nselection-title-line {
        width: 60px;
        background: #e9242d !important;
    }

    .nselection-title-line:last-child {
        display: block;
    }

    .nselection-page-title {
        color: #111111 !important;
    }

    .nselection-breadcrumbs {
        display: none;
    }
}

/* Hide default WoodMart elements on shop page */
.nselection-shop-page .wd-breadcrumbs,
.nselection-shop-page .page-title,
.nselection-shop-page .title-wrapper {
    display: none;
}

/* Mobile Clear Bar - Hidden on desktop */
.nselection-mobile-clear-bar {
    display: none;
}

/* Mobile Sort & Filter Buttons - Hidden on desktop */
.nselection-mobile-buttons {
    display: none;
}

.nselection-mobile-sort-panel {
    display: none;
}

/* Mobile Filter Toggle Button - Hidden on desktop */
.nselection-mobile-filter-toggle {
    display: none !important;
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: #e9242d;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233, 36, 45, 0.4);
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.nselection-mobile-filter-toggle:hover {
    background: #c91e26;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 36, 45, 0.5);
}

.nselection-mobile-filter-toggle svg {
    flex-shrink: 0;
}

.nselection-mobile-filter-toggle .filter-count {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: #ffffff;
    color: #e9242d;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    padding: 0 6px;
}

/* Mobile Filter Close Button - Hidden on desktop */
.nselection-mobile-filter-close {
    display: none !important;
    position: absolute !important;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.nselection-mobile-filter-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive - Show toggle button on mobile */
@media (max-width: 992px) {
    /* Show mobile sort & filter buttons */
    .nselection-mobile-buttons {
        display: flex !important;
        gap: 15px;
        justify-content: center;
        padding: 20px 20px;
        background: #ffffff;
    }

    button.nselection-mobile-sort-btn,
    button.nselection-mobile-filter-btn {
        flex: 1 !important;
        max-width: 200px !important;
        padding: 14px 20px !important;
        background: #ffffff !important;
        color: #111111 !important;
        border: 1px solid #111111 !important;
        border-radius: 50px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        font-family: "Poppins", sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        box-shadow: none !important;
        line-height: 1 !important;
    }

    button.nselection-mobile-sort-btn:hover,
    button.nselection-mobile-filter-btn:hover,
    button.nselection-mobile-sort-btn.active,
    button.nselection-mobile-filter-btn.active {
        background: #111111 !important;
        color: #ffffff !important;
        border-color: #111111 !important;
    }

    /* Mobile sort panel - full screen */
    .nselection-mobile-sort-panel {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        background: #ffffff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .nselection-mobile-sort-panel.is-open {
        transform: translateX(0);
    }

    .nselection-mobile-sort-list {
        display: flex;
        flex-direction: column;
    }

    .nselection-mobile-sort-item {
        display: block;
        padding: 18px 20px;
        color: #111111 !important;
        font-size: 14px;
        font-weight: 700;
        font-family: "Poppins", sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .nselection-mobile-sort-item.active {
        color: #e9242d !important;
    }

    /* Hide desktop toolbar on mobile */
    .nselection-toolbar {
        display: none !important;
    }

    /* Hide old mobile toggle button */
    .nselection-mobile-filter-toggle {
        display: none !important;
    }

    /* Hide close button - use back navigation instead */
    .nselection-mobile-filter-close {
        display: none !important;
    }

    /* Hide sidebar by default on mobile */
    .nselection-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        background: #ffffff !important;
        backdrop-filter: none;
        padding: 0 !important;
    }

    /* Show sidebar when open */
    .nselection-sidebar.is-open {
        transform: translateX(0);
    }

    /* Mobile clear all bar */
    .nselection-mobile-clear-bar {
        display: block !important;
        background: #e9242d;
        padding: 15px 20px;
        text-align: right;
    }

    .nselection-mobile-clear-link {
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        text-decoration: none;
    }

    /* Reset filters form layout for mobile sidebar */
    .nselection-sidebar.is-open .nselection-filters-form {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    /* Filter groups as simple list */
    .nselection-sidebar.is-open .nselection-filter-group {
        border-bottom: 1px solid #e5e5e5;
        padding: 18px 20px;
        background: #ffffff;
    }

    /* Filter titles - black, bold, uppercase */
    .nselection-sidebar.is-open .nselection-filter-title {
        color: #111111 !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nselection-sidebar.is-open .nselection-filter-title .filter-toggle-icon {
        color: #111111 !important;
    }

    /* Filter content when expanded */
    .nselection-sidebar.is-open .nselection-filter-content {
        padding-top: 15px;
    }

    .nselection-sidebar.is-open .nselection-filter-item {
        padding: 6px 0;
    }

    .nselection-sidebar.is-open .nselection-checkbox-text {
        color: #333333 !important;
    }

    .nselection-sidebar.is-open .nselection-filter-count {
        color: #999999 !important;
    }

    /* Size grid on mobile */
    .nselection-sidebar.is-open .nselection-size-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nselection-sidebar.is-open .nselection-size-label {
        border-color: #cccccc !important;
        color: #111111 !important;
    }

    .nselection-sidebar.is-open .nselection-size-label.active {
        border-color: #111111 !important;
        background: #111111 !important;
        color: #ffffff !important;
    }

    .nselection-sidebar.is-open .nselection-size-text {
        color: inherit !important;
    }

    /* Clear all / filter actions */
    .nselection-sidebar.is-open .nselection-filter-actions {
        margin: 0;
        padding: 0;
        border: none;
    }

    /* Category links on mobile */
    .nselection-sidebar.is-open .nselection-category-item a {
        color: #333333 !important;
    }

    .nselection-sidebar.is-open .nselection-category-item a.active {
        color: #111111 !important;
        font-weight: 700 !important;
    }

    /* Checkbox styling on mobile */
    .nselection-sidebar.is-open .nselection-checkbox-custom {
        border-color: #cccccc !important;
    }

    .nselection-sidebar.is-open input[type="checkbox"]:checked + .nselection-checkbox-custom {
        border-color: #e9242d !important;
    }
}

@media (max-width: 576px) {
    .nselection-mobile-filter-toggle {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .nselection-mobile-filter-toggle svg {
        width: 18px;
        height: 18px;
    }

    .nselection-sidebar {
        padding: 20px 15px;
    }
}

/* ============================================
   Nselection Single Product Page
   ============================================ */

.nselection-single-product-page {
    min-height: 100vh;
    width: 100vw;
    background-color: #0a0a0a;
    background-image: url('https://nsportdevv.digitalflow.dev/wp-content/uploads/2026/01/component-scaled.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -40px;
}

.nselection-single-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 60px;
}

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

.nselection-single-breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nselection-single-breadcrumbs a:hover {
    color: #ffffff;
}

.nselection-single-breadcrumbs .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.nselection-single-breadcrumbs .breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* Product Layout - Two Column Grid */
.nselection-product-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: flex-start;
}

/* Gallery */
.nselection-product-gallery {
    display: flex;
    gap: 15px;
}

.nselection-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    width: 80px;
}

.nselection-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.nselection-thumb:hover,
.nselection-thumb.active {
    border-color: rgba(255, 255, 255, 0.5);
}

.nselection-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nselection-gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.nselection-gallery-main img {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    display: block;
}

/* Desktop: show static main image, hide swipe gallery */
.nselection-gallery-swipe {
    display: none;
}

.nselection-swipe-dots {
    display: none;
}

.nselection-main-image-desktop {
    display: block;
}

/* Product Info */
.nselection-product-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Actions (Share) */
.nselection-product-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.nselection-action-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: pointer;
    font-size: 13px !important;
    font-family: "Poppins", sans-serif !important;
    transition: color 0.2s ease !important;
    text-decoration: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.nselection-action-btn:hover {
    color: #ffffff !important;
    background: transparent !important;
    background-color: transparent !important;
}

.nselection-action-btn svg {
    flex-shrink: 0;
}

/* Product Title */
.nselection-product-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

/* Inline Badges (under title) */
.nselection-inline-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.nselection-inline-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    border-radius: 4px;
}

.nselection-inline-badge.badge-sale {
    background: #e9242d;
    color: #ffffff;
}

.nselection-inline-badge.badge-new {
    background: #ffffff;
    color: #111111;
}

.nselection-inline-badge.badge-aktuelno {
    background: #ffffff;
    color: #111111;
}

/* Product Meta */
.nselection-product-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.nselection-meta-row {
    font-size: 14px;
    color: #ffffff;
}

.nselection-meta-row .meta-label {
    color: #ffffff;
}

.nselection-meta-row .meta-value {
    color: #ffffff;
}

/* Price Block */
.nselection-price-block {
    margin-bottom: 10px;
}

.nselection-price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.nselection-current-price {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.nselection-old-price {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    text-decoration: line-through;
    margin-top: 2px;
}

/* Add to Cart Section - WooCommerce overrides */
.nselection-add-to-cart-section {
    margin-top: 0;
}

/* Select variation tooltip */
.nselection-select-variation-msg {
    position: relative;
    margin-top: -10px;
    padding: 8px 16px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    flex: 0 0 auto !important;
    width: fit-content !important;
    max-width: fit-content !important;
    align-self: flex-start !important;
}

.nselection-select-variation-msg::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 22px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
}

/* Variable product form - select dropdowns */
.nselection-single-product-page .variations_form .variations {
    width: 100%;
    border: none;
    border-collapse: collapse;
}

.nselection-single-product-page .variations_form .variations tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.nselection-single-product-page .variations_form .variations td,
.nselection-single-product-page .variations_form .variations th {
    display: block;
    border: none;
    padding: 0;
    width: 100%;
}

.nselection-single-product-page .variations_form .variations th.label {
    margin-bottom: 8px;
}

.nselection-single-product-page .variations_form .variations .label label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
}

/* Desktop: show WoodMart swatches, hide native variation selects */
.nselection-single-product-page .variations select,
.nselection-single-product-page .nselection-var-col select {
    display: none !important;
}

/* Mobile: hide swatches, show native select in JS-built row */
@media (max-width: 768px) {
    .nselection-single-product-page .wd-swatches-product,
    .nselection-single-product-page .wd-swatches-single {
        display: none !important;
    }

    .nselection-select-qty-row {
        display: flex !important;
    }

    .nselection-single-product-page .nselection-var-col select {
        display: block !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
        color: #ffffff !important;
        padding: 12px 40px 12px 15px !important;
        font-size: 14px !important;
        font-family: "Poppins", sans-serif !important;
        border-radius: 50px !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        width: 100% !important;
        cursor: pointer !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 15px center !important;
    }

    .nselection-single-product-page .nselection-var-col select option {
        background: #1a1a1a;
        color: #ffffff;
    }
}

/* Select + Qty row (built by JS) - visibility controlled by mobile media query above */
.nselection-select-qty-row {
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.nselection-var-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.nselection-var-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

/* Match heights: select and qty input same line */
.nselection-var-col select,
.nselection-qty-wrapper .quantity {
    height: 46px !important;
    box-sizing: border-box !important;
}

/* Hide reset variations link inside the row - takes up space */
.nselection-var-col .wd-reset-var,
.nselection-var-col .reset_variations {
    display: none !important;
}

/* WoodMart swatches override for nselection - Reset all WoodMart border mechanisms */
.nselection-single-product-page .wd-swatches-product {
    --wd-swatch-brd-color: rgba(255, 255, 255, 0.4) !important;
    --wd-swatch-size: 50px !important;
    --wd-swatch-h-sp: 6px !important;
    --wd-swatch-v-sp: 6px !important;
}

.nselection-single-product-page .wd-swatches-product .wd-swatch {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    border: 1.5px solid rgb(255, 255, 255) !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
    position: relative;
    overflow: visible !important;
}

/* Kill all WoodMart pseudo-element borders (style-1 underline, etc) */
.nselection-single-product-page .wd-swatches-product .wd-swatch::before,
.nselection-single-product-page .wd-swatches-product .wd-swatch::after {
    display: none !important;
    content: none !important;
}

/* Inner text styling */
.nselection-single-product-page .wd-swatches-product .wd-swatch .wd-swatch-text {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
}

/* Inner bg element - reset */
.nselection-single-product-page .wd-swatches-product .wd-swatch .wd-swatch-bg {
    border: none !important;
    box-shadow: none !important;
}

/* Hover state - white bg, dark text */
.nselection-single-product-page .wd-swatches-product .wd-swatch:hover {
    border-color: #ffffff !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.nselection-single-product-page .wd-swatches-product .wd-swatch:hover .wd-swatch-text {
    color: #111111 !important;
}

/* Active/selected state */
.nselection-single-product-page .wd-swatches-product .wd-swatch.wd-active {
    border-color: #ffffff !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.nselection-single-product-page .wd-swatches-product .wd-swatch.wd-active .wd-swatch-text {
    color: #111111 !important;
}

/* Disabled/out of stock swatches */
.nselection-single-product-page .wd-swatches-product .wd-swatch.wd-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Reset variation link */
.nselection-single-product-page .reset_variations {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
    display: inline-block;
}

.nselection-single-product-page .reset_variations:hover {
    color: #ffffff;
}

/* Variation price */
.nselection-single-product-page .woocommerce-variation-price .price {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.nselection-single-product-page .woocommerce-variation-price .price del {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.nselection-single-product-page .woocommerce-variation-price .price ins {
    text-decoration: none;
    color: #ffffff;
}

/* Quantity and Add to Cart row */
.nselection-single-product-page .single_add_to_cart_button {
    background: #e9242d !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 16px 40px !important;
    width: 100% !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    text-transform: none !important;
}

.nselection-single-product-page .single_add_to_cart_button:hover {
    background: #c91e26 !important;
    transform: translateY(-1px);
}

/* Hide buy now button */
.nselection-single-product-page .wd-buy-now-btn,
.nselection-single-product-page .woodmart-buy-now-btn,
.nselection-single-product-page .buy-now-btn,
.nselection-single-product-page [class*="buy-now"],
.nselection-single-product-page .wd-action-btn.wd-buy-now {
    display: none !important;
}

/* Quantity wrapper with label */
.nselection-qty-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 0;
    flex: 0 0 auto !important;
    width: auto !important;
}

/* Variable product: desktop = qty + button in one row */
.nselection-single-product-page form.cart .woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    width: 100% !important;
}

.nselection-single-product-page .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    flex: 1 !important;
}

/* Mobile: button full width below qty */
@media (max-width: 768px) {
    .nselection-single-product-page form.cart .woocommerce-variation-add-to-cart {
        flex-direction: column !important;
    }

    .nselection-single-product-page .woocommerce-variation-add-to-cart .single_add_to_cart_button {
        width: 100% !important;
    }
}

/* Simple product: select + qty row then button */
.nselection-single-product-page form.cart:not(.variations_form) {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
}

.nselection-single-product-page form.cart:not(.variations_form) > .quantity,
.nselection-single-product-page form.cart:not(.variations_form) > .nselection-qty-wrapper {
    flex: 0 0 auto !important;
    width: auto !important;
}

.nselection-single-product-page form.cart:not(.variations_form) > .single_add_to_cart_button {
    flex: 0 0 100% !important;
    width: 100% !important;
}

.nselection-qty-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.nselection-single-product-page .quantity {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50px !important;
    overflow: visible !important;
    padding: 5px !important;
    gap: 2px !important;
    width: auto !important;
    max-width: fit-content !important;
}

.nselection-single-product-page .quantity .qty {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-align: center !important;
    width: 50px !important;
    padding: 0 !important;
    font-family: "Poppins", sans-serif !important;
    -moz-appearance: textfield;
    line-height: 1 !important;
    height: auto !important;
}

.nselection-single-product-page .quantity .qty::-webkit-inner-spin-button,
.nselection-single-product-page .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* WoodMart quantity +/- buttons as circles */
.nselection-single-product-page .quantity .woodmart-plus,
.nselection-single-product-page .quantity .woodmart-minus,
.nselection-single-product-page .quantity .plus,
.nselection-single-product-page .quantity .minus {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: none !important;
    color: #111111 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
}

.nselection-single-product-page .quantity .woodmart-plus:hover,
.nselection-single-product-page .quantity .woodmart-minus:hover,
.nselection-single-product-page .quantity .plus:hover,
.nselection-single-product-page .quantity .minus:hover {
    background: rgba(255, 255, 255, 0.85) !important;
    color: #000000 !important;
}

/* Cart form layout */
.nselection-single-product-page form.cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.nselection-single-product-page form.cart .variations {
    width: 100%;
    flex-basis: 100%;
}

.nselection-single-product-page form.cart .single_variation_wrap {
    width: 100%;
}

.nselection-single-product-page form.cart .woocommerce-variation-add-to-cart {
    margin-top: 5px;
}

/* Remove extra margins from WooCommerce variation wrapper */
.nselection-single-product-page .single_variation_wrap .woocommerce-variation {
    margin-bottom: 0 !important;
}

.nselection-single-product-page .single_variation_wrap .woocommerce-variation-price {
    margin-bottom: 0 !important;
}

.nselection-single-product-page .variations_form .variations tr:last-child {
    margin-bottom: 5px;
}

/* Product Tabs */
.nselection-product-tabs {
    margin-top: 60px;
    padding-top: 0;
}

/* Desktop: show WooCommerce tabs, hide mobile tabs */
.nselection-tabs-mobile {
    display: none;
}

/* Desktop WooCommerce tabs styling */
.nselection-tabs-desktop .woocommerce-tabs {
    padding: 0;
}

.nselection-tabs-desktop .woocommerce-tabs ul.tabs,
.nselection-tabs-desktop .wc-tabs-wrapper ul.tabs {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: none;
    background: transparent;
    overflow: visible;
    justify-content: flex-start;
}

.nselection-tabs-desktop .woocommerce-tabs ul.tabs::before,
.nselection-tabs-desktop .woocommerce-tabs ul.tabs::after {
    display: none;
}

.nselection-tabs-desktop .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
}

.nselection-tabs-desktop .woocommerce-tabs ul.tabs li::before,
.nselection-tabs-desktop .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.nselection-tabs-desktop .woocommerce-tabs ul.tabs li a .wd-tabs-title::after,
.nselection-tabs-desktop .woocommerce-tabs ul.tabs li a .nav-link-text::after {
    display: none !important;
    content: none !important;
}

.nselection-tabs-desktop .woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: 14px 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 50px;
    margin: 0;
    transition: all 0.2s ease;
    background: transparent;
    white-space: nowrap;
}

.nselection-tabs-desktop .woocommerce-tabs ul.tabs li a:hover {
    color: #111111;
    background: #ffffff;
    border-color: #ffffff;
}

.nselection-tabs-desktop .woocommerce-tabs ul.tabs li.active a {
    color: #111111;
    background: #ffffff;
    border-color: #ffffff;
}

.nselection-tabs-desktop .woocommerce-tabs .panel,
.nselection-tabs-desktop .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    background: transparent;
}

.nselection-tabs-desktop .woocommerce-tabs .panel h2,
.nselection-tabs-desktop .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Mobile: hide desktop tabs, show custom stacked buttons */
@media (max-width: 768px) {
    .nselection-tabs-desktop {
        display: none;
    }

    .nselection-tabs-mobile {
        display: block;
        margin-top: 40px;
    }
}

/* Mobile tab buttons */
.nselection-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nselection-tab-btn {
    display: block !important;
    width: 100% !important;
    padding: 16px 30px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
    text-align: center !important;
    border: 2px solid #ffffff !important;
    border-radius: 50px !important;
    background: transparent !important;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.nselection-tab-btn:hover {
    color: #111111 !important;
    background: #ffffff !important;
}

.nselection-tab-btn.active {
    color: #111111 !important;
    background: #ffffff !important;
}

.nselection-tab-panel {
    padding: 25px 0;
}

.nselection-tab-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.nselection-stock-select-msg {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.nselection-stock-locations-tab .stock-locations-grid--nselection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.nselection-stock-locations-tab .location-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.nselection-stock-locations-tab .location-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.nselection-stock-locations-tab .location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.nselection-stock-locations-tab .location-icon svg {
    color: rgba(255, 255, 255, 0.7);
}

.nselection-stock-locations-tab .location-title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.nselection-stock-locations-tab .location-underline {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
}

.nselection-stock-locations-tab .location-city {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.nselection-stock-locations-tab .location-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.nselection-stock-locations-tab .location-pin {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.nselection-stock-locations-tab a {
    text-decoration: none;
    color: inherit;
}

/* Related Products */
.nselection-related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nselection-related-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 30px;
}

.nselection-related-products .custom-product-cards-wrapper {
    padding: 0;
}

/* Hide WooCommerce default elements we don't need */
.nselection-single-product-page .woocommerce-breadcrumb,
.nselection-single-product-page .woodmart-breadcrumbs-wrapper,
.nselection-single-product-page .product_meta {
    display: none;
}

/* WoodMart sticky add to cart - hide for nselection */
body.nselection-product .wd-sticky-btn,
body.nselection-product .woodmart-sticky-btn {
    display: none !important;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .nselection-single-container {
        padding: 20px 25px 40px;
    }

    .nselection-product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .nselection-product-title {
        font-size: 26px;
    }

    .nselection-gallery-thumbs {
        width: 60px;
    }

    .nselection-thumb {
        width: 60px;
        height: 60px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .nselection-single-breadcrumbs {
        display: none !important;
    }

    .nselection-product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nselection-product-gallery {
        flex-direction: column-reverse;
    }

    .nselection-gallery-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 5px;
    }

    .nselection-thumb {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .nselection-gallery-main {
        min-height: 300px;
        flex-direction: column;
    }

    .nselection-gallery-main img {
        max-height: 400px;
    }

    /* Mobile: show swipe gallery, hide static image */
    .nselection-main-image-desktop {
        display: none !important;
    }

    .nselection-gallery-swipe {
        display: flex;
        width: 100%;
        transition: transform 0.3s ease;
        will-change: transform;
    }

    .nselection-swipe-slide {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nselection-swipe-slide img {
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        display: block;
        pointer-events: none;
    }

    .nselection-swipe-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 12px 0 4px;
    }

    .nselection-swipe-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: background 0.2s;
    }

    .nselection-swipe-dot.active {
        background: #d32f2f;
    }

    .nselection-product-title {
        font-size: 22px;
    }

    .nselection-current-price {
        font-size: 24px;
    }

    .nselection-single-product-page .woocommerce-tabs ul.tabs li a {
        padding: 12px 18px;
        font-size: 13px;
    }

    .nselection-single-product-page .single_add_to_cart_button {
        padding: 12px 30px !important;
        font-size: 14px !important;
    }
}
