/* ===== LISA SHOP — MAIN STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Raleway:wght@400;600;700;800&display=swap');

:root {
  --orange: #FF7F50;
  --orange-dark: #e86a3a;
  --orange-light: #fff0eb;
  --white: #ffffff;
  --gray-light: #f8f8f8;
  --gray: #e0e0e0;
  --gray-text: #888;
  --dark: #2d2d2d;
  --shadow: 0 4px 20px rgba(255,127,80,0.15);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font-main: 'Nunito', sans-serif;
  --font-display: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== INTRO ANIMATION ===== */
#intro-screen {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: introFadeOut 0.6s ease-out 3s forwards;
}

#intro-screen .intro-logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  animation: introPopIn 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}

#intro-screen .intro-tagline {
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 600;
  color: var(--dark);
  margin-top: 8px;
  animation: introFadeUp 0.6s ease 0.8s both;
}

#intro-screen .intro-fox {
  font-size: clamp(3rem, 12vw, 6rem);
  margin-bottom: 16px;
  animation: introPopIn 0.7s cubic-bezier(0.34,1.56,0.64,1) 0s both;
}

#intro-screen .intro-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  animation: introFadeUp 0.6s ease 1.2s both;
}
#intro-screen .intro-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: dotPulse 1s ease-in-out infinite;
}
#intro-screen .intro-dots span:nth-child(2) { animation-delay: 0.2s; }
#intro-screen .intro-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes introPopIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes introFadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes introFadeOut {
  from { opacity: 1; pointer-events: all; }
  to { opacity: 0; pointer-events: none; }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  border-bottom: 2px solid var(--orange-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 16px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--dark); font-weight: 600; font-size: 0.9rem; }

nav { display: flex; gap: 8px; }
nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}
nav a:hover, nav a.active {
  background: var(--orange);
  color: white;
}

/* ===== STATUS BADGE ===== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}
.status-badge.open {
  background: #e8f5e9;
  color: #2e7d32;
}
.status-badge.closed {
  background: #ffeef0;
  color: #c62828;
}
.status-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #fff8f5 0%, #fff3ee 100%);
  padding: 48px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '🦊';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  right: -20px;
  top: -20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-top: 12px;
  font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(255,127,80,0.4);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,127,80,0.5);
}
.btn-primary:active { transform: translateY(0); }

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

.btn-back {
  background: var(--gray-light);
  color: var(--dark);
  font-size: 0.9rem;
  padding: 10px 20px;
}
.btn-back:hover { background: var(--gray); }

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ===== CARDS / SECTIONS ===== */
.section {
  padding: 32px 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--orange), transparent);
}

/* ===== ABOUT BLOCKS ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.about-card {
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.2s;
}
.about-card:hover { transform: translateY(-3px); }
.about-card .icon { font-size: 2rem; margin-bottom: 8px; }
.about-card .label { font-weight: 700; font-size: 0.85rem; color: var(--dark); }

/* ===== ADDRESS ===== */
.address-block {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow 0.2s;
}
.address-block:hover { box-shadow: var(--shadow); }
.address-block .address-icon { font-size: 2rem; flex-shrink: 0; }
.address-block .address-text strong { display: block; font-weight: 700; margin-bottom: 4px; }
.address-block .address-text span { font-size: 0.85rem; color: var(--gray-text); }

/* ===== ANNOUNCEMENTS ===== */
.announcement-card {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.announcement-card .ann-date {
  font-size: 0.75rem;
  color: var(--gray-text);
  margin-bottom: 6px;
}
.announcement-card .ann-text { font-weight: 600; }

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 1px solid var(--gray);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card .product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray);
}
.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .product-info {
  padding: 12px;
}
.product-card .product-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card .product-price {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ===== FILTERS ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid var(--gray);
  background: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray);
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}
.search-input:focus { border-color: var(--orange); }

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-label .required { color: var(--orange); }

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange);
}

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

/* ===== FILE UPLOAD ===== */
.upload-area {
  border: 2px dashed var(--orange);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--orange-light);
}
.upload-area:hover, .upload-area.dragover {
  background: #ffddd2;
  border-color: var(--orange-dark);
}
.upload-area .upload-icon { font-size: 3rem; margin-bottom: 12px; }
.upload-area .upload-text { font-weight: 700; color: var(--dark); }
.upload-area .upload-hint { font-size: 0.8rem; color: var(--gray-text); margin-top: 6px; }

.file-list { margin-top: 16px; }
.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  box-shadow: var(--shadow-card);
}
.file-item .file-name { flex: 1; font-weight: 600; font-size: 0.9rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item .file-size { font-size: 0.75rem; color: var(--gray-text); }
.file-item .file-remove { background: none; border: none; color: #e53935; cursor: pointer; font-size: 1.1rem; padding: 2px 6px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-handle {
  width: 36px; height: 4px;
  border-radius: 2px;
  background: var(--gray);
  margin: 0 auto 20px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray-light);
  border-top: 2px solid var(--orange-light);
  padding: 24px 16px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}
.footer-info { color: var(--gray-text); line-height: 1.8; }
.footer-info strong { color: var(--dark); }
.footer-schedule { }
.footer-schedule .schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dotted var(--gray);
  font-size: 0.82rem;
}
.footer-copy {
  color: var(--gray-text);
  font-size: 0.75rem;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray);
}
.footer-copy a { color: var(--orange); text-decoration: none; }

/* ===== NOTICE ===== */
.notice {
  background: #fff8f0;
  border: 1px solid #ffd0b8;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: #8b5e3c;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* ===== PAGE DISABLED ===== */
.page-disabled {
  text-align: center;
  padding: 60px 20px;
}
.page-disabled .disabled-icon { font-size: 4rem; margin-bottom: 16px; }
.page-disabled .disabled-text { font-size: 1.1rem; font-weight: 600; color: var(--gray-text); }

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: calc(100% - 32px);
  max-width: 400px;
}
.toast {
  background: var(--dark);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.5s forwards;
}
.toast.success { background: #2e7d32; }
.toast.error { background: #c62828; }
@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes toastOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
@media (max-width: 480px) {
  nav { display: none; }
}
