<style>
/* === Delivery & Payment cards === */
.shop-info {
  --bg: #fff;
  --ink: #1f2328;
  --muted: #6b7280;
  --accent: #0ea5e9;
  --ring: rgba(14,165,233,.15);
  --card: #fff;
  --radius: 14px;
  --shadow: 0 2px 6px rgba(0,0,0,.04);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  margin-top: 20px;
}
.shop-info * { box-sizing: border-box; }

.shop-info .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.shop-info .card {
  flex: 1 1 300px;
  background: var(--card);
  border: 1px solid #e4e7ec;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}
.shop-info .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.shop-info .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px 0;
  border-bottom: 1px solid #f0f2f5;
}

.shop-info .icon {
  background: var(--ring);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* Fix Lucide icon scaling */
.shop-info .icon svg,
.trust-icon svg,
.returns-section i svg,
.returns-header i svg,
.returns-footer i svg {
  width: 100% !important;
  height: 100% !important;
  stroke-width: 1.8;
  stroke: currentColor;
}

.shop-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: #222;
}
.shop-info .subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 2px 0 0;
}
.shop-info .card-body {
  padding: 15px 18px 18px;
  font-size: 15px;
  color: #444;
}
.shop-info ul { list-style: none; padding: 0; margin: 0; }

.shop-info li {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed #e9ecef;
}
.shop-info li:last-child { border-bottom: none; }

.shop-info .badge {
  display: inline-block;
  background: #f5f7fa;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
  color: #555;
}
.shop-info .note { font-size: 14px; color: #6c757d; margin-bottom: 6px; }

.shop-info .brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.shop-info .brand {
  background: #f5f7fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease;
}
.shop-info .brand:hover {
  background: #e9f3ff;
  border-color: #bcdfff;
  color: #007bff;
}

/* Responsive */
@media (max-width:768px){ .shop-info .card{flex:1 1 100%;} }

/* === Trust & Quality section === */
.trust-block {
  margin-top: 50px;
  background: #f9fafc;
  border-radius: 12px;
  padding: 40px 30px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.trust-card {
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .25s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.07);
  border-color: #c9defb;
}
.trust-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e9f2ff;
  color: #007bff;
}
.trust-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
}
.trust-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.trust-block h3 {
  text-align:center;
  font-size:20px;
  font-weight:700;
  margin-bottom:25px;
  color:#222;
  position:relative;
}
.trust-block h3::after {
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:linear-gradient(90deg,#0ea5e9,#38bdf8);
  margin:8px auto 0;
  border-radius:3px;
}

@media(max-width:768px){
  .trust-block{padding:25px 15px;}
  .trust-card{flex-direction:row;}
}
.trust-card p { text-align: left !important; }

/* === Returns page (ID 11) === */
.cms-returns-pro {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.returns-header {
  text-align: center;
  margin-bottom: 30px;
}
.returns-header i {
  width: 48px;
  height: 48px;
  color: #007bff;
  margin-bottom: 12px;
}
.returns-header i svg {
  width: 100% !important;
  height: 100% !important;
}
.returns-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  word-break: break-word;
}
.returns-header p {
  color: #444;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.returns-section {
  display: flex;
  gap: 18px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.returns-section i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 50%;
  background: #e9f2ff;
  color: #007bff;
}
.returns-section h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #007bff;
}
.returns-section p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
}
.returns-footer {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
  color: #333;
}
.returns-footer i {
  width: 32px;
  height: 32px;
  color: #007bff;
  vertical-align: middle;
  margin-right: 8px;
}

/* === Fix Lucide scaling globally === */
.icon svg,
.trust-icon svg,
.returns-section i svg,
.returns-header i svg,
.returns-footer i svg {
  width: 100% !important;
  height: 100% !important;
  stroke-width: 1.8;
  stroke: currentColor;
  flex-shrink: 0;
  display: block;
}

/* === Responsive for returns page === */
@media (max-width: 768px) {
  .cms-returns-pro {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .returns-header h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
  }

  .returns-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 8px;
  }

  .returns-section {
    flex-direction: column;
    text-align: left;
    padding: 18px 14px;
    gap: 12px;
  }

  .returns-section i {
    width: 36px;
    height: 36px;
    margin: 0 auto;
  }

  .returns-section h3 {
    font-size: 1.05rem;
    text-align: center;
  }

  .returns-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .returns-footer {
    padding-top: 16px;
    margin-top: 20px;
  }

  .returns-footer p {
    font-size: 0.9rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .cms-returns-pro {
    padding: 16px 12px;
  }

  .returns-header h2 {
    font-size: 1.2rem;
  }

  .returns-header p {
    font-size: 0.9rem;
  }

  .returns-section {
    padding: 16px 12px;
  }
}

</style>
