@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


body{
    font-family: "Montserrat", sans-serif!important;
}


.naslov{
    margin-top: 10vh;
    text-align: center;
}


form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 25vw;
    margin: 0 auto;
    margin-top: 7vh;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, textarea, button {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5vw;
    box-sizing: border-box;
}

button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: .5s;
}

button:hover {
    background-color: #0056b3;
    transition: .5s;
}

.hidden {
    display: none;
}



/* TABLET + MOBILNI */

@media only screen and (max-width: 1050px){
    form{
        width: 80vw;
    }
}


/* =========================
   CHECKOUT SUMMARY (modern)
   ========================= */

.checkout{
  margin: 28px auto 0;
  width: min(1100px, 92vw);
}

.checkout__wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.order-summary{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  overflow: hidden;
}

.order-summary__head{
  padding: 18px 18px 10px 18px;
}

.order-summary__head h3{
  margin: 0;
  font-size: 18px;
}

.order-summary__sub{
  margin: 6px 0 0 0;
  opacity: .75;
  font-size: 13px;
}

.order-summary__list{
  padding: 12px 12px 4px 12px;
  display: grid;
  gap: 10px;
}

.os-item{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #fff;
}

.os-item__img{
  width: 92px;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,.04);
  display: grid;
  place-items: center;
}

.os-item__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.os-item__top{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.os-item__name{
  font-weight: 700;
  line-height: 1.2;
}

.os-item__sum{
  font-weight: 800;
  white-space: nowrap;
}

.os-opts{
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.os-opt{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  opacity: .9;
}

.os-item__bottom{
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.os-link{
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,0,0,.35);
  color: inherit;
  opacity: .85;
}

.os-link:hover{ opacity: 1; }

.order-summary__footer{
  padding: 14px 18px 16px 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.015);
}

.order-summary__row{
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.order-summary__row--total{
  font-size: 16px;
  font-weight: 800;
}

.order-summary__back{
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  opacity: .85;
  color: inherit;
  text-decoration: none;
}

.order-summary__back:hover{ opacity: 1; }

.order-empty{
  padding: 26px 18px 30px 18px;
  text-align: center;
}

.order-empty__icon{ font-size: 34px; margin-bottom: 10px; }

.btn-back{
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  text-decoration: none;
  color: inherit;
  background: #fff;
}

textarea#product{
  border-radius: 18px;
  resize: vertical;
font-family: 'Montserrat';
}

/* Mobile */
@media (max-width: 768px){
  .os-item{ grid-template-columns: 76px 1fr; }
  .os-item__img{ width: 76px; height: 76px; }
}


