.product-page {
    padding: 50px 80px 80px;
    background: #fafafa;
    font-family: 'Montserrat', sans-serif;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


.product-title-section {
    text-align: center;
    padding: 100px 20px 40px;
    background: #fafafa;
}

.product-title-section h1 {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* FILTER BAR
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 60px;
}

.filter-left {
    display: flex;
    gap: 40px;
}

.filter-item {
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;
    cursor: pointer;
}

.filter-right {
    font-size: 14px;
    color: #666;
}

.filter-right span {
    color: #000;
    margin-left: 5px;
} */

.filter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -10px auto 50px;
    padding: 0 20px;
}

.filter-btn {
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid #0a4049;
    background: white;
    color: #0a4049;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover {
    background: #0a4049;
    color: white;
}

.filter-btn.active {
    background: #0a4049;
    color: white;
}

.category-section {
    margin-bottom: 60px;
    padding: 0 0px;
}

.category-heading {
    font-size: 24px;
    font-weight: 600;
    color: #0a4049;
    margin-bottom: 25px;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* PRODUCT CARD */
.product-card {
    background: #ffffff;
    padding: 15px;
    width: 90%;
    position: relative;
    border-radius: 5px;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-left: -10px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* BADGE */
.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    background: #111;
    color: #fff;
    border-radius: 30px;
}

/* PRODUCT INFO */
.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.designer {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.category {
    font-size: 14px;
    color: #777;
    letter-spacing: 0.5px;
}

.brand {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    margin-top: -10px;
}

.price-section {
    margin-bottom: 6px;
}

.price {
    font-size: 18px;
    font-weight: 600;
}

.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #888;
    margin-left: 6px;
}

.discount {
    font-size: 14px;
    color: #2e7d32;
    margin-left: 5px;
}

@media (min-width: 1024px) and (max-width: 1199px) {

    .product-page {
        padding: 50px 60px 80px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        max-width: 1000px;
    }

    .product-card img {
        height: 230px;
    }

    .product-title-section h1 {
        font-size: 38px;
    }

    .category-heading {
        font-size: 23px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    .product-page {
        padding: 20px 40px 60px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-title-section h1 {
        font-size: 36px;
    }

    .category-heading {
        font-size: 22px;
    }

    .product-card img {
        height: 200px;
    }
}

@media (max-width: 767px) {

    .product-page {
        padding: 0px 25px;
        margin-top: -40px;
    }

    .filter-bar {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .filter-left {
        flex-direction: column;
        gap: 15px;
    }

    .product-card{
        width: 80%;
        margin-left: 15px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    }

    .product-card img {
        height: 160px;
    }

    .filter-section {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .filter-btn {
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 14px;
    }
}