/* ===========================
   TOP TEA — STYLESHEET
   =========================== */

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

:root {
  --orange: #F5A623;
  --orange-dark: #d4881a;
  --orange-light: #FFF3DC;
  --green: #6abf45;
  --green-light: #e8f5e2;
  --dark: #1a1a2e;
  --mid: #3d3d5c;
  --gray: #6b7280;
  --light: #fafaf8;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  border-radius: 50px; padding: 12px 28px; cursor: pointer;
  transition: all 0.25s ease; border: 2px solid transparent;
  white-space: nowrap;
}
.btn--orange { background: var(--orange); color: white; border-color: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,0.35); }
.btn--ghost { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--ghost:hover { background: var(--dark); color: white; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: white; transform: translateY(-2px); }
.btn--nav { background: var(--orange); color: white; padding: 10px 22px; font-size: 0.88rem; }
.btn--nav:hover { background: var(--orange-dark); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange-dark);
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-tag--light { background: rgba(255,255,255,0.25); color: white; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: var(--dark); margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.text-orange { color: var(--orange); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px; height: 72px;
}
.nav__logo img { height: 48px; width: auto; }
.nav__links { display: flex; gap: 32px; margin: auto; }
.nav__links a { font-weight: 700; font-size: 0.95rem; color: var(--mid); transition: color 0.2s; }
.nav__links a:hover { color: var(--orange); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.nav__mobile {
  display: none; flex-direction: column; align-items: center; gap: 20px;
  padding: 24px; border-top: 1px solid rgba(0,0,0,0.06);
  background: white;
}
.nav__mobile a { font-weight: 700; font-size: 1.05rem; color: var(--mid); }
.nav__mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff9f0 0%, #fff3dc 50%, #fef6e8 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 120px 80px 80px;
  position: relative; overflow: hidden;
}
.bubbles-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bubble {
  position: absolute; border-radius: 50%;
  background: var(--orange); opacity: 0.06;
  animation: floatBubble linear infinite;
}
.bubble:nth-child(1)  { width: 40px; height: 40px; left: 8%;  animation-duration: 8s;  animation-delay: 0s; }
.bubble:nth-child(2)  { width: 60px; height: 60px; left: 20%; animation-duration: 10s; animation-delay: 1s; }
.bubble:nth-child(3)  { width: 25px; height: 25px; left: 35%; animation-duration: 7s;  animation-delay: 2s; background: var(--green); }
.bubble:nth-child(4)  { width: 50px; height: 50px; left: 55%; animation-duration: 12s; animation-delay: 0.5s; }
.bubble:nth-child(5)  { width: 35px; height: 35px; left: 70%; animation-duration: 9s;  animation-delay: 3s; background: var(--green); }
.bubble:nth-child(6)  { width: 70px; height: 70px; left: 85%; animation-duration: 11s; animation-delay: 1.5s; }
.bubble:nth-child(7)  { width: 20px; height: 20px; left: 45%; animation-duration: 6s;  animation-delay: 4s; }
.bubble:nth-child(8)  { width: 45px; height: 45px; left: 62%; animation-duration: 13s; animation-delay: 2.5s; background: var(--green); }
.bubble:nth-child(9)  { width: 55px; height: 55px; left: 15%; animation-duration: 9s;  animation-delay: 1s; }
.bubble:nth-child(10) { width: 30px; height: 30px; left: 78%; animation-duration: 8s;  animation-delay: 3.5s; }

@keyframes floatBubble {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  10%  { opacity: 0.06; }
  90%  { opacity: 0.06; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-block; background: var(--green-light); color: var(--green);
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 20px;
}
.hero__title {
  font-family: 'Pacifico', cursive; font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1; color: var(--dark); margin-bottom: 24px;
}
.hero__title span { color: var(--orange); }
.hero__subtitle { font-size: 1.15rem; color: var(--gray); line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__image { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; }
.hero__img-ring {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: var(--orange); opacity: 0.08;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.hero__drink-img {
  width: 100%; max-width: 560px; border-radius: 32px;
  animation: heroFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.14));
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ===== PERKS ===== */
.perks {
  background: var(--orange);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
}
.perk {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 48px; color: white;
  border-right: 1px solid rgba(255,255,255,0.2);
  flex: 1; min-width: 200px; justify-content: center;
}
.perk:last-child { border-right: none; }
.perk__icon { font-size: 2rem; }
.perk strong { display: block; font-size: 1rem; font-weight: 800; }
.perk span { font-size: 0.85rem; opacity: 0.85; }

/* ===== MENU ===== */
.menu { padding: 100px 0; background: var(--light); }

.menu-tabs {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  background: white; border: 2px solid #e5e7eb; border-radius: 50px;
  padding: 10px 22px; font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.88rem; cursor: pointer; transition: all 0.2s; color: var(--mid);
}
.tab-btn:hover { border-color: var(--orange); color: var(--orange); }
.tab-btn.active { background: var(--orange); border-color: var(--orange); color: white; }

/* --- Menu Panels --- */
.menu-panel { display: none; animation: panelIn 0.35s ease; }
.menu-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.menu-panel__feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 48px; align-items: center;
}
.menu-panel__feature img { width: 100%; height: 280px; object-fit: cover; object-position: center; }
.menu-panel__feature-text { padding: 36px 40px 36px 8px; }
.menu-panel__feature-text h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 12px; color: var(--dark); }
.menu-panel__feature-text p { color: var(--gray); font-size: 1rem; line-height: 1.65; margin-bottom: 20px; }
.price-badge {
  display: inline-block; background: var(--orange-light); color: var(--orange-dark);
  font-weight: 800; font-size: 0.85rem; padding: 8px 18px; border-radius: 50px;
}

.category-label {
  font-size: 1rem; font-weight: 900; color: var(--dark);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin: 36px 0 20px; padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}
.category-label span { font-size: 0.82rem; font-weight: 700; color: var(--orange-dark); background: var(--orange-light); padding: 4px 12px; border-radius: 50px; }

/* --- Item Grid --- */
.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px; margin-bottom: 8px;
}
.item-grid--small { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.item-card {
  background: white; border-radius: var(--radius-sm); padding: 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.25s ease;
  border: 1.5px solid transparent;
}
.item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.item-card--highlight { border-color: var(--orange); background: #fffdf7; }

.item-card__icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.item-card__body { flex: 1; min-width: 0; }
.item-card__body strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 3px; }
.item-card__body span { font-size: 0.8rem; color: var(--gray); line-height: 1.4; }

/* ===== SPECIALS ===== */
.specials {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  padding: 100px 80px;
  position: relative; overflow: hidden;
}
.specials::before {
  content: '🧋'; position: absolute; font-size: 20rem; opacity: 0.03;
  top: -60px; right: -40px; transform: rotate(-20deg);
}
.specials__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.specials__text { color: white; }
.specials__text h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.specials__text h2 span { color: var(--orange); font-family: 'Pacifico', cursive; }
.specials__text p { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }

.specials__img-wrap { position: relative; }
.specials__img-wrap img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); transform: rotate(2deg);
  transition: transform 0.4s; filter: brightness(1.05);
}
.specials__img-wrap:hover img { transform: rotate(0deg) scale(1.02); }

