:root {
    --orange: #F5A800;
    --dark: #1a1008;
}

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

.html{
    scroll-behavior: smooth;
}

@media  (max-width: 800px) {



  /*===========================
    TOAST
  ==============================*/

  .toast {
    font-weight: bold;
    font-family: "Inter", sans-serif;
  position: fixed;

  bottom: 20px;
  left: 50%;

  transform: translateX(-50%) translateY(100px);

  background: black;
  color: white;

  padding: 14px 25px;
  width: 270px;

  border-radius: 14px;

  font-size: 15px;

  opacity: 0;

  transition: 0.3s ease;

  z-index: 9999;
}

.toast.show {
  opacity: 1;

  transform: translateX(-50%) translateY(0);
}
  


/*=========================
    MOBILE-FIRST
==========================*/

body{
    flex-direction: column;
    display: flex;
    background: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}


.show-nav {
  position: fixed;
  top: 0;
  left: 10px;
  right: 10px;
  background: linear-gradient(160deg, #1a1008 0%, #2a1c0a 100%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 89;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  padding-bottom: 18px;
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}

.show-nav::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 14px auto 0;
}

.show-nav a {
  color: white;
  text-decoration: none;
}

.show-nav.open {
  transform: translateY(72px);
}

.show-nav span {
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.show-nav span a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-size: 18px;
  font-family: "Archivo Black", sans-serif;
  color: rgba(255,255,255,0.92);
  transition: background 0.18s ease, color 0.18s ease;
}

.show-nav span a::after {
  content: '›';
  font-size: 22px;
  opacity: 0.4;
}

.show-nav span a:active {
  background: rgba(245,168,0,0.12);
  color: #F5A800;
}

.puh-mob {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 16px 0;
  padding: 13px 20px;
  background: #F5A800;
  border-radius: 14px;
  font-size: 17px;
  font-family: "Archivo Black", sans-serif;
  color: #1a1008;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease;
}

.puh-mob:active {
  background: #e09700;
}

.overlay{
    position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 88;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

/*============
    NAVBAR
==============*/

.nav-holder{
    max-height: 120px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.nav-left-group{
    display: none;
}

.nav-holder2{
    display: none;
}

.navbar{
    position: fixed;
    max-height: 80px;
    width: 100%;
    z-index: 10;
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    padding: 25px;
    border-bottom: none;
    transition: background 0.25s ease;
}

.navbar.scrolled{
    background: black;
}

.logo{
    margin-top: 5px;
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 60px;
}

.logo-desktop{
  display: none;
}


.hamburger{
    font-weight: bold;
    color: white;
    border: none;
    font-size: 40px;
    background: none;
}

.cart{
  position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    border: none;
    background: none;
}

.cart-pic{
    width: 30px;
    height: 30px;
    margin-top: 3px;
    color: #fff;
    display: block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.cart:hover .cart-pic{
    color: #F5A800;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #F5A800;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    pointer-events: none;
}

.viiva1{
    border: none;
    height: 2px;
    width: 100%;
    background: orange;
}


/*==============
    SECTION1
================*/

.section1{
    padding: 110px 35px 35px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(135deg, #1a1008 0%, #0f0904 55%, #1a0e05 100%);
    width: 100%;
    height: auto;
}

.section1 h1{
    font-size: 3.5rem;
    color: white;
     font-family: "Bebas Neue", sans-serif;
}

.section1 h1 span{
    color: orange;
}

.hero1{
     font-size: 18px;
    margin-top: 10px;
    color: #adadad;
    font-weight: 400;
     font-family: "Inter", sans-serif;
}

/*=============
SECTION2
===============*/




.section2{
    font-family: "Inter", sans-serif;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #edeae4;
    width: 100%;
    height: auto;
}

.btn-container{
   display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 2rem;
  background: #edeae4;
  border-bottom: 2px solid rgba(0,0,0,.06);
}

.btn-container a{
    text-decoration: none;
     background: none;
  border: 2px solid rgba(0,0,0,.1);
  padding: .6rem 1.6rem;
  border-radius: 50px;
  font-weight: 900;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text);
  transition: all .2s;
}

.btn-container a:hover{
     border-color: var(--orange);
  color: var(--orange);
}

.btn-container a.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,168,0,.35);
}

/*==============
    SECTION3
===============*/

.section3{
    padding: 15px;
    align-self: flex-start;
    justify-content: flex-start;
    display: grid;
    grid-template-columns: repeat(1fr);
    background: #FFF8EC;
    width: 100%;
    height: auto;
}

.otsikko{
    font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--dark);
  padding-bottom: 0;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}

.line{
    display: none;
}


.holder-a, .holder-b, .holder-c, .holder-a3 {
  margin-top: 40px;
}

/*=========================
  MENU-RAKENNE
==========================*/

.menu-wrapper {
  background: #edeae4;
  padding: 20px 0 50px;
  overflow-x: hidden;
}

.menu-inner {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
  overflow: hidden;
}

.menu-category {
  margin-top: 40px;
}

.category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #1a1008;
  border-bottom: 3px solid #F5A800;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

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

/*=========================
  ANIMAATIOT
==========================*/

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

.pizza-card {
  opacity: 0;
  transform: translateY(24px);
}

.pizza-card.visible {
  animation: fadeSlideUp 0.4s ease forwards;
}

.category-title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/*=========================
  PIZZA-KORTTI
==========================*/

.pizza-card {
  border-radius: 20px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #f0ede8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 14px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.pizza-card:hover {
  box-shadow: 0 8px 24px rgba(245,168,0,0.16);
  transform: translateY(-2px);
}

.pizza-card.featured {
  border-color: rgba(245,168,0,0.5);
}

/* Kuva-alue — pyöreä */
.pizza-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ede9e3;
}

