
:root {
--green:      #2d6a4f;
--green-mid:  #40916c;
--green-light:#95d5b2;
--cream:      #fefae0;
--warm:       #f8f4e8;
--amber:      #e9c46a;
--coral:      #e76f51;
--text:       #1b1b1b;
--muted:      #7a7060;
--border:     #ddd5be;
--white:      #ffffff;
--radius:     16px;
--shadow:     0 4px 20px rgba(45,106,79,0.10);
--shadow-hover: 0 10px 32px rgba(45,106,79,0.18);
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm);
  color: var(--text);
  min-height: 100vh;
}
 
.navbar {
  background: var(--green);
  padding: 0 36px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
 
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.logo em {
  color: var(--amber);
  font-style: italic;
}
 
.search-box {
  flex: 1;
  max-width: 500px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 9px 18px 9px 42px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.15);
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  transition: all 0.22s;
}
.search-box input::placeholder { color: rgba(254,250,224,0.55); }
.search-box input:focus {
  background: rgba(255,255,255,0.2);
  border-color: var(--amber);
}
.search-icon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  pointer-events: none;
}
 
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: rgba(254,250,224,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.12); color: var(--cream); }
.nav-links a.active {
  background: var(--amber);
  color: var(--green);
}
 
.cart-btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  border: none;
  color: var(--green);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cart-btn:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cart-label { display: inline; }
.cart-badge {
  background: var(--coral);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.25s ease;
}
@keyframes popIn {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
 
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0);
  z-index: 300;
  pointer-events: none;
  transition: background 0.3s;
}
.cart-overlay.open {
  background: rgba(27,27,27,0.5);
  pointer-events: all;
}
 
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 95vw;
  height: 100vh;
  background: var(--cream);
  z-index: 400;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,0.14);
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { right: 0; }
 
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--green);
  flex-shrink: 0;
}
.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}
.cart-close {
  background: rgba(255,255,255,0.15);
  border: none; color: var(--cream);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-close:hover { background: rgba(255,255,255,0.28); }
 
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-empty {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--muted); padding: 40px 0;
}
.cart-empty p { font-size: 1rem; font-weight: 700; color: var(--text); }
.cart-empty small { font-size: 0.82rem; }
 
.cart-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  animation: slideIn 0.2s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ci-info { flex: 1; min-width: 0; }
.ci-name {
  font-size: 0.85rem; font-weight: 700; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ci-size { font-size: 0.72rem; color: var(--muted); margin-top: 1px; }
.ci-controls { display: flex; align-items: center; gap: 6px; }
.ci-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--warm);
  color: var(--text);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.ci-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.ci-qty { font-size: 0.88rem; font-weight: 700; min-width: 18px; text-align: center; }
.ci-price {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; font-weight: 700;
  color: var(--coral);
  min-width: 60px; text-align: right;
}
.ci-remove {
  background: none; border: none;
  color: var(--muted); font-size: 0.75rem;
  cursor: pointer; padding: 4px; border-radius: 4px;
  transition: color 0.15s;
}
.ci-remove:hover { color: var(--coral); }
 
.cart-footer {
  flex-direction: column; gap: 10px;
  padding: 16px 20px 24px;
  border-top: 2px dashed var(--border);
  background: var(--warm);
  flex-shrink: 0;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
  padding-bottom: 4px;
}
.cart-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--green);
}
.checkout-btn {
  width: 100%; padding: 13px;
  background: var(--green); color: var(--cream);
  border: none; border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.3px;
  transition: all 0.2s;
}
.checkout-btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(45,106,79,0.25);
}
.clear-btn {
  width: 100%; padding: 8px;
  background: none;
  border: 1.5px dashed var(--border);
  border-radius: 30px; color: var(--muted);
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem; cursor: pointer;
  transition: all 0.2s;
}
.clear-btn:hover { border-color: var(--coral); color: var(--coral); }
 
.Elyu-section {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 18px 36px 14px;
}
.Elyu-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.Elyu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 8px;
}
.Elyu-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 10px 4px;
  border-radius: 12px; cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
}
.Elyu-item:hover {
  background: #eaf4ef;
  border-color: var(--green-light);
  transform: translateY(-2px);
}
.Elyu-item.active {
  background: #eaf4ef;
  border-color: var(--green);
}
.Elyu-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--warm);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: transform 0.2s, border-color 0.2s;
}
.Elyu-item:hover .Elyu-icon,
.Elyu-item.active .Elyu-icon {
  transform: scale(1.12);
  border-color: var(--green-light);
}
.Elyu-label {
  font-size: 0.7rem; font-weight: 700;
  color: var(--text); line-height: 1.2;
}
.Elyu-item.active .Elyu-label { color: var(--green); }
 
.main { max-width: 1280px; margin: 0 auto; padding: 28px 36px; }
 
.work {
  background: var(--green);
  border-radius: 20px;
  padding: 30px 40px;
  margin-bottom: 28px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  overflow: hidden; position: relative;
}

.work::before {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.work::after {
  content: '🌿';
  position: absolute; right: 36px; top: 50%;
  transform: translateY(-50%);
  font-size: 5rem; opacity: 0.18; pointer-events: none;
}
.work-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--cream); margin-bottom: 6px;
}
.work-text p { font-size: 0.88rem; color: rgba(254,250,224,0.72); font-weight: 500; }
.work-cta {
  background: var(--amber); color: var(--green);
  border: none; padding: 12px 28px; border-radius: 30px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.88rem;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: all 0.2s;
}
.work-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
 
.section-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 5px; height: 20px;
  background: var(--green);
  border-radius: 4px;
}
.see-all {
  font-size: 0.82rem; color: var(--green); font-weight: 700;
  text-decoration: none; padding: 5px 16px;
  border: 2px solid var(--green); border-radius: 20px;
  transition: all 0.2s;
}
.see-all:hover { background: var(--green); color: var(--cream); }
 
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 18px;
}
 
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}
 
.card-img-wrap {
  background: var(--warm);
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.6rem; position: relative;
  border-bottom: 2px solid var(--border);
}
 
.card-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--coral); color: #fff;
  font-size: 0.6rem; font-weight: 800;
  padding: 3px 9px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.6px;
}
 
.card-body {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem; font-weight: 700; color: var(--text); line-height: 1.3;
}
.card-desc { font-size: 0.74rem; color: var(--muted); line-height: 1.4; margin-bottom: 4px; font-weight: 500; }
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--green);
}
 
.card-controls { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.card-controls select,
.card-controls input[type="number"] {
  width: 100%; padding: 7px 10px;
  border: 2px solid var(--border); border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--text); background: var(--warm); outline: none;
  transition: border-color 0.18s;
}
.card-controls select:focus,
.card-controls input[type="number"]:focus { border-color: var(--green); }
 
.add-btn {
  width: 100%; padding: 9px;
  background: var(--green); color: var(--cream);
  border: none; border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem; font-weight: 800;
  cursor: pointer; letter-spacing: 0.3px; margin-top: 2px;
  transition: background 0.18s, color 0.18s, transform 0.1s;
}
.add-btn:hover { background: var(--green-mid); }
.add-btn:active { transform: scale(0.97); }
 
footer {
  background: var(--green);
  color: rgba(254,250,224,0.5);
  text-align: center; padding: 22px;
  font-size: 0.8rem; margin-top: 48px;
  font-weight: 500;
}
footer span { color: var(--amber); font-weight: 700; }