.specials__float {
  position: absolute; background: white; font-weight: 800; font-size: 0.85rem;
  padding: 8px 16px; border-radius: 50px; box-shadow: var(--shadow);
  color: var(--dark); animation: floatChip 3s ease-in-out infinite;
}
.specials__float--1 { top: -16px; left: -16px; animation-delay: 0s; }
.specials__float--2 { bottom: -16px; right: -16px; animation-delay: 1.5s; }
@keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ===== TOPPINGS ===== */
.toppings { padding: 100px 0; background: white; }
.toppings-grid {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 56px;
}
.topping-chip {
  background: var(--light); border: 2px solid #e5e7eb; border-radius: 50px;
  padding: 12px 22px; font-weight: 700; font-size: 0.95rem;
  cursor: default; transition: all 0.2s;
}
.topping-chip:hover { border-color: var(--orange); color: var(--orange-dark); background: var(--orange-light); transform: translateY(-3px); }

.custom-opts {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  background: var(--light); border-radius: var(--radius); padding: 36px; max-width: 800px; margin: 0 auto;
}
.custom-opt { text-align: center; }
.custom-opt strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 12px; }
.opt-levels { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.opt-levels span {
  background: white; border: 2px solid #e5e7eb; border-radius: 50px;
  padding: 6px 14px; font-size: 0.82rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; color: var(--mid);
}
.opt-levels span.active { background: var(--orange); border-color: var(--orange); color: white; }
.opt-levels span:hover:not(.active) { border-color: var(--orange); color: var(--orange); }

/* ===== ABOUT ===== */
.about { padding: 100px 80px; background: var(--orange-light); overflow: hidden; }
.about__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__visual { position: relative; }
.about__circle {
  position: absolute; border-radius: 50%;
}
.about__circle--1 { width: 400px; height: 400px; background: var(--orange); opacity: 0.12; top: -60px; left: -60px; }
.about__circle--2 { width: 250px; height: 250px; background: var(--green); opacity: 0.1; bottom: -30px; right: -30px; }
.about__img { position: relative; z-index: 1; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.about__text .section-tag { margin-bottom: 14px; }
.about__text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; margin-bottom: 20px; }
.about__text p { color: var(--gray); font-size: 1.05rem; line-height: 1.75; margin-bottom: 16px; }
.about__stats { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat__num { display: block; font-family: 'Pacifico', cursive; font-size: 2.5rem; color: var(--orange); }
.stat span:last-child { font-size: 0.85rem; color: var(--gray); font-weight: 600; }

/* ===== FIND US ===== */
.find-us { padding: 100px 0; background: var(--light); }
.find-us__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px;
}
.find-us__grid--centered { max-width: 900px; margin: 0 auto; }

.location-card {
  background: white; border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.location-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.location-card h3 { font-size: 1.35rem; font-weight: 900; margin-bottom: 10px; }
.location-card p { color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.location-phone { display: inline-block; font-weight: 700; color: var(--orange-dark); margin-bottom: 24px; font-size: 1rem; }
.location-phone:hover { color: var(--orange); }
.location-card--main { border-top: 4px solid var(--orange); }

.hours { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.hours strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 8px; display: block; }
.hours__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.hours__grid span { font-size: 0.88rem; color: var(--gray); }
.hours__grid span:nth-child(odd) { font-weight: 700; color: var(--mid); }

.location-card--cta { background: var(--dark); color: white; }
.location-card--cta h3 { color: white; font-family: 'Pacifico', cursive; font-size: 1.8rem; }
.location-card--cta p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.2s;
}
.social-link:hover { background: var(--orange); transform: translateY(-3px); }
.social-link svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: white; padding: 80px 0 0; }
.footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 60px;
  padding-bottom: 60px;
}
.footer__logo { height: 52px; width: auto; filter: brightness(10); margin-bottom: 14px; }
.footer__brand p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 4px; }
.footer__addr { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.6; margin-top: 10px; }
.footer__phone { display: inline-block; color: var(--orange); font-weight: 700; font-size: 0.95rem; margin-top: 8px; transition: color 0.2s; }
.footer__phone:hover { color: #ffbe4f; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer__links a { color: rgba(255,255,255,0.7); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--orange); }
.footer__newsletter h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.footer__newsletter p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 12px 18px; color: white; font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; padding: 24px;
  color: rgba(255,255,255,0.35); font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { padding: 100px 40px 80px; gap: 40px; }
  .about { padding: 80px 40px; }
  .specials { padding: 80px 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
  .hero__subtitle { margin: 0 auto 40px; }
  .hero__ctas { justify-content: center; }
  .hero__image { order: -1; }
  .hero__img-ring { width: 320px; height: 320px; }
  .hero__drink-img { max-width: 380px; }
  .perk { padding: 20px 24px; min-width: 160px; }
  .specials__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about { padding: 80px 24px; }
  .specials { padding: 80px 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .menu-panel__feature { grid-template-columns: 1fr; }
  .menu-panel__feature img { height: 220px; }
  .menu-panel__feature-text { padding: 24px; }
  .item-grid { grid-template-columns: 1fr; }
  .item-grid--small { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .about__stats { justify-content: center; }
  .hours__grid { grid-template-columns: 1fr; }
  .hours__grid span:nth-child(even) { margin-bottom: 6px; color: var(--gray); }
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(0,0,0,0.06); border-radius: 20px; padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: transparent; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.75rem;
  color: var(--gray); padding: 4px 10px; border-radius: 16px;
  transition: all 0.2s; letter-spacing: 0.05em;
}
.lang-btn.active { background: var(--white); color: var(--orange); box-shadow: 0 1px 4px rgba(0,0,0,0.12); }
.lang-btn:hover:not(.active) { color: var(--dark); }
.lang-toggle--mobile { margin-top: 4px; }

@media (max-width: 768px) {
  .nav__inner .lang-toggle { display: none; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
