/* ===== Variables & reset ===== */
:root {
  --bg: #F9F6F1;
  --accent: #7B2D3E;
  --text: #1A1A1A;
  --text-muted: #5a5a5a;
  --card-bg: #ffffff;
  --shadow: 0 2px 12px rgba(26, 26, 26, 0.08);
  --radius: 10px;
  --sidebar-width: 280px;

  --color-rouge: #8B1A1A;
  --color-blanc-sec: #F5E6A3;
  --color-rose: #F4A7A0;
  --color-petillant-blanc: #D4EAF7;
  --color-petillant-rose: #F9C9D4;
  --color-blanc-liquoreux: #F0D060;

  --warning-bg: #fff3e0;
  --warning-border: #e65100;
  --readonly-bg: #f0eeeb;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Bandeau client ===== */
.client-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.client-banner[hidden] {
  display: none;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  padding: 0.75rem 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
}

.search-wrap {
  flex: 1;
  position: relative;
}

.search-wrap input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: var(--radius);
  background: var(--card-bg);
  font-size: 0.95rem;
  color: var(--text);
}

.search-wrap input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.5;
  pointer-events: none;
}

.btn-filters {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  background: var(--card-bg);
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.btn-filters .filter-count {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 99px;
  min-width: 1.2rem;
  text-align: center;
}

.btn-filters .filter-count:empty,
.btn-filters .filter-count[data-count="0"] {
  display: none;
}

.btn-cart {
  position: relative;
  padding: 0.6rem;
  font-size: 1.4rem;
  line-height: 1;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge[hidden] {
  display: none;
}

/* ===== Layout ===== */
.layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  gap: 1.5rem;
}

/* ===== Facettes sidebar ===== */
.facets-panel {
  width: var(--sidebar-width);
  flex-shrink: 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  height: fit-content;
  position: sticky;
  top: 5rem;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
}

.facets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.facets-header h2 {
  font-size: 1rem;
  font-weight: 600;
}

.btn-clear-filters {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: underline;
}

.facet-group {
  margin-bottom: 1.25rem;
}

.facet-group h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.facet-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.facet-options.scrollable {
  max-height: 160px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.facet-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.15rem 0;
}

.facet-label input[type="checkbox"] {
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Mobile drawer */
.facets-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
  z-index: 200;
}

.facets-overlay.open {
  display: block;
}

.facets-close {
  display: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
}

@media (max-width: 1199px) {
  .facets-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 210;
    width: min(320px, 90vw);
    max-height: 100vh;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .facets-panel.open {
    transform: translateX(0);
  }

  .facets-close {
    display: block;
  }

  .btn-filters {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .btn-filters {
    display: none;
  }

  .facets-overlay {
    display: none !important;
  }
}

/* ===== Main content ===== */
.catalog-main {
  flex: 1;
  min-width: 0;
}

.results-count {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.wine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .wine-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .wine-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.no-results[hidden] {
  display: none;
}

.facet-label.facet-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.facet-price .price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.facet-price .price-range-sliders {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.facet-price input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

/* ===== Wine card ===== */
.wine-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto;
  gap: 0 0.85rem;
  align-items: start;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.wine-card:hover {
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.12);
  transform: translateY(-1px);
}

.wine-card-image {
  grid-row: 1 / -1;
  grid-column: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  padding: 0;
}

.wine-bottle-img {
  height: 130px;
  width: 56px;
  max-width: 100%;
  object-fit: contain;
  object-position: top center;
  background: transparent;
}

.wine-card-content {
  grid-column: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wine-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.color-dot[data-color="Rouge"] { background: var(--color-rouge); }
.color-dot[data-color="Blanc sec"] { background: var(--color-blanc-sec); }
.color-dot[data-color="Rosé"] { background: var(--color-rose); }
.color-dot[data-color="Pétillant blanc"] { background: var(--color-petillant-blanc); }
.color-dot[data-color="Pétillant rosé"] { background: var(--color-petillant-rose); }
.color-dot[data-color="Blanc liquoreux"] { background: var(--color-blanc-liquoreux); }

.wine-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.wine-name-text {
  min-width: 0;
}

.wine-millesime-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.12rem 0.4rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  background: var(--bg);
  flex-shrink: 0;
  line-height: 1.2;
}

.badge-bio {
  font-size: 0.65rem;
  font-weight: 600;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  white-space: nowrap;
}

.wine-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.wine-flaconnage {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.wine-cepage {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.tag-pill {
  font-size: 0.68rem;
  background: var(--bg);
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
}

.tag-accord {
  font-size: 0.75rem;
  background: var(--bg);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.wine-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
  flex-wrap: wrap;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.wine-price-ht {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.wine-price-ht small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.wine-price-pvc {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

.btn-add-cart {
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-add-cart:hover {
  background: #5e2230;
}

/* ===== Modal détail ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 8px 40px rgba(26, 26, 26, 0.2);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1;
}

.modal-wine-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-wine-header .wine-bottle-img,
.modal-bottle {
  height: 180px;
  width: 72px;
  flex-shrink: 0;
}

.modal-wine-info h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.modal-section {
  margin-top: 1rem;
}

.modal-section h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.modal-section p,
.modal-section ul {
  font-size: 0.9rem;
}

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.modal-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===== Drawer panier ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
  z-index: 400;
}

.cart-overlay[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100vw);
  background: var(--card-bg);
  z-index: 410;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(26, 26, 26, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.cart-drawer-header h2 {
  font-size: 1.1rem;
}

.cart-close {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 6px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.qty-value {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
}

.btn-remove-item {
  font-size: 0.75rem;
  color: var(--accent);
  margin-left: auto;
}

.cart-item-subtotal {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.cart-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.btn-checkout {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== Formulaire commande ===== */
.order-form-view[hidden],
.cart-list-view[hidden] {
  display: none;
}

.order-warning {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-size: 0.8rem;
  color: #bf360c;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.form-group input[readonly],
.form-group input.readonly-field {
  background: var(--readonly-bg);
  color: var(--text-muted);
  cursor: not-allowed;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-back-cart {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-decoration: underline;
}

.btn-submit-order {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.order-confirmation {
  text-align: center;
  padding: 2rem 1rem;
}

.order-confirmation .confirm-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.order-confirmation h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.order-confirmation p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.order-confirmation-view[hidden] {
  display: none;
}

/* ===== Sommelier IA chat ===== */
body.cart-open .sommelier-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
}

.sommelier-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(123, 45, 62, 0.45);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s, visibility 0.2s;
}

.sommelier-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123, 45, 62, 0.5);
}

.sommelier-fab-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.sommelier-fab-label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .sommelier-fab-label {
    display: none;
  }

  .sommelier-fab {
    padding: 0.85rem;
    border-radius: 50%;
    width: 3.25rem;
    height: 3.25rem;
    justify-content: center;
  }
}

.sommelier-panel {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  z-index: 510;
  width: min(400px, calc(100vw - 2rem));
  height: min(520px, calc(100vh - 7rem));
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(26, 26, 26, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
}

.sommelier-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sommelier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  background: linear-gradient(135deg, var(--accent) 0%, #5e2230 100%);
  color: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
}

.sommelier-header-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sommelier-header h2 {
  font-size: 1rem;
  font-weight: 600;
}

.sommelier-magic {
  font-size: 1.25rem;
}

.sommelier-close {
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}

.sommelier-close:hover {
  color: #fff;
}

.sommelier-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg);
}

.chat-msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  max-width: 100%;
}

.chat-msg-user {
  flex-direction: row-reverse;
}

.chat-msg-avatar {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 1.75rem;
  text-align: center;
}

.chat-msg-bubble {
  max-width: 85%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.chat-msg-user .chat-msg-bubble {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-msg-assistant .chat-msg-bubble {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow);
}

.chat-msg-text p {
  margin: 0 0 0.5rem;
}

.chat-msg-text p:last-child {
  margin-bottom: 0;
}

.chat-md-list {
  margin: 0.35rem 0 0.5rem;
  padding-left: 1.2rem;
}

.chat-md-list li {
  margin-bottom: 0.35rem;
  display: list-item;
}

.chat-md-list li:last-child {
  margin-bottom: 0;
}

.chat-msg-text strong {
  font-weight: 600;
}

.chat-msg-text .chat-wine-link {
  font-weight: inherit;
}

.chat-cursor {
  animation: chat-blink 1s step-end infinite;
  color: var(--accent);
  font-weight: 700;
}

@keyframes chat-blink {
  50% { opacity: 0; }
}

.chat-wine-link {
  display: inline;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: var(--accent);
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  vertical-align: baseline;
  white-space: normal;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.chat-wine-link:hover {
  color: #5e2230;
  text-decoration-thickness: 2px;
}

.sommelier-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  background: var(--card-bg);
  border-radius: 0 0 var(--radius) var(--radius);
}

.sommelier-form input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.sommelier-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.sommelier-send {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sommelier-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
