/*
Theme Name: LorinHurt Clean WooCommerce Theme
Description: A clean, modern WooCommerce-compatible WordPress theme design for Lorin
Author: Weboski & Claude.AI
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
WC requires at least: 5.0
WC tested up to: 8.0
License: GPL v2 or later
*/
@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');

:root {
	--font-base: "Poppins", "Arial", sans-serif;
	--highlight: #e51e28;
	--hover: #9f0008;
	--light: #f2f2f2;
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
	width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Woocommerce default */
.shop-breadcrumbs {
    font-size: 11px;
    margin: 1.5em 0;
}
nav.woocommerce-breadcrumb a {
    color: #999;
}

.filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: .5em 0 2em;
}
.filters-wrapper .filter-group select, .filters-wrapper .filter-group input {
    padding: 1em;
    border-radius: 5px;
    border: 1px  #dfdfdf solid;
    font-family: var(--font-base);
    font-size: 15px;
}
/* WooCommerce Specific Styles */

.product-header .woocommerce-breadcrumb-wrapper {
	display: none;
}
	
}
.woocommerce-products-header {
    margin-bottom: 2rem;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    list-style: none;
}

.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.woocommerce ul.products li.product .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--highlight);
    margin: 0.5rem 0;
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }
}

.woocommerce div.product .summary {
    padding: 1rem;
}

.woocommerce .cart .button, .woocommerce .cart input.button {
    background: var(--highlight);
    color: white;
}

.woocommerce-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
	text-align: center;
}

.woocommerce-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}



/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--highlight);
}

/* Main Content */
.site-main {
    min-height: 70vh;
    padding: 2rem 0;
}

.content-area {
    /*
	display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
	*/
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
	/*
    .content-area {
        grid-template-columns: 1fr;
    }
	*/
}

/* Posts & Pages */
.post {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.page {
	padding: 0 0;
	margin: 0 0;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.entry-content {
    line-height: 1.8;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn, .button, input[type="submit"], .woocommerce #respond input#submit {
    background: var(--highlight);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
	font-family: var(--font-base);
	font-size: 15px;
}

.btn:hover, .button:hover, input[type="submit"]:hover {
    background: var(--hover);
}

a.custom-logo-link img {
    width: 200px;
    height: initial;
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}
.site-footer a {
	color: rgba(255,255,255,.75);
}

/* Responsive */
@media (max-width: 768px) {
	.site-header {
		position: relative;
		width: 100%;
	}
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
}





/* =================================
   STRONA GŁÓWNA - STYLE
   ================================= */

/* BANNER */
.homepage-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 600px;
}

.banner-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--highlight);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-button:hover {
    background: var(--hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* SEKCJE */
.homepage-products,
.homepage-content {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* PRODUKTY */
.woocommerce ul.products,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.woocommerce ul.products li.product,
.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
	width: 100%;
}
.woocommerce ul.products li.product:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.woocommerce ul.products::before {
	display: none;
}
.product-images {
    flex: 1 0 500px !important;
    max-width: 500px;
}
.product-image {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.woocommerce ul.products li.product a img,
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.wholesale-badge,
.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    z-index: 2;
}

.wholesale-badge {
    background: #28a745;
}

.sale-badge {
    background: #dc3545;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    margin-bottom: 0.5rem;
}

.product-title a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: block;
}

.product-title a:hover {
    color: var(--highlight);
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--highlight);
    margin-bottom: 0.5rem;
}

.product-variants {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--highlight);
    color: white;
}

.btn-primary:hover {
    background: var(--hover);
}

.btn-outline {
    background: transparent;
    color: var(--highlight);
    border: 2px solid var(--highlight);
}

