.glass-nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.g-footer-nav-underline {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.g-footer-nav-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    opacity: 0.3;
}

/* Product Reveal Animation */
.product-card {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Hover effects */
.image-zoom-container img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .image-zoom-container img {
    transform: scale(1.1);
}

.product-card {
    transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
}

/* Dual Thumbnail Hover Effect */
.gadimat-cat-thumbs,
.gadimat-product-thumbs {
    position: relative;
    overflow: hidden;
}

.gadimat-cat-thumb-front,
.gadimat-cat-thumb-back,
.gadimat-thumb-front,
.gadimat-thumb-back {
    position: absolute;
    inset: 0;
    transition: opacity 0.5s ease-in-out;
}

.gadimat-cat-thumb-front img,
.gadimat-cat-thumb-back img,
.gadimat-thumb-front img,
.gadimat-thumb-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gadimat-cat-thumb-back,
.gadimat-thumb-back {
    opacity: 0;
}

.product-card:hover .gadimat-cat-thumb-back,
.product-card:hover .gadimat-thumb-back {
    opacity: 1;
}

.product-card:hover .gadimat-cat-thumb-front,
.product-card:hover .gadimat-thumb-front {
    opacity: 0;
}

/* Category Card Styling */
.category-card {
    /* background: linear-gradient(135deg, rgba(var(--color-primary-rgb, 199, 69, 46), 0.05) 0%, white 100%); */
}

.category-card:hover {
    box-shadow: 0 30px 60px -12px rgba(var(--color-primary-rgb), 0.15);
}

/* Category Section */
.category-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination Styling */
#pagination ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

#pagination ul li a,
#pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

#pagination ul li a:hover {
    background: var(--color-primary, #C7452E);
    color: white;
}

#pagination ul li span.current {
    background: var(--color-primary, #C7452E);
    color: white;
}

#pagination ul li .prev,
#pagination ul li .next {
    background: transparent;
}

#pagination ul li .prev:hover,
#pagination ul li .next:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-primary, #C7452E);
}

/* Filter Sidebar Categories */
.filter-category-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.filter-category-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
}

.filter-category-content:not(.hidden) {
    max-height: 3000px;
    opacity: 1;
}


#product-grid h3 {
    padding-top: 10px;

}

#product-grid {
    gap: 8px
}