/* ===== Shop Hero ===== */
.shop-hero {
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 60%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.shop-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.shop-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e63946;
}

.shop-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===== Shop Toolbar ===== */
.shop-toolbar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.toolbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.showing-info {
    color: #6c757d;
    font-size: 1rem;
}

.showing-info span {
    font-weight: 700;
}

.toolbar-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-group {
    /* display: flex; */
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid #ced4da;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    background: white;
    min-width: 150px;
    transition: border 0.3s;
}

.filter-group select:hover,
.filter-group select:focus {
    border-color: #e63946;
}

/* ===== Products Grid ===== */
.products-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shodow-default);
    border-color: #e63946;
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-whatsapp {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    white-space: nowrap;
}

.product-card:hover .product-whatsapp {
    opacity: 1;
    bottom: 20px;
}

.product-whatsapp svg {
    fill: white;
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-category {
    color: #6c757d;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: #e63946;
}

.product-price {
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f3f5;
    padding: 5px 15px;
    border-radius: 30px;
}

.dollar-sign {
    background: #e63946;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination-number,
.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #dee2e6;
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination-number:hover,
.pagination-arrow:hover {
    background: #e63946;
    border-color: #e63946;
    color: white;
}

.pagination-number.active {
    background: #e63946;
    border-color: #e63946;
    color: white;
}

.pagination-arrow svg {
    stroke: currentColor;
}

/* ===== Featured Categories ===== */
.featured-categories {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #212529;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e63946;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: block;
    text-decoration: none;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}
/* ===== Urgent Section ===== */
.urgent-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);

    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 20px;
}

.urgent-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.urgent-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.urgent-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.urgent-btn:hover {
    background: transparent;
    border-color: #e63946;
    color: #e63946;
    transform: translateY(-2px);
}


/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
    .home-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .home-contact-form,
    .home-faq {
        padding: 30px;
    }
    
    .form-heading {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    
    .urgent-section {
        padding: 30px 20px;
    }
    
    .urgent-title {
        font-size: 1.6rem;
    }
    
    .urgent-text {
        font-size: 1rem;
    }
    
    .urgent-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ===== No Products ===== */
.no-products {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.no-products h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.no-products p {
    color: #6c757d;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shop-hero-title {
        font-size: 2.2rem;
    }
    .toolbar-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .toolbar-right {
        width: 100%;
        flex-direction: column;
    }
    .filter-group {
        width: 100%;
    }
    .filter-group select {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 50px;
    }
}

@media (max-width: 576px) {
    .shop-hero {
        padding: 50px 15px;
    }
    .pagination {
        gap: 5px;
    }
    .pagination-number,
    .pagination-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}