.btn-outline:hover {
    background: var(--highlight);
    color: white;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.products-footer {
    text-align: center;
}

/* TREŚĆ */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-text {
    line-height: 1.8;
    color: #555;
}

.content-text h3 {
    color: #333;
    margin: 2rem 0 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.category-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.category-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.content-cta {
    margin-top: 2rem;
    text-align: center;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-box h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.info-box p {
    color: #666;
    margin: 0;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        display: grid;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .homepage-products,
    .homepage-content {
        padding: 2rem 0;
    }
    
    .banner-content {
        padding: 0 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
}




/* =================================
   HEADER STYLES
   ================================= */

/* Top Bar */
.header-top-bar {
    background: #333;
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--highlight);
}

.user-links {
    display: flex;
    gap: 1rem;
}

.user-links a {
    color: white;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.user-links a:hover {
    background: rgba(255,255,255,0.1);
}

/* Main Header */
.header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.site-branding .site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.site-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Search Bar */
.header-search {
    max-width: 500px;
    margin: 0 auto;
}

.woocommerce-product-search {
    display: flex;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.search-field {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-submit {
    background: var(--light);
    color: #000;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: var(--hover);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

/* CART DROPDOWN */
.header-cart-container {
    position: relative;
}

.header-cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.header-cart-link:hover {
    background: #f8f9fa;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--highlight);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cart-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-total {
    font-weight: bold;
    color: var(--highlight);
}

.cart-label {
    font-size: 0.9rem;
    color: #666;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.header-cart-container:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown-content {
    padding: 1rem;
}

/* Mini Cart */
.mini-cart-header h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.mini-cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.mini-cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex: 1;
    min-width: 0;
}

.item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.item-name a {
    color: #333;
    text-decoration: none;
}

.item-name a:hover {
    color: var(--highlight);
}

.item-attributes {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.item-attributes .attribute {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 4px;
}

.item-quantity-price {
    font-size: 0.9rem;
    color: #333;
}

.item-quantity-price .price {
    font-weight: bold;
    color: var(--highlight);
}

.item-remove {
    width: 20px;
    text-align: center;
}

.remove-item {
    color: #999;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #dc3545;
}

.more-items {
    text-align: center;
    padding: 0.5rem;
    color: #666;
    font-style: italic;
}

/* Mini Cart Summary */
.mini-cart-summary {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.mini-cart-summary > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.mini-cart-summary .total {
    border-top: 1px solid #eee;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Mini Cart Actions */
.mini-cart-actions {
    display: flex;
    gap: 0.5rem;
}

.mini-cart-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: var(--highlight);
    border: 2px solid var(--highlight);
}

.btn-outline:hover {
    background: var(--highlight);
    color: white;
}

.btn-primary {
    background: var(--highlight);
    color: white;
    border: 2px solid var(--highlight);
}

.btn-primary:hover {
    background: var(--hover);
    border-color: var(--hover);
}

/* Empty Cart */
.mini-cart-empty {
    text-align: center;
    padding: 2rem 1rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-message {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Navigation */
.main-navigation {
    background: var(--light);
    color: white;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: var(--highlight);
	color: #FFF;
}

/* Product Categories Menu */
.product-categories-menu {
    position: relative;
}

.category-filter {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    background-color: var(--light);
    padding: 3px 7px;
    border-radius: 3px;
    font-weight: 500;
}
.categories-toggle {
	display: none;
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.categories-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.categories-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.product-categories-menu:hover .categories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categories-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.categories-list li a:hover {
    background: #f8f9fa;
    color: var(--highlight);
}

.category-count {
    color: #999;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}


/* Paginacja sklepu */
.shop-pagination {
    margin: 40px 0;
    text-align: center;
}

.pagination-wrapper {
    display: inline-block;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.pagination-wrapper .page-numbers li {
    margin: 0;
    list-style: none;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Hover state */
.pagination-wrapper .page-numbers a:hover {
    background: #f8f9fa;
    border-color: #007cba;
    color: #007cba;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.15);
}

/* Aktywna strona */
.pagination-wrapper .page-numbers .current {
    background: #007cba;
    border-color: #007cba;
    color: #fff;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.25);
}

/* Poprzednia/Następna */
.pagination-wrapper .page-numbers .prev,
.pagination-wrapper .page-numbers .next {
    padding: 8px 16px;
    font-weight: 600;
}

.pagination-wrapper .page-numbers .prev:hover,
.pagination-wrapper .page-numbers .next:hover {
    background: #007cba;
    color: #fff;
    border-color: #007cba;
}

/* Dots (...) */
.pagination-wrapper .page-numbers .dots {
    background: transparent;
    border: none;
    color: #666;
    cursor: default;
}

.pagination-wrapper .page-numbers .dots:hover {
    background: transparent;
    border: none;
    color: #666;
    transform: none;
    box-shadow: none;
}

/* Responsywność */
@media (max-width: 768px) {
    .pagination-wrapper .page-numbers {
        gap: 4px;
    }
    
    .pagination-wrapper .page-numbers a,
    .pagination-wrapper .page-numbers span {
        min-width: 36px;
        height: 36px;
        padding: 6px 8px;
        font-size: 13px;
    }
    
    .pagination-wrapper .page-numbers .prev,
    .pagination-wrapper .page-numbers .next {
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .pagination-wrapper .page-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Ukryj niektóre numery na małych ekranach */
    .pagination-wrapper .page-numbers li:not(.prev):not(.next):not(.current):nth-child(n+6) {
        display: none;
    }
}
.woocommerce-no-products-found {
    margin: 5em 0;
    text-align: center;
}

/* Wariant z ciemnym motywem (opcjonalnie) */
.dark-theme .pagination-wrapper .page-numbers a,
.dark-theme .pagination-wrapper .page-numbers span {
    background: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

.dark-theme .pagination-wrapper .page-numbers a:hover {
    background: #3a3a3a;
    border-color: #007cba;
    color: #007cba;
}

.dark-theme .pagination-wrapper .page-numbers .current {
    background: #007cba;
    border-color: #007cba;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	body {
		font-size: 11px;
	}
	.container {
		padding: 0 10px;
	}
	
	.grouped-products-table .product-quantity input {
		width: 50px !important;
	}
	.shop_table .product-price {
		font-size: inherit;
	}
	.main-navigation ul {
		display: none;
		width: 100%;
		font-size: 18px;
	}
    .header-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .header-search {
		display: none;
        order: 3;
    }
    
    .header-actions {
        order: 2;
        justify-content: center;
    }
    
    .cart-dropdown {
        width: 300px;
        right: -50px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
	.product-title {
		font-size: 18px !important;
		line-height: 22px;
		display: block;
	}
	.product-images {
		flex: 1 !important;
	}
}

@media (max-width: 480px) {
    .cart-dropdown {
        width: 280px;
        right: -100px;
    }
    
    .mini-cart-actions {
        flex-direction: column;
    }
    
    .contact-info {
        gap: 0.5rem;
    }
}