/* בסיס כללי */
body {
  background-color: #111;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 40px 20px;
  line-height: 1.8;
}


h1, h2, h3 {
  color: #ffcc00;
  text-align: center;
  margin-bottom: 20px;
}

a {
  color: #ffcc00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container, .content, .cart-container {
  max-width: 1100px;
  margin: auto;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

button {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background-color: #ffcc00;
  color: #111;
  font-weight: bold;
}

button:hover {
  background-color: #ffd633;
}

/* רספונסיביות */
@media (max-width: 768px) {
  body {
    padding: 20px 10px;
    font-size: 16px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  .container, .content, .cart-container {
    padding: 0 10px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    width: 100% !important;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout button {
    width: 100%;
    margin-bottom: 10px;
  }
}



select {
  background-color: #222;
  color: #fff;
  border: none;
  font-size: 17px;
  border-radius: 6px;
  padding: 10px 34px 10px 10px;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='16' viewBox='0 0 20 20' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.293 8.293a1 1 0 0 1 1.414 0L10 9.586l1.293-1.293a1 1 0 1 1 1.414 1.414l-2 2a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 0-1.414z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 50%;
  transition: border 0.2s;
}
select:focus {
  outline: none;
  border: 2px solid #ffd700;
}
select option {
  background: #222;
  color: #ffd700;
  font-weight: bold;
}
