/* Shop-specific styles */

.shop-header {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.shop-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.shop-header p {
    font-size: 1.1rem;
    color: #dcddde;
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Grid - Same as Dashboard Tools Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: #2f3136;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: 1px solid #202225;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #5865f2;
}

.category-card:hover {
    background: #36393f;
    border-color: #5865f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.2);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: #5865f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
    flex-shrink: 0;
}

.category-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.category-content p {
    color: #b9bbbe;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

.category-button {
    display: inline-block;
    background: #5865f2;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    align-self: flex-start;
    margin-top: auto;
}

.category-button:hover {
    background: #4752c4;
}

/* Animation for page load - Same as Dashboard */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }
.category-card:nth-child(7) { animation-delay: 0.7s; }
.category-card:nth-child(8) { animation-delay: 0.8s; }
.category-card:nth-child(9) { animation-delay: 0.9s; }
.category-card:nth-child(10) { animation-delay: 1.0s; }

/* Mobile responsive */
@media (max-width: 768px) {
    .shop-header h2 {
        font-size: 2rem;
    }
    
    .shop-header p {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 20px;
    }
}

/* Back to Shop Button */
.back-to-shop {
    text-align: center;
    margin-top: 40px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865f2;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-family: 'Inter', 'Whitney', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.back-button:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.back-button:active {
    background: #3c45a5;
    transform: translateY(0);
}

.back-button svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 480px) {
    .category-card {
        padding: 15px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-content h3 {
        font-size: 1.3rem;
    }
}
