.products-page {
    min-height: 100vh;
    padding: 150px 0 100px;
    position: relative;
    z-index: 2;
}

.products-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.products-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.5));
}
.products-subcategoryTitle{
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.5));
}
.products-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.subcategories-section {
    margin-bottom: 80px;
}

.subcategories-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--honey-primary);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 20px;
}

.subcategories-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.subcategory-card {
    position: relative;
    height: 220px;
    max-width: 210px;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.subcategory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.subcategory-card:hover {
    transform: translateY(-10px);
    border-color: var(--honey-primary);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.3);
}

.subcategory-card:hover::before {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 184, 0, 0.2) 50%, rgba(10, 10, 15, 0.95) 100%);
}
.subcategories-section .no-image-icon{
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.subcategory-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.subcategory-card:hover .subcategory-image {
    transform: scale(1.1);
}

.subcategory-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 3;
}

.subcategory-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.subcategory-count {
    font-size: 13px;
    color: var(--honey-primary);
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 25px 30px;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    flex-wrap: wrap;
    z-index: 100 !important;
    position: relative;
}

.toolbar-left {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.toolbar-right {
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 101 !important;
    position: relative;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.2);
}

.filter-btn i {
    color: var(--honey-primary);
}

.search-box {
    position: relative;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--honey-primary);
    background: rgba(255, 184, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.6);
}

.search-box button i {
    color: var(--cyber-black);
    font-size: 14px;
}

.custom-sort-dropdown {
    position: relative;
    z-index: 200 !important;
    min-width: 250px;
}

.custom-sort-trigger {
    padding: 12px 45px 12px 20px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 200px;
    transition: all 0.3s ease;
    z-index: 201 !important;
    position: relative;
}

.custom-sort-trigger:hover {
    border-color: var(--honey-primary);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
}

.custom-sort-trigger::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--honey-primary);
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.custom-sort-trigger.active::after {
    transform: rotate(180deg);
}

.custom-sort-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 8px;
    background: var(--cyber-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.custom-sort-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-option {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10000 !important;
}

.sort-option:last-child {
    border-bottom: none;
}

.sort-option:hover {
    background: var(--glass-gold);
    color: var(--honey-primary);
    padding-left: 25px;
}

.sort-option.active {
    background: var(--gradient-gold);
    color: var(--cyber-black);
    font-weight: 600;
}

.sort-option.active::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
}

.view-toggle {
    display: flex;
    gap: 8px;
    background: var(--glass-white);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.view-btn {
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-btn:hover {
    color: var(--honey-primary);
    background: var(--glass-gold);
}

.view-btn.active {
    background: var(--gradient-gold);
    color: var(--cyber-black);
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.3);
}

.results-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.results-info span {
    color: var(--honey-primary);
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: calc(4 * 280px + 3 * 50px);
    margin-bottom: 80px;
    transition: all 0.5s ease;
    z-index: 1 !important;
    margin-left: auto;
    margin-right: auto;
    gap: 50px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 25px;
}
.product-card {
    width: 280px;
    position: relative;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--honey-primary);
    box-shadow: 0 30px 60px rgba(255, 184, 0, 0.15), 0 0 100px rgba(255, 184, 0, 0.1);
    z-index: 10;
}

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

