/* ==========================================================================
   shop.css - Стили для магазина
   Полная адаптация стилистики huli.html в систему trumpamole__shop--
   ========================================================================== */

/* ===== FULL-WIDTH TOP HERO ===== */
.trumpamole__shop-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(0, 0, 0, 0.18);
}

.trumpamole__shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../shop/bg_page.webp') center/cover no-repeat;
    filter: blur(1.2px) saturate(1.05) contrast(1.05);
    transform: scale(1.08);
    opacity: 0.95;
}

.trumpamole__shop-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.10) 0%,
        rgba(36, 26, 26, 0.35) 40%,
        rgba(36, 26, 26, 0.85) 100%);
    pointer-events: none;
}

.trumpamole__shop-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 10px;
    align-items: center;
    min-height: 92px;
    padding: calc(12px + var(--safe-top)) 14px 12px 14px;
    width: min(440px, 100%);
    margin: 0 auto;
}

/* ===== WALLET / БАЛАНС ===== */
.trumpamole__shop-wallet {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.trumpamole__shop-wallet-title {
    font-family: var(--font-heading, "Unbounded", "Manrope", ui-sans-serif, system-ui);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgba(255, 248, 230, 0.96);
    margin-bottom: 2px;
}

.trumpamole__shop-wallet-row {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: stretch;
}

.trumpamole__shop-chip {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 18px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 232, 170, 0.10);
    min-width: 0;
}

.trumpamole__shop-chip-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.trumpamole__shop-chip-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.30));
    opacity: 0.95;
    flex: 0 0 auto;
}

.trumpamole__shop-chip-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.trumpamole__shop-chip-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    color: rgba(255, 246, 230, 0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trumpamole__shop-chip-value {
    font-size: 13px;
    font-weight: 900;
    color: rgba(255, 248, 230, 0.98);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.trumpamole__shop-wallet-desc {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.25;
    color: rgba(255, 246, 230, 0.78);
    font-weight: 800;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.trumpamole__shop-top-icon {
    width: 212px;
    height: 176px;
    display: grid;
    place-items: center;
    overflow: visible;
}

.trumpamole__shop-top-icon img {
    width: 100%;
    height: 100%;
    margin-right: 100px;
    object-fit: contain;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.40));
    transform: translateY(2px);
}

/* ===== FULL-WIDTH PROMO ===== */
.trumpamole__shop-promo-full {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 170px;
    border-top: 1px solid rgba(255, 232, 170, 0.10);
    box-shadow: 0px -9px 13px -2px rgba(0, 0, 0, 0.82);
}

.trumpamole__shop-promo-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../shop/promo_bg.webp') center/cover no-repeat;
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.05);
    opacity: 0.98;
}

.trumpamole__shop-promo-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.20) 40%,
        rgba(36, 26, 26, 0.78) 100%);
    pointer-events: none;
}

.trumpamole__shop-promo-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 10px;
    align-items: stretch;
    min-height: 170px;
    width: min(440px, 100%);
    margin: 0 auto;
    padding: 12px 14px 14px;
}

.trumpamole__shop-promo-icon {
    display: grid;
    place-items: center;
}

.trumpamole__shop-promo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.38));
}

.trumpamole__shop-promo-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    justify-content: space-between;
}

.trumpamole__shop-timer-bar {
    border-radius: 14px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 22px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 232, 170, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trumpamole__shop-timer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.trumpamole__shop-t-cell {
    border-radius: 12px;
    padding: 10px 8px;
    background: rgba(37, 26, 26, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 18px rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 232, 170, 0.08);
    text-align: center;
}

.trumpamole__shop-t-num {
    font-family: var(--font-heading, "Unbounded", "Manrope", ui-sans-serif, system-ui);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.2px;
    color: rgba(255, 248, 230, 0.98);
    line-height: 1.05;
}

.trumpamole__shop-t-lbl {
    margin-top: 3px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    color: rgba(255, 246, 230, 0.72);
}

.trumpamole__shop-promo-text {
    font-size: 12px;
    line-height: 1.25;
    color: rgba(255, 246, 230, 0.86);
    font-weight: 800;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    margin-top: 6px;
}

/* ===== MAIN PANEL ===== */
.trumpamole__shop-main-panel {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 16px;
    padding-bottom: calc(18px + var(--safe-bottom));
    border-top: 1px solid rgba(255, 232, 170, 0.10);
    overflow: hidden;
    box-shadow: 0px -9px 13px -2px rgba(0, 0, 0, 0.82);
}

.trumpamole__shop-main-panel::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 246, 230, 0.22);
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
}