.pizza-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.pizza-img.img-loaded {
  opacity: 1;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pizza-img-wrap.skeleton {
  background: linear-gradient(90deg, #ede9e3 25%, #cfc8bf 50%, #ede9e3 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

/* Tuotteen tiedot */
.pizza-info {
  flex: 1;
  min-width: 0;
}

.pizza-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: #111111;
  letter-spacing: 0.6px;
  margin: 0 0 4px;
  line-height: 1.1;
}

.pizza-ingredients {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: #aaaaaa;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hinta + nappi */
.pizza-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pizza-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  color: #111111;
  white-space: nowrap;
}

.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5A800;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.add-btn:hover {
  background: #D48A00;
  transform: scale(1.1);
}

/* Suosittu-badge */
.pizza-badge {
  position: absolute;
  top: 0;
  right: 16px;
  background: #F5A800;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
}

/* Korttien grid — 1 sarake mobiililla */
.holder-a2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.holder-a2 .otsikko,
.holder-a2 .line {
  grid-column: 1 / -1;
}

/*-------------------------TUOTE----------------*/

.menu-item {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1.5px solid rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
  position: relative;
}

.menu-item:hover {
  box-shadow: 0 6px 20px rgba(245,168,0,.18);
  transform: translateY(-2px);
}

/* Pyöreä kuva-alue */
.menu-item-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0ede8;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Emoji placeholder kunnes kuva lisätään */
.menu-item-emoji {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFF8EC;
  border: 2px dashed #F5A800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.menu-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.menu-item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #111;
  letter-spacing: 0.5px;
}

.menu-item-desc {
  font-size: .78rem;
  color: #999;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-item-badges {
  display: flex;
  gap: .3rem;
  margin-top: 4px;
  flex-wrap: wrap;
}

.menu-item-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.menu-item-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  color: #111;
  white-space: nowrap;
}

.add-btn {
  background: #F5A800;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  line-height: 1;
  flex-shrink: 0;
}

.add-btn:hover {
  background: #D48A00;
  transform: scale(1.1);
}

/* Suosittu-badge */
.badge-suositu {
  position: absolute;
  top: -10px;
  right: 14px;
  background: #F5A800;
  color: #fff;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}

.badge {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 50px;
}

.badge-veg  { background: #eafaf1; color: #27ae60; }
.badge-hot  { background: #ffeaea; color: #c0392b; }
.badge-new  { background: #fff3cd; color: #d48a00; }
.badge-suos { background: #fff3cd; color: #d48a00; }



/*=================
    FOOTER
===================*/

footer{
      background: linear-gradient(135deg, #0a0503 0%, #150a02 50%, #0a0303 100%);
   padding: 25px;
    color: black;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    height: auto;   
}

.logo2{
    border-radius: 50%;
    height: auto;
    width: 20%;
}

.low-hero{
    font-size: 15px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}




.auk{
     font-size: 20px;
    margin-top: 30px;
    color: white;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}

.auk2{
    padding: 5px;
     font-size: 18px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}





/*============================
  PIZZA-MODAL
===============================*/

.overlay2 {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.overlay2.active {
  opacity: 1;
  pointer-events: all;
}

.pizza-modal {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  max-height: 90vh;
  background: #FEFEFE;
  border-radius: 28px 28px 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: bottom 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 999;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.18);
}

.pizza-modal.active { bottom: 0; }

.drag-line {
  width: 44px;
  height: 4px;
  background: #ddd;
  border-radius: 4px;
  margin: 12px auto 0;
}

.modal-img-wrap {
  position: relative;
  width: 100%;
}

.modal-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.55rem;
  color: #1a1008;
  padding: 16px 20px 2px;
  margin: 0;
}

.big-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  color: #111;
  text-transform: uppercase;
  padding: 16px 20px 8px;
  margin: 0;
  border-top: 1px solid #f2f2f2;
}

.options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 4px;
  margin-bottom: 0;
}

.options label {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fafafa;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  user-select: none;
}

.options label:has(input:checked) {
  border-color: #F5A800;
  background: rgba(245,168,0,0.1);
  color: #1a1008;
  font-weight: 700;
}

.options input { display: none; }

#quantity {
  display: block;
  margin: 4px 20px;
  width: calc(100% - 40px);
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fafafa;
  outline: none;
  transition: border-color 0.15s ease;
}

#quantity:focus { border-color: #F5A800; }

.add-cart-btn {
  display: block;
  margin: 16px 20px 32px;
  width: calc(100% - 40px);
  padding: 17px;
  border: none;
  border-radius: 16px;
  background: #F5A800;
  color: #1a1008;
  font-size: 16px;
  font-weight: 900;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(245,168,0,0.38);
  transition: background 0.18s ease, transform 0.15s ease;
}

.add-cart-btn:active {
  background: #e09700;
  transform: scale(0.98);
}
}




/*==================
  DESKTOP
===================*/

@media screen and (min-width: 800px) {

  .show-nav{
    display: none;
  }

  /* === MENU WRAPPER === */
  .menu-wrapper {
    background: #edeae4;
    padding: 30px 0 60px;
  }

  .menu-inner {
    max-width: 100%;
    padding: 0 40px;
  }

  .menu-category {
    margin-top: 48px;
  }

  .category-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: #1a1008;
    border-bottom: 3px solid #F5A800;
    display: inline-block;
    padding-bottom: 3px;
    margin-bottom: 18px;
    letter-spacing: 1px;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 22px;
  }

  /*=========================
  ANIMAATIOT
==========================*/

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

.pizza-card {
  opacity: 0;
  transform: translateY(24px);
}

.pizza-card.visible {
  animation: fadeSlideUp 0.4s ease forwards;
}

.category-title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-title.visible {
  opacity: 1;
  transform: translateY(0);
}

  /* === PIZZA-KORTTI === */
  .pizza-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid #f0ede8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    overflow: visible;
    cursor: pointer;
    max-width: 100%;
    margin: 0;
  }

  .pizza-card:hover {
    box-shadow: 0 8px 24px rgba(245,168,0,0.16);
    transform: translateY(-2px);
  }

  .pizza-card.featured {
    border-color: rgba(245,168,0,0.5);
  }

  .pizza-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #ede9e3;
  }

  .pizza-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .pizza-info {
    flex: 1;
    min-width: 0;
  }

  .pizza-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: #111111;
    letter-spacing: 0.6px;
    margin: 0 0 4px;
    line-height: 1.1;
  }

  .pizza-ingredients {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #aaaaaa;
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pizza-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .pizza-price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.05rem;
    color: #111111;
    white-space: nowrap;
  }

  .add-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F5A800;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .add-btn:hover {
    background: #D48A00;
    transform: scale(1.1);
  }

  .pizza-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #F5A800;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    pointer-events: none;
  }

  body{
        overflow-x: hidden;
    }

    /*===========================
    TOAST
  ==============================*/

  .toast {
    font-weight: bold;
    font-family: "Inter", sans-serif;
  position: fixed;

  bottom: 20px;
  left: 50%;

  transform: translateX(-50%) translateY(100px);

  background: black;
  color: white;

  padding: 14px 25px;
  width: 270px;

  border-radius: 14px;

  font-size: 15px;

  opacity: 0;

  transition: 0.3s ease;

  z-index: 9999;
}

