﻿
/* Grid categories */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 35px 25px;
    justify-content: center; /* centers the whole grid */
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .category:hover {
        transform: translateY(-6px);
    }

.circle {
    width: 120px; /* make it closer to your screenshot */
    height: 120px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.circle span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.circle:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.category span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left text */
.text-section h2 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
}

/* Stats block */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px; /* row gap, column gap */
    min-width: 300px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .stat span {
        font-size: 22px;
        font-weight: bold;
        color: #ff6600; /* Orange like in image */
        line-height: 1.2;
    }

    .stat small {
        font-size: 14px;
        color: #555;
    }

/* Bordered container and centering with transparent background */
.catlogborder {
    border: 2px solid #dddddd00; /* Add border */
    border-radius: 12px;
    padding: 30px;
    max-width: 1200px; /* Limit width */
    margin: 40px auto; /* Center horizontally with top/bottom spacing */
    background-color: transparent; /* Make background see-through */
}

