/* =========================================================
   Cafe Awara — Main Stylesheet
   ========================================================= */

:root{
  --color-cream: #f8f1e4;
  --color-cream-dark: #efe3cd;
  --color-coffee: #3b2a20;
  --color-coffee-light: #5a4534;
  --color-terracotta: #c9682f;
  --color-terracotta-dark: #a8531f;
  --color-green: #2f5233;
  --color-green-dark: #203a24;
  --color-white: #ffffff;
  --color-text: #3b2a20;
  --color-muted: #7a6f64;
  --shadow-soft: 0 10px 30px rgba(59, 42, 32, 0.12);
  --shadow-strong: 0 20px 45px rgba(0,0,0,0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

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

html{ scroll-behavior: smooth; }

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

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

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

ul{ list-style: none; margin: 0; padding: 0; }

.container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}

.section-title{
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--color-coffee);
  margin: 0 0 16px;
  line-height: 1.2;
}

.section-subtitle{
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

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

.section-header.align-left{
  text-align: left;
  margin-bottom: 32px;
}

section{ padding: 88px 0; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary{
  background: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(201, 104, 47, 0.35);
}
.btn-primary:hover{
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
}

.btn-outline{
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-outline:hover{
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-dark{
  background: var(--color-coffee);
  color: var(--color-white);
}
.btn-dark:hover{
  background: var(--color-green-dark);
  transform: translateY(-2px);
}

.btn-block{ width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 22px 0;
}

.site-header.scrolled{
  background: rgba(248, 241, 228, 0.97);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color 0.35s ease;
}

.site-header.scrolled .brand{ color: var(--color-coffee); }

.brand .brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a{
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-white);
  position: relative;
  padding: 6px 0;
  transition: color 0.35s ease;
}

.site-header.scrolled .nav-links a{ color: var(--color-coffee); }

.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{ width: 100%; }

.nav-cta{ display: flex; align-items: center; gap: 16px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1200;
}
.nav-toggle span{
  width: 26px; height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}
.site-header.scrolled .nav-toggle span{ background: var(--color-coffee); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(20,14,10,0.55), rgba(20,14,10,0.72)), url('../images/cafe-awara-storefront-night.jpg') center/cover no-repeat;
  color: var(--color-white);
}

.hero-inner{
  max-width: 720px;
  padding-top: 120px;
}

.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}

.hero h1{
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  margin: 0 0 22px;
}

.hero h1 span{ color: var(--color-terracotta); font-style: italic; }

.hero p{
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 28px;
}

.hero-stats div strong{
  font-family: var(--font-heading);
  font-size: 1.8rem;
  display: block;
  color: var(--color-terracotta);
}
.hero-stats div span{
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scroll-cue{
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, 10px); }
}

/* ---------- About ---------- */
.about{ background: var(--color-white); }

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-media{
  position: relative;
}

.about-media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-media .badge{
  position: absolute;
  bottom: -28px;
  right: -20px;
  background: var(--color-green);
  color: var(--color-white);
  padding: 20px 26px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.about-media .badge strong{
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}
.about-media .badge span{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-text p{ color: var(--color-muted); margin-bottom: 18px; }

.about-list{
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
}
.about-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--color-coffee);
}
.about-list li i{
  color: var(--color-terracotta);
  margin-top: 3px;
}

/* ---------- Highlights ---------- */
.highlights{ background: var(--color-cream-dark); }

