:root {
    --coffee-brown: #6f4e37;
    --cream: #f8f5f2;
    --accent-gold: #c5a880;
    --card-shadow: 0 6px 24px rgba(111, 78, 55, 0.10);
  }
  body {
    font-family: 'Open Sans', sans-serif;
    background: var(--cream);
    padding-top: 80px;
  }
  .brand-name {
    font-family: 'Playfair Display', serif;
    color: var(--coffee-brown) !important;
    font-size: 2rem;
    letter-spacing: 2px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--coffee-brown);
    margin-top: 4rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  .section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto 0 auto;
    border-radius: 2px;
  }
  .coffee-card {
    border: none;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
  }
  .coffee-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 12px 32px rgba(111, 78, 55, 0.16);
    z-index: 2;
  }
  .best-seller {
    border: 2.5px solid var(--accent-gold);
    box-shadow: 0 0 0 2px #fff, var(--card-shadow);
  }
  .best-seller-badge {
    position: absolute;
    top: 18px;
    right: -34px;
    background: var(--accent-gold);
    color: #fff;
    padding: 7px 36px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.12);
    z-index: 2;
    border-radius: 6px;
  }
  .card-img-top {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    background: #f3e9e2;
    border-bottom: 1px solid #f0e6dd;
  }
  .card-title {
    font-family: 'Playfair Display', serif;
    color: var(--coffee-brown);
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .card-text {
    min-height: 56px;
    color: #4d3a25;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .menu-item-price {
    color: var(--coffee-brown);
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .btn-coffee {
    background: linear-gradient(90deg, var(--coffee-brown) 60%, var(--accent-gold) 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.3rem;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(111, 78, 55, 0.08);
  }
  .btn-coffee:hover, .btn-coffee:focus {
    background: linear-gradient(90deg, var(--accent-gold) 60%, var(--coffee-brown) 100%);
    color: #fff;
    transform: scale(1.07);
  }
  .cart-section {
    position: fixed;
    right: 24px;
    top: 92px;
    width: 340px;
    background: #fff;
    padding: 24px 20px 20px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(111, 78, 55, 0.13);
    z-index: 1000;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
  }
  .cart-section h4 {
    color: var(--coffee-brown);
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px;
  }
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 1rem;
  }
  .cart-item small {
    color: #6f4e37b8;
    font-size: 0.97em;
  }
  .cart-badge {
    background: var(--accent-gold);
    color: #fff;
    padding: 3px 10px;
    border-radius: 50%;
    font-size: 0.97em;
    margin-left: 8px;
    font-weight: bold;
  }
  .quantity-controls {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .quantity-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 0;
    background: #f8f5f2;
    color: var(--coffee-brown);
    border: 1.5px solid var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.2s;
  }
  .quantity-btn:hover {
    background: var(--accent-gold);
    color: #fff;
  }
  @media (max-width: 991px) {
    .cart-section {
      position: fixed;
      left: 0;
      right: 0;
      top: auto;
      bottom: 0;
      width: 100%;
      max-width: 100vw;
      border-radius: 20px 20px 0 0;
      box-shadow: 0 -8px 32px rgba(111, 78, 55, 0.13);
    }
  }
  .toast-body.bg-coffee {
    background: var(--coffee-brown);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }