@import url('https://fonts.googleapis.com/css2?family=Anton&family=Teko:wght@400;500;600;700&display=swap');

:root{

  /* PAGE */

  --page-padding:1vh;
  --column-gap:1.5vw;

  /* CATEGORY SPACING */

  --left-category-gap:0.5vh;
  --right-category-gap:0.5vh;

  /* HEADER */

  --banner-height:6.5vh;
  --banner-radius:12px;

  --header-title-size:5.2vh;

  /* ITEMS */

  --item-size:3.2vh;
  --price-size:3.6vh;

  --item-gap:0.45vh;
  --item-price-gap:0.4vw;

  /* DOT */

  --dot-size:1.5vh;
  --dot-gap:0.25vw;

  /* LOGO */

  --logo-size:7vh;
  --name-height:5vh;

  /* DEFAULT SLIDER */

  --slider-radius:12px;

}

/* RESET */

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

body{

  background:#ffffff;

  width:100vw;
  height:100vh;

  overflow:hidden;

  padding:var(--page-padding);

  position:relative;

}

/* LOGO */

.brand{

  position:fixed;

  right:1vw;
  bottom:1vh;

  display:flex;

  align-items:center;

  gap:0.5vw;

  z-index:100;

}

.brand-logo{

  width:var(--logo-size);

  height:var(--logo-size);

  object-fit:contain;

}

.brand-name{

  height:var(--name-height);

  width:auto;

}

/* MAIN GRID */

#menu-container{

  display:grid;

  grid-template-columns:
    1fr
    1fr;

  gap:var(--column-gap);

  width:100%;
  height:100%;

}

/* LEFT COLUMN */

#left-column{

  display:flex;

  flex-direction:column;

  gap:var(--left-category-gap);

  min-width:0;

}

/* RIGHT COLUMN */

#right-column{

  display:flex;

  flex-direction:column;

  gap:var(--right-category-gap);

  min-width:0;

}

/* CATEGORY */

.category-section{

  display:flex;

  flex-direction:column;

  min-width:0;

}

/* HEADER */

.category-header{

  height:var(--banner-height);

  display:flex;

  align-items:center;

  justify-content:center;

  border-radius:var(--banner-radius);

  margin-bottom:0.6vh;

  color:white;

  font-family:'Teko',sans-serif;

}

/* COLORS */

.drinks{
  background:#00897b;
}

.desserts{
  background:#c62828;
}

.snacks{
  background:#f57c00;
}

.pastries{
  background:#8e24aa;
}

/* HEADER TITLE */

.header-title{

  font-size:var(--header-title-size);

  font-weight:700;

  line-height:1;

}

/* CATEGORY BODY */

.category-body{

  display:grid;

  grid-template-columns:
    74%
    26%;

  gap:0.4vw;

  align-items:start;

}

/* MENU ITEMS */

.menu-items{

  min-width:0;

}

/* ITEM */

.item{

  display:grid;

  grid-template-columns:
    minmax(0,1fr)
    auto;

  align-items:center;

  column-gap:var(--item-price-gap);

  margin-bottom:var(--item-gap);

}

/* ITEM LEFT */

.item-left{

  display:flex;

  align-items:center;

  gap:var(--dot-gap);

  min-width:0;

}

/* DOT */

.type-dot{

  width:var(--dot-size);

  height:var(--dot-size);

  border-radius:50%;

  flex-shrink:0;

}

/* ITEM NAME */

.item-name{

  font-family:'Anton',sans-serif;

  font-size:var(--item-size);

  color:#111;

  line-height:1.05;

  white-space:normal;

  overflow:visible;

}

/* PRICE */

.item-price{

  font-family:'Anton',sans-serif;

  font-size:var(--price-size);

  color:#1f6b3c;

  white-space:nowrap;

}

.item-price.na{

  color:#e53935;

}

/* DEFAULT SLIDER */

.slider-box{

  border-radius:var(--slider-radius);

  overflow:hidden;

  background:#ffffff;

  display:flex;

  align-items:center;

  justify-content:center;

}

/* DRINKS */

.drinks-slider{

  width:12vw;
  height:16vh;

}

/* DESSERTS */

.desserts-slider{

  width:10vw;
  height:14vh;

}

/* SNACKS */

.snacks-slider{

  width:10vw;
  height:12vh;

}

/* PASTRIES */

.pastries-slider{

  width:11vw;
  height:15vh;

}

/* IMAGE */

.slider-image{

  width:100%;

  height:100%;

  object-fit:contain;

  object-position:center;

  display:block;

}