.highlight-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.highlight-card{
  background: var(--color-white);
  padding: 36px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.highlight-card:hover{ transform: translateY(-8px); }

.highlight-icon{
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.highlight-card h3{
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--color-coffee);
}
.highlight-card p{ color: var(--color-muted); font-size: 0.95rem; margin: 0; }

/* ---------- Menu teaser ---------- */
.menu-teaser{
  background: var(--color-coffee);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.menu-teaser::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/cafe-awara-2.jpg') center/cover;
  opacity: 0.14;
}
.menu-teaser-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.menu-teaser .section-subtitle{ color: rgba(255,255,255,0.78); margin: 0 auto 34px; }
.menu-teaser-cats{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.menu-teaser-cats span{
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ---------- Gallery ---------- */
.gallery{ background: var(--color-white); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img{ transform: scale(1.08); }

.gallery-item::after{
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  background: rgba(59,42,32,0);
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-item:hover::after{
  background: rgba(59,42,32,0.45);
  opacity: 1;
}

.gallery-item.tall{ grid-row: span 2; }
.gallery-item.wide{ grid-column: span 2; }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(20,14,10,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.open{ display: flex; }
.lightbox img{
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close{
  position: absolute;
  top: 28px; right: 34px;
  color: #fff;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover{ background: rgba(255,255,255,0.25); }
.lightbox-prev{ left: 24px; }
.lightbox-next{ right: 24px; }

/* ---------- Location ---------- */
.location{ background: var(--color-cream-dark); }

.location-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.location-card{
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.location-card h3{
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-coffee);
  margin: 0 0 22px;
}

.info-row{
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-cream-dark);
}
.info-row:last-child{ border-bottom: none; }
.info-row i{
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-row .label{
  font-weight: 700;
  color: var(--color-coffee);
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.info-row .value{ color: var(--color-muted); font-size: 0.95rem; }

.hours-table{ width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td{ padding: 6px 0; font-size: 0.95rem; color: var(--color-muted); }
.hours-table td:last-child{ text-align: right; font-weight: 600; color: var(--color-coffee); }

.map-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 340px;
  border: none;
}
.map-frame iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.social-row{
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.social-row a{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-coffee);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.social-row a:hover{ background: var(--color-terracotta); transform: translateY(-3px); }

/* ---------- Testimonials ---------- */
.testimonials{ background: var(--color-white); }

.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card{
  background: var(--color-cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial-card .stars{ color: #e5a53a; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-card p{ color: var(--color-coffee); font-style: italic; margin-bottom: 20px; }
.testimonial-author{ display: flex; align-items: center; gap: 12px; }
.testimonial-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}
.testimonial-author strong{ display: block; font-size: 0.95rem; color: var(--color-coffee); }
.testimonial-author span{ font-size: 0.8rem; color: var(--color-muted); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--color-green), var(--color-green-dark));
  color: #fff;
  text-align: center;
}
.cta-banner h2{
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 18px;
}
.cta-banner p{ color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 32px; }
.cta-actions{ display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--color-coffee);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col h4{
  color: #fff;
  font-size: 1rem;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul li{ margin-bottom: 12px; }
.footer-col ul li a:hover{ color: var(--color-terracotta); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
}
.footer-bottom .social-row a{ background: rgba(255,255,255,0.08); }

/* ---------- Menu page ---------- */
.page-hero{
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(20,14,10,0.6), rgba(20,14,10,0.75)), url('../images/cafe-awara-storefront-day.jpg') center/cover;
  padding-top: 90px;
}
.page-hero .breadcrumb{
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.page-hero h1{
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0;
}

.menu-viewer{ background: var(--color-white); }
.menu-viewer-panel{
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.menu-viewer-toolbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.menu-viewer-toolbar h3{
  font-family: var(--font-heading);
  color: var(--color-coffee);
  margin: 0;
  font-size: 1.3rem;
}
.pdf-frame-wrap{
  width: 100%;
  min-height: 620px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(59,42,32,0.08);
}
.pdf-frame-wrap embed,
.pdf-frame-wrap iframe{
  width: 100%;
  height: 620px;
  border: none;
}
.menu-fallback{
  text-align: center;
  padding: 70px 24px;
}
.menu-fallback i{
  font-size: 3rem;
  color: var(--color-terracotta);
  margin-bottom: 20px;
}
.menu-fallback h3{
  font-family: var(--font-heading);
  color: var(--color-coffee);
  margin: 0 0 12px;
  font-size: 1.5rem;
}
.menu-fallback p{ color: var(--color-muted); max-width: 460px; margin: 0 auto 26px; }

.menu-categories{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.menu-cat-card{
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.menu-cat-card i{
  font-size: 1.8rem;
  color: var(--color-terracotta);
  margin-bottom: 16px;
}
.menu-cat-card h4{
  font-family: var(--font-heading);
  margin: 0 0 8px;
  color: var(--color-coffee);
}
.menu-cat-card p{ color: var(--color-muted); font-size: 0.9rem; margin: 0; }

/* ---------- Utility / animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float{
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 28px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); color: #fff; }

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
  border: none;
  cursor: pointer;
}
.back-to-top.show{ opacity: 1; pointer-events: auto; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1023px){
  .about-grid{ grid-template-columns: 1fr; }
  .highlight-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .location-grid{ grid-template-columns: 1fr; }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .menu-categories{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px){
  section{ padding: 64px 0; }
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--color-coffee);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 36px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1100;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ color: #fff; font-size: 1.1rem; }
  .nav-cta .btn-primary{ display: none; }
  .nav-toggle{ display: flex; }

  .hero{ min-height: 92vh; }
  .hero-inner{ padding-top: 100px; }
  .hero-stats{ gap: 26px; }

  .highlight-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide{ grid-column: span 2; }
  .gallery-item.tall{ grid-row: span 1; }

  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }

  .menu-categories{ grid-template-columns: 1fr; }
  .pdf-frame-wrap, .pdf-frame-wrap embed, .pdf-frame-wrap iframe{ height: 480px; }
}
</style>
