/* ================================================================
   SHOPEE-STYLE PRODUCT PAGE — Mobile-first
   Palette: #EE4D2D (orange), #fff, #f5f5f5, #222, #757575
   ================================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Roboto, sans-serif;
    background: #f5f5f5;
    color: #222;
    line-height: 1.45;
    padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));
    -webkit-font-smoothing: antialiased;
}

/* ========== GALLERY ========== */
.shopee-gallery {
    position: relative;
    background: #000;
}

.shopee-gallery__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    padding-top: calc(10px + env(safe-area-inset-top, 0px));
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 100%);
}

.shopee-gallery__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 36px;
    object-fit: contain;
}

.shopee-gallery__header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shopee-gallery__icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.shopee-gallery__icon-btn svg {
    display: block;
}

.cart-wrapper {
    position: relative;
    display: inline-flex;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #ee4d2d;
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    border: 1.5px solid #fff;
}

/* Carousel */
.shopee-gallery__carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.shopee-gallery__carousel:active { cursor: grabbing; }

.product-carousel-track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.product-carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.product-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #fff;
}

/* Counter badge */
.shopee-gallery__counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

/* Thumbnails */
.shopee-gallery__thumbs {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: #fff;
    overflow-x: auto;
    scrollbar-width: none;
}
.shopee-gallery__thumbs::-webkit-scrollbar { display: none; }

.thumbnail {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #ee4d2d;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== FLASH SALE ========== */
.shopee-flash-sale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #ee4d2d 0%, #f26b3a 100%);
    padding: 8px 12px;
}

.shopee-flash-sale__left {
    display: flex;
    align-items: center;
}

.shopee-flash-sale__label {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-style: italic;
}

.shopee-flash-sale__bolt {
    font-size: 14px;
}

.shopee-flash-sale__right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shopee-flash-sale__ends {
    font-size: 11px;
    color: #fff;
    font-weight: 500;
}

.shopee-flash-sale__timer {
    display: flex;
    align-items: center;
    gap: 2px;
}

