@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

:root {
  --bg-primary: #FFFDF9;
  --bg-secondary: #FFF6EA;
  --accent-pink: #FF6B8B;
  --accent-orange: #FFA07A;
  --accent-yellow: #FFD54F;
  --accent-green: #81C784;
  --accent-blue: #4FC3F7;
  --accent-purple: #BA68C8;
  --text-main: #4A3E3D;
  --text-muted: #8E7C77;
  --border-color: #F3EBE1;
  --shadow-bubble: 0 10px 25px -5px rgba(142, 124, 119, 0.15), 0 8px 10px -6px rgba(142, 124, 119, 0.1);
  --shadow-hover: 0 20px 35px -5px rgba(255, 107, 139, 0.2), 0 10px 15px -5px rgba(255, 107, 139, 0.1);
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 10px;
  --font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
  --transition-playful: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.5;
  font-size: 16px; /* Medium base */
  overflow-x: hidden;
}

/* Typography styles with Medium size scale */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

button, input, select {
  font-family: var(--font-family);
  font-size: 1rem;
}

/* Happy Floating Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-reverse {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-2px, -1px) rotate(-1deg); }
  20% { transform: translate(-1px, 2px) rotate(1deg); }
  30% { transform: translate(1px, -1px) rotate(0deg); }
  40% { transform: translate(-2px, 1px) rotate(-1deg); }
  50% { transform: translate(2px, 2px) rotate(1deg); }
  60% { transform: translate(-1px, -2px) rotate(-1deg); }
  70% { transform: translate(-2px, 1px) rotate(0deg); }
  80% { transform: translate(2px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes wave {
  0%, 100% { transform: translateX(0) translateZ(0) scaleY(1); }
  50% { transform: translateX(-25%) translateZ(0) scaleY(0.85); }
}

/* Layout container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Header layout */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 2px dashed var(--border-color);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-pink);
  box-shadow: var(--shadow-bubble);
}

.brand-text h1 {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.5px;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Sunny mode button */
.happy-btn {
  background: var(--bg-secondary);
  border: 2px solid var(--accent-yellow);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-bubble);
  transition: var(--transition-playful);
}

.happy-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background-color: var(--accent-yellow);
  color: #fff;
  border-color: var(--accent-yellow);
}

/* Navigation Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
  background: var(--bg-secondary);
  padding: 8px;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--border-color);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-playful);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #fff;
  color: var(--accent-pink);
  box-shadow: var(--shadow-bubble);
  transform: translateY(0);
}

/* Main Content Views */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Recipe Page Elements */
.search-filter-section {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-bubble);
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-bar-wrapper {
  position: relative;
  width: 100%;
}

.search-bar {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-color);
  outline: none;
  transition: var(--transition-playful);
  color: var(--text-main);
  background-color: var(--bg-primary);
}

.search-bar:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 4px rgba(255, 107, 139, 0.1);
  background-color: #fff;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--text-muted);
}

.filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.filter-pill {
  background: var(--bg-secondary);
  border: 2px solid transparent;
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-playful);
}

.filter-pill:hover {
  transform: translateY(-2px);
  background-color: #fff;
  border-color: var(--border-color);
}

.filter-pill.active {
  color: white;
  transform: scale(1.05);
}

.filter-pill[data-category="all"].active { background: var(--text-main); }
.filter-pill[data-category="smoothie"].active { background: var(--accent-pink); }
.filter-pill[data-category="juice"].active { background: var(--accent-green); }

.filter-pill[data-benefit="Energy"].active { background: var(--accent-orange); }
.filter-pill[data-benefit="Detox"].active { background: var(--accent-green); }
.filter-pill[data-benefit="Immunity"].active { background: var(--accent-yellow); }
.filter-pill[data-benefit="Glow"].active { background: var(--accent-pink); }
.filter-pill[data-benefit="Recovery"].active { background: var(--accent-blue); }

/* Grid layout for Recipe Cards */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.recipe-card {
  background: white;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-bubble);
  overflow: hidden;
  transition: var(--transition-playful);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-pink);
}

.recipe-card-img-container {
  height: 200px;
  position: relative;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  border-bottom: 2px solid var(--border-color);
}

.recipe-card-img-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.recipe-card:hover .recipe-card-img-container span {
  animation: shake 0.6s ease-in-out infinite;
}

