:root{
  --bg:#fff4ec;
  --paper:#ffffff;
  --ink:#141414;
  --muted:rgba(20,20,20,.72);

  --brand:#e71d36;
  --brandGlow:rgba(231,29,54,.35);

  --footer:#10772a;
  --footerText:#fae3b9;

  --dark:#111;
  --radius:20px;
  --shadow:0 18px 40px rgba(0,0,0,.14);
  --container:1120px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.45;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
p{margin:0 0 12px;}
h1,h2,h3,h4{margin:0 0 12px;}
.muted{color:var(--muted);}

.container{
  width:min(var(--container),calc(100% - 32px));
  margin:0 auto;
}
.no-scroll{overflow:hidden;}

/* ================= Buttons ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  border:2px solid transparent;
  transition:transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);filter:brightness(.99);}
.btn:active{transform:translateY(0);}
.btn-small{padding:10px 14px;font-size:.92rem;}

.btn-solid{background:var(--brand);color:#fff;box-shadow:0 10px 22px var(--brandGlow);}
.btn-outline{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.55);color:#fff;backdrop-filter:blur(6px);}
.btn-ghost{background:rgba(0,0,0,.18);border-color:rgba(255,255,255,.22);color:#fff;backdrop-filter:blur(6px);}
.btn-dark{background:var(--dark);color:#fff;}
.btn-light{background:rgba(255,255,255,.88);border-color:rgba(0,0,0,.06);color:var(--ink);}

/* ================= NAV ================= */
.site-header{position:relative;}
.nav-bar{
  position:relative;
  width:100%;
  z-index:10;
  background:linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 100%);
}
.nav-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  padding:18px 0;
  position:relative;
}

