.page {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
}

.bridcumb {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
    padding: 20px 40px;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.passlink {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.passlink h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.pass {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    flex-wrap: wrap;
}

.pass a {
    text-decoration: none;
    color: #0b7974;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pass a:hover {
    color: #05716c;
}

.pass i {
    font-size: 12px;
    color: #777;
}

.pass span#passlink {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.sortarea {
    display: flex;
    gap: 10px;
}

.sort {
    padding: 8px 16px;
    border-radius: 9999px;
}

.content {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    padding: 20px;
}

section {
    background: #fafafa;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    background-color: #e5e7eb;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.price-title,
.product p {
    padding: 16px;
}

.product h3,
.product p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product h3:hover,
.product p:hover {
    color: #0b7974;
    cursor: pointer;
}

.product span {
    color: chocolate;
}

.addToCard {
    margin: 16px;
    padding: 10px;
    background-color: #0b7974;
    border-radius: 9999px;
    text-align: center;
    cursor: pointer;
}

.addToCard button {
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
}

.addToWishList {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.addToWishList:hover {
    background-color: #f5f3f3;
    cursor: pointer;
}

.star-rating {
    color: #f5b301;
    margin: 8px 16px;
    font-size: 14px;
}

.star-rating span {
    color: #0a0a0a;
    font-size: 12px;
}

aside {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background-color: #fff;
    border-radius: 9999px;
    text-decoration: none;
    color: #111;
    transition: all 0.3s ease;
}


.category:hover {
    background-color: #0b7974;
    color: #fff;
    box-shadow: 0 8px 20px rgba(11, 121, 116, 0.35);
}


.category.activeCategory {
    background-color: #111;
    color: #fff;
}

.category .left {
    display: flex;
    align-items: center;
    gap: 10px;
}


.category .left img {
    width: 22px;
    height: 22px;
    padding: 4px;
    background-color: #eef6f6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category:hover .left img {
    background-color: #fff;
    transform: scale(1.1);
}

.category .left span:last-child {
    font-size: 14px;
    font-weight: 600;
    transition: letter-spacing 0.3s ease;
}


.category:hover .left span:last-child {
    letter-spacing: 0.5px;
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-price h3 {
    color: #0b7974;

}

#minRange,
#maxRange {
    width: 100%;
    height: 2rem;
    border-radius: 7px;
    border: 2px solid #0b7974;
    background-color: #eef6f6;
    padding: 10px;
    margin: 10px;
}

.reset input,
.filter-price #filter {
    background-color: #0b7974;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    margin-left: 150px;
}

.reset input:hover,
.filter-price #filter:hover {
    background-color: #05716c;
}

@media (max-width: 992px) {
    .content {
        grid-template-columns: 1fr;
    }

    aside {
        display: none;
    }
}

@media (max-width: 576px) {
    .bridcumb {
        padding: 16px;
    }
}