/* ============================================================
   Portal — Light Luxury Gradient Design (v3)
   Soft blue-white base + rose-purple / mint gradient accents
   Inspired by clean SaaS landing pages (YoiWED style)
   RTL-safe (logical + symmetric properties only)
   ============================================================ */

:root {
    --p-ink: #2d2a4a;
    --p-ink-soft: #5d5a7a;
    --p-muted: #9a97b0;
    --p-rose: #c45a9c;
    --p-rose-deep: #a03e7e;
    --p-blue: #5a7de8;
    --p-blue-deep: #3e5ec8;
    --p-mint: #5ac4b0;
    --p-mint-deep: #3e9e8c;
    --p-grad-hero: linear-gradient(165deg, #f0f4ff 0%, #f8f0ff 38%, #f0f8ff 72%, #f5f0ff 100%);
    --p-grad-title: linear-gradient(120deg, #5a7de8 0%, #8a5ae8 30%, #c45a9c 65%, #5ac4b0 100%);
    --p-grad-rose: linear-gradient(135deg, #e87a9e 0%, #c45a9c 50%, #9a4a9e 100%);
    --p-grad-blue: linear-gradient(135deg, #7a9ef0 0%, #5a7de8 45%, #4a6ad8 100%);
    --p-grad-mint: linear-gradient(135deg, #7ae0c8 0%, #5ac4b0 45%, #4ab0a0 100%);
    --p-grad-gold: linear-gradient(135deg, #f0c07a 0%, #e8a25a 45%, #d97e6b 100%);
    --p-card: rgba(255, 255, 255, .82);
    --p-border: rgba(140, 130, 190, .14);
    --p-shadow: 0 12px 40px -14px rgba(120, 100, 180, .22);
    --p-shadow-lg: 0 24px 60px -18px rgba(120, 100, 180, .32);
    --p-radius: 20px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }

.portal-body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'UKIJ Ekran', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--p-grad-hero);
    background-attachment: fixed;
    color: var(--p-ink);
    line-height: 1.7;
    min-height: 100vh;
}

.portal-body a { text-decoration: none; color: inherit; }

.portal-main { max-width: 1120px; margin: 0 auto; padding: 0 20px 70px; }

/* ---------- top bar ---------- */
.portal-top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--p-border);
}

.portal-top-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.portal-logo {
    font-size: 21px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--p-grad-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portal-logo i {
    -webkit-text-fill-color: initial;
    color: var(--p-blue);
    font-size: 22px;
}

.portal-nav { display: flex; align-items: center; gap: 14px; }

.portal-nav a {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--p-ink-soft);
    transition: color .2s;
}

.portal-nav a:hover { color: var(--p-blue-deep); }

.portal-nav .btn-primary,
.portal-nav a.btn,
.portal-nav a.btn-sm {
    background: var(--p-grad-blue);
    color: #fff;
    padding: 9px 20px;
    border-radius: 999px;
    box-shadow: 0 8px 20px -8px rgba(90, 125, 232, .55);
    transition: transform .2s, box-shadow .2s;
}

.portal-nav a.btn:hover,
.portal-nav a.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px -8px rgba(90, 125, 232, .65);
    color: #fff;
}

/* ---------- hero ---------- */
.portal-hero {
    position: relative;
    overflow: hidden;
    margin-top: 26px;
    padding: 90px 24px 120px;
    border-radius: 28px;
    background:
        radial-gradient(700px 380px at 10% 10%, rgba(138, 90, 232, .18), transparent 62%),
        radial-gradient(600px 320px at 90% 8%, rgba(90, 196, 176, .16), transparent 60%),
        radial-gradient(650px 360px at 80% 96%, rgba(196, 90, 156, .18), transparent 62%),
        radial-gradient(520px 280px at 15% 92%, rgba(90, 125, 232, .14), transparent 60%),
        linear-gradient(160deg, #f5f8ff 0%, #faf5ff 45%, #f5faff 100%);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: var(--p-shadow);
    text-align: center;
}

/* decorative rings */
.portal-hero::before,
.portal-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.portal-hero::before {
    width: 280px; height: 280px;
    inset-inline-start: -80px; top: -80px;
    border: 1.5px dashed rgba(138, 90, 232, .28);
}

.portal-hero::after {
    width: 200px; height: 200px;
    inset-inline-end: -50px; bottom: -60px;
    border: 1.5px dashed rgba(90, 196, 176, .28);
}

.portal-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(138, 90, 232, .22);
    color: var(--p-blue-deep);
    font-size: 13.5px;
    font-weight: 700;
    box-shadow: 0 6px 18px -8px rgba(138, 90, 232, .25);
    margin-bottom: 22px;
}

.hero-badge i { color: var(--p-rose); }

.portal-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.5px;
    background: var(--p-grad-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portal-tagline {
    margin: 0 auto 34px;
    max-width: 560px;
    font-size: 17px;
    color: var(--p-ink-soft);
}

.portal-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 700;
    transition: transform .22s, box-shadow .22s;
}

.btn-hero-primary {
    background: var(--p-grad-blue);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(90, 125, 232, .6);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(90, 125, 232, .7);
    color: #fff;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, .85);
    color: var(--p-blue-deep);
    border: 1.5px solid rgba(90, 125, 232, .35);
    backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(90, 125, 232, .6);
    box-shadow: 0 14px 30px -14px rgba(90, 125, 232, .45);
    color: var(--p-blue-deep);
}

/* ---------- stats ---------- */
.portal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin: -62px auto 0;
    max-width: 780px;
    position: relative;
    z-index: 5;
    padding: 0 24px;
}