.product-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(180deg, var(--cyber-light) 0%, var(--cyber-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image-wrapper a{
    height: 100%;
}
.product-badge {
    padding: 8px 18px;
    border-radius: 8px;
    z-index: 10;
}

.product-badge.novo {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.product-badge.trend {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
    animation: pulseBadge 2s ease-in-out infinite;
}

.product-badge.sold-out {
    background: linear-gradient(135deg, #666, #444);
    color: #fff;
}
.product-badge.pre-order{
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #FFF;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}
.no-products-message{
    text-align: center;
    padding: 50px;
    border-radius: 8px;
    margin-top: 30px;
}
.no-products-message i{
    font-size: 70px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
.no-products-message h2{
    font-size: 24px;
    margin-bottom: 10px;
}
.no-products-message p{
    font-size: 16px;
    color: #666666;
}
@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.products-grid a .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-image {
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 30px 50px rgba(255, 184, 0, 0.3));
}

.product-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.action-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.4);
}

.action-btn:hover::before {
    transform: translateY(0);
}

.action-btn i {
    font-size: 18px;
    color: var(--cyber-black);
    position: relative;
    z-index: 1;
}
.product-info-container{
    height: calc(100% - 280px);
}
.product-info {
    padding: 25px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    transition: transform 0.5s ease;
}

.product-card:hover .product-info::before {
    transform: translateX(-50%) scaleX(1);
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #fff;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--honey-primary);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}
.products-grid .product-short-description{
    display: none;
}

.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    height: auto;
    width: 100%;
}

.products-grid.list-view .product-card:hover {
    transform: translateX(5px);
}

.products-grid.list-view .product-image-wrapper {
    width: 280px;
    border-radius: 12px 0 0 12px;
    position: relative;
    overflow: hidden;
}

.products-grid.list-view .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products-grid.list-view .product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.products-grid.list-view .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.products-grid.list-view .product-actions .add-to-cart {
    display: none;
}


.products-grid.list-view .product-info {
    text-align: left;
}
.products-grid.list-view .product-short-description{
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    font-weight: 200;
    display: block;
}
.products-grid.list-view .product-title {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    line-height: 1.3;
}

.products-grid .list-add-to-cart-btn{
    display: none;
}
.products-grid.list-view .product-info::before{
    display: none;
}

.products-grid.list-view .product-info::after {
    display: none;
}

.products-grid.list-view .product-info::after:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}
.products-grid.list-view .action-btn:hover {
    transform: translateX(5px);
}
.products-grid .no-image-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--cyber-dark);
}

.products-grid.list-view .product-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 30px;
    position: relative;
}

.products-grid.list-view .list-add-to-cart-btn {
    position: absolute;
    bottom: 24px;
    right: 30px;
    padding: 14px 24px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: var(--cyber-black);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.products-grid.list-view .product-card:hover .list-add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.products-grid.list-view .list-add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}
.products-grid.list-view .product-card {
    grid-template-columns: 280px 1fr;
}

.products-grid.list-view .product-info-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 30px;
    position: relative;
    height: auto;
}
.products-grid.list-view .product-info-container a{
    height: auto;
    gap: 20px;
}
.products-grid.list-view .list-add-to-cart-btn {
    position: absolute;
    bottom: 24px;
    right: 30px;
    opacity: 0;
}

.products-grid.list-view .product-card:hover .list-add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.filter-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.filter-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.filter-sidebar {
    position: fixed;
    top: 0;
    left: -450px;
    width: 450px;
    height: 100%;
    background: linear-gradient(180deg, var(--cyber-dark) 0%, var(--cyber-black) 100%);
    border-right: 1px solid var(--glass-border);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
}

.filter-sidebar.active {
    left: 0;
}

.filter-header {
    padding: 30px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
}

.filter-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-header-title i {
    color: var(--honey-primary);
}

.filter-close-btn {
    width: 45px;
    height: 45px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.filter-close-btn:hover {
    background: var(--honey-primary);
    color: var(--cyber-black);
    transform: rotate(90deg);
    border-color: var(--honey-primary);
}

.filter-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.filter-content::-webkit-scrollbar {
    width: 8px;
}

.filter-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.filter-content::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 4px;
}

.filter-content::-webkit-scrollbar-thumb:hover {
    background: var(--honey-glow);
}

.filter-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.filter-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-section-title i {
    color: var(--honey-primary);
    font-size: 14px;
}

.price-range-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-input-group label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-input {
    width: 100%;
    padding: 12px 15px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.price-input:focus {
    outline: none;
    border-color: var(--honey-primary);
    background: rgba(255, 184, 0, 0.05);
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

.price-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.price-separator {
    margin-top: 26px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.price-slider-container {
    position: relative;
    height: 6px;
    margin: 20px 0;
}

.price-slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.price-slider-range {
    position: absolute;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
}

.price-slider {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--honey-primary);
    cursor: pointer;
    pointer-events: all;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.6);
    transition: all 0.3s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.8);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--honey-primary);
    cursor: pointer;
    pointer-events: all;
    border: none;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.6);
    transition: all 0.3s ease;
}

