/**
 * ShopTech Category Grid Block - Frontend Styles
 * 
 * Styles for the frontend display
 *
 * @package ShopTech
 * @version 1.0.0
 */

/* Grid container */
.shoptech-category-grid {
    width: 100%;
    padding: 0 15px;
}

/* Section title */
.shoptech-category-grid__title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

/* Category card */
.shoptech-category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.shoptech-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Card with border style */
.shoptech-category-card.border {
    border-color: #e5e7eb;
}

.shoptech-category-card.border:hover {
    border-color: #2563EB;
}

/* Icon container */
.shoptech-category-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shoptech-category-card__icon img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.shoptech-category-card:hover .shoptech-category-card__icon img {
    transform: scale(1.05);
}

/* Default icon styling */
.shoptech-category-card__icon-default {
    transition: transform 0.3s ease;
}

.shoptech-category-card:hover .shoptech-category-card__icon-default {
    transform: scale(1.1);
}

/* Category name */
.shoptech-category-card__name {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.shoptech-category-card:hover .shoptech-category-card__name {
    color: #2563EB;
}

/* Product count */
.shoptech-category-card__count {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Browse button */
.shoptech-category-card .btn-outline-primary {
    transition: all 0.3s ease;
    font-weight: 500;
}

.shoptech-category-card .btn-outline-primary:hover {
    color: #ffffff !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .shoptech-category-grid__title {
        font-size: 1.5rem;
    }
    
    .shoptech-category-card {
        padding: 1rem !important;
    }
    
    .shoptech-category-card__name {
        font-size: 1rem;
    }
}

/* Animation for category cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shoptech-category-grid .row > div {
    animation: fadeInUp 0.5s ease forwards;
}

.shoptech-category-grid .row > div:nth-child(1) { animation-delay: 0.1s; }
.shoptech-category-grid .row > div:nth-child(2) { animation-delay: 0.2s; }
.shoptech-category-grid .row > div:nth-child(3) { animation-delay: 0.3s; }
.shoptech-category-grid .row > div:nth-child(4) { animation-delay: 0.4s; }
.shoptech-category-grid .row > div:nth-child(5) { animation-delay: 0.5s; }
.shoptech-category-grid .row > div:nth-child(6) { animation-delay: 0.6s; }