.trumpamole__shop-main-inner {
    position: relative;
    z-index: 2;
    width: min(440px, 100%);
    margin: 0 auto;
    padding: 0 14px;
}

/* ===== SECTION HEADER ===== */
.trumpamole__shop-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2px 2px 6px;
    margin: 0;
}

.trumpamole__shop-section-header h2 {
    margin: 0;
    font-family: var(--font-heading, "Unbounded", "Manrope", ui-sans-serif, system-ui);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgba(255, 248, 230, 0.96);
}

.trumpamole__shop-section-header .trumpamole__shop-hint {
    font-size: 12px;
    color: rgba(255, 246, 230, 0.72);
    font-weight: 800;
}

/* ===== TABS ===== */
.trumpamole__shop-tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 4px 0 10px;
    padding: 0;
}

.trumpamole__shop-tab-btn {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    display: block;
    flex: 1 1 0;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.trumpamole__shop-tab-btn + .trumpamole__shop-tab-btn {
    margin-left: -10px;
}

.trumpamole__shop-tab-pill {
    height: 46px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    transform-origin: center;
    opacity: 0.7;
    border: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.12s ease, filter 0.16s ease, box-shadow 0.18s ease;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.38));
}

.trumpamole__shop-tab-pill::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.95;
}

.trumpamole__shop-tab-btn:active .trumpamole__shop-tab-pill {
    transform: skewX(-14deg) translateY(1px) scale(0.985);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.34));
}

.trumpamole__shop-tab-pill img {
    width: 40px;
    height: 62px;
    object-fit: contain;
    margin-top: -6px;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.30));
    opacity: 0.95;
    display: block;
}

.trumpamole__shop-tab-btn.active {
    z-index: 6;
}

.trumpamole__shop-tab-btn.active .trumpamole__shop-tab-pill {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 16px 28px rgba(0, 0, 0, 0.34);
    filter: drop-shadow(0 22px 55px rgba(0, 0, 0, 0.44)) drop-shadow(0 0 18px rgba(255, 246, 230, 0.08));
    background: linear-gradient(180deg, 
        rgba(74, 52, 51, 0.92) 0%, 
        rgba(74, 52, 51, 0.42) 55%, 
        rgba(74, 52, 51, 0) 100%);
    opacity: 1;
}

/* ===== PRODUCT GRID ===== */
.trumpamole__shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 18px;
}

.trumpamole__shop-card {
    position: relative;
    border-radius: var(--radiusCard, 12px);
    overflow: visible;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 232, 170, 0.08);
    background: radial-gradient(60% 55% at 50% 18%,
            rgba(245, 214, 90, 0.10) 0%,
            rgba(164, 214, 178, 0.18) 22%,
            rgba(94, 111, 134, 0.60) 68%,
            rgba(26, 34, 48, 1) 100%),
        linear-gradient(180deg, rgba(184, 199, 218, 0.45) 0%, rgba(26, 34, 48, 1) 100%);
    min-height: 206px;
    margin-bottom: 18px;
}

.trumpamole__shop-card-media {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    opacity: 0.92;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.03);
}

.trumpamole__shop-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.08) 40%,
        rgba(26, 34, 48, 0.78) 100%);
    pointer-events: none;
}

.trumpamole__shop-card-inner {
    position: relative;
    z-index: 2;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 44px;
}

.trumpamole__shop-info-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 10px 22px rgba(0, 0, 0, 0.25);
    color: rgba(255, 246, 230, 0.92);
    font-weight: 900;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s ease, background 0.18s ease;
    font-family: var(--font-heading, "Unbounded", "Manrope", ui-sans-serif, system-ui);
    display: grid;
    place-items: center;
}

