:root {
  --shop-bg-1:#d8effc;
  --shop-bg-2:#c7e7f7;
  --shop-card:rgba(238,249,255,.94);
  --shop-ink:#0f2436;
  --shop-soft:#37566b;
  --shop-blue:#2f7fa8;
  --shop-blue-deep:#1f5f86;
  --shop-gold:#d8b45d;
  --shop-shadow:0 26px 72px rgba(15,55,85,.15);
}

html[data-rd-effective-theme="dark"],
body[data-rd-effective-theme="dark"] {
  --shop-bg-1:#07111f;
  --shop-bg-2:#10243a;
  --shop-card:rgba(10,24,42,.90);
  --shop-ink:#f8fafc;
  --shop-soft:#dbeafe;
  --shop-blue:#4aa3d3;
  --shop-blue-deep:#1f5f86;
  --shop-gold:#e3c36b;
  --shop-shadow:0 28px 90px rgba(0,0,0,.34);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.62), transparent 30%),
    linear-gradient(135deg,var(--shop-bg-1),var(--shop-bg-2)) !important;
  color:var(--shop-ink)!important;
}

.rd-shop {
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding:96px 0 56px;
  font-family:Lora,Georgia,serif;
}

.rd-shop-hero {
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.58), transparent 30%),
    var(--shop-card);
  border:1px solid rgba(47,127,168,.18);
  border-radius:34px;
  padding:clamp(28px,5vw,54px);
  box-shadow:var(--shop-shadow);
  margin-bottom:28px;
}

.rd-shop-kicker {
  display:inline-flex;
  margin-bottom:12px;
  color:var(--shop-blue-deep);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
}

.rd-shop-hero h1 {
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(2.4rem,5vw,4.6rem);
  line-height:1;
  margin:0 0 16px;
  color:var(--shop-ink)!important;
}

.rd-shop-hero p {
  max-width:760px;
  color:var(--shop-soft)!important;
  font-size:1.08rem;
  line-height:1.65;
}

.rd-shop-cta,
.rd-product button {
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--shop-blue),var(--shop-blue-deep));
  color:#ffffff!important;
  -webkit-text-fill-color:#ffffff!important;
  padding:12px 17px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  box-shadow:0 12px 26px rgba(31,95,134,.22);
}

.rd-shop-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.rd-product {
  background:var(--shop-card);
  border:1px solid rgba(47,127,168,.18);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shop-shadow);
  color:var(--shop-ink)!important;
}

.rd-product img {
  width:100%;
  height:245px;
  object-fit:cover;
  background:#eef9ff;
}

.rd-product-body {
  padding:18px;
}

.rd-product h2 {
  font-family:"Playfair Display",Georgia,serif;
  font-size:1.22rem;
  margin:0 0 8px;
  color:var(--shop-ink)!important;
}

.rd-product p {
  color:var(--shop-soft)!important;
  margin:0 0 14px;
}

.rd-shop-note {
  margin-top:28px;
  background:var(--shop-card);
  border:1px solid rgba(47,127,168,.18);
  border-radius:26px;
  padding:22px;
  color:var(--shop-soft)!important;
  box-shadow:var(--shop-shadow);
}

@media(max-width:760px){
  .rd-shop{padding-top:84px}
  .rd-product img{height:220px}
}