.shopee-flash-sale__box {
    background: #222;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 2px;
    min-width: 24px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.shopee-flash-sale__sep {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

/* ========== PRICE SECTION ========== */
.shopee-price-section {
    background: #fff;
    padding: 12px 12px 10px;
}

.shopee-price-section__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shopee-price-section__left {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.shopee-price-section__current {
    font-size: 24px;
    font-weight: 700;
    color: #ee4d2d;
    line-height: 1;
}

.shopee-price-section__old {
    font-size: 14px;
    color: #929292;
    text-decoration: line-through;
}

.shopee-price-section__discount {
    font-size: 12px;
    font-weight: 700;
    color: #ee4d2d;
    background: #ffeee8;
    padding: 1px 4px;
    border-radius: 2px;
}

.shopee-price-section__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.shopee-price-section__sold {
    font-size: 12px;
    color: #757575;
}

.shopee-price-section__fav {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
}

.shopee-price-section__installments {
    font-size: 13px;
    color: #555;
    margin-top: 6px;
}

.shopee-price-section__installments strong {
    color: #222;
}

/* ========== PRODUCT TITLE ========== */
.shopee-product-title {
    background: #fff;
    padding: 10px 12px 14px;
    border-top: 1px solid #f0f0f0;
}

.shopee-product-title__badge {
    display: inline-block;
    background: #ee4d2d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    margin-right: 6px;
    vertical-align: middle;
    text-transform: uppercase;
}

.shopee-product-title__text {
    display: inline;
    font-size: 15px;
    font-weight: 400;
    color: #222;
    line-height: 1.45;
}

/* ========== INFO CARDS ========== */
.shopee-info-card {
    background: #fff;
    margin-top: 8px;
    padding: 12px;
}

.shopee-info-card + .shopee-info-card {
    margin-top: 0;
    border-top: 1px solid #f0f0f0;
}

.shopee-info-card--highlight {
    background: #fff7e6;
    border-top: none !important;
    margin-top: 0;
}

.shopee-info-card__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shopee-info-card__row svg:first-child {
    flex-shrink: 0;
}

.shopee-info-card__label {
    flex: 1;
    font-size: 13px;
    color: #222;
    line-height: 1.35;
}

.shopee-info-card__row > svg:last-child {
    flex-shrink: 0;
}

/* ========== GENERIC SECTION ========== */
.shopee-section {
    background: #fff;
    margin-top: 8px;
}

.shopee-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 8px;
}

.shopee-section__title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.shopee-section__more {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    color: #757575;
    cursor: pointer;
}

/* ========== DELIVERY ========== */
.shopee-delivery {
    padding: 0 12px 12px;
}

.shopee-delivery__row {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: flex-start;
}

.shopee-delivery__row:last-child {
    border-bottom: none;
}

.shopee-delivery__row svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.shopee-delivery__info {
    flex: 1;
    font-size: 13px;
    color: #222;
    line-height: 1.45;
}

.shopee-delivery__sub {
    font-size: 12px;
    color: #757575;
    margin-top: 2px;
}

/* ========== REVIEWS (Shopee style) ========== */
.shopee-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.shopee-reviews-header__left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.shopee-reviews-header__score {
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.shopee-reviews-header__star-icon {
    color: #FFCE3D;
    font-size: 20px;
    margin-right: 2px;
}

.shopee-reviews-header__title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-left: 4px;
}

.shopee-reviews-header__count {
    font-size: 13px;
    color: #757575;
}

.shopee-reviews-header__right {
    font-size: 12px;
    color: #757575;
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.shopee-reviews-tags {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.shopee-reviews-tags::-webkit-scrollbar { display: none; }

.shopee-reviews-tag {
    flex-shrink: 0;
    font-size: 12px;
    color: #555;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    white-space: nowrap;
    cursor: pointer;
}

.shopee-reviews-tag:hover {
    border-color: #ee4d2d;
    color: #ee4d2d;
}

/* Review cards */
.reviews-list {
    padding: 0 12px;
}

.review-card {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.review-card:last-child {
    border-bottom: none;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.review-name {
    font-size: 12px;
    font-weight: 500;
    color: #222;
}

.review-stars {
    color: #ee4d2d;
    font-size: 11px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 13px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 8px;
}

.review-photos {
    display: block;
    margin-bottom: 6px;
    width: 150px;
    max-width: 100%;
}

.review-photo {
    width: 150px;
    height: 150px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.review-media--video {
    position: relative;
    display: block;
    margin-bottom: 6px;
    width: 150px;
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
}

.review-video {
    width: 150px;
    height: 150px;
    max-width: 100%;
    display: block;
    cursor: pointer;
    object-fit: cover;
}

.review-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.review-video-play:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.review-video-play.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.review-media--video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.review-date {
    font-size: 11px;
    color: #bbb;
}

.review-like-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    color: #757575;
    transition: color 0.15s;
}

.review-like-btn:hover {
    color: #ee4d2d;
}

.review-like-btn svg {
    display: block;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-top: 1px solid #f0f0f0;
}

.reviews-pagination__btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
}

.reviews-pagination__btn:hover:not(:disabled) {
    border-color: #ee4d2d;
    color: #ee4d2d;
}

.reviews-pagination__btn--active {
    background: #ee4d2d;
    border-color: #ee4d2d;
    color: #fff;
}

.reviews-pagination__btn--ghost {
    cursor: not-allowed;
    opacity: 0.4;
    background: #f5f5f5;
    color: #bbb;
}

.reviews-pagination__ellipsis {
    padding: 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: #bbb;
    user-select: none;
}

/* ========== VIDEO ========== */
.shopee-video-wrap {
    position: relative;
    margin: 0 12px 12px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 9/16;
    max-height: 400px;
    background: #000;
}

.shopee-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.shopee-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    z-index: 10;
    transition: opacity 0.2s;
}

.shopee-video-play:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.shopee-video-tags {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shopee-video-tags span {
    font-size: 12px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    font-weight: 600;
}

/* ========== STORE ========== */
.shopee-store {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.shopee-store__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shopee-store__avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.shopee-store__avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shopee-store__badge-label {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: #ee4d2d;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 2px;
    white-space: nowrap;
    text-transform: uppercase;
}

.shopee-store__info {
    display: flex;
    flex-direction: column;
}

.shopee-store__name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.shopee-store__online {
    font-size: 12px;
    color: #00bfa5;
}

.shopee-store__btn {
    border: 1px solid #ee4d2d;
    background: none;
    color: #ee4d2d;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 2px;
    cursor: pointer;
}

.shopee-store__stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px;
}

.shopee-store__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.shopee-store__stat-value {
    font-size: 15px;
    font-weight: 700;
    color: #ee4d2d;
}

.shopee-store__stat-label {
    font-size: 11px;
    color: #757575;
}

.shopee-store__stat-divider {
    width: 1px;
    height: 28px;
    background: #e0e0e0;
}

/* ========== SPECS ========== */
.shopee-specs {
    padding: 0 12px 12px;
}

.shopee-specs__row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 13px;
}

.shopee-specs__row:last-child {
    border-bottom: none;
}

.shopee-specs__label {
    width: 120px;
    flex-shrink: 0;
    color: #757575;
}

.shopee-specs__value {
    flex: 1;
    color: #222;
}

/* ========== DESCRIPTION ========== */
.shopee-description {
    padding: 0 12px 16px;
    font-size: 13px;
    color: #222;
    line-height: 1.65;
}

.shopee-description p {
    margin-bottom: 4px;
}

.shopee-description strong {
    font-weight: 600;
}

/* ========== BOTTOM BAR ========== */
.shopee-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: stretch;
    background: #fff;
    border-top: none;
    height: calc(50px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.shopee-bottom-bar__chat,
.shopee-bottom-bar__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 0;
    flex: 1;
    background: #00bfa5;
}

.shopee-bottom-bar__cart {
    border-left: 1px solid rgba(255,255,255,0.2);
}

.shopee-bottom-bar__buy {
    flex: 2;
    background: #ee4d2d;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.15s;
}

.shopee-bottom-bar__buy:active {
    background: #d73211;
}

/* ========== COMPATIBILITY (keep JS working) ========== */
.sticky-checkout { display: none; }
.sticky-warranty { display: none; }
.header { display: none; }
.top-banner { display: none; }
.nav-menu { display: none; }
.footer { display: none; }

/* price-desktop/mobile toggle */
.price-desktop { display: block; }
.price-mobile { display: none; }
html.is-real-mobile .price-desktop { display: none; }
html.is-real-mobile .price-mobile { display: block; }

/* Timer elements hidden but functional */
[data-offer-timer] { font-variant-numeric: tabular-nums; }

/* Scroll hints */
#todos-feedbacks {
    scroll-margin-top: 0;
}

/* ========== RESPONSIVE — Desktop ========== */
@media (min-width: 768px) {
    body {
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0,0,0,0.08);
        min-height: 100vh;
    }

    .shopee-bottom-bar {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ========== BUY MODAL (Bottom Sheet) ========== */
.shopee-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.shopee-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.shopee-modal {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 12px 12px 0 0;
    padding: 20px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shopee-modal-overlay.active .shopee-modal {
    transform: translateY(0);
}

.shopee-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.shopee-modal__product {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    padding-bottom: 16px;
}

.shopee-modal__img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    margin-top: -40px;
}

.shopee-modal__product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shopee-modal__price {
    font-size: 22px;
    font-weight: 700;
    color: #ee4d2d;
}

.shopee-modal__stock {
    font-size: 13px;
    color: #757575;
}

.shopee-modal__divider {
    height: 1px;
    background: #f0f0f0;
    margin: 0 -16px;
}

.shopee-modal__qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.shopee-modal__qty-label {
    font-size: 14px;
    color: #222;
}

.shopee-modal__qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.shopee-modal__qty-btn {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    font-size: 16px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopee-modal__qty-btn:active {
    background: #e8e8e8;
}

.shopee-modal__qty-value {
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    line-height: 32px;
}

.shopee-modal__buy-btn {
    width: 100%;
    background: #ee4d2d;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 16px;
    transition: background 0.15s;
}

.shopee-modal__buy-btn:active {
    background: #d73211;
}

/* ========== SOCIAL PROOF TOAST ========== */
.social-toast {
    position: fixed;
    bottom: 62px;
    left: 12px;
    z-index: 998;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    max-width: 320px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    pointer-events: none;
}

.social-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.social-toast__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
}

.social-toast__body {
    flex: 1;
    min-width: 0;
}

.social-toast__name {
    font-size: 12px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.social-toast__action {
    font-size: 11px;
    color: #757575;
    line-height: 1.3;
}

.social-toast__time {
    font-size: 10px;
    color: #bbb;
    margin-top: 1px;
}

.social-toast__badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: #00bfa5;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 4px;
    vertical-align: middle;
}

/* ========== ANIMATION ========== */
@keyframes price-strip-stock-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
