/* =========================================
   BREW & BEAN — ARTISAN COFFEE HOUSE
   ========================================= */

:root {
  --cream: #f3f0ec;
  --cream-light: #faf8f5;
  --gold: #b08968;
  --gold-light: #c9a37e;
  --gold-dark: #8d6c4f;
  --dark-brown: #3a2618;
  --text-dark: #2c2418;
  --text-muted: #8a8378;
  --text-light: #b5ada1;
  --accent-line: #d4c5b0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

a { text-decoration: none; }

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(58, 38, 24, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(250, 248, 245, 0.97);
  padding: 18px 60px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}

nav.scrolled .logo {
  color: var(--dark-brown);
}

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

nav.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-light);
}

nav.scrolled .nav-links a:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background: #fdfaf7f5;
  transition: all 0.3s ease;
}

nav.scrolled .hamburger span {
  background: #dacab5;
}

/* ============ HERO ============ */
.hero {
  height: 100vh;
  background: url('images/hero-coffee.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(207, 158, 126, 0.795) 0%, rgba(40, 25, 15, 0.3) 50%, rgba(40, 25, 15, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeUp 1.4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 15px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--gold-light);
  font-weight: 300;
}

.hero h1 {
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 30px;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  display: block;
  font-style: normal;
  font-size: 0.85em;
  letter-spacing: 0.03em;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 45px;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 18px 46px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s ease;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  letter-spacing: 0.45em;
}

.btn-dark {
  color: var(--dark-brown);
  border-color: var(--gold);
}

.btn-dark:hover {
  background: var(--gold);
  color: #fff;
}

.btn-outline {
  display: inline-block;
  padding: 16px 48px;
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 2px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(15px); }
}

/* ============ SECTION HEADER ============ */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 46px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-brown);
  margin-bottom: 25px;
  font-weight: 400;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: var(--accent-line);
}

.ornament-icon {
  color: var(--gold);
  font-size: 16px;
}

/* ============ ABOUT ============ */
.about {
  padding: 130px 40px 100px;
  background: var(--cream-light);
  text-align: center;
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
}

.about p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 300;
  margin-bottom: 25px;
  font-style: italic;
}

.about .signature {
  margin-top: 40px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 21px;
}

/* ============ FEATURED ============ */
.featured {
  padding: 110px 40px;
  background: var(--cream);
  position: relative;
}

.featured-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  pointer-events: none;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item.center .feature-icon {
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  padding: 16px;
}

.feature-item h3 {
  font-size: 28px;
  color: var(--dark-brown);
  margin-bottom: 18px;
  font-weight: 400;
}

.feature-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 290px;
  margin: 0 auto;
}

/* ============ MENU (NEW STYLE - matches Image 3) ============ */
.menu-section {
  padding: 120px 40px;
  background: var(--cream-light);
}

.menu-container {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 80px;
  margin-top: 30px;
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Playfair Display', serif;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateX(6px);
}

.menu-star {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.menu-star svg {
  width: 18px;
  height: 18px;
}

.menu-item:hover .menu-star {
  background: var(--gold);
  color: #fff;
  transform: rotate(72deg);
}

.menu-name {
  font-size: 22px;
  color: var(--dark-brown);
  font-weight: 400;
  white-space: nowrap;
}

.menu-dots {
  flex: 1;
  border-bottom: 2px dotted var(--accent-line);
  margin: 0 4px;
  transform: translateY(-4px);
}

.menu-price {
  font-size: 22px;
  color: var(--dark-brown);
  font-weight: 500;
  white-space: nowrap;
}

.menu-bakes {
  margin-top: 90px;
  padding-top: 50px;
  border-top: 1px solid var(--accent-line);
}

.menu-bakes h3 {
  text-align: center;
  font-size: 32px;
  color: var(--dark-brown);
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 400;
}

/* ============ SHOP (FIXED - no white bg) ============ */
.shop {
  padding: 120px 40px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.shop-container {
  max-width: 1300px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.shop-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.shop-item {
  display: flex;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.shop-item:hover {
  transform: translateY(-4px);
}

.shop-col.left .shop-item {
  flex-direction: row-reverse;
  text-align: right;
}

.shop-col.right .shop-item {
  text-align: left;
}

.shop-icon {
  flex-shrink: 0;
  color: var(--gold);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.shop-item:hover .shop-icon {
  transform: scale(1.1);
  color: var(--gold-dark);
}

.shop-icon svg {
  width: 100%;
  height: 100%;
}

.shop-text h4 {
  font-size: 24px;
  color: var(--dark-brown);
  margin-bottom: 8px;
  font-weight: 500;
}

.shop-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.shop-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* No white background — image is now transparent */
}

.shop-image {
  width: 380px;
  max-width: 100%;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.2));
}

.shop-image:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* ============ TRY THE BEST COFFEE (Image 4 layout) ============ */
.try-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--cream-light);
  align-items: stretch;
  min-height: 480px;
}

.try-image {
  overflow: hidden;
}

.try-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.try-image:hover img {
  transform: scale(1.05);
}

.try-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--cream-light);
}