.toast.show {
  opacity: 1;

  transform: translateX(-50%) translateY(0);
}

    
    
    /*============
    NAVBAR
    ==============*/

.nav-holder{
    max-height: 120px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.nav-left-group{
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-holder2{
    display: flex;
    justify-content: flex-start;
    font-weight: bold;
    font-family: "Bebas Neue", sans-serif;
}

.nav-holder2 a{
    font-size: 22px;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.nav-holder2 a:hover{
    color: #F5A800;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}


.navbar{
    position: absolute;
    max-height: 110px;
    width: 100%;
    z-index: 10;
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    padding: 25px;
    border-bottom: none;
}

.logo{
  display: none;
}

.logo-desktop{
    margin-left: 90px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.hamburger{
    display: none;
}

.cart{
    position: relative;
    cursor: pointer;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    border: none;
    background: none;
}

.cart-pic{
    width: 30px;
    height: 30px;
    color: #fff;
    display: block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.cart:hover .cart-pic{
    color: #F5A800;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #F5A800;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    pointer-events: none;
}

.viiva1{
    border: none;
    height: 2px;
    width: 100%;
    background: orange;
}



/*==============
    SECTION1
================*/

.section1{
    padding: 150px 100px 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(135deg, #1a1008 0%, #0f0904 55%, #1a0e05 100%);
    width: 100%;
    height: auto;
}

.section1 h1{
    font-size: 6.5rem;
    color: white;
     font-family: "Bebas Neue", sans-serif;
}

.section1 h1 span{
    color: orange;
}

.hero1{
     font-size: 18px;
    margin-top: 10px;
    color: #adadad;
    font-weight: 400;
     font-family: "Inter", sans-serif;
}



/*=============
SECTION2
===============*/




.section2{
    font-family: "Inter", sans-serif;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #edeae4;
    width: 100%;
    height: auto;
}

.btn-container{
   display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 2rem;
  background: #edeae4;
  border-bottom: 2px solid rgba(0,0,0,.06);
}

.btn-container a{
    text-decoration: none;
     background: none;
  border: 2px solid rgba(0,0,0,.1);
  padding: .6rem 1.6rem;
  border-radius: 50px;
  font-weight: 900;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text);
  transition: all .2s;
}

.btn-container a:hover{
     border-color: var(--orange);
  color: var(--orange);
}

.btn-container a.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,168,0,.35);
}


/*==============
    SECTION3
===============*/

.section3{
  flex-direction: column;
  display: flex;
    padding: 30px 40px;
    align-self: center;
    justify-content: center;
    background: #f8f6f2 !important;
    background: #FFF8EC;
    width: 100%;
    height: auto;
}

.otsikko{
    font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--dark);
  padding-bottom: 0;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}

.line{
    display: none;
}


/*-------------------------TUOTE----------------*/


.holder-a2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.holder-a2 .otsikko,
.holder-a2 .line {
  grid-column: 1 / -1;
}

.menu-item {
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1.5px solid rgba(0,0,0,.04);
  transition: box-shadow .2s, transform .2s;
  gap: 12px;
  cursor: pointer;
}

.menu-item:hover {
  box-shadow: 0 6px 24px rgba(245,168,0,.15);
  transform: translateY(-2px);
}

.menu-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.menu-item-emoji {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #FFF8EC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.menu-item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: #1a1008;
  letter-spacing: 0.5px;
}

.menu-item-desc {
  font-size: .8rem;
  color: #999;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.menu-item-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  color: #1a1008;
  white-space: nowrap;
}

.add-btn {
  background: #F5A800;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  line-height: 1;
}

.add-btn:hover {
  background: #D48A00;
  transform: scale(1.1);
}

/* badget */
.menu-item-badges {
  display: flex;
  gap: .3rem;
  margin-top: 4px;
}

.badge {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 50px;
}

.badge-veg  { background: #eafaf1; color: #27ae60; }
.badge-hot  { background: #ffeaea; color: #c0392b; }
.badge-new  { background: #fff3cd; color: #d48a00; }
.badge-suos { background: #f0e6ff; color: #8e44ad; }


.holder-a{
  margin-top: 50px;
  display: grid;
  display: grid;
grid-template-columns: repeat(2, 1fr);
}

.holder-b{
  margin-top: 50px;
   display: grid;
  display: grid;
grid-template-columns: repeat(2, 1fr);
}

.holder-c{
  max-width: 50%;
   margin-top: 50px;
   display: grid;
  display: grid;
grid-template-columns: repeat(1, 1fr);
}


/*============================
  PIZZA-MODAL
===============================*/

.overlay2 {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.overlay2.active {
  opacity: 1;
  pointer-events: all;
}

.pizza-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.94);
  opacity: 0;
  width: 520px;
  max-height: 82vh;
  background: #FEFEFE;
  border-radius: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.28s ease;
  z-index: 10000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.pizza-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.drag-line { display: none; }

.modal-img-wrap { position: relative; width: 100%; }

.modal-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease;
}

.modal-close-btn:hover { background: rgba(0,0,0,0.65); }

.modal-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.6rem;
  color: #1a1008;
  padding: 18px 22px 2px;
  margin: 0;
}

.big-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  color: #111;
  text-transform: uppercase;
  padding: 16px 22px 8px;
  margin: 0;
  border-top: 1px solid #f2f2f2;
}

.options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 4px;
  margin-bottom: 0;
}

.options label {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border: 1.5px solid #e8e8e8;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fafafa;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  user-select: none;
}

.options label:hover {
  border-color: #ccc;
  background: #f5f5f5;
}

.options label:has(input:checked) {
  border-color: #F5A800;
  background: rgba(245,168,0,0.1);
  color: #1a1008;
  font-weight: 700;
}

.options input { display: none; }

#quantity {
  display: block;
  margin: 4px 22px;
  width: calc(100% - 44px);
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fafafa;
  outline: none;
  transition: border-color 0.15s ease;
}

#quantity:focus { border-color: #F5A800; }

.add-cart-btn {
  display: block;
  margin: 16px 22px 28px;
  width: calc(100% - 44px);
  padding: 17px;
  border: none;
  border-radius: 16px;
  background: #F5A800;
  color: #1a1008;
  font-size: 16px;
  font-weight: 900;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(245,168,0,0.38);
  transition: background 0.18s ease, transform 0.15s ease;
}

.add-cart-btn:hover {
  background: #e09700;
  transform: translateY(-1px);
}

.add-cart-btn:active {
  background: #d08800;
  transform: scale(0.98);
}


/*=================
    FOOTER
===================*/

footer{
      background: linear-gradient(135deg, #0a0503 0%, #150a02 50%, #0a0303 100%);
   padding: 25px;
    color: black;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    height: auto;   
}

.logo2{
    border-radius: 50%;
    height: 100px;
    width: 100px;
}

.low-hero{
    font-size: 15px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}




.auk{
     font-size: 20px;
    margin-top: 30px;
    color: white;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}

.auk2{
    padding: 5px;
     font-size: 18px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}

  
}


@media screen and (min-width: 1700px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .menu-wrapper {
    padding: 30px 60px 60px;
  }
}

@media screen and (min-width: 1800px) {

    /*===================
        Vain 1800px+ -kohtaiset erot; loput periytyy
        "min-width: 800px" -lohkosta (ei enää kopioitu tänne).
    =====================*/

.nav-holder {
  width: 80%;
}

.pizza-modal {
  width: 540px;
  z-index: 999;
}

.modal-image {
  height: 250px;
}

.modal-title {
  font-size: 1.65rem;
}

}
.footer-new {
    background: linear-gradient(135deg, #0a0503 0%, #1a0a02 100%);
    border-top: 3px solid #F5A800;
    padding: 60px 40px 0;
    font-family: "Inter", sans-serif;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo { border-radius: 50%; width: 90px; height: 90px; object-fit: cover; margin-bottom: 16px; border: 2px solid #F5A800; }
.footer-tagline { color: #aaa; font-size: 14px; line-height: 1.6; margin: 0; }
.footer-heading { color: #F5A800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 16px; font-weight: 700; }
.footer-hours { border-collapse: collapse; color: #ccc; font-size: 14px; }
.footer-hours td { padding: 4px 20px 4px 0; }
.footer-hours td:last-child { color: #fff; font-weight: 700; }
.footer-contact { color: #ccc; font-size: 14px; margin: 0 0 10px; }
.footer-contact a { color: #F5A800; text-decoration: none; font-weight: 700; }
.footer-order-btn { margin-top: 16px; background: #F5A800; color: #1a1008; font-weight: 800; font-size: 14px; padding: 10px 24px; border-radius: 8px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.footer-order-btn:hover { background: #e09900; }
.footer-bottom { border-top: 1px solid #2a1a08; text-align: center; padding: 18px 0; }
.footer-bottom p { color: #555; font-size: 12px; margin: 0; }
@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-new { padding: 24px 20px 0; }
}
