/* PAGE RESET */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
}

/* CENTERED CONTENT AREA */

.container {
    padding: 20px;
    max-width: 600px;
    margin: auto;
}

/* FULL WIDTH HEADER AREA */

.full-width {
    width: 100%;
}

/* LOGO */

.logo-bar img {
    width: 100%;
    display: block;
}

/* RED BANNER */

.header {
    background: #d71920;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
}

/* PRODUCT GRID */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* FIXED IMAGE SIZE (NO STRETCHING) */

.card img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* TEXT */

.name {
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
}

.size {
    font-size: 12px;
    color: #555;
}

/* PRICE CIRCLE */

.price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d71920;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/* QUANTITY */

.qty {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.qty button {
    border: none;
    background: #25D366;
    color: white;
    font-size: 18px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
}

/* ORDER BOX */

.order-box {
    background: white;
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
}

/* SEND BUTTON */

.send {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

/* PRINT FRIENDLY */

@media print {
  body {
    background: white;
  }

  .send {
    display: none;
  }

  .qty button {
    display: none;
  }
}