.try-content h2 {
  font-size: 38px;
  color: var(--dark-brown);
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 400;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  padding: 120px 40px;
  background: var(--dark-brown);
  color: #fff;
  text-align: center;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 220px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-author {
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============ VISIT ============ */
.visit {
  padding: 120px 40px;
  background: var(--cream-light);
  text-align: center;
}

.visit-grid {
  max-width: 1000px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.visit-block h4 {
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.visit-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ============ FOOTER ============ */
footer {
  background: #1f140c;
  color: var(--text-light);
  padding: 60px 40px 30px;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--text-light);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dark);
  margin: 30px auto;
}

footer .copyright {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ PRODUCT PAGE STYLES ============ */
.product-hero {
  padding: 160px 40px 80px;
  background: var(--cream-light);
  text-align: center;
}

.product-hero .breadcrumb {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.product-hero .breadcrumb a {
  color: var(--gold);
  transition: color 0.3s ease;
}

.product-hero .breadcrumb a:hover {
  color: var(--gold-dark);
}

.product-hero h1 {
  font-size: 56px;
  color: var(--dark-brown);
  font-weight: 400;
  margin-bottom: 20px;
  font-style: italic;
}

.product-hero .product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.product-grid {
  padding: 80px 40px 120px;
  background: var(--cream);
}

.product-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.product-card {
  background: var(--cream-light);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(58, 38, 24, 0.1);
}

.product-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  color: var(--gold);
}

.product-card-icon svg {
  width: 100%;
  height: 100%;
}

.product-card h3 {
  font-size: 24px;
  color: var(--dark-brown);
  margin-bottom: 12px;
  font-weight: 500;
}

.product-card .product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-card .product-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 500;
}

.back-btn {
  display: inline-block;
  margin-top: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: var(--gold-dark);
}

/* ============ MOBILE NAV ============ */
.nav-links.active {
  display: flex !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  nav { padding: 20px 35px; }
  nav.scrolled { padding: 15px 35px; }
  .featured-grid { gap: 40px; }
  .shop-grid { gap: 30px; }
  .shop-image { width: 300px; }
  .product-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .try-section { grid-template-columns: 1fr; }
  .try-image { height: 350px; }
  .try-content { padding: 60px 30px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  nav { padding: 18px 22px; }
  nav.scrolled { padding: 14px 22px; }

  .logo { font-size: 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(250, 248, 245, 0.99);
    padding: 30px 0;
    gap: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links a {
    color: var(--text-dark) !important;
  }

  .hamburger { display: flex; }

  .hero h1 { font-size: 46px; }
  .hero-sub { font-size: 19px; }
  .hero-tagline { font-size: 12px; letter-spacing: 0.4em; }

  .section-header h2 { font-size: 32px; }

  .about { padding: 90px 25px 70px; }
  .about p { font-size: 21px; }

  .featured, .menu-section, .shop, .testimonial, .visit {
    padding: 80px 25px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .feature-item h3 { font-size: 24px; }
  .feature-item p { font-size: 15px; }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .menu-name, .menu-price { font-size: 19px; }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shop-col.left .shop-item,
  .shop-col.right .shop-item {
    flex-direction: row;
    text-align: left;
  }

  .shop-image { width: 240px; }
  .shop-text h4 { font-size: 21px; }

  .try-content h2 { font-size: 28px; }

  .testimonial p { font-size: 24px; }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .visit-block p { font-size: 19px; }

  .btn { padding: 15px 34px; font-size: 11px; }

  .product-hero h1 { font-size: 38px; }
  .product-grid-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .section-header h2 { font-size: 26px; }
  .testimonial::before { font-size: 140px; top: 30px; }
  .menu-name { font-size: 17px; }
  .menu-price { font-size: 17px; }
  .menu-star { width: 36px; height: 36px; }
  .menu-star svg { width: 14px; height: 14px; }
}

/* ─── LANGUAGE SWITCHER ─────────────────────────────────────────────────────── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-toggle:hover {
  background: rgba(255,255,255,0.12);
}
#navbar.scrolled .lang-toggle {
  border-color: rgba(60,40,20,0.2);
  color: #3c2814;
}
#navbar.scrolled .lang-toggle:hover {
  background: rgba(60,40,20,0.06);
}
.lang-caret {
  transition: transform 0.2s;
}
.lang-toggle[aria-expanded="true"] .lang-caret {
  transform: rotate(180deg);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: #fff;
  border: 1px solid rgba(60,40,20,0.12);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(60,40,20,0.12);
  overflow: hidden;
  z-index: 300;
  list-style: none;
  padding: 6px;
  margin: 0;
}
.lang-dropdown.open { display: block; }
.lang-dropdown .lang-option {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #5a3e28;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}
.lang-dropdown .lang-option:hover,
.lang-dropdown .lang-option.active {
  background: #f5ede3;
  color: #3c2814;
}
/* Mobile lang row inside nav-links */
.mobile-lang-item { list-style: none; }
.mobile-lang {
  display: none;
  gap: 8px;
  padding: 10px 0 4px;
}
.mobile-lang .lang-option {
  flex: 1;
  padding: 9px 0;
  border-radius: 10px;
  border: 1px solid rgba(60,40,20,0.2);
  background: transparent;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #5a3e28;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.mobile-lang .lang-option.active {
  background: #3c2814;
  color: #fff;
  border-color: #3c2814;
}
@media (max-width: 768px) {
  .mobile-lang { display: flex; }
}