.price-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.8);
}

.quick-price-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-price-btn {
    padding: 12px 16px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-price-btn:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
    color: var(--honey-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.2);
}

.quick-price-btn.active {
    background: var(--gradient-gold);
    border-color: var(--honey-primary);
    color: var(--cyber-black);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.4);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 15px;
    background: var(--glass-white);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover {
    background: rgba(255, 184, 0, 0.05);
    border-color: rgba(255, 184, 0, 0.2);
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.filter-checkbox input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--gradient-gold);
    border-color: var(--honey-primary);
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
}

.filter-checkbox input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--cyber-black);
    font-size: 11px;
}

.checkbox-label {
    flex: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.checkbox-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.rating-star {
    font-size: 12px;
    color: var(--honey-primary);
    margin-right: 2px;
}

.filter-footer {
    padding: 0;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 15px;
}

.btn-reset-filters,
.btn-apply-filters {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-reset-filters {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.8);
}

.btn-reset-filters:hover {
    background: rgba(255, 51, 102, 0.1);
    border-color: #ff3366;
    color: #ff3366;
    transform: translateY(-2px);
}

.btn-apply-filters {
    background: var(--gradient-gold);
    color: var(--cyber-black);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.btn-apply-filters:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 184, 0, 0.5);
}

.kosnica-simple-page {
    padding: 180px 0 80px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
}


.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.diagram-wrapper {
    position: relative;
    margin: 0 auto 100px;
    padding: 100px 50px;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 40px;
    align-items: center;
}

.description-box {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 184, 0, 0.2);
    border-radius: 16px;
    padding: 30px 24px;
    backdrop-filter: blur(10px);
}

.description-left {
    grid-column: 1;
    align-self: start;
}

.description-right {
    grid-column: 3;
    align-self: start;
}

.description-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--honey-primary);
    margin-bottom: 16px;
}

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

.description-box li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.description-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--honey-primary);
    font-size: 1.1rem;
}

.description-box li strong {
    color: rgba(255, 255, 255, 0.95);
}

.center-container {
    grid-column: 2;
    position: relative;
}

.image-overlay-link {
    text-decoration: none;
    display: block;
}

.center-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    z-index: 10;
    cursor: pointer;
}

.center-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.7s ease;
}

.image-overlay-link:hover .center-image img {
    transform: scale(1.05);
}

.hover-overlay {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 23%;
    background: linear-gradient(135deg, rgba(255, 184, 0, 1), rgba(255, 201, 64, 1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    padding: 0 10px;
    transition: opacity 1s ease;
}

.image-overlay-link:hover .hover-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--cyber-black);
}

.overlay-content i {
    font-size: 30px;
    margin-bottom: 12px;
    display: block;
    animation: pointerBounce 1s ease-in-out infinite;
}

@keyframes pointerBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.overlay-content span {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diagram-label {
    position: absolute;
    text-decoration: none;
    z-index: 20;
    transition: all 0.3s ease;
}

.diagram-label:hover {
    transform: scale(1.05);
}

.label-box {
    display: block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--honey-primary), var(--honey-glow));
    color: var(--cyber-black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    border: 2px solid var(--honey-dark);
}

.diagram-label:hover .label-box {
    background: var(--honey-dark);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.6);
}

.label-top-right::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 30%;
    width: 150px;
    height: 2px;
    background: var(--honey-primary);
    transform-origin: left;
    transform: rotate(45deg);
}

.label-top-right::before {
    content: '';
    position: absolute;
    top: calc(100% + 105px);
    left: calc(30% + 102px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--honey-primary);
    transform: rotate(45deg);
}

.label-top-left::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 30%;
    width: 150px;
    height: 2px;
    background: var(--honey-primary);
    transform-origin: right;
    transform: rotate(-45deg);
}

.label-top-left::before {
    content: '';
    position: absolute;
    top: calc(100% + 105px);
    right: calc(30% + 102px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--honey-primary);
    transform: rotate(-45deg);
}

.label-bottom-left::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 30%;
    width: 150px;
    height: 2px;
    background: var(--honey-primary);
    transform-origin: right;
    transform: rotate(45deg);
}

