/* ── WEEKLY CALENDAR ── */
.weekly-calendar {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 20px 16px 16px;
}

.calendar-week-label {
  font-size: 12px;
  color: var(--warm-gray);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

/* ── CALENDAR COLUMN ── */
.cal-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cal-day-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cal-day-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--near-black);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-col.today .cal-day-name { color: var(--red); }
.cal-col.today .cal-day-num  {
  background: var(--red);
  color: #fff;
}

/* ── VINE + TOMATOES ── */
.cal-vine-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 40px;
  width: 100%;
  padding: 4px 0;
}

.cal-vine {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #7DC266, #4A7C3F);
  transform: translateX(-50%);
  border-radius: 1px;
  opacity: 0.4;
}

.cal-tomato-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.cal-tomato {
  font-size: 14px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  transition: transform 0.2s;
}

.cal-tomato:hover { transform: scale(1.2); }

.cal-tomato-empty {
  width: 14px; height: 16px;
  border: 1.5px solid rgba(232, 53, 42, 0.25);
  border-radius: 50%;
  opacity: 0.5;
}

/* ── CALENDAR STATS ── */
.calendar-stats {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.cal-stat {
  flex: 1;
  text-align: center;
  background: var(--warm-white);
  border-radius: 10px;
  padding: 10px 8px;
}

.cal-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.cal-stat-label {
  font-size: 11px;
  color: var(--warm-gray);
  margin-top: 3px;
  line-height: 1.3;
}
