/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #8B6914;
  --color-primary-light: #C49B2A;
  --color-primary-dark: #6B4F0E;
  --color-cream: #FFF8E7;
  --color-cream-dark: #F5ECD7;
  --color-green: #6B8E4E;
  --color-green-light: #E8F0E0;
  --color-brown: #5C4033;
  --color-brown-light: #8B6B5A;
  --color-white: #FFFFFF;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-border: #E8E0D0;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --color-success: #4CAF50;
  --color-error: #E74C3C;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50px;

  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 231, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.2;
}

.nav__logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  padding: 8px 16px;
}

.btn--ghost:hover {
  color: var(--color-primary);
}

.btn--large {
  padding: 14px 36px;
  font-size: 1rem;
}

.btn--order {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
}

.btn--order:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 50%, var(--color-green-light) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-green-light);
  color: var(--color-green);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.hero__image {
  position: relative;
}

.hero__image-main {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  margin: 0 auto;
}

.hero__image-float {
  position: absolute;
  background: var(--color-white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.hero__image-float--top {
  top: -10px;
  right: 10px;
}

.hero__image-float--bottom {
  bottom: 20px;
  left: -10px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 20px;
}

.section--alt {
  background: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-green-light);
  color: var(--color-green);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 12px;
}

.section__desc {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PRODUCTS ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-card__body {
  padding: 16px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 6px;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.product-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about__content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-brown);
  margin-bottom: 16px;
}

.about__content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-green);
}

.about__highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--color-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== WHY US ===== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.why-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== MAPS / BRANCHES ===== */
.maps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .maps__grid {
    grid-template-columns: 1fr;
  }
}

.map-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.map-card__info {
  padding: 20px;
}

.map-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.map-card__info p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
  line-height: 1.6;
}

.map-card__info a {
  color: var(--color-primary);
  font-weight: 700;
}

.map-card__embed {
  padding: 0 20px 20px;
}

.map-card__embed iframe {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: 60px 20px 24px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--color-primary);
}

.footer__col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a,
.footer__col ul li {
  font-size: 0.85rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer__col ul li a:hover {
  opacity: 1;
  color: var(--color-primary-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ORDER MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-overlay);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

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

.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-brown);
}

.modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-text-light);
  transition: var(--transition);
}

.modal__close:hover {
  background: var(--color-error);
  color: var(--color-white);
}

.modal__body {
  padding: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--color-error);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.form-input::placeholder {
  color: #bbb;
}

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

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal__footer {
  padding: 16px 24px 24px;
}

.modal__footer .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ===== CART ===== */
.cart-btn {
  position: relative;
  background: none;
  font-size: 22px;
  padding: 4px 8px;
  cursor: pointer;
  line-height: 1;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-error);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge:empty { display: none; }

.cart-modal { max-width: 560px; }

.cart-items { max-height: 50vh; overflow-y: auto; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item__img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item__img--placeholder {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

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

.cart-item__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-brown);
}

.cart-item__price {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-item__qty button:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.cart-item__qty span {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}

.cart-item__remove {
  background: none;
  color: var(--color-text-light);
  font-size: 18px;
  padding: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.cart-item__remove:hover { color: var(--color-error); }

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
  border-top: 2px solid var(--color-border);
  margin-top: 8px;
}

.cart-total__label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-brown);
}

.cart-total__amount {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.cart-empty {
  text-align: center;
  padding: 32px 0;
  color: var(--color-text-light);
}

.cart-empty__icon { font-size: 48px; margin-bottom: 12px; }

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 50%, var(--color-green-light) 100%);
}

.auth-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.auth-card__logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-card__logo-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 12px;
}

.auth-card__logo h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-brown);
}

.auth-card__logo p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.auth-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-brown);
  margin-bottom: 8px;
  text-align: center;
}

.auth-card__subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.auth-card .form-group {
  margin-bottom: 18px;
}

.auth-card .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 8px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.btn--google {
  background: var(--color-white);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
}

.btn--google:hover {
  background: var(--color-cream);
  border-color: var(--color-primary-light);
}

.btn--google svg {
  width: 20px;
  height: 20px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.auth-footer a {
  color: var(--color-primary);
  font-weight: 700;
  transition: var(--transition);
}

.auth-footer a:hover {
  color: var(--color-primary-dark);
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: var(--color-text-light);
  font-size: 18px;
  padding: 4px;
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: toastIn 0.3s ease;
  min-width: 280px;
}

.toast--success {
  border-left: 4px solid var(--color-success);
}

.toast--error {
  border-left: 4px solid var(--color-error);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__desc {
    margin: 0 auto 32px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__image-main {
    max-width: 400px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__auth {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav__mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 16px 20px;
  }

  .nav__mobile.active {
    display: block;
  }

  .nav__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
  }

  .nav__mobile-links a {
    display: block;
    padding: 10px 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }

  .nav__mobile-links a:hover {
    background: var(--color-cream);
    color: var(--color-primary);
  }

  .nav__mobile-auth {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
  }

  .nav__mobile-auth .btn {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    padding: 10px;
  }

  .hero {
    padding: 100px 20px 40px;
    min-height: auto;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__desc {
    font-size: 1rem;
  }

  .hero__image-float {
    display: none;
  }

  .section {
    padding: 60px 20px;
  }

  .section__title {
    font-size: 1.7rem;
  }

  .products__grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.7rem;
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-number {
    font-size: 1.4rem;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .btn--large {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}
