/* assets/css/app/gold-prices.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --pm-gold: #C9A94A;
    --pm-gold-light: #F5ECD7;
    --pm-platinum: #7C8DA8;
    --pm-silver: #8A919A;
    --pm-bg: #FAFAF8;
    --pm-surface: #FFFFFF;
    --pm-text: #1A1A1A;
    --pm-text-secondary: #6B7280;
    --pm-text-muted: #9CA3AF;
    --pm-border: #E8E6E1;
    --pm-red: #C24B4B;
    --pm-green: #3D8B6B;
    --pm-up-bg: #FFF0F0;
    --pm-down-bg: #EFFAF5;
    --pm-flat-bg: #F5F5F5;
    --pm-up-color: #C24B4B;
    --pm-down-color: #3D8B6B;
    --pm-flat-color: #9CA3AF;
}

/* ===== Base Layout ===== */
.pm-dashboard {
    margin: 70px auto;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Noto Sans JP', sans-serif; */
    color: var(--pm-text);
}

/* ===== Header ===== */
.pm-header {
    text-align: center;
    margin-bottom: 48px;
}
.home .pm-header {
    text-align: left;
    margin-bottom: 20px;
}
.home .pm-header h2{
    display: none;
}
.pm-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--pm-text);
    margin: 0 0 8px;
    letter-spacing: 1px;
}

.pm-header-sub {
    font-size: 14px;
    color: var(--pm-text-secondary);
    font-weight: 400;
    margin-bottom: 24px;
}

.pm-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pm-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--pm-text-muted);
}

.pm-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pm-green);
}

.pm-meta-label {
    font-weight: 500;
    color: var(--pm-text-secondary);
}

/* ===== Summary Bar ===== */
.pm-summary-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pm-summary-card {
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: 16px;
    padding: 16px 24px;
    min-width: 180px;
    text-align: center;
}

.pm-summary-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pm-text-muted);
    margin-bottom: 6px;
}

.pm-summary-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--pm-text);
}

/* ===== Price Cards Grid ===== */
.pm-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* ===== Individual Card ===== */
.pm-card {
    background: var(--pm-surface);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--pm-border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.pm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.pm-card:hover::before {
    opacity: 1;
}

/* Card: Header Band */
.pm-card-band {
    background: var(--card-bg);
    padding: 24px 24px 20px;
    position: relative;
    overflow: hidden;
}

.pm-card-band::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--card-accent);
    opacity: 0.06;
}

.pm-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.pm-card-metal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pm-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--card-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: 'Playfair Display', serif; */
    font-weight: 700;
    font-size: 14px;
    opacity: 0.9;
}

.pm-card-name-group {
    display: flex;
    flex-direction: column;
}

.pm-card-name {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(18px, -4px + 2vw, 22px);
    font-weight: 700;
    color: var(--pm-text);
    line-height: 1.2;
}

.pm-card-name-en {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--card-accent);
    text-transform: uppercase;
}

.pm-card-purity {
    font-size: 12px;
    font-weight: 500;
    color: var(--pm-text-muted);
    background: rgba(255,255,255,0.7);
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Card: Price Section */
.pm-card-body {
    padding: 0;
}

/* Price Block - Sell (Retail) */
.pm-price-block {
    padding: 20px 24px;
    border-bottom: 1px solid var(--pm-border);
    position: relative;
    transition: background 0.2s;
}

.pm-price-block:hover {
    background: rgba(0,0,0,0.01);
}

.pm-price-block:last-child {
    border-bottom: none;
}

.pm-price-type-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pm-price-type {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pm-price-type-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pm-price-type-icon.sell {
    background: #FFF0F0;
    color: var(--pm-red);
}

.pm-price-type-icon.buy {
    background: #EFFAF5;
    color: var(--pm-green);
}

.pm-price-type-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--pm-text-secondary);
    letter-spacing: 0.3px;
}

.pm-price-type-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    background: #FEE2E2;
    color: #991B1B;
}

.pm-price-type-tag.sell {
    background: #FEE2E2;
    color: #991B1B;
}

.pm-price-type-tag.buy {
    background: #DCFCE7;
    color: #166534;
}

/* Price Display */
.home .p-entry-content>:where(:not(:first-child)){
    margin-top: 0;
}
.pm-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.pm-price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pm-price-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(24px, -20px + 4vw, 32px);
    font-weight: 700;
    color: var(--pm-text);
    letter-spacing: -0.5px;
    line-height: 1;
}

.pm-price-unit {
    font-size: 13px;
    font-weight: 500;
    color: var(--pm-text-muted);
    margin-left: 2px;
}

/* Diff Badge */
.pm-diff-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
    flex-shrink: 0;
}

.pm-diff-badge.up {
    background: var(--pm-up-bg);
    color: var(--pm-up-color);
}

.pm-diff-badge.down {
    background: var(--pm-down-bg);
    color: var(--pm-down-color);
}

