<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Drowsie Mattress Ad</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f3eb;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .poster {
      width: 450px;
      background: linear-gradient(to bottom right, #f7f3eb, #ffffff);
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Header */
    .poster-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .poster-header h1 {
      font-size: 24px;
      color: #1c2e4a;
      margin: 0;
      font-weight: bold;
    }

    .carnival {
      text-align: right;
    }
    .carnival span {
      display: block;
      font-size: 14px;
      background: #e5f5df;
      color: #2a7a2a;
      font-weight: bold;
      padding: 2px 6px;
      border-radius: 4px;
    }
    .carnival small {
      font-size: 12px;
      color: #444;
    }

    /* Title */
    .title {
      margin: 20px 0 10px;
      font-size: 28px;
      font-weight: bold;
      color: #ff4c24;
    }

    .subtitle {
      font-size: 16px;
      color: #1c2e4a;
      margin-bottom: 20px;
    }

    /* Price */
    .price {
      font-size: 22px;
      font-weight: bold;
      color: #000;
      margin-bottom: 5px;
    }
    .price small {
      display: block;
      font-size: 13px;
      color: #555;
    }

    /* Mattress image */
    .mattress {
      width: 100%;
      margin: 20px 0;
      border-radius: 8px;
    }

    /* Features */
    .features {
      display: flex;
      align-items: center;
      gap: 15px;
      margin: 20px 0;
    }
    .features img {
      width: 90px;
      border-radius: 6px;
    }
    .features-list {
      font-size: 14px;
      line-height: 1.5;
    }

    /* Inches box */
    .inches {
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      margin-top: 10px;
    }
  </style>
</head>
<body>
  <div class="poster">
    <div class="poster-header">
      <h1>DROWSIE+</h1>
      <div class="carnival">
        <span>XCHANGE CARNIVAL</span>
        <small>26-28 July 2025</small>
      </div>
    </div>

    <div class="title">plush latex top</div>
    <div class="subtitle">Posturecare | Spinecare | Breathes</div>

    <div class="price">Queen @ 12,900
      <small>Price under exchange | Incl GST</small>
    </div>

    <img src="https://i.ibb.co/xC5HZXY/mattress.jpg" alt="mattress" class="mattress">

    <div class="features">
      <img src="https://i.ibb.co/xSxVdB1/layers.png" alt="layers">
      <div class="features-list">
        Natural Pincore Latex <br>
        Cool Gel Soft Foam <br>
        Cotton Felt <br>
        Carbon Steel Pocket Springs <br>
        Anti Sag HR Foam
      </div>
    </div>

    <div class="inches">9 Inches</div>
  </div>
</body>
</html>
