/* ===== Readdy-like minimal landing style ===== */

:root{
  --bg: #f4f4f5;            /* matches rgb(244,244,245) */
  --text: #0f172a;
  --muted: rgba(15, 23, 42, .6);

  --btn-bg: #0b1324;        /* dark navy button */
  --btn-text: #ffffff;

  --left: #cfe1ea;          /* light blue panel */
  --right:#e8c9d3;          /* light pink panel */
  --divider:#9fb6c3;        /* subtle center divider */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif; /* your screenshot shows Arial */
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

/* Top logo + button */
.top{
  padding: 38px 0 18px;
  text-align:center;
}
.logo{
  margin:0;
  font-family: "Cinzel Decorative", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 38px;
  line-height: 1;
}

/* The small button */
.btn{
  display:inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;

  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 4px;
  border: 0;
  transition: transform .12s ease, filter .12s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.btn:active{ transform: translateY(0px); filter: brightness(.98); }

/* The two big panels */
.panels{
  height: calc(100vh - 140px); /* leave space for logo/button */
  min-height: 520px;
  display:grid;
  grid-template-columns: 1fr 1fr;
}

.panel{
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.panel.left{ background: var(--left); }
.panel.right{ background: var(--right); }

/* center divider line */
.panel.right{
  border-left: 3px solid rgba(159,182,195,.65);
}

/* “Shop Collection” text */
.panel a{
  font-family: "Times New Roman", serif;
  font-size: 16px;
  color: rgba(15,23,42,.55);
  transition: color .12s ease, transform .12s ease;
}
.panel a:hover{
  color: rgba(15,23,42,.8);
  transform: translateY(-1px);
}

/* Mobile: stack panels */
@media (max-width: 800px){
  .logo{ font-size: 34px; }
  .panels{
    height:auto;
    grid-template-columns: 1fr;
  }
  .panel{
    min-height: 360px;
  }
  .panel.right{
    border-left: 0;
    border-top: 3px solid rgba(159,182,195,.65);
  }
}

/* ===== Page 2 (Discover) layout ===== */

.page{
  padding: 28px 0 56px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 20px 0 0;
}

.back{
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: rgba(15,23,42,.65);
}
.back:hover{ color: rgba(15,23,42,.9); }

.h2{
  margin: 18px 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing:.02em;
}
.p{
  margin: 0 0 14px;
  color: rgba(15,23,42,.65);
  font-size: 13px;
}

.cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}

.cardbox{
  background: #ffffff;
  border-radius: 10px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.08);
}

.thumb{
  height: 260px;
  background:
    linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(15,23,42,.35);
  font-size: 12px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.cardcontent{
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.tag{
  font-size: 12px;
  color: rgba(15,23,42,.75);
  font-weight: 700;
}

.btn-small{
  display:inline-block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing:.06em;
  text-transform:uppercase;
  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 4px;
  transition: transform .12s ease, filter .12s ease;
}
.btn-small:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.btn-small:active{ transform: translateY(0px); filter: brightness(.98); }

.trending{
  margin-top: 26px;
  background:#ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 10px;
  padding: 16px;
}

.trending-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.item{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 10px;
  overflow:hidden;
  background:#fff;
}
.item .img{
  height: 130px;
  background: linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
}
.item .meta{
  padding: 10px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.item .name{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.85);
}
.item .sub{
  font-size: 12px;
  color: rgba(15,23,42,.6);
}

@media (max-width: 850px){
  .cards{ grid-template-columns: 1fr; }
  .trending-grid{ grid-template-columns: 1fr; }
}