.pm-diff-badge.flat {
    background: var(--pm-flat-bg);
    color: var(--pm-flat-color);
}

.pm-diff-arrow {
    font-size: 10px;
    line-height: 1;
}

.pm-diff-label {
    font-size: 10px;
    opacity: 0.75;
    /* font-family: 'Inter', sans-serif; */
    font-weight: 500;
}

/* Spread Row */
.pm-spread-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: #FAF9F7;
    border-top: 1px dashed var(--pm-border);
}

.pm-spread-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--pm-text-muted);
    letter-spacing: 0.5px;
}

.pm-spread-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--pm-text-secondary);
}

.pm-spread-pct {
    font-size: 12px;
    color: var(--pm-text-muted);
    margin-left: 4px;
    font-weight: 400;
}

/* ===== Footer ===== */
.home .pm-footer{
    display: none;
}

.pm-footer {
    text-align: center;
}

.pm-footer-disclaimer {
    font-size: 12px;
    color: #111;
    line-height: 2;
    padding: 20px;
    background-color: #FAF9F7;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .pm-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pm-cards{
        margin-bottom: 50px;
    }
    .pm-dashboard {
        margin: 60px auto;
    }
    .pm-price-block{
        padding: 15px 24px;
    }
    .pm-card-band{
        padding: 18px 24px 16px;
    }
    .pm-header h2 {
        font-size: 28px;
    }

    .pm-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pm-meta-row {
        gap: 16px;
    }

    .pm-summary-bar {
        gap: 12px;
    }

    .pm-summary-card {
        min-width: 140px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .pm-price-row {
        align-items: flex-start;
        gap: 8px;
    }

    .pm-meta-row {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== Knowledge Tabs ===== */
.gp-tabs {
    margin-bottom: 56px;
}

/* Nav */
.gp-tabs__nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid var(--pm-border);
    gap: 0;
    flex-wrap: wrap;
}

.gp-tabs__tab {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pm-text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
    user-select: none;
}

.gp-tabs__tab span { color: inherit; }

.gp-tabs__tab:hover {
    color: var(--pm-text);
    background: rgba(0, 0, 0, 0.02);
}

.gp-tabs__tab.is-active {
    color: var(--pm-gold);
    border-bottom-color: var(--pm-gold);
}

.gp-tabs__tab[data-tab="platinum-value"].is-active {
    color: var(--pm-platinum);
    border-bottom-color: var(--pm-platinum);
}

/* Panels */
.gp-tabs__panels {
    padding: 40px 0 0;
}

.gp-tabs__panel {
    display: none;
}

.gp-tabs__panel.is-active {
    display: block;
    animation: gpFadeIn 0.3s ease both;
}

@keyframes gpFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Panel: Head */
.gp-panel__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.gp-panel__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.gp-panel__title {
    font-size: clamp(18px, -4px + 2vw, 22px);
    font-weight: 700;
    color: var(--pm-text);
    margin: 0 0 4px;
    line-height: 1.2;
}

.gp-panel__subtitle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--pm-text-muted);
    margin: 0;
    text-transform: uppercase;
}

/* Panel: Lead */
.gp-panel__lead {
    border-left: 4px solid var(--pm-gold);
    padding: 16px 20px;
    background: var(--pm-gold-light);
    border-radius: 0 12px 12px 0;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--pm-text);
}

.gp-tabs__panel[data-panel="platinum-value"] .gp-panel__lead {
    border-left-color: var(--pm-platinum);
    background: #EBEff5;
}

/* Panel: Stats */
.gp-panel__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.gp-panel__stat {
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gp-panel__stat::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--pm-gold);
    border-radius: 14px 14px 0 0;
}

.gp-tabs__panel[data-panel="platinum-value"] .gp-panel__stat::after {
    background: var(--pm-platinum);
}

.gp-panel__stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--pm-gold);
    line-height: 1.2;
    margin-bottom: 8px;
}

.gp-panel__stat-num small {
    font-size: 14px;
    font-weight: 600;
}

.gp-tabs__panel[data-panel="platinum-value"] .gp-panel__stat-num {
    color: var(--pm-platinum);
}

.gp-panel__stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--pm-text-secondary);
    line-height: 1.6;
}

/* Panel: Body */
.gp-panel__body {
    margin-bottom: 28px;
}

.gp-panel__body p {
    font-size: 15px;
    line-height: 1.95;
    color: var(--pm-text-secondary);
    margin: 0 0 14px;
}

.gp-panel__body p:last-child { margin-bottom: 0; }

/* Panel: Points */
.gp-panel__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.gp-panel__point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #FAFAF8;
    border: 1px solid var(--pm-border);
    border-radius: 14px;
    padding: 18px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.gp-panel__point:hover {
    border-color: var(--pm-gold);
    box-shadow: 0 4px 16px -4px rgba(201, 169, 74, 0.18);
}

.gp-tabs__panel[data-panel="platinum-value"] .gp-panel__point:hover {
    border-color: var(--pm-platinum);
    box-shadow: 0 4px 16px -4px rgba(124, 141, 168, 0.2);
}