.stat-item {
    background: var(--p-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--p-radius);
    padding: 22px 18px 18px;
    text-align: center;
    box-shadow: var(--p-shadow);
    transition: transform .25s, box-shadow .25s;
}

.stat-item:hover { transform: translateY(-4px); box-shadow: var(--p-shadow-lg); }

.stat-num {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.15;
    background: var(--p-grad-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    margin-top: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--p-muted);
}

/* ---------- features ---------- */
.portal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.feat-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    padding: 30px 24px 26px;
    box-shadow: 0 6px 22px -12px rgba(120, 100, 180, .20);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.feat-card::before {
    content: "";
    position: absolute;
    top: 0; inset-inline: 24px;
    height: 3.5px;
    border-radius: 0 0 6px 6px;
    background: var(--p-grad-blue);
    opacity: 0;
    transition: opacity .25s;
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--p-shadow-lg);
    border-color: rgba(138, 90, 232, .25);
}

.feat-card:hover::before { opacity: 1; }

/* one pastel gradient per card */
.feat-card:nth-child(1)::before { background: linear-gradient(90deg, #7a9ef0, #5a7de8); }
.feat-card:nth-child(2)::before { background: linear-gradient(90deg, #e87a9e, #c45a9c); }
.feat-card:nth-child(3)::before { background: linear-gradient(90deg, #7ae0c8, #5ac4b0); }
.feat-card:nth-child(4)::before { background: linear-gradient(90deg, #c0a4f0, #9a7ae8); }

.feat-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 12px 24px -10px rgba(120, 100, 180, .45);
}

.feat-card:nth-child(1) .feat-icon { background: linear-gradient(135deg, #7a9ef0, #5a7de8); }
.feat-card:nth-child(2) .feat-icon { background: linear-gradient(135deg, #e87a9e, #c45a9c); }
.feat-card:nth-child(3) .feat-icon { background: linear-gradient(135deg, #7ae0c8, #5ac4b0); }
.feat-card:nth-child(4) .feat-icon { background: linear-gradient(135deg, #c0a4f0, #9a7ae8); }

.feat-card h3 {
    margin: 0 0 8px;
    font-size: 17.5px;
    font-weight: 800;
    color: var(--p-ink);
}

.feat-card p {
    margin: 0;
    font-size: 14px;
    color: var(--p-ink-soft);
    line-height: 1.75;
}

/* ---------- shops section ---------- */
.portal-shops-wrap { margin-top: 70px; }

.shops-header { text-align: center; margin-bottom: 26px; }

.shops-header h2 {
    margin: 0;
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 900;
    background: var(--p-grad-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.shops-count {
    font-size: 16px;
    font-weight: 700;
    color: var(--p-muted);
    -webkit-text-fill-color: var(--p-muted);
}

/* filter */
.filter-bar {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    padding: 18px;
    box-shadow: 0 6px 22px -14px rgba(120, 100, 180, .22);
    margin-bottom: 30px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.filter-row select {
    flex: 1 1 150px;
    max-width: 220px;
    padding: 11px 16px;
    border-radius: 14px;
    border: 1.5px solid rgba(140, 130, 190, .22);
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239a97b0' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat;
    background-position: left 14px center;
    -webkit-appearance: none;
    appearance: none;
    padding-inline-start: 32px;
    padding-inline-end: 14px;
    font-family: inherit;
    font-size: 14px;
    color: var(--p-ink);
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}

[dir="rtl"] .filter-row select { background-position: right 14px center; }

.filter-row select:hover,
.filter-row select:focus {
    border-color: rgba(138, 90, 232, .50);
    box-shadow: 0 0 0 4px rgba(138, 90, 232, .10);
    outline: none;
}

.filter-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.btn-pill-gold {
    background: var(--p-grad-blue);
    color: #fff;
    border: none;
    box-shadow: 0 10px 24px -10px rgba(90, 125, 232, .55);
}

.btn-pill-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px -10px rgba(90, 125, 232, .65);
}

.btn-pill-outline {
    background: #fff;
    color: var(--p-blue-deep);
    border: 1.5px solid rgba(90, 125, 232, .35);
}

.btn-pill-outline:hover {
    border-color: rgba(90, 125, 232, .60);
    color: var(--p-blue-deep);
    transform: translateY(-1px);
}

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; justify-content: center; }

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(138, 90, 232, .10), rgba(90, 125, 232, .10));
    border: 1px solid rgba(138, 90, 232, .25);
    color: var(--p-blue-deep);
    font-size: 13px;
    font-weight: 600;
}

.chip a { color: var(--p-blue-deep); font-size: 15px; line-height: 1; }

/* shop grid */
.shop-grid {
    display: flex !important;flex-wrap:wrap!important;
    
    gap: 18px !important;
}

.shop-card-pro {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    overflow: hidden;
    box-shadow: 0 8px 26px -14px rgba(120, 100, 180, .28);
    transition: transform .25s, box-shadow .25s;
}

.shop-card-pro:hover { transform: translateY(-5px); box-shadow: var(--p-shadow-lg); }

.shop-cover { position: relative; height: 120px; overflow: hidden; border-radius: 10px; background: #f8f9fb; }

.shop-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.shop-card-pro:hover .shop-cover img { transform: scale(1.06); }

.shop-cover-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e4f8 0%, #f0e8f8 55%, #e4f0f8 100%);
    font-size: 38px;
    color: rgba(138, 90, 232, .45);
}

.shop-cover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(180deg, transparent 30%, rgba(45, 42, 74, .68));
}

.shop-cover-name {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.shop-cover-slogan {
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    margin-top: 3px;
}

.shop-meta { padding: 15px 16px 17px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.shop-meta-region {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: var(--p-ink-soft);
    font-weight: 600;
}

.shop-meta-region i { color: var(--p-rose); }

.shop-meta-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.tag {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--p-blue-deep);
    background: linear-gradient(120deg, rgba(138, 90, 232, .10), rgba(90, 125, 232, .10));
    border: 1px solid rgba(138, 90, 232, .22);
}

.portal-empty {
    text-align: center;
    padding: 70px 20px;
    color: var(--p-muted);
    background: rgba(255, 255, 255, .6);
    border-radius: var(--p-radius);
    border: 1.5px dashed rgba(140, 130, 190, .28);
}

.portal-empty i { font-size: 44px; margin-bottom: 14px; opacity: .55; }
.portal-empty p { margin: 0; font-size: 15px; }

/* ---------- footer ---------- */
.portal-foot-pro {
    margin-top: 46px;
    padding: 36px 20px 40px;
    text-align: center;
    color: var(--p-ink-soft);
    font-size: 14px;
    position: relative;
    background:
        radial-gradient(560px 220px at 18% 0%, rgba(138, 90, 232, .14), transparent 62%),
        radial-gradient(560px 220px at 82% 0%, rgba(90, 196, 176, .12), transparent 62%);
    border-top: 1px solid var(--p-border);
}

.portal-foot-pro::before {
    content: "";
    position: absolute;
    top: -1px; inset-inline: 20%;
    height: 2.5px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, transparent, #7a9ef0, #c45a9c, #7ae0c8, transparent);
    opacity: .55;
}

.portal-foot-inner { max-width: 1120px; margin: 0 auto; }

.foot-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 14px;
}

.foot-links a {
    font-weight: 700;
    color: var(--p-blue-deep);
    font-size: 14.5px;
    transition: opacity .2s;
}

.foot-links a:hover { opacity: .7; }

.foot-copy { margin: 0; color: var(--p-muted); }

/* ---------- responsive ---------- */

/* Tablet & large phone */
@media (max-width: 768px) {
    .portal-main { padding: 0 16px 56px; }
    .portal-top-inner { padding: 12px 16px; gap: 12px; }
    .portal-logo { font-size: 18px; }
    .portal-nav { gap: 10px; }
    .portal-nav a { font-size: 13.5px; }
    .portal-nav a.btn,
    .portal-nav a.btn-sm { padding: 8px 16px; }

    .portal-hero { padding: 60px 18px 96px; border-radius: 22px; margin-top: 16px; }
    .portal-hero h1 { line-height: 1.2; }
    .portal-actions { gap: 10px; }
    .btn-hero { padding: 12px 24px; font-size: 14.5px; min-height: 46px; }

    .portal-stats { margin-top: -50px; padding: 0 16px; gap: 12px; }
    .stat-item { padding: 18px 14px 14px; }

    .portal-features { margin-top: 50px; gap: 14px; }
    .shop-grid { gap: 16px; }
    .shop-cover { height: 100px !important; border-radius: 8px; }
}

/* Phone */
@media (max-width: 640px) {
    .portal-hero { padding: 52px 16px 84px; }
    .btn-hero { width: 100%; }
    .stat-num { font-size: 26px; }
    .portal-features { grid-template-columns: 1fr 1fr; gap: 12px; }
    .feat-card { padding: 22px 18px 20px; }
    .feat-icon { width: 50px; height: 50px; font-size: 20px; border-radius: 15px; margin-bottom: 14px; }
    .feat-card h3 { font-size: 15.5px; }
    .feat-card p { font-size: 13px; }
    .shop-grid { gap: 8px !important; }
    .portal-top-inner { padding: 12px 16px; }
    .portal-logo { font-size: 18px; }
    .filter-row select { max-width: 100%; flex-basis: calc(50% - 6px); }
}

/* Small phone */
@media (max-width: 480px) {
    .portal-main { padding: 0 14px 48px; }
    .portal-top-inner { padding: 10px 14px; gap: 8px; }
    .portal-logo { font-size: 16px; }
    .portal-nav { gap: 8px; }
    .portal-nav a { font-size: 13px; }
    .portal-nav a.btn,
    .portal-nav a.btn-sm { padding: 7px 14px; font-size: 13px; }

    .portal-hero { padding: 44px 14px 76px; border-radius: 18px; }
    .portal-hero h1 { font-size: clamp(25px, 8vw, 34px); }
    .portal-tagline { font-size: 15px; margin-bottom: 24px; }
    .hero-badge { font-size: 12px; padding: 7px 14px; }

    .portal-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: -44px; padding: 0 14px; }
    .stat-item { padding: 12px 6px; border-radius: 14px; }
    .stat-num { font-size: 20px; }
    .stat-label { font-size: 11px; margin-top: 2px; }

    .portal-features { grid-template-columns: 1fr; gap: 12px; margin-top: 44px; }
    .feat-card { padding: 20px 16px 18px; }

    .filter-bar { padding: 14px; }
    .filter-row { flex-direction: column; align-items: stretch; }
    .filter-row select { max-width: 100%; flex-basis: auto; width: 100%; }
    .filter-actions { width: 100%; }
    .filter-actions .btn-pill { flex: 1; justify-content: center; min-height: 44px; }

    .shop-grid { gap: 8px !important; }
    .shop-cover { height: 80px !important; border-radius: 8px; }
    .shop-meta { padding: 10px 10px 12px; }
    .shop-meta h3 { font-size: 13px; }
    .shop-tags { flex-wrap: wrap; gap: 4px; }
    .shop-tags span { font-size: 10px; padding: 3px 7px; }
}

/* Very small phone */
@media (max-width: 360px) {
    .portal-hero h1 { font-size: 23px; }
    .portal-logo { font-size: 15px; }
    .stat-num { font-size: 18px; }
    .stat-label { font-size: 10px; }
}

/* ---------- features section heading ---------- */
.portal-features-sec { margin-top: 64px; }
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 30px; }
.sec-title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3.4vw, 32px);
    font-weight: 900;
    background: var(--p-grad-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sec-sub {
    margin: 0;
    font-size: 15px;
    color: var(--p-ink-soft);
    line-height: 1.7;
}

/* ---------- CTA banner ---------- */
.portal-cta {
    margin-top: 72px;
    padding: 0 16px;
}
.cta-inner {
    position: relative;
    overflow: hidden;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #5a7de8 0%, #8a5ae8 48%, #c45a9c 100%);
    box-shadow: 0 28px 60px -20px rgba(120, 90, 200, .5);
}
.cta-inner::before,
.cta-inner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
}
.cta-inner::before { width: 220px; height: 220px; top: -70px; inset-inline-start: -50px; }
.cta-inner::after { width: 160px; height: 160px; bottom: -60px; inset-inline-end: -30px; }
.cta-inner h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: clamp(22px, 3.2vw, 30px);
    font-weight: 900;
    color: #fff;
}
.cta-inner p {
    position: relative;
    margin: 0 auto 26px;
    max-width: 480px;
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .92);
}
.cta-btn {
    position: relative;
    background: #fff;
    color: var(--p-rose-deep);
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .3);
}
.cta-btn:hover { transform: translateY(-2px); color: var(--p-rose-deep); }

/* === FORCE FLEX SHOP LAYOUT v8 === */
.shop-grid{display:flex!important;flex-wrap:wrap!important}
.shop-grid .shop-card-pro{flex:0 0 calc(33.333% - 12px)!important;max-width:calc(33.333% - 12px)!important;width:auto!important;box-sizing:border-box!important}
@media(max-width:768px){.shop-grid .shop-card-pro{flex:0 0 calc(50% - 9px)!important;max-width:calc(50% - 9px)!important}}
@media(max-width:480px){.shop-grid .shop-card-pro{flex:0 0 100%!important;max-width:100%!important}}
