.product-featured-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #ead9b5;
  color: #443820;
  font-size: 0.75rem;
  font-weight: 700;
}
.featured-products-section {
  grid-column: 1 / -1;
  margin-bottom: 2.5rem;
  scroll-margin-top: 6rem;
}
.featured-products-heading {
  margin: 0 0 1rem;
  color: var(--primary-color);
  font-size: 1.35rem;
}
.products-grid-in-group > .product-card[data-featured="true"] {
  grid-column: 1 / -1;
  border: 1px solid #c7b18a;
}
@media (min-width: 769px) {
  .products-grid:not(.list-view) .product-card[data-featured="true"] {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 1fr);
    gap: 1rem 2rem;
    text-align: left;
    align-items: start;
  }
  .products-grid:not(.list-view) .product-card[data-featured="true"] .product-actions {
    grid-column: 1 / -1;
  }
  .products-grid:not(.list-view) .product-card[data-featured="true"] .product-image-wrapper {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 3 / 4;
    justify-self: center;
    margin: 0;
  }
  .products-grid:not(.list-view) .product-card[data-featured="true"] p {
    text-align: left;
  }
}
.products-grid {
          margin-top: 1.5rem;
        }
        .product-category-group {
          margin-bottom: 2rem;
        }
        .product-category-heading {
          font-size: 1.25rem;
          color: var(--primary-color);
          margin-bottom: 1rem;
          padding-bottom: 0.5rem;
          border-bottom: 2px solid var(--border-color, #e0e0e0);
        }
        .products-grid-in-group {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 1.5rem;
        }
        @media (max-width: 768px) {
          .products-grid-in-group {
            grid-template-columns: 1fr;
          }
        }
        .product-card {
          background: white;
          border-radius: 12px;
          padding: 1.5rem;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover {
          transform: translateY(-4px);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }
        .product-card h3 {
          margin-bottom: 0.5rem;
          color: var(--primary-color);
        }
        .product-card .price {
          font-size: 1.5rem;
          font-weight: 700;
          color: var(--secondary-color);
          margin: 0.5rem 0;
        }
        .product-card .quantity {
          color: var(--text-light);
          margin-bottom: 1rem;
        }
        .product-actions {
          display: flex;
          gap: 0.5rem;
          margin-top: 1rem;
        }
        .product-actions .btn {
          flex: 1;
          padding: 0.75rem;
          font-size: 0.9rem;
        }
        .cart-button {
          position: fixed;
          bottom: 2rem;
          right: 2rem;
          background: var(--secondary-color);
          color: white;
          border: none;
          border-radius: 30px;
          min-width: 60px;
          height: 60px;
          font-size: 1.5rem;
          cursor: pointer;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
          z-index: 999;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.35rem;
          padding: 0 0.75rem;
          transition: transform 0.3s ease;
        }
        .cart-button:hover {
          transform: scale(1.1);
        }
        .cart-button-icon-wrap {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .cart-badge {
          position: absolute;
          top: -5px;
          right: -5px;
          background: var(--primary-color);
          color: white;
          border-radius: 50%;
          width: 24px;
          height: 24px;
          font-size: 0.75rem;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 700;
        }
        .cart-button-total {
          font-size: 0.9rem;
          font-weight: 700;
          white-space: nowrap;
        }
        .reservation-cart {
          position: fixed;
          bottom: 2rem;
          right: 2rem;
          left: auto;
          width: min(420px, calc(100% - 2.5rem));
          background: white;
          border-radius: 12px;
          padding: 1.5rem;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
          max-width: 450px;
          max-height: 75vh;
          display: none;
          flex-direction: column;
          z-index: 1000;
        }
        .reservation-cart.active {
          display: flex;
        }
        .reservation-cart.collapsed {
          padding-bottom: 1rem;
          max-height: none;
        }
        .cart-header {
          flex-shrink: 0;
          display: flex;
          align-items: flex-start;
          justify-content: space-between;
          margin-bottom: 0.5rem;
          padding-bottom: 0.5rem;
          padding-right: 40px;
          border-bottom: 2px solid var(--border-color);
          position: relative;
        }
        .cart-header-actions {
          position: absolute;
          top: 0;
          right: 0;
          display: flex;
          gap: 0.5rem;
          align-items: center;
        }
        .cart-header-title-row {
          display: flex;
          align-items: center;
          gap: 0.75rem;
          flex-wrap: nowrap;
          min-width: 0;
          flex: 1;
        }
        .cart-header-title-row h3 {
          flex-shrink: 1;
          min-width: 0;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }
        .cart-header-title-row .cart-garden-preview-btn {
          flex-shrink: 0;
          padding: 0.5rem 0.75rem;
          font-size: 0.9rem;
          background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
          border: 2px solid #2e7d32;
          border-radius: 8px;
          color: #1b5e20;
          font-size: 1rem;
          font-weight: 600;
          box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
          cursor: pointer;
          white-space: nowrap;
        }
        .cart-header-title-row .cart-garden-preview-btn:hover {
          background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
          border-color: #1b5e20;
          color: #1b5e20;
        }
        .cart-header h3 {
          margin: 0;
          color: var(--primary-color);
        }
        .cart-toggle {
          border: 1px solid var(--border-color);
          background: var(--bg-alt);
          color: var(--text-color);
          padding: 0.35rem 0.65rem;
          border-radius: 8px;
          font-weight: 600;
          cursor: pointer;
        }
        .cart-close {
          background: none;
          border: none;
          font-size: 2rem;
          cursor: pointer;
          color: var(--text-light);
          line-height: 1;
          padding: 0;
          width: 32px;
          height: 32px;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .cart-close:hover {
          color: var(--primary-color);
        }
        .cart-peek {
          flex-shrink: 0;
          display: none;
          justify-content: space-between;
          align-items: center;
          padding: 0 0 0.75rem;
          font-weight: 600;
          color: var(--primary-color);
          gap: 0.5rem;
        }
        .cart-body {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          flex: 1;
          min-height: 0;
          overflow-y: auto;
          -webkit-overflow-scrolling: touch;
        }
        .reservation-cart.collapsed .cart-body {
          display: none;
        }
        .reservation-cart.collapsed .cart-actions {
          display: none;
        }
        .reservation-cart.collapsed .cart-peek {
          display: flex;
        }
        .cart-items {
          margin-bottom: 0.5rem;
        }
        .cart-item {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0.5rem 0;
          border-bottom: 1px solid var(--border-color);
        }
        .cart-item:last-child {
          border-bottom: none;
        }
        .cart-item-info {
          flex: 1;
          min-width: 0;
        }
        .cart-item-right {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          flex-shrink: 0;
        }
        .cart-item-info strong {
          display: block;
          margin-bottom: 0.25rem;
          color: var(--primary-color);
        }
        .cart-item-details {
          display: flex;
          align-items: center;
          gap: 1rem;
          font-size: 0.9rem;
          color: var(--text-light);
          flex-wrap: wrap;
        }
        .cart-price-edit-label {
          margin: 0;
          font-size: 0.9rem;
          white-space: nowrap;
        }
        .cart-item-price-input {
          width: 80px;
          padding: 0.35rem 0.5rem;
          border: 1px solid var(--border-color);
          border-radius: 4px;
          font-size: 0.9rem;
        }
        .cart-item-subtotal {
          font-weight: 600;
          color: var(--primary-color);
          margin-left: auto;
        }
        .quantity-controls {
          display: flex;
          align-items: center;
          gap: 0.5rem;
        }
        .qty-btn {
          background: var(--bg-alt);
          border: 1px solid var(--border-color);
          border-radius: 4px;
          width: 28px;
          height: 28px;
          cursor: pointer;
          font-size: 1rem;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .qty-btn:hover:not(:disabled) {
          background: var(--secondary-color);
          color: white;
        }
        .qty-btn:disabled {
          opacity: 0.5;
          cursor: not-allowed;
        }
        .qty-value {
          min-width: 30px;
          text-align: center;
          font-weight: 600;
        }
        .btn-remove {
          background: none;
          border: none;
          font-size: 1.5rem;
          cursor: pointer;
          color: var(--text-light);
          padding: 0.25rem 0.5rem;
          line-height: 1;
        }
        .btn-remove:hover {
          color: var(--primary-color);
        }
        .cart-pickup-date,
        .cart-contact-field,
        .cart-phone,
        .cart-notes {
          margin: 0.5rem 0;
        }
        .cart-pickup-date label,
        .cart-contact-field label,
        .cart-phone label,
        .cart-notes label {
          display: block;
          margin-bottom: 0.25rem;
          font-weight: 600;
          color: var(--primary-color);
        }
        .cart-pickup-date input,
        .cart-contact-field input,
        .cart-phone input,
        .cart-notes textarea {
          width: 100%;
          padding: 0.5rem 0.75rem;
          border: 1px solid var(--border-color);
          border-radius: 8px;
          font-size: 1rem;
          font-family: inherit;
          box-sizing: border-box;
        }
        .cart-pickup-date #date-error,
        .cart-pickup-date small,
        .cart-phone small {
          margin-top: 0.15rem !important;
        }
        .cart-guest-fields {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 0.75rem;
        }
        .cart-total {
          margin: 0.5rem 0;
          padding-top: 0.5rem;
          border-top: 2px solid var(--border-color);
        }
        .total-line {
          display: flex;
          justify-content: space-between;
          font-size: 1.2rem;
        }
        .total-line strong {
          color: var(--secondary-color);
        }
        .cart-actions {
          flex-shrink: 0;
          margin-top: 0.5rem;
          padding-top: 0.5rem;
          border-top: 2px solid var(--border-color);
          display: flex;
          gap: 0.5rem;
        }
        .cart-actions .btn {
          flex: 1;
        }
        .cart-actions-total {
          margin-left: 0.25rem;
          font-weight: 700;
        }
        .cart-notification {
          position: fixed;
          top: 80px;
          right: 2rem;
          background: var(--secondary-color);
          color: white;
          padding: 1rem 1.5rem;
          border-radius: 8px;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
          z-index: 1001;
          transform: translateX(400px);
          transition: transform 0.3s ease;
        }
        .cart-notification.show {
          transform: translateX(0);
        }
        @media (max-width: 768px) {
          .reservation-cart {
            right: 0.5rem;
            left: 0.5rem;
            top: auto;
            width: calc(100% - 1rem);
            max-width: none;
            bottom: max(0.5rem, env(safe-area-inset-bottom));
            max-height: 85vh;
            padding: 1rem;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          }
          .reservation-cart.collapsed {
            max-height: fit-content;
            padding-bottom: 1rem;
          }
          .reservation-cart.collapsed .cart-header {
            margin-bottom: 0.5rem;
            padding-bottom: 0.75rem;
          }
          .cart-header {
            position: sticky;
            top: 0;
            background: white;
            padding: 0.5rem 0 0.5rem;
            padding-right: 40px;
            margin-bottom: 0.5rem;
            z-index: 10;
            border-bottom: 2px solid var(--border-color);
          }
          .cart-header h3 {
            font-size: 1.1rem;
            margin: 0;
          }
          .cart-header-title-row .cart-garden-preview-btn {
            padding: 0.4rem 0.6rem;
            font-size: 0.85rem;
          }
          .cart-toggle {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            white-space: nowrap;
            min-width: 100px;
            touch-action: manipulation;
          }
          .cart-close {
            font-size: 1.75rem;
            width: 36px;
            height: 36px;
            touch-action: manipulation;
          }
          .cart-peek {
            padding: 0.75rem 0;
            font-size: 1rem;
          }
          .cart-items {
            -webkit-overflow-scrolling: touch;
          }
          .cart-item {
            padding: 0.5rem 0;
          }
          .cart-item-info strong {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
          }
          .cart-item-details {
            font-size: 0.85rem;
            flex-wrap: wrap;
            gap: 0.75rem;
          }
          .qty-btn {
            width: 32px;
            height: 32px;
            font-size: 1.1rem;
            touch-action: manipulation;
          }
          .btn-remove {
            font-size: 1.75rem;
            padding: 0.25rem 0.5rem;
            touch-action: manipulation;
          }
          .cart-pickup-date,
          .cart-contact-field,
          .cart-phone,
          .cart-notes {
            margin: 1rem 0;
          }
          .cart-pickup-date input,
          .cart-contact-field input,
          .cart-phone input,
          .cart-notes textarea {
            padding: 0.875rem;
            font-size: 16px;
          }
          .cart-guest-fields {
            grid-template-columns: 1fr;
            gap: 0;
          }
          .cart-actions {
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 0.5rem;
          }
          .cart-actions .btn {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            touch-action: manipulation;
          }
          .cart-button {
            bottom: max(0.75rem, env(safe-area-inset-bottom));
            right: 0.75rem;
            min-width: 56px;
            height: 56px;
            border-radius: 28px;
            padding: 0 0.75rem;
            touch-action: manipulation;
          }
        }