.trumpamole__shop-info-btn:active {
    transform: translateY(1px) scale(0.98);
    background: rgba(0, 0, 0, 0.28);
}

.trumpamole__shop-corner-icon {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
    opacity: 0.92;
    pointer-events: none;
}

.trumpamole__shop-title-box {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding-right: 40px;
}

.trumpamole__shop-p-name {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.2px;
    color: rgba(255, 248, 230, 0.98);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.trumpamole__shop-p-sub {
    font-size: 11px;
    color: rgba(255, 246, 230, 0.78);
    font-weight: 800;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border-radius: 8px;
}

/* ===== PRICE ROW ===== */
.trumpamole__shop-price-row {
    margin-top: 8px;
    border-radius: 12px;
    padding: 9px 10px;
    background: rgba(0, 0, 0, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 22px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trumpamole__shop-price-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25px;
    color: rgba(255, 246, 230, 0.72);
    flex: 0 0 auto;
}

.trumpamole__shop-price-value {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    font-weight: 900;
    color: rgba(255, 248, 230, 0.98);
    letter-spacing: 0.2px;
    font-size: 12px;
}

.trumpamole__shop-price-value img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.30));
    opacity: 0.95;
}

/* ===== CARD BUY BUTTON WRAPPER ===== */
.trumpamole__shop-card-buy {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -20px;
    z-index: 10;
}

/* ===== PREMIUM BUTTON ===== */
.trumpamole__shop-btn-par {
    position: relative;
    width: 100%;
    height: 56px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.trumpamole__shop-btn-par__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.trumpamole__shop-btn-par__text {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    color: rgba(18, 14, 8, 0.92);
    font: 800 15px/1 var(--font-heading, "Unbounded", "Manrope", ui-sans-serif, system-ui);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
    padding: 0 14px;
    text-align: center;
}

.trumpamole__shop-btn-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.trumpamole__shop-btn-price-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
    opacity: 0.95;
}

.trumpamole__shop-btn-price-value {
    font-weight: 900;
    letter-spacing: 0.25px;
}

.trumpamole__shop-btn-par.fire {
    filter: drop-shadow(0 26px 80px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 26px var(--glow, rgba(245, 214, 90, 0.18)));
    transition: transform 0.12s ease, filter 0.16s ease;
}

.trumpamole__shop-btn-par.fire:active {
    transform: translateY(1px);
    filter: drop-shadow(0 18px 55px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 18px var(--glow, rgba(245, 214, 90, 0.14)));
}

.trumpamole__shop-btn-par.is-dark .trumpamole__shop-btn-par__text {
    color: rgba(255, 246, 230, 0.92);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.40);
}

/* ===== INVENTORY TAB ===== */
.trumpamole__shop-inventory-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trumpamole__shop-inventory-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radiusCard, 12px);
    border: 1px solid rgba(255, 232, 170, 0.08);
    gap: 12px;
}

.trumpamole__shop-inventory-empty-icon {
    font-size: 48px;
    opacity: 0.7;
}

.trumpamole__shop-inventory-empty-title {
    font-size: 16px;
    font-weight: 900;
    color: rgba(255, 248, 230, 0.98);
}

.trumpamole__shop-inventory-empty-desc {
    font-size: 13px;
    color: rgba(255, 246, 230, 0.72);
}

.trumpamole__shop-inventory-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.trumpamole__shop-inventory-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radiusCard, 12px);
    border: 1px solid rgba(255, 232, 170, 0.10);
    align-items: center;
}

.trumpamole__shop-inventory-item-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.trumpamole__shop-inventory-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.30));
}

.trumpamole__shop-inventory-item-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trumpamole__shop-inventory-item-name {
    font-weight: 900;
    font-size: 14px;
    color: rgba(255, 248, 230, 0.98);
}

.trumpamole__shop-inventory-item-desc {
    font-size: 12px;
    color: rgba(255, 246, 230, 0.78);
}

.trumpamole__shop-inventory-item-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.trumpamole__shop-inventory-activate-btn {
    border: 0;
    border-radius: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--gold-3), var(--gold-4));
    color: var(--brown-0);
    font-weight: 900;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.12s ease;
}