.brand-logo{
  width:140px;
  height:auto;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.brand-desktop{display:block;}
.brand-mobile{display:none;justify-self:center;}
.brand-logo-mobile{width:120px;}

/* Desktop nav */
.nav-desktop{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-link{
  color:#fff;
  font-weight:800;
  font-size:.95rem;
  padding:10px 12px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-shadow:0 8px 18px rgba(0,0,0,.55);
  transition:background .15s ease, transform .15s ease;
}
.nav-link:hover{background:rgba(255,255,255,.14);transform:translateY(-1px);}
.nav-link:active{transform:translateY(0);}
.caret{font-size:.9em;opacity:.9;transform:translateY(1px);}
.nav-cta{justify-self:end;display:flex;align-items:center;gap:10px;}

/* Desktop dropdown */
.nav-dropdown{position:relative;display:inline-flex;align-items:center;}
.nav-dropdown::after{
  content:"";
  position:absolute;
  left:-12px; right:-12px;
  top:100%;
  height:14px;
}
.dropdown-panel{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:240px;
  padding:10px;
  border-radius:16px;
  background:rgba(10,10,10,.92);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  z-index:1000;

  opacity:0;
  visibility:hidden;
  transform:translateY(-6px);
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.dropdown-panel a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:rgba(255,255,255,.95);
  font-weight:800;
  transition:background .15s ease, transform .15s ease;
}
.dropdown-panel a:hover{
  background:rgba(255,255,255,.10);
  transform:translateX(2px);
}

/* Mobile menu button */
.menu-btn{
  display:none;
  justify-self:end;
  width:46px;height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(6px);
  cursor:pointer;
  padding:0;
}
.menu-btn span{
  display:block;
  width:20px;height:2px;
  background:#fff;
  border-radius:2px;
  margin:5px auto;
}

/* ================= MOBILE MENU ================= */
.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:40;
  opacity:0;
  transition:opacity .18s ease;
}
.mobile-overlay.is-open{opacity:1;}

.mobile-menu{
  position:fixed;
  inset:auto 16px 18px 16px;
  top:96px;
  height:calc(100dvh - 120px);
  max-height:680px;

  z-index:50;
  border-radius:24px;
  background:rgba(15,15,15,.92);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 26px 70px rgba(0,0,0,.35);
  backdrop-filter:blur(16px);

  transform:translateY(18px);
  opacity:0;
  pointer-events:none;
  transition:transform .18s ease, opacity .18s ease;
  overflow:hidden;
}
.mobile-menu.is-open{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px 10px;
}
.mobile-menu-title{font-weight:900;color:#fff;letter-spacing:.2px;}
.mobile-close{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}

.mobile-links{
  padding:10px 14px 16px;
  overflow:auto;
  height:calc(100% - 64px);
}

/* unified style for all mobile menu rows */
.m-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;

  padding:14px 14px;
  border-radius:16px;
  color:#fff;

  font-weight:900;
  font-size:1.35rem;
  line-height:1.15;

  margin-bottom:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.m-link:hover{background:rgba(255,255,255,.10);}

.m-cta{
  width:100%;
  margin-top:6px;
  border-radius:18px;
  padding:16px 18px;
  font-size:1.2rem;
}

/* Accordion */
.m-accordion{margin:0 0 12px;}
.m-accordion-trigger{
  border:0;
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.m-caret{
  opacity:.9;
  transition:transform .16s ease;
  font-size:1rem;
}
.m-accordion-trigger[aria-expanded="true"] .m-caret{transform:rotate(180deg);}

.m-accordion-panel{padding:2px 6px 10px;}
.m-sublink{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:#fff;
  font-weight:900;
  margin:10px 0 0;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  font-size:1.05rem;
}
.m-sublink:hover{background:rgba(255,255,255,.10);}

/* ================= HERO ================= */
.hero{
  position:relative;
  min-height:78vh;   /* mobile/tablet default */
  height:auto;

  overflow:hidden;
  display:flex;
  align-items:stretch;
}
/* desktop only: taller hero */
@media (min-width:1024px){
  .hero{min-height:92vh;height:92vh;}
}
@media (min-width:1400px){
  .hero{min-height:96vh;height:96vh;}
}

.hero-media{position:absolute;inset:0;z-index:0;}
.hero-video{
  width:100%;height:100%;
  object-fit:cover;
  transform:scale(1.02);
  filter:saturate(1.08) contrast(1.05);
}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(90deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.42) 46%, rgba(0,0,0,.16) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:86px 0 70px;
  color:#fff;
}
@media (min-width:1024px){
  .hero-content{padding-top:110px;padding-bottom:80px;}
}
.pill{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight:800;
  margin-bottom:16px;
}
.hero-title{
  font-size:clamp(2.4rem,5.2vw,4.1rem);
  line-height:1.05;
  letter-spacing:.4px;
  font-weight:900;
}
.hero-script{
  display:block;
  margin-top:6px;
  font-family:"Playfair Display",serif;
  font-style:italic;
  font-weight:700;
  font-size:clamp(2.7rem,6.3vw,4.8rem);
  opacity:.95;
}
.hero-sub{
  max-width:660px;
  font-size:1.06rem;
  color:rgba(255,255,255,.92);
  margin:10px 0 22px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;}
.hero-badge{
  margin-top:28px;
  display:inline-flex;
  flex-direction:column;
  gap:6px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.18);
  width:fit-content;
}
.hero-badge-top{font-weight:900;}
.hero-badge-big{font-size:1.5rem;font-weight:900;}
.hero-badge-bottom{color:rgba(255,255,255,.86);font-weight:700;}

/* ================= BACK TO TOP ================= */
.to-top{
  position:fixed;
  right:16px;
  bottom:18px;
  z-index:60;
  width:48px;height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.75);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease, background .15s ease;
  font-weight:900;
  font-size:1.1rem;
}
.to-top:hover{background:rgba(231,29,54,.88);}
.to-top.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* ================= GALLERY ================= */
.gallery{width:100%;background:#000;overflow:hidden;}
.gallery-track{
  display:flex;
  gap:0;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.gallery-track::-webkit-scrollbar{display:none;}
.gallery-item{margin:0;flex:0 0 auto;width:16.666vw;scroll-snap-align:start;}
.gallery-item img{width:100%;height:220px;object-fit:cover;display:block;}
@media (max-width:980px){
  .gallery-item{width:33.333vw;}
  .gallery-item img{height:200px;}
}
@media (max-width:560px){
  .gallery-item{width:70vw;}
  .gallery-item img{height:190px;}
}

/* ================= SECTIONS ================= */
.section{padding:56px 0;}
.section-title{font-weight:900;font-size:clamp(1.7rem,2.8vw,2.3rem);}
.section-text{color:rgba(20,20,20,.82);font-weight:600;max-width:720px;}
.center{text-align:center;}
.center .section-text{margin:0 auto;}

/* ================= ABOUT ================= */
.about{background:#ffece4;}
.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.media-card{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--paper);
}
.media-card img{width:100%;height:360px;object-fit:cover;}
.media-card figcaption{padding:14px 16px;font-weight:800;color:rgba(20,20,20,.78);}
.checklist{
  margin:14px 0 18px;
  padding-left:18px;
  color:rgba(20,20,20,.82);
  font-weight:700;
}
.checklist li{margin:6px 0;}
.stack{display:flex;flex-wrap:wrap;gap:12px;}

/* ================= ORDER STRIP ================= */
.order{
  padding:64px 0;
  background:linear-gradient(180deg,var(--brand) 0%, #ff3b4f 100%);
  color:#fff;
}
.order-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:center;
}
.order-panel{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(10px);
  border-radius:24px;
  padding:26px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}
.order-title{font-size:2rem;font-weight:900;margin-bottom:10px;}
.order-text{color:rgba(255,255,255,.92);font-weight:600;max-width:520px;}
.order-buttons{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap;}
.order-tags{margin-top:18px;display:flex;flex-wrap:wrap;gap:10px;font-weight:800;font-size:.9rem;}
.order-tags span{background:rgba(0,0,0,.18);padding:8px 12px;border-radius:999px;}
.order-info-title{font-weight:900;margin-bottom:8px;}
.order-info-text{color:rgba(255,255,255,.9);font-weight:600;}
.delivery-row{display:flex;gap:16px;align-items:center;margin:18px 0;flex-wrap:wrap;}
.delivery-row img{height:34px;width:auto;display:block;transition:transform .15s ease, filter .15s ease;}
.delivery-row a:hover img{transform:translateY(-2px);filter:brightness(1.05);}
.order-small{font-size:.9rem;color:rgba(255,255,255,.85);font-weight:600;}

/* ================= BUILT FRESH ================= */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
  margin-top:24px;
  align-items:start;
}
.feature-card{position:relative;text-align:center;padding-top:30px;}
.feature-card h3{margin-top:16px;font-weight:900;letter-spacing:.8px;font-size:1.02rem;}
.feature-card p{margin:10px auto 0;max-width:340px;color:rgba(20,20,20,.78);font-weight:600;line-height:1.6;}
.chili-img{
  position:absolute;
  width:140px;
  height:auto;
  z-index:3;
  pointer-events:none;
  user-select:none;
  filter:drop-shadow(0 16px 22px rgba(0,0,0,.22));
}
.chili--a{left:-44px;top:-44px;transform:rotate(-10deg);}
.chili--b{left:-26px;top:-26px;transform:rotate(12deg);}
.chili--c{right:-44px;top:-44px;transform:rotate(8deg);}
.feature-photo{
  width:100%;
  max-width:360px;
  margin:0 auto;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  background:#000;
  position:relative;
  z-index:2;
}
.feature-photo img{width:100%;height:180px;object-fit:cover;display:block;transform:scale(1.03);}
.shape-1{clip-path:polygon(6% 10%, 94% 6%, 98% 28%, 95% 94%, 12% 96%, 3% 74%);border-radius:10px;}
.shape-2{clip-path:polygon(8% 6%, 96% 10%, 92% 96%, 14% 92%, 4% 70%, 6% 28%);border-radius:10px;}
.shape-3{clip-path:polygon(6% 12%, 96% 6%, 98% 72%, 88% 96%, 10% 94%, 2% 40%);border-radius:10px;}

/* ================= CATERING ================= */
.catering{background:#fff2ea;}
.catering-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:24px;align-items:stretch;}
.catering-card{
  background:var(--paper);
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:24px;
  box-shadow:0 16px 34px rgba(0,0,0,.10);
}
.catering-bullets{margin:14px 0 18px;display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.bullet{
  background:rgba(231,29,54,.08);
  border:1px solid rgba(231,29,54,.16);
  padding:10px 12px;
  border-radius:14px;
  font-weight:800;
  color:rgba(20,20,20,.85);
}
.catering-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:6px;}
.catering-note{margin-top:12px;color:rgba(20,20,20,.68);font-weight:700;}
.catering-photo{margin:0;border-radius:24px;overflow:hidden;box-shadow:0 18px 40px rgba(0,0,0,.14);}
.catering-photo img{width:100%;height:100%;min-height:340px;object-fit:cover;}

/* ================= REVIEWS (AUTO SCROLL MARQUEE) ================= */
.reviews{
  background:#fff2ea;
  padding-top:44px;
  padding-bottom:66px;
}
.reviews-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.reviews-hint{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color:rgba(20,20,20,.65);
  user-select:none;
}
.reviews-hint .dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--brand);
  box-shadow:0 10px 22px rgba(231,29,54,.25);
}

