/* Editable Categories Block */
.wp-block-peptidewebmd-editable-categories {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    padding: 80px 0;
}

.editable-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .editable-categories-container {
        padding: 0;
    }
}

.editable-categories-header {
    text-align: center;
    margin-bottom: 50px;
}

.editable-categories-header h2 {
    font-size: 36px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.editable-categories-header p {
    font-size: 15px;
    color: #666;
    font-weight: 300;
}

.editable-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.editable-category-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.editable-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.1);
    border-color: #e8f3ed;
}

.editable-category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8f3ed;
    transition: all 0.3s ease;
    overflow: hidden;
}

.editable-category-card:hover .editable-category-icon {
    background: #028476;
    border-color: #028476;
    transform: scale(1.05);
}

.editable-category-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.editable-category-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.editable-category-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .editable-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .editable-categories-grid {
        grid-template-columns: 1fr;
    }

    .editable-categories-header h2 {
        font-size: 28px;
    }
}