.trumpamole__shop-inventory-activate-btn:active {
    transform: translateY(1px) scale(0.98);
}

/* ===== ACTIVE BOOSTS ===== */
.trumpamole__shop-active-boosts {
    margin-top: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radiusCard, 12px);
    border: 1px solid rgba(255, 232, 170, 0.10);
}

.trumpamole__shop-active-boosts-title {
    font-weight: 900;
    font-size: 14px;
    color: rgba(255, 248, 230, 0.98);
    margin-bottom: 12px;
}

.trumpamole__shop-active-boosts-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trumpamole__shop-active-boost-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.trumpamole__shop-active-boost-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.trumpamole__shop-active-boost-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trumpamole__shop-active-boost-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trumpamole__shop-active-boost-name {
    font-weight: 900;
    font-size: 13px;
    color: rgba(255, 248, 230, 0.98);
}

.trumpamole__shop-active-boost-timer {
    font-size: 11px;
    color: rgba(255, 246, 230, 0.78);
    display: flex;
    align-items: center;
    gap: 4px;
}

.trumpamole__shop-active-boost-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
}

.trumpamole__shop-active-boost-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-3), var(--gold-4));
    transition: width 0.5s linear;
}

.trumpamole__shop-no-active-boosts {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 8px;
    color: rgba(255, 246, 230, 0.72);
}

.trumpamole__shop-no-active-boosts-icon {
    font-size: 32px;
    opacity: 0.7;
}

/* ===== VIP SECTION ===== */
.trumpamole__shop-vip-card {
    background: radial-gradient(circle at 50% 0%, 
        rgba(229, 191, 100, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 100%);
    border-radius: var(--radiusCard, 12px);
    border: 1px solid rgba(229, 191, 100, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.trumpamole__shop-vip-icon-large {
    font-size: 64px;
    filter: drop-shadow(0 10px 20px rgba(229, 191, 100, 0.4));
}

.trumpamole__shop-vip-title-large {
    font-size: 20px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(255, 248, 230, 0.98);
    text-shadow: 0 0 10px rgba(229, 191, 100, 0.5);
}

.trumpamole__shop-vip-duration {
    font-size: 14px;
    color: var(--gold-3);
    font-weight: 800;
}

.trumpamole__shop-vip-benefits {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 12px;
}

.trumpamole__shop-vip-benefits-title {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--gold-3);
}

.trumpamole__shop-vip-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trumpamole__shop-vip-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 246, 230, 0.86);
}

.trumpamole__shop-vip-benefit-check {
    color: var(--gold-3);
    font-weight: 900;
}

.trumpamole__shop-vip-price-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trumpamole__shop-vip-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--gold-3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trumpamole__shop-vip-buy-btn {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-3), var(--gold-4));
    color: var(--brown-0);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.12s ease;
}

.trumpamole__shop-vip-buy-btn:active {
    transform: translateY(1px) scale(0.98);
}

.trumpamole__shop-vip-active-info {
    text-align: center;
    padding: 12px;
    background: rgba(229, 191, 100, 0.1);
    border-radius: 12px;
    width: 100%;
}

.trumpamole__shop-vip-active-badge {
    color: var(--gold-3);
    font-weight: 900;
    margin-bottom: 4px;
}

.trumpamole__shop-vip-expires {
    font-size: 12px;
    color: rgba(255, 246, 230, 0.78);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 390px) {
    .trumpamole__shop-tab-pill {
        height: 44px;
        border-radius: 13px;
    }
    
    .trumpamole__shop-tab-pill img {
        width: 28px;
        height: 28px;
    }
    
    .trumpamole__shop-tab-btn + .trumpamole__shop-tab-btn {
        margin-left: -9px;
    }
    
    .trumpamole__shop-hero-inner {
        grid-template-columns: 1fr 100px;
    }
    
    .trumpamole__shop-promo-inner {
        grid-template-columns: 88px 1fr;
    }
    
    .trumpamole__shop-chip-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 360px) {
    .trumpamole__shop-grid {
        grid-template-columns: 1fr;
    }
}