@import url("https://fonts.googleapis.com/css?family=Bree+Serif|Poppins|Source+Sans+Pro&display=swap");

* {
  margin: 0;
  padding: 0;
  /*   box-sizing:border-box; */
  font-family: "Source Sans Pro", "Poppins", sans-serif;
}
body {
  background: #333;
  height: 100vh;
  width: 100vw;
}

.container,
.menu {
  height: 140px;
  width: 160px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}

.menu {
  /*   z-index: -1; */
  transform: scale(0.9);
}

.toggle {
  height: 0;
  width: 80px;
  border-bottom: 70px solid #f9d230;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  position: absolute;
  top: 0;
  z-index: 1;
}

.toggle:before {
  content: "";
  height: 0;
  width: 80px;
  border-top: 70px solid #f9d230;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  position: absolute;
  top: 70px;
  left: -40px;
}

#add {
  font-size: 100px;
  color: #fff;
  position: relative;
  top: 20px;
  right: 10px;
  transition: 0.3s;
}
#add:hover {
  color: #e8b547;
}

.item {
  height: 0;
  width: 80px;
  border-bottom: 70px solid #fff;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  position: absolute;
  top: 0;
  transition: 0.4s;
}

.item:before {
  content: "";
  height: 0;
  width: 80px;
  border-top: 70px solid #fff;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  position: absolute;
  top: 70px;
  left: -40px;
}

/* a > .material-icons { */
  /* color: #d2d2d2; */
  /* font-size: 60px; */
  /* transition: 0.3s; */
  /* position: relative; */
  /* top: 40px; */
  /* left: 10px; */
/* } */

/* a > .material-icons:hover { */
  /* color: #f9d230; */
  /* transform: scale(1.2); */
  /* position: relative; */
  /* top: 40px; */
  /* left: 10px; */
/* } */

a > .testimg {
  color: #d2d2d2;
  font-size: 60px;
  transition: 0.3s;
width: 100px;
    height: 100px;
    position: absolute;
margin-top: 20px;
    left: 50%;
    transform: translateX(-50%);

}

a > .testimg:hover {
  /* color: #f9d230; */
  transform: scale(1.5);
    position: relative;
margin-top: 20px;
    left: 50%;
    transform: translateX(-50%);
}


.one {
  transform: translateY(-160px);
}
.two {
  transform: translate(140px, 80px);
}
.three {
  transform: translate(140px, -80px);
}
.four {
  transform: translateY(160px);
}
.five {
  transform: translate(-140px, 80px);
}
.six {
  transform: translate(-140px, -80px);
}


/* Container */
.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Beide knoppen krijgen consistente styling */
.cart-actions button {
    width: 100%;
    padding: 12px 18px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

/* Leegmaken */
.btn-clear {
    background: #ccc;
    color: #333;
}

.btn-clear:hover {
    background: #b5b5b5;
}

/* Checkout knop */
.btn-checkout {
    background: #007bff;
    color: white;
}

.btn-checkout:hover {
    background: #005fcc;
}

/* Mobile */
@media (max-width: 600px) {
    .cart-actions {
        flex-direction: column;
    }

    .cart-actions button {
        width: 100%;
    }
}


/* Sticky Checkout Bar (mobile only) */
.mobile-checkout-bar {
    display: none;
}

@media (max-width: 700px) {

    .mobile-checkout-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        border-top: 2px solid #ddd;
        padding: 10px;
        display: flex;
        gap: 12px;
        justify-content: space-between;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
    }

    .mobile-checkout-bar form {
        display: flex;
        flex: 1;
    }

    /* Alle knoppen */
    .mobile-checkout-bar button {
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        width: 100%;
    }

    /* Klein leegmaak-knopje */
    .bar-clear {
        background: #ccc;
        color: #333;
        flex: 0 0 60px;  /* small fixed width */
        padding: 12px;
    }

    /* Grote checkout knop */
    .checkout-form {
        flex: 1;
    }

    .bar-checkout {
        background: #007bff;
        color: white;
        text-align: center;
    }

    .bar-checkout:hover {
        background: #005fcc;
    }
}
/* MOBILE CHECKOUT BAR */
.mobile-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px;
    display: none;               /* alleen tonen op mobiel */
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #ddd;
    z-index: 999999;
}

.mobile-checkout-bar form {
    margin: 0;
}

.mobile-checkout-bar .btn-checkout {
    flex: 1;
    background: #007bff;
    color: white;
    border: none;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
}

.mobile-checkout-bar .bar-clear {
    background: #ff5656;
    border: none;
    color: white;
    font-size: 22px;
    padding: 12px 14px;
    border-radius: 6px;
    margin-left: 12px;
    flex-shrink: 0;
}

/* Alleen op schermen kleiner dan 700px */
@media (max-width: 700px) {
    .mobile-checkout-bar {
        display: flex;
    }
}