.recipe-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  box-shadow: var(--shadow-bubble);
}

.recipe-badge.smoothie { background: var(--accent-pink); }
.recipe-badge.juice { background: var(--accent-green); }

.recipe-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recipe-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.recipe-meta-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.recipe-card h3 {
  margin-bottom: 8px;
  transition: color 0.3s;
}

.recipe-card:hover h3 {
  color: var(--accent-pink);
}

.recipe-desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.recipe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.recipe-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  background: var(--bg-secondary);
  color: var(--text-muted);
  text-transform: uppercase;
}

.recipe-footer {
  border-top: 2px dashed var(--border-color);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recipe-ingredients-preview {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.recipe-btn {
  background: transparent;
  border: none;
  color: var(--accent-pink);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-playful);
}

.recipe-card:hover .recipe-btn {
  transform: translateX(4px);
}

/* Modal - Step-by-Step Guided Cook Mode */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 62, 61, 0.4);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: white;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--border-radius-lg);
  border: 3px solid var(--text-main);
  box-shadow: 0 20px 0 var(--border-color);
  overflow-y: auto;
  position: relative;
  animation: float-reverse 4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 25px;
  border-bottom: 2px dashed var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--bg-secondary);
}

.modal-close {
  background: white;
  border: 2px solid var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 var(--border-color);
  transition: var(--transition-playful);
}

.modal-close:hover {
  transform: translateY(-2px) rotate(90deg);
  box-shadow: 0 6px 0 var(--border-color);
  background-color: var(--accent-pink);
  color: white;
}

.modal-body {
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .modal-body {
    grid-template-columns: 2fr 3fr;
  }
}

.modal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-graphic-wrapper {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-color);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.modal-progress {
  background: white;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-color);
  padding: 15px;
}

.progress-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.progress-bar-bg {
  height: 12px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-orange));
  width: 0%;
  transition: width 0.4s ease;
}

.modal-ingredients {
  background: white;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-color);
  padding: 15px;
}

.modal-ingredients h4 {
  margin-bottom: 10px;
  font-weight: 700;
}

.ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.ingredient-bullet {
  color: var(--accent-orange);
  font-size: 1.1rem;
}

.modal-steps-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-steps-container h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.step-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-color);
  padding: 16px;
  display: flex;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition-playful);
}

.step-card:hover {
  transform: translateY(-2px);
  background: white;
  border-color: var(--accent-orange);
}

.step-card.completed {
  border-color: var(--accent-green);
  background-color: #F1FAF3;
  opacity: 0.8;
}

.step-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-playful);
  color: transparent;
  font-weight: 700;
  font-size: 0.8rem;
}

.step-card.completed .step-checkbox {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: white;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.step-num {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-orange);
}

.step-card.completed .step-num {
  color: var(--accent-green);
}

.step-card.completed .step-text {
  text-decoration: line-through;
  color: var(--text-muted);
}

.step-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* Custom Blend Creator Tab Styles */
.blend-creator-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .blend-creator-layout {
    grid-template-columns: 3fr 2fr;
  }
}

.blend-panel {
  background: white;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--border-color);
  padding: 25px;
  box-shadow: var(--shadow-bubble);
}

.blend-section-title {
  margin-bottom: 20px;
  border-bottom: 2px dashed var(--border-color);
  padding-bottom: 10px;
}

.ingredient-grid-select {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 15px;
}

.select-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-playful);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.select-card:hover {
  transform: translateY(-5px);
  background: white;
  border-color: var(--accent-pink);
}

.select-card.selected {
  background: white;
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(255, 107, 139, 0.2);
}

.select-card-emoji {
  font-size: 2.5rem;
  transition: var(--transition-playful);
}

.select-card.selected .select-card-emoji {
  animation: shake 0.5s ease-in-out infinite;
}

.select-card-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.select-card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--border-color);
  color: var(--text-muted);
}

.select-card.selected .select-card-badge {
  background: var(--accent-pink);
  color: white;
}

/* Blender/Juicer Dynamic Render column */
.blend-render-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.render-panel {
  background: white;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--border-color);
  padding: 25px;
  box-shadow: var(--shadow-bubble);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}

