@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --green: #98d633;
  --green-dark: #6ea11f;
  --bg: #05080c;
  --line: #232c38;

  --product-col: 1fr;
  --price-col: 180px;
  --rrp-col: 90px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: white;

  background: radial-gradient(
    circle at top,
    #182424 0%,
    #06080d 45%,
    #020306 100%
  );

  min-height: 100vh;
  padding: 12px;
}

.container {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

/* HEADER */

.hero {
  position: relative;
  margin-bottom: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle {
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.logo-circle::before {
  content: "👑";
  position: absolute;
  top: -16px;
  font-size: 18px;
}

.logo-circle span {
  font-size: 40px;
  font-weight: 300;
}

.brand h1 {
  font-size: clamp(2.5rem, 10vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2px;
}

.brand h2 {
  color: var(--green);
  letter-spacing: 6px;
  font-size: clamp(0.9rem, 4vw, 1.5rem);
  font-weight: 500;
}

.brand p {
  margin-top: 8px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: #d6d6d6;
}

.brand p span {
  color: var(--green);
}

.quality-tag {
  position: absolute;
  right: 0;
  top: 5px;

  background: #1a2415;
  border-left: 4px solid var(--green);

  padding: 10px 14px;

  color: var(--green);
  font-weight: 700;
  font-size: 0.7rem;

  transform: rotate(-5deg);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* BOARD */

.price-board {
  overflow: hidden;
  border-radius: 12px;

  border: 1px solid var(--line);

  background: rgba(10, 12, 18, 0.85);

  box-shadow:
    0 0 30px rgba(152, 214, 51, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.table-header,
.product-row {
  display: grid;
  grid-template-columns:
    var(--product-col)
    var(--price-col)
    var(--rrp-col);
}

.table-header {
  background: linear-gradient(90deg, var(--green-dark), var(--green));

  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.table-header > div {
  padding: 12px;
}

.table-header > div:nth-child(2),
.table-header > div:nth-child(3) {
  text-align: center;
}

.product-row {
  min-height: 82px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
}

.product-info img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-name {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

/* PRICE COLUMN */

.price-box {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--green);
  font-size: 1.6rem;
  font-weight: 800;

  overflow: hidden;
}

.price-box::before {
  content: "";

  position: absolute;
  inset: 8px;

  background: linear-gradient(
    90deg,
    rgba(152, 214, 51, 0.08),
    rgba(152, 214, 51, 0.25)
  );

  transform: skewX(-15deg);
}

.price-box > * {
  position: relative;
  z-index: 2;
}

.rrp {
  display: flex;
  justify-content: center;
  align-items: center;

  color: #b9bec5;
  text-decoration: line-through;

  font-size: 1rem;
  font-weight: 600;
}

/* FOOTER */

footer {
  margin-top: 20px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 16px;

  flex-wrap: wrap;

  margin-bottom: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 0.8rem;
  font-weight: 600;
}

.thankyou {
  text-align: center;
  font-family: cursive;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.footer-brand {
  text-align: center;

  color: var(--green);

  font-size: 0.9rem;
  letter-spacing: 4px;
}

/* SMALL PHONES */

@media (max-width: 420px) {
  :root {
    --price-col: 100px;
    --rrp-col: 65px;
  }

  .product-info img {
    width: 50px;
    height: 50px;
  }

  .product-name {
    font-size: 0.72rem;
  }

  .price-box {
    font-size: 1.2rem;
  }

  .rrp {
    font-size: 0.8rem;
  }

  .quality-tag {
    font-size: 0.55rem;
    padding: 8px 10px;
  }
}