.gp-panel__point-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--pm-gold-light);
    color: #8B6914;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.gp-tabs__panel[data-panel="platinum-value"] .gp-panel__point-icon {
    background: #E8ECF3;
    color: var(--pm-platinum);
}

.gp-panel__point-content { flex: 1; min-width: 0; }

.gp-panel__point-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--pm-text);
    margin: 0 0 5px;
}

.gp-panel__point-desc {
    font-size: 12px;
    line-height: 1.75;
    color: var(--pm-text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .gp-tabs__tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .gp-panel__stats {
        gap: 10px;
    }

    .gp-panel__stat-num {
        font-size: 20px;
    }

    .gp-panel__points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .gp-tabs__nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        border-bottom: none;
        padding-bottom: 16px;
    }

    .gp-tabs__tab {
        text-align: center;
        padding: 12px 8px;
        border-bottom: none;
        margin-bottom: 0;
        border-radius: 12px;
        border: 1.5px solid var(--pm-border);
        background: var(--pm-surface);
        font-size: 13px;
        white-space: normal;
        line-height: 1.45;
        transition: border-color 0.2s, background 0.2s, color 0.2s;
    }

    .gp-tabs__tab:hover {
        border-color: var(--pm-gold);
        background: rgba(201, 169, 74, 0.04);
        color: var(--pm-text);
    }

    .gp-tabs__tab.is-active {
        background: var(--pm-gold-light);
        border-color: var(--pm-gold);
        color: var(--pm-gold);
        border-bottom-color: var(--pm-gold);
    }

    .gp-tabs__tab[data-tab="platinum-value"].is-active {
        background: #E8ECF3;
        border-color: var(--pm-platinum);
        color: var(--pm-platinum);
        border-bottom-color: var(--pm-platinum);
    }
}

@media (max-width: 480px) {
    .gp-panel__stats {
        grid-template-columns: 1fr;
    }

    .gp-panel__head {
        gap: 12px;
    }

    .gp-panel__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 13px;
    }

    .gp-panel__title {
        font-size: 18px;
    }
}

/* ===== Gold Scrap Container ===== */
.home .scrap-container{
    display: none;
}
.scrap-container {
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 40px;
}

/* Header */
.scrap-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    border-left: 4px solid #c5a059;
    padding-left: 16px;
}

.scrap-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.scrap-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--pm-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.scrap-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.scrap-header-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--pm-text);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.scrap-header-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--pm-text-muted);
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scrap-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 12px;
    color: var(--pm-text-muted);
}

.scrap-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.2px;
    margin-top: 2px;
}

.scrap-header-base-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--pm-text-muted);
    text-transform: uppercase;
    border: 1px solid #d4d4d4;
    padding: 2px 8px;
    border-radius: 4px;
}

.scrap-header-base-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--pm-gold);
    letter-spacing: -0.3px;
}

/* Grid */
.scrap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: #eee;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Card */
.scrap-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 30px 20px;
    background: #ffffff;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    background: linear-gradient(180deg, #ffffff 0%, #fffcf5 100%);
}

.scrap-card:hover {
    z-index: 2;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
}

.scrap-card:first-child {
    
}

.scrap-card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.scrap-karat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #c5a059;
    letter-spacing: 0.05em;
    line-height: 1.5;
    background: #c5a059;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

.scrap-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--pm-gold);
    background: rgba(201, 169, 74, 0.12);
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.scrap-purity {
    font-size: 11px;
    font-weight: 500;
    color: var(--pm-text-muted);
    letter-spacing: 0.3px;
}

.scrap-price {
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin-top: 4px;
}

.scrap-yen {
    font-size: 12px;
    font-weight: 600;
    color: var(--pm-text-secondary);
    position: relative;
    top: 1px;
}

.scrap-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 26px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.scrap-unit {
    font-size: 12px;
    font-weight: 400;
    color: #86868b;
    margin-left: 2px;
}

@media (max-width: 768px) {
.pm-header{
    margin-bottom: 30px;
}
    .scrap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scrap-card {
        padding: 22px 12px;
    }

    .scrap-header {
        gap: 12px;
    }

    .scrap-header-right {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {

    .scrap-value {
        font-size: 20px;
    }
}

/* ===== Entrance Animation ===== */
@keyframes pmFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pm-card {
    animation: pmFadeUp 0.5s ease-out both;
}

.pm-card:nth-child(1) { animation-delay: 0.05s; }
.pm-card:nth-child(2) { animation-delay: 0.15s; }
.pm-card:nth-child(3) { animation-delay: 0.25s; }

/* Shimmer effect on gold card */
/* .pm-card[data-metal="XAU"] .pm-card-band {
    position: relative;
}

.pm-card[data-metal="XAU"] .pm-card-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 74, 0.08), transparent);
    animation: pmShimmer 4s ease-in-out infinite;
}

@keyframes pmShimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
} */