/* Visual Blender representation */
.machine-container {
  width: 200px;
  height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.machine-container.blender-active {
  animation: shake 0.15s linear infinite;
}

.blender-lid {
  width: 140px;
  height: 20px;
  background: var(--text-main);
  border-radius: 8px 8px 0 0;
  z-index: 2;
  position: relative;
}

.blender-jar {
  width: 140px;
  height: 200px;
  background: rgba(255, 255, 255, 0.15);
  border: 4px solid var(--text-main);
  border-top: none;
  border-radius: 0 0 20px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

.blender-jar::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 12px;
  height: 170px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  pointer-events: none;
}

.blender-liquid {
  width: 200%;
  height: 0%;
  background: var(--accent-orange);
  transition: height 0.6s ease, background 0.6s ease;
  position: relative;
  left: -50%;
  border-radius: 40% 40% 0 0;
}

.machine-container.blender-active .blender-liquid {
  animation: wave 1s linear infinite;
}

.blender-blade-shaft {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 35px;
  background: #B0BEC5;
  border: 3px solid var(--text-main);
  border-bottom: none;
  z-index: 3;
}

.blender-blade {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: #CFD8DC;
  border: 2px solid var(--text-main);
  border-radius: 4px;
  z-index: 3;
}

.machine-container.blender-active .blender-blade {
  animation: spin 0.05s linear infinite;
}

.blender-base {
  width: 160px;
  height: 80px;
  background: #ECEFF1;
  border: 4px solid var(--text-main);
  border-radius: 12px 12px 20px 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 0 var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blender-knob {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text-main);
  border: 4px solid white;
  cursor: pointer;
  transition: var(--transition-playful);
}

.blender-knob.active {
  transform: rotate(90deg);
  background: var(--accent-pink);
}

.blender-label {
  position: absolute;
  bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Virtual Blend stats panel */
.blend-stats-panel {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  width: 100%;
}

.blend-btn-wrapper {
  margin: 20px 0;
  width: 100%;
}

.blend-action-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 3px solid var(--text-main);
  background: var(--accent-pink);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 0 var(--text-main);
  transition: var(--transition-playful);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.blend-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--text-main);
}

.blend-action-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--text-main);
}

.blend-action-btn:disabled {
  background: #CFD8DC;
  border-color: #90A4AE;
  color: #78909C;
  box-shadow: 0 4px 0 #90A4AE;
  cursor: not-allowed;
  transform: none;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
}

.stat-item:last-child {
  border: none;
}

.stat-label {
  font-weight: 600;
  color: var(--text-muted);
}

.stat-value {
  font-weight: 700;
  color: var(--text-main);
}

.stat-value.benefit-pill {
  background: white;
  padding: 2px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
}

/* Equipment Guide Tab Styles */
.equipment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .equipment-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.equip-card {
  background: white;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-bubble);
  transition: var(--transition-playful);
}

.equip-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
}

.equip-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: float 5s ease-in-out infinite;
}

.equip-card:nth-child(2) .equip-icon {
  animation: float-reverse 5s ease-in-out infinite;
}

.equip-title {
  margin-bottom: 15px;
}

.equip-description {
  margin-bottom: 20px;
}

.equip-list-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.equip-list {
  list-style: none;
  margin-bottom: 25px;
}

.equip-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.equip-list-bullet {
  color: var(--accent-green);
  font-size: 1.1rem;
}

.equip-footer-tip {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 15px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* empty states & helpers */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  border: 2px dashed var(--border-color);
}

.no-results-emoji {
  font-size: 3rem;
  margin-bottom: 10px;
}

.no-results h3 {
  margin-bottom: 5px;
}

footer {
  text-align: center;
  padding: 40px 0;
  margin-top: 40px;
  border-top: 2px dashed var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
}

/* Shop Tab Specific Enhancements */
.recipe-card a.happy-btn {
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 0 var(--text-main);
}
.recipe-card a.happy-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 0 var(--text-main);
}
.recipe-card a.happy-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--text-main);
}
.shop-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF5F0;
  border: 2px solid var(--accent-orange);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-playful);
  box-shadow: 0 4px 0 var(--border-color);
}
.shop-btn-inline:hover {
  transform: translateY(-2px);
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 6px 0 var(--border-color);
}
.shop-btn-inline:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--border-color);
}