.label-bottom-left::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 105px);
    right: calc(30% + 102px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--honey-primary);
    transform: rotate(45deg);
}

.label-bottom-right::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 30%;
    width: 150px;
    height: 2px;
    background: var(--honey-primary);
    transform-origin: left;
    transform: rotate(-45deg);
}

.label-bottom-right::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 105px);
    left: calc(30% + 102px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--honey-primary);
    transform: rotate(-45deg);
}

.label-middle-left::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 120px;
    height: 2px;
    background: var(--honey-primary);
    transform: translateY(-50%);
}

.label-middle-left::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 120px);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--honey-primary);
    transform: translateY(-50%);
}

.all-categories {
    margin-top: 100px;
}

.all-categories h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.all-categories .category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.all-categories .category-item:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--honey-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.2);
}

.all-categories .category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 12px;
    font-size: 28px;
    color: var(--honey-primary);
}

.all-categories .category-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
}

.all-categories .category-item .count {
    padding: 4px 12px;
    background: var(--honey-primary);
    color: var(--cyber-black);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

#categoriesFilterOptions .filter-checkbox {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#categoriesFilterOptions .filter-checkbox.hidden-category {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

#categoriesFilterOptions .filter-checkbox.visible-category {
    opacity: 1;
    display: flex;
}

#categoriesFilterOptions .filter-checkbox.show-with-delay-1 { transition-delay: 0.05s; }
#categoriesFilterOptions .filter-checkbox.show-with-delay-2 { transition-delay: 0.1s; }
#categoriesFilterOptions .filter-checkbox.show-with-delay-3 { transition-delay: 0.15s; }
#categoriesFilterOptions .filter-checkbox.show-with-delay-4 { transition-delay: 0.2s; }
#categoriesFilterOptions .filter-checkbox.show-with-delay-5 { transition-delay: 0.25s; }

