/* rls-page.css - Full width modern product stock page */

.rd-page-hero{
  background: linear-gradient(90deg, rgba(0,152,153,.18), rgba(0,0,0,.06));
  padding: 34px 0 26px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.rd-page-hero h1{
  margin:0 0 6px;
  font-size: 34px;
  font-weight: 1000;
  color:#052f30;
}

.rd-page-hero p{
  margin:0;
  font-weight: 800;
  color: rgba(0,0,0,.6);
}

.rd-page-wrap{
  padding: 28px 0 30px;
}

/* section card */
.rd-prod-section{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  margin-bottom: 26px;
}

.rd-prod-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:10px;
  margin-bottom: 18px;
}

.rd-prod-head h2{
  margin:0;
  font-size: 26px;
  font-weight: 1000;
  color:#052f30;
}

.rd-pill{
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,152,153,.10);
  border: 1px solid rgba(0,152,153,.18);
  font-weight: 900;
  color:#064b4b;
  white-space: nowrap;
}

/* grid */
.rd-prod-grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items:start;
}

.rd-prod-media{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(0,152,153,.05);
  padding: 14px;
}

.rd-prod-media img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 12px;
}

.rd-prod-content h3{
  margin:0 0 10px;
  font-size: 18px;
  font-weight: 1000;
  color:#052f30;
}

.rd-prod-content ul{
  margin:0;
  padding-left: 18px;
  line-height: 1.85;
  font-weight: 800;
  color: rgba(0,0,0,.65);
  font-size: 14px;
}

/* table card */
.rd-table-card{
  margin-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 18px;
}

.rd-table-title{
  margin:0 0 10px;
  font-size: 18px;
  font-weight: 1000;
  color:#052f30;
}

.rd-table-wrap{
  width: 100%;
  overflow:auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
}

.rd-table{
  width:100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 14px;
}

.rd-table thead th{
  background: #007b7f;
  color:#fff;
  text-align:left;
  padding: 12px;
  font-weight: 1000;
}

.rd-table td{
  padding: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-weight: 800;
  color: rgba(0,0,0,.68);
}

.rd-table .qty{
  text-align:center;
  width: 140px;
  white-space: nowrap;
}

/* notice */
.rd-notice{
  width:100%;
  background:#f9f9f9;
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 18px 0;
}

.rd-notice-inner{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}

.rd-notice-inner img{
  width: 50px;
  height:auto;
}

.rd-notice-inner p{
  margin:0;
  font-weight: 800;
  color:#111;
  font-size: 14px;
  max-width: 900px;
  text-align:right;
}

/* bottom banner */
.rd-bottom-banner{
  padding: 18px 0 40px;
}

.rd-bottom-banner img{
  width: 100%;
  max-width: 760px;
  margin-left:auto;
  display:block;
}

/* responsive */
@media (max-width: 980px){
  .rd-prod-grid{
    grid-template-columns: 1fr;
  }
  .rd-table{
    min-width: 640px;
  }
  .rd-notice-inner{
    justify-content:flex-start;
    text-align:left;
  }
  .rd-notice-inner p{
    text-align:left;
  }
}
