#shop-header{
    background-image: url('../assets/images/banner.png');
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#shop-header h2,
#shop-header p{
    color: #fff;
}

#shop-controls{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box{
    position: relative;
    flex: 1;
    min-width: 260px;
}

.search-box input{
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    transition: 0.3s ease;
    background: #fff;
}

.search-box input:focus{
    border-color: #088178;
    box-shadow: 0 0 0 4px rgba(8,129,120,0.1);
}

.search-box i{
    position: absolute;
    right: 18px;
    top: 16px;
    color: #777;
}

.filter-buttons{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn{
    border: none;
    padding: 12px 18px;
    background: #f1f1f1;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover,
.active-filter{
    background: #088178;
    color: #fff;
    transform: translateY(-2px);
}

.sort-box select{
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
    background: #fff;
}

.sort-box select:focus{
    border-color: #088178;
    box-shadow: 0 0 0 4px rgba(8,129,120,0.1);
}

/* Pagination */
#pagination {
    margin: 30px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pagination-btn {
    border: none;
    background-color: #088178;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(8, 129, 120, 0.15);
}

.pagination-btn:hover:not(:disabled) {
    background-color: #066d66;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background-color: #d5e5e3;
    color: #5f5f5f;
    cursor: not-allowed;
    box-shadow: none;
}

.pagination-info {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    padding: 0 6px;
}

.product-card-actions{
    position: absolute;
    bottom: 18px;
    right: 15px;
    display: flex;
    gap: 12px;
}

.product-card-actions a{
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: #e8f6ea;
    color: #088178;
    text-align: center;
    font-size: 18px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card-actions a:hover{
    background: #088178;
    color: #fff;
}

.stock-info{
    margin-top: 8px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.out-stock-btn{
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    background: #ddd;
    color: #555;
    border-radius: 8px;
    cursor: not-allowed;
    font-weight: 600;
}

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

@media (max-width: 1024px){

    #shop-controls{
        flex-direction: column;
        align-items: stretch;
    }

    #shop-products .pro{
        width: 100%;
    }

    #shop-products .pro img{
        height: 260px;
    }
}

.shop-controls{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

#product-search{
    flex: 1;
    min-width: 250px;
    padding: 14px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

#product-search:focus{
    border-color: #088178;
}

#product-sort{
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    cursor: pointer;
    outline: none;
}

@media(max-width:1024px){

    .shop-controls{
        flex-direction: column;
        align-items: stretch;
    }

}

#featured-products,
#new-arrivals-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

@media(max-width:1024px){

    #featured-products,
    #new-arrivals-container{
        justify-content: center;
    }

    #shop-products .pro{
        width: 100%;
        max-width: 320px;
    }
}

#featured-products,
#new-arrivals-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: stretch;
}

@media(max-width:1024px){

    #featured-products,
    #new-arrivals-container{
        justify-content: center;
    }
}
.empty-state-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.empty-state-icon {
    font-size: 60px;
    margin-bottom: 16px;
}

.empty-state-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.empty-state-message {
    font-size: 15px;
    color: #777;
    margin-bottom: 24px;
}

.retry-btn {
    background-color: #088178;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.retry-btn:hover {
    background-color: #065f5a;
}