﻿/* ============================================================
   PAGE LAYOUTS  —  create, tastings, cellar, explore
   ============================================================ */

/* ── Create page ── */
.create-page {
    width: 100%;
}

.create-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 1rem;
    align-items: start;
}

.create-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Tastings page ── */
.tastings-page {
    width: 100%;
}

.tastings-section {
    margin-bottom: 2rem;
}

.tastings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.85rem;
}

/* ── Explore section ── */
.explore-section {
    margin-bottom: 0.5rem;
}

/* ── Cellar page misc ── */
.new-cellar-form {
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.new-cellar-input {
    width: 100%;
    padding: 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: none;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