.show-more-btn {
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 8px;
    color: var(--honey-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.show-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.show-more-btn:hover::before {
    left: 100%;
}

.show-more-btn:hover {
    background: rgba(255, 184, 0, 0.2);
    border-color: var(--honey-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.show-more-btn:active {
    transform: translateY(0);
}

.show-more-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.show-more-btn.hidden {
    display: none;
}

.show-more-btn {
    animation: pulse-subtle 3s infinite;
}

@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(255, 184, 0, 0);
    }
}

.show-more-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.show-more-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.filter-content {
    overflow-y: auto;
    scroll-behavior: smooth;
}
#categoriesFilterOptions {
    position: relative;
}

@media(max-width: 1400px){
    .products-grid{
        grid-template-columns: repeat(3, 1fr);
        max-width: calc(3 * 280px + 2 * 50px);
    }
}
@media(max-width: 1200px){
    .label-top-right{
        top: -3%!important;
        right: 58%!important;
    }
    .label-top-left{
        top: 0%!important;
        left: 65%!important;
    }
    .label-middle-left{
        top: 23%!important;
        left: 12%!important;
    }

    .label-bottom-left{
        bottom: 40%!important;
        left: 60%!important;
    }
    .diagram-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0px 20px;
    }


    .description-left,
    .description-right {
        grid-column: 1;
    }

    .center-container {
        grid-column: 1;
        order: -1;
    }
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .product-actions{
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    .products-grid.list-view .list-add-to-cart-btn{
        opacity: 1;
        transform: translateY(0);
    }
    .products-grid.list-view .product-actions{
        left: 50%;
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        flex-direction: row;
        display: flex;
        align-items: flex-end;
    }
    .products-grid.list-view .product-card{
        min-height: 350px;
    }
    .products-grid.list-view .product-image-wrapper {
        height: 100%;
    }
    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
}
@media (max-width: 1024px) {
    .products-grid.list-view .product-card {
        grid-template-columns: 280px 1fr;
    }

    .products-grid.list-view .product-image-wrapper {
        width: 280px;
    }

    .products-grid.list-view .product-info {
        padding: 20px 24px;
    }

    .products-grid.list-view .product-title {
        font-size: 18px;
    }

    .products-grid.list-view .product-price {
        font-size: 24px;
    }

    .products-grid.list-view .product-info::after {
        padding: 12px 20px;
        font-size: 14px;
        bottom: 20px;
        right: 24px;
    }
}
@media (max-width: 992px) {
    .products-grid{grid-template-columns: repeat(2, 1fr);
        max-width: calc(2 * 280px + 1 * 50px);

    }
}
@media (max-width: 768px) {
    .label-top-right{
        top: 4%!important;
        right: 58%!important;
    }
    .label-top-left{
        top: 6%!important;
        left: 65%!important;
    }
    .label-middle-left{
        top: 23%!important;
        left: 9%!important;
    }

    .label-bottom-left{
        bottom: 49%!important;
        left: 64%!important;
    }
    .filter-btn{
        display: flex;
        justify-content: center;
        width: 250px;
        margin: 0px auto;
    }
    .toolbar-left,
    .toolbar-right {
       flex-direction: column;
    }
    .search-box{
        min-width: 250px;
    }
    .products-grid.list-view .product-actions{
        left: 50%;
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        flex-direction: row;
        display: flex;
        align-items: flex-end;
        bottom: 0;
    }
    .products-grid{
        grid-template-columns: 1fr;
        max-width: 280px;
        gap: 20px;
    }
    .products-grid.list-view .product-card {
        grid-template-columns: 1fr;
    }

    .products-grid.list-view .product-image-wrapper {
        width: 100%;
        height: 250px;
        border-radius: 12px 12px 0 0;
    }

    .products-grid.list-view .product-info {
        padding: 20px;
    }

    .products-grid.list-view .product-info::after {
        content: '🛒 Dodaj';
        position: static;
        width: 100%;
        opacity: 1;
        transform: none;
        margin-top: 16px;
        justify-content: center;
    }
    .products-grid.list-view .product-info-container a{
        text-align: center;
    }
    .products-grid.list-view .list-add-to-cart-btn{
        margin: 0 auto;
        top: 0;
        bottom: 0;
        right: 0;
        transform: none;
        position: relative;
    }
    .show-more-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    #categoriesFilterOptions .filter-checkbox {
        transition-duration: 0.3s;
    }
    .filter-sidebar {
        width: 90%;
        max-width: 380px;
    }

    .filter-header {
        padding: 20px;
    }

    .filter-header-title {
        font-size: 20px;
    }

    .filter-content {
        padding: 20px;
    }

    .filter-footer {
        padding: 20px;
        flex-direction: column;
    }
    .diagram-wrapper {
        padding: 50px 20px;
    }

    .center-image {
        max-width: 300px;
    }

    .label-box {
        font-size: 12px;
        padding: 10px 16px;
    }

    .label-top-right::after,
    .label-top-left::after,
    .label-bottom-left::after,
    .label-bottom-right::after {
        width: 80px;
    }

    .label-middle-left::after {
        width: 60px;
    }

    .label-middle-left::before {
        left: calc(100% + 60px);
    }

    .label-top-right::before {
        top: calc(100% + 55px);
        left: calc(30% + 55px);
    }

    .label-top-left::before {
        top: calc(100% + 55px);
        right: calc(30% + 55px);
    }

    .label-bottom-left::before {
        bottom: calc(100% + 55px);
        right: calc(30% + 55px);
    }

    .label-bottom-right::before {
        bottom: calc(100% + 55px);
        left: calc(30% + 55px);
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
@media (max-width: 576px) {
    .label-top-right{
        top: 3%!important;
        right: 63%!important;
    }
    .label-top-left{
        top: 6%!important;
        left: 68%!important;
    }
    .label-middle-left{
        top: 23%!important;
        left: 3%!important;
    }

    .label-bottom-left{
        bottom: 53%!important;
        left: 68%!important;
    }
    .center-image {
        max-width: 250px;
    }

    .label-box {
        font-size: 10px;
        padding: 8px 12px;
    }
}
@media (max-width: 480px) {
    .filter-sidebar {
        width: 100%;
        max-width: none;
    }

    .quick-price-buttons {
        grid-template-columns: 1fr;
    }
}




