/* ShopSH Merchant Open Card presets
   Base selector: .shopsh-open-card
   Dark mode via body.dark-theme
*/
:root{
  --oc-text:#2b2f4c;--oc-muted:#7b86b5;--oc-border:#e7e9f7;--oc-accent:#3b4aff;
  --oc-card:#ffffff;--oc-glass:rgba(255,255,255,.66);
}
.dark-theme{
  --oc-text:#e9ecff;--oc-muted:#aab2d8;--oc-border:rgba(255,255,255,.12);
  --oc-accent:#9cb3ff;--oc-card:#121827;--oc-glass:rgba(18,24,39,.55);
}

.shopsh-open-card{position:relative;display:block;border-radius:14px;border:1px solid var(--oc-border);color:var(--oc-text);text-decoration:none;transition:transform .15s ease, box-shadow .15s ease}
.shopsh-open-card:hover{transform:translateY(-1px)}

/* Gradient highlight */
.shopsh-open-card--gradient{background:linear-gradient(135deg,#5566ff 0%, #384aff 100%);color:#fff;border-color:transparent;box-shadow:0 14px 28px rgba(70,90,255,.28)}
.shopsh-open-card--gradient:hover{box-shadow:0 18px 36px rgba(70,90,255,.36)}
.dark-theme .shopsh-open-card--gradient{background:linear-gradient(135deg,#6f86ff 0%, #4f67ff 100%);}

/* Glassmorphism */
.shopsh-open-card--glass{background:var(--oc-glass);backdrop-filter:saturate(150%) blur(8px);border-color:rgba(255,255,255,.35);box-shadow:0 12px 26px rgba(21,30,70,.18)}
.dark-theme .shopsh-open-card--glass{border-color:rgba(255,255,255,.12);box-shadow:0 18px 40px rgba(0,0,0,.45)}

/* Neumorphism */
.shopsh-open-card--neumorphic{background:#f3f6ff;border-color:#eef1ff;box-shadow: 8px 8px 16px rgba(36,50,93,.09), -8px -8px 16px rgba(255,255,255,.8)}
.dark-theme .shopsh-open-card--neumorphic{background:#0f1424;border-color:rgba(255,255,255,.06);box-shadow:8px 8px 18px rgba(0,0,0,.65), -8px -8px 18px rgba(255,255,255,.04)}

/* Minimal outline */
.shopsh-open-card--minimal{background:#fff;border-color:#dfe3f7;box-shadow:0 8px 18px rgba(36,50,93,.08)}
.shopsh-open-card--minimal:hover{box-shadow:0 12px 26px rgba(36,50,93,.12)}
.dark-theme .shopsh-open-card--minimal{background:#0f1526;border-color:rgba(255,255,255,.10);box-shadow:0 14px 34px rgba(0,0,0,.55)}

/* Solid rounded */
.shopsh-open-card--solid{background:#1f2a5a;color:#fff;border-color:transparent;box-shadow:0 14px 28px rgba(12,18,48,.45)}
.shopsh-open-card--solid:hover{box-shadow:0 18px 36px rgba(12,18,48,.55)}
.dark-theme .shopsh-open-card--solid{background:#2a3976}

/* Allow admin custom overrides to target this class */
.shopsh-open-card--custom{}

