.section-title {
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

.animated-cracker-divider {
    width: 150px;
    height: 4px;
    background: rgba(255, 186, 0, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.animated-cracker-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: cracker-shoot 2.5s infinite ease-in-out;
}

.animated-cracker-divider .spark {
    position: absolute;
    top: -2px;
    left: -10px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 4px var(--gold), 0 0 20px 8px #fffc00;
    animation: spark-fly 2.5s infinite ease-in-out;
    opacity: 0;
}

@keyframes cracker-shoot {
    0% {
        left: -100%;
    }
    40%, 100% {
        left: 100%;
    }
}

@keyframes spark-fly {
    0% {
        left: -10px;
        opacity: 1;
        transform: scale(1);
    }
    35% {
        left: 140px;
        opacity: 1;
        transform: scale(1.5);
    }
    40%, 100% {
        left: 150px;
        opacity: 0;
        transform: scale(0);
    }
}



/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background: #f8f9fa;
    color: var(--navy-dark);
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(255, 186, 0, 0.1);
    color: var(--gold-warm);
    border-color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.3);
}

.btn-download-pdf {
    padding: 10px 25px;
    border-radius: 50px;
    background: #dc3545;
    color: #fff;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-download-pdf:hover {
    background: #b02a37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Product Grid Adjustments */
.products-page-section {
    padding: 50px 0 100px;
    background-color: #ffffff;
}

.product-item {
    transition: all 0.4s ease;
}

.product-item.hide {
    display: none;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(4, 54, 104, 0.1);
}

.product-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #f4f6f9;
    padding: 5px;
    border: 3px solid #f4f6f9;
    transition: all 0.5s ease;
}

.product-card:hover .product-img {
    border-color: var(--gold);
    animation: spinRotate 1.5s ease-out forwards;
}

@keyframes spinRotate {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.05) rotate(360deg);
    }
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-category {
    font-family: 'Poppins', sans-serif;
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--gold-warm);
    font-size: 1.3rem;
}

.btn-add-cart {
    background: transparent;
    border: 2px solid var(--navy-mid);
    color: var(--navy-mid);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.product-card:hover .btn-add-cart {
    background: var(--navy-mid);
    color: var(--white);
}