/* wrapper with edge fades */
.reviews-marquee{
  position:relative;
  overflow:hidden;
  padding:8px 0;
}
.reviews-marquee::before,
.reviews-marquee::after{
  content:"";
  position:absolute;
  top:0;bottom:0;
  width:64px;
  z-index:2;
  pointer-events:none;
}
.reviews-marquee::before{
  left:0;
  background:linear-gradient(90deg, #fff2ea 0%, rgba(255,242,234,0) 100%);
}
.reviews-marquee::after{
  right:0;
  background:linear-gradient(270deg, #fff2ea 0%, rgba(255,242,234,0) 100%);
}

/* lane: duplicated set creates seamless loop */
.reviews-lane{
  display:flex;
  gap:14px;
  width:max-content;
  will-change:transform;
  animation:reviews-scroll 42s linear infinite;
}
.reviews-marquee:hover .reviews-lane,
.reviews-marquee.is-paused .reviews-lane{
  animation-play-state:paused;
}

/* allow manual swipe/scroll on mobile too */
.reviews-marquee{
  touch-action:pan-x;
}
@media (max-width:980px){
  /* On mobile, slow down a bit */
  .reviews-lane{animation-duration:58s;}
}

/* keyframes: move half the content (because we duplicated the set) */
@keyframes reviews-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.review-card{
  flex:0 0 auto;
  width:min(420px,86vw);
  background:#fff;
  border-radius:22px;
  padding:16px 16px 14px;
  box-shadow:0 16px 34px rgba(0,0,0,.10);
  transition:transform .15s ease, box-shadow .15s ease;
}
.review-card:hover{transform:translateY(-2px);box-shadow:0 20px 44px rgba(0,0,0,.12);}
.review-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.review-name{font-weight:900;}
.review-stars{color:var(--brand);font-weight:900;letter-spacing:1px;}
.review-text{
  font-weight:600;
  color:rgba(20,20,20,.78);
  line-height:1.6;
  margin:0 0 10px;
}
.review-meta{
  font-weight:800;
  font-size:.9rem;
  color:rgba(20,20,20,.55);
}

/* Reduced motion: stop animation */
@media (prefers-reduced-motion: reduce){
  .reviews-lane{animation:none;}
  .reviews-marquee{overflow-x:auto;}
}

/* ================= MAP ================= */
.map-wrap{width:100%;margin:0;padding:0;overflow:hidden;background:#000;}
.map-embed{width:100%;height:420px;border:0;display:block;filter:grayscale(100%) contrast(1.1) brightness(.95);}

/* ================= FOOTER ================= */
.footer{background:var(--footer);color:var(--footerText);padding:46px 0;}
.footer-grid{display:grid;grid-template-columns:1.1fr 1fr 1fr 1fr;gap:18px;}
.footer-title{font-weight:900;color:var(--footerText);margin-bottom:10px;}
.footer-muted{color:rgba(250,227,185,.88);}
.footer-fine{margin-top:14px;font-size:.9rem;color:rgba(250,227,185,.88);}

.social{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:12px;
}
.social-icon{
  width:44px;height:44px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(250,227,185,.12);
  border:1px solid rgba(250,227,185,.35);
  color:var(--footerText);
  transition:transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.social-icon svg{width:20px;height:20px;fill:currentColor;}
.social-icon:hover{
  transform:translateY(-2px);
  filter:brightness(1.06);
  background:rgba(250,227,185,.18);
  color:#fff;
}

.delivery-icons{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:12px;}
.delivery-link{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:999px;
  background:rgba(250,227,185,.12);
  border:1px solid rgba(250,227,185,.35);
  color:var(--footerText);
  font-weight:900;
  transition:transform .15s ease, filter .15s ease, background .15s ease;
}
.delivery-link:hover{
  transform:translateY(-2px);
  filter:brightness(1.06);
  background:rgba(250,227,185,.18);
}

/* Reduce motion for hero video */
@media (prefers-reduced-motion: reduce){
  .hero-video{display:none;}
  .hero-media{background:url("img/hero-poster.jpg") center/cover no-repeat;}
}

/* Responsive */
@media (max-width:980px){
  .nav-desktop{display:none;}
  .nav-cta{display:none;}
  .menu-btn{display:inline-block;}

  .brand-desktop{display:none;}
  .brand-mobile{display:flex;}

  .about-grid{grid-template-columns:1fr;}
  .media-card img{height:320px;}
  .order-grid{grid-template-columns:1fr;}
  .feature-grid{grid-template-columns:1fr;gap:26px;}
  .feature-photo img{height:200px;}
  .catering-grid{grid-template-columns:1fr;}
  .catering-bullets{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}

  .chili-img{width:120px;}
  .chili--a,.chili--b,.chili--c{left:-18px;right:auto;top:-30px;}

  .reviews-head{flex-direction:column;align-items:flex-start;}
}

@media (max-width:560px){
  .brand-logo-mobile{width:110px;}
  .hero-content{padding:72px 0 56px;}
  .footer-grid{grid-template-columns:1fr;}
  .map-embed{height:360px;}
  .chili-img{width:105px;}
  .chili--a,.chili--b,.chili--c{left:-14px;top:-28px;}

  .reviews-marquee::before,
  .reviews-marquee::after{width:40px;}
}

@media (max-width:420px){
  .hero-actions .btn{width:100%;}
}
/* ===============================
   FOOTER DELIVERY ICONS (IMAGES)
================================ */

.footer-delivery{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-delivery a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-delivery img{
  height:42px;
  width:auto;
  object-fit:contain;
}

/* subtle restaurant-style hover */
.footer-delivery a:hover{
  transform:translateY(-3px);
  opacity:.9;
}

/* mobile sizing */
@media(max-width:600px){
  .footer-delivery img{
    height:36px;
  }
}