.farm-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 350px;
}

.cell {
    aspect-ratio: 1/1;
    background: var(--cell-empty);
    border: 1px solid var(--cell-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Грядка (Bed) */
.cell.bed {
    background: var(--cell-bed);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), inset 0 2px 5px rgba(255,255,255,0.1);
}

/* Эффект нажатия */
.cell:active {
    transform: scale(0.92);
    filter: brightness(1.2);
}

.plant-icon {
    font-size: 40px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Прогресс-бар роста внутри клетки */
.growth-bar {
    position: absolute;
    bottom: 12px;
    width: 70%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.growth-progress {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    transition: width 0.3s ease;
}