/* ═══════════════════════════════════════════════════════════════════════════ */
/* ROTTERI HOMEPAGE — ALIBABA/SHOPEE STYLE — COLORFUL LIGHT THEME            */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables (light/colorful) ──────────────────────────────────────── */
:root {
    --hm-primary:   #FF4F00;
    --hm-red:       #FF4F00;
    --hm-orange:    #FF8C00;
    --hm-yellow:    #FFC107;
    --hm-green:     #10B981;
    --hm-blue:      #3B82F6;
    --hm-purple:    #8B5CF6;
    --hm-pink:      #EC4899;
    --hm-bg:        #F5F5F5;
    --hm-surface:   #FFFFFF;
    --hm-border:    #E5E7EB;
    --hm-text:      #111827;
    --hm-text2:     #4B5563;
    --hm-text3:     #9CA3AF;
    --hm-radius:    12px;
    --hm-shadow:    0 2px 12px rgba(0,0,0,0.08);
    --hm-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* ── Base reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Prevent horizontal overflow handled by inner wrappers */

/* Wrapper for any section that uses carousels / auto-scroll strips */
.hm-carousel-wrap,
.hm-neon-banners,
.hm-cats,
.hm-flash__scroll,
.hm-strip,
.hm-ticker {
    max-width: 100%;
    overflow-x: hidden;
}

/* ── Skeleton shimmer ────────────────────────────────────────────────────── */
@keyframes hmShimmer {
    0%   { background-position: -300% center; }
    100% { background-position:  300% center; }
}

/* ── Neon FLICKER (like a real Vegas sign) ───────────────────────────────── */
@keyframes hmFlicker {
    0%,19%,21%,23%,25%,54%,56%,100% {
        text-shadow:
            0 0 4px #fff,
            0 0 10px #fff,
            0 0 20px #FF4F00,
            0 0 40px #FF4F00,
            0 0 80px #FF4F00;
        opacity: 1;
    }
    20%,24%,55% {
        text-shadow: none;
        opacity: .7;
    }
}
@keyframes hmFlickerGold {
    0%,18%,20%,52%,54%,100% {
        text-shadow:
            0 0 4px #fff,
            0 0 14px #FFD700,
            0 0 30px #FFD700,
            0 0 60px #FFD700;
        opacity: 1;
    }
    19%,53% { text-shadow: none; opacity: .65; }
}
@keyframes hmFlickerBorder {
    0%,18%,20%,52%,54%,100% {
        box-shadow: 0 0 6px currentColor, 0 0 18px currentColor, 0 0 36px currentColor;
        opacity: 1;
    }
    19%,53% { box-shadow: none; opacity: .6; }
}

/* ── Auto-scroll carousel ────────────────────────────────────────────────── */
@keyframes hmAutoScroll  { 0% { transform:translateX(0); }    100% { transform:translateX(-50%); } }
@keyframes hmAutoScrollR { 0% { transform:translateX(-50%); } 100% { transform:translateX(0); } }

.hm-carousel-wrap {
    overflow: hidden;
    padding: 2px 0 14px;
    background: #fff;
}
.hm-carousel-track {
    display: inline-flex;
    gap: 10px;
    white-space: nowrap;
    animation: hmAutoScroll 28s linear infinite;
    padding: 0 12px;
}
.hm-carousel-track:hover { animation-play-state: paused; }
.hm-carousel-track--r { animation: hmAutoScrollR 28s linear infinite; }
.hm-carousel-track--fast { animation-duration: 18s; }
.hm-carousel-track--slow { animation-duration: 40s; }
.hm-carousel-track--bg { background: var(--hm-bg); }

/* ── Escape (vertical auto-scroll strip) ─────────────────────────────────── */
@keyframes hmScrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* ── Fade-up entrance ────────────────────────────────────────────────────── */
.hm-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.hm-fade.hm-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════ TICKER ═════════════════════════════════════*/
@keyframes hmTick { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes hmTickerBg {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hm-ticker {
    background: linear-gradient(90deg, #FF4F00, #FF8C00, #FF4F00, #e63900);
    background-size: 200% auto;
    overflow: hidden;
    padding: 8px 0;
    position: relative;
    z-index: 10;
    animation: hmTickerBg 4s linear infinite;
    border-bottom: 2px solid rgba(255,200,0,.4);
    box-shadow: 0 0 12px rgba(255,79,0,.35), 0 0 24px rgba(255,79,0,.15);
}
.hm-ticker__track {
    display: inline-flex;
    gap: 36px;
    white-space: nowrap;
    animation: hmTick 22s linear infinite;
    font-size: .72rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
    text-shadow: 0 0 8px rgba(255,255,255,.6);
}
.hm-ticker__track:hover { animation-play-state: paused; }
.hm-ticker__track span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: hmFlicker 8s linear infinite;
}
.hm-ticker__track span:nth-child(2n)  { animation-delay: 2s; }
.hm-ticker__track span:nth-child(3n)  { animation-delay: 4.5s; }
.hm-ticker__track span:nth-child(4n)  { animation-delay: 1.2s; }
.hm-ticker__track span:nth-child(5n)  { animation-delay: 6s; }
.hm-ticker__track span i { opacity: .9; }


/* ═══════════════════════════════ HERO ═══════════════════════════════════════*/
.hm-hero {
    position: relative;
    background: #fff;
}
.hm-hero__slider {
    position: relative;
    height: 140px;
    overflow: hidden;
}
@keyframes hmSlideIn { from { opacity:0; transform:scale(1.04); } to { opacity:1; transform:scale(1); } }
.hm-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-size: cover;
    background-position: center;
}
.hm-hero__slide.active {
    opacity: 1;
    z-index: 1;
    animation: hmSlideIn 0.7s ease;
}
.hm-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.5) 0%, rgba(0,0,0,.05) 60%, transparent 100%);
}
.hm-hero__content {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 14px;
    color: #fff;
}
.hm-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--hm-yellow);
    color: #000;
    font-size: .55rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 4px;
    animation: hmTagPop 0.4s 0.3s backwards;
}
@keyframes hmTagPop { from { transform: scale(0.7); opacity:0; } to { transform: scale(1); opacity:1; } }
.hm-hero__title {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 0 3px;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
    line-height: 1.15;
}
.hm-hero__sub {
    font-size: .68rem;
    opacity: .9;
    margin: 0 0 8px;
}
.hm-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--hm-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: .68rem;
    font-weight: 800;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 3px 10px rgba(255,79,0,.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hm-hero__btn:hover { transform: translateY(-1px); box-shadow: 0 6px 15px rgba(255,79,0,.4); }

.hm-hero__dots {
    position: absolute;
    bottom: 6px;
    right: 8px;
    z-index: 3;
    display: flex;
    gap: 4px;
}
.hm-hero__dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none; padding: 0; cursor: pointer;
    transition: all 0.3s;
}
.hm-hero__dot.active { width: 14px; border-radius: 3px; background: #fff; }

/* Service quick-links - Compact */
.hm-services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--hm-border);
    background: #fff;
}
.hm-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 2px;
    font-size: .55rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--hm-text2);
    border-right: 1px solid var(--hm-border);
    transition: background 0.2s;
}
.hm-service:last-child { border-right: none; }
.hm-service i { font-size: 0.95rem; }
.hm-service--orange i { color: var(--hm-orange); }
.hm-service--pink    i { color: var(--hm-pink); }
.hm-service--purple  i { color: var(--hm-purple); }
.hm-service--green   i { color: var(--hm-green); }
.hm-service--blue    i { color: var(--hm-blue); }
.hm-service:active { background: var(--hm-bg); }

/* ═════════════════════════════════ SECTION HEADER ═════════════════════*/
.hm-section-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 5px;
    background: var(--hm-bg);
}
.hm-section-hdr__title {
    font-size: .95rem;
    font-weight: 800;
    color: var(--hm-text);
}
.hm-section-hdr__link {
    font-size: .75rem;
    color: var(--hm-primary);
    font-weight: 600;
    text-decoration: none;
}
.hm-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fee2e2;
    color: #dc2626;
    font-size: .65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
}
.hm-live-badge i { font-size: .45rem; animation: hmPulse 1.2s ease infinite; }
@keyframes hmPulse { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

/* ═══════════════════════════════ CATEGORIES ═════════════════════════════════*/
.hm-cats {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 12px 10px;
    background: #fff;
    scrollbar-width: none;
}
.hm-cats::-webkit-scrollbar { display: none; }
.hm-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    min-width: 48px;
    text-decoration: none;
}
.hm-cat__icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hm-cat:active .hm-cat__icon { transform: scale(0.88); }
.hm-cat:hover .hm-cat__icon { transform: scale(1.08); }
.hm-cat__label {
    font-size: .55rem;
    font-weight: 600;
    color: var(--hm-text2);
    text-align: center;
    white-space: nowrap;
}

/* ═══════════════════════════════ FLASH DEALS ════════════════════════════════*/
.hm-flash {
    margin: 8px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF4F00 0%, #FF8C00 100%);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255,79,0,.25);
}
.hm-flash__hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}
.hm-flash__left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hm-flash__icon {
    width: 30px; height: 30px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: var(--hm-yellow);
}
.hm-flash__title { font-size: .88rem; font-weight: 900; color: #fff; }
.hm-flash__sub { font-size: .6rem; color: rgba(255,255,255,.85); margin-top: 1px; }

/* Countdown */
.hm-flash__cd {
    display: flex;
    align-items: center;
    gap: 3px;
}
.hm-flash__cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,.25);
    border-radius: 6px;
    padding: 3px 5px;
    min-width: 28px;
}
.hm-flash__cd-num {
    font-family: 'Courier New', monospace;
    font-size: .8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.hm-flash__cd-lbl {
    font-size: .45rem;
    color: rgba(255,255,255,.7);
    font-weight: 600;
    margin-top: 1px;
}
.hm-flash__cd-sep {
    font-size: .85rem;
    font-weight: 900;
    color: rgba(255,255,255,.8);
    line-height: 1;
}

/* Flash product scroll */
.hm-flash__scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 12px 14px;
    scrollbar-width: none;
}
.hm-flash__scroll::-webkit-scrollbar { display: none; }
.hm-flash__card {
    flex-shrink: 0;
    width: 120px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}
.hm-flash__card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.hm-flash__card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(100deg, #f0f0f0 40%, rgba(255,255,255,.7) 50%, #f0f0f0 60%);
    background-size: 200% auto;
    animation: hmShimmer 1.4s linear infinite;
    overflow: hidden;
}
.hm-flash__card-img-wrap.loaded { animation: none; background: #f5f5f5; }
.hm-flash__card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.hm-flash__card:hover .hm-flash__card-img-wrap img { transform: scale(1.07); }
.hm-flash__card-badge {
    position: absolute;
    top: 6px; left: 6px;
    z-index: 2;
    background: #FF4F00;
    color: #fff;
    font-size: .58rem;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255,79,0,.4);
    animation: hmBadgePulse 2s ease infinite;
}
@keyframes hmBadgePulse {
    0%,100% { box-shadow: 0 0 5px rgba(255,79,0,.4); }
    50%      { box-shadow: 0 0 14px rgba(255,79,0,.8); }
}
.hm-flash__card-body { padding: 8px 8px 10px; }
.hm-flash__card-name {
    font-size: .68rem;
    font-weight: 600;
    color: var(--hm-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    line-height: 1.3;
}
.hm-flash__card-price {
    font-size: .95rem;
    font-weight: 900;
    color: var(--hm-primary);
}
.hm-flash__card-price small { font-size: .6em; font-weight: 700; }
.hm-flash__card-orig {
    font-size: .62rem;
    color: var(--hm-text3);
    text-decoration: line-through;
    margin-top: 1px;
}

/* ═══════════════════════════════ PROMO 3-col ════════════════════════════════*/
.hm-promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 8px 4px;
    background: var(--hm-bg);
}
.hm-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 8px;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hm-promo:hover { transform: scale(1.04); }
.hm-promo i { font-size: 1.4rem; }
.hm-promo--1 { background: linear-gradient(135deg,#FF6B6B,#FF8E8E); color:#fff; }
.hm-promo--2 { background: linear-gradient(135deg,#A855F7,#C084FC); color:#fff; }
.hm-promo--3 { background: linear-gradient(135deg,#3B82F6,#60A5FA); color:#fff; }

/* ═══════════════════════════════ HORIZONTAL SCROLL (pCards) ═════════════════*/
.hm-hscroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 12px 14px;
    background: #fff;
    scrollbar-width: none;
}
.hm-hscroll::-webkit-scrollbar { display: none; }

/* Product card for horizontal sections */
.hm-pcard {
    flex-shrink: 0;
    width: 130px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--hm-border);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}
.hm-pcard:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.hm-pcard__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(100deg, #f0f0f0 40%, rgba(255,255,255,.7) 50%, #f0f0f0 60%);
    background-size: 200% auto;
    animation: hmShimmer 1.4s linear infinite;
}
.hm-pcard__img-wrap.loaded { animation: none; background: #f5f5f5; }
.hm-pcard__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
    position: relative; z-index: 1;
}
.hm-pcard:hover .hm-pcard__img-wrap img { transform: scale(1.07); }
.hm-pcard__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    background: var(--hm-primary);
    color: #fff;
    text-align: center;
    font-size: .65rem;
    font-weight: 800;
    padding: 7px;
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hm-pcard:hover .hm-pcard__overlay { transform: translateY(0); }
.hm-pcard__new-badge {
    position: absolute;
    top: 6px; left: 6px;
    z-index: 3;
    background: var(--hm-green);
    color: #fff;
    font-size: .52rem;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 20px;
}
.hm-pcard__body { padding: 8px 9px 10px; }
.hm-pcard__name {
    font-size: .7rem;
    font-weight: 500;
    color: var(--hm-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    line-height: 1.35;
}
.hm-pcard__price {
    font-size: .9rem;
    font-weight: 900;
    color: var(--hm-primary);
}
.hm-pcard__price small { font-size: .6em; font-weight: 700; }

/* ═══════════════════════════════ STORES ═════════════════════════════════════*/
.hm-stores-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 12px 14px;
    background: var(--hm-bg);
    scrollbar-width: none;
}
.hm-stores-scroll::-webkit-scrollbar { display: none; }
.hm-store-card {
    flex-shrink: 0;
    width: 160px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--hm-border);
    box-shadow: var(--hm-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hm-store-card:hover { transform: translateY(-4px); box-shadow: var(--hm-shadow-lg); }
.hm-store-card__top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
}
.hm-store-card__avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--hm-border);
    flex-shrink: 0;
}
.hm-store-card__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    width: 38px; height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hm-store-card__info { flex: 1; min-width: 0; }
.hm-store-card__name {
    font-size: .75rem;
    font-weight: 800;
    color: var(--hm-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hm-store-card__meta { font-size: .6rem; color: var(--hm-text3); margin-top: 2px; }
.hm-store-card__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.hm-store-card__grid img {
    width: 100%; aspect-ratio: 1;
    object-fit: cover; display: block;
    transition: transform 0.3s ease;
}
.hm-store-card__grid img:hover { transform: scale(1.06); }
.hm-store-card__btn {
    display: block;
    text-align: center;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: 9px;
    letter-spacing: .02em;
    transition: opacity 0.2s;
}
.hm-store-card__btn:hover { opacity: .88; }

/* ═══════════════════════════════ AUCTIONS ═══════════════════════════════════*/
.hm-auctions {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 12px 14px;
    background: #fff;
    scrollbar-width: none;
}
.hm-auctions::-webkit-scrollbar { display: none; }
.hm-auction {
    flex-shrink: 0;
    width: 200px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #fde68a;
    padding: 14px;
    box-shadow: 0 4px 14px rgba(245,158,11,.12);
    position: relative;
    overflow: hidden;
}
.hm-auction::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.hm-auction__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 6px; margin-bottom: 8px; }
.hm-auction__name { font-size: .78rem; font-weight: 700; color: var(--hm-text); flex: 1; line-height: 1.3; }
.hm-auction__timer {
    font-family: 'Courier New', monospace;
    font-size: .72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 3px 7px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}
.hm-auction__prices { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.hm-auction__current { font-size: 1.1rem; font-weight: 900; color: #d97706; }
.hm-auction__original { font-size: .68rem; color: var(--hm-text3); text-decoration: line-through; }
.hm-auction__bar-wrap { height: 5px; background: #fef3c7; border-radius: 3px; margin-bottom: 6px; overflow: hidden; }
.hm-auction__bar { height: 100%; background: linear-gradient(90deg, #f59e0b, #fbbf24); border-radius: 3px; transition: width 1s ease; }
.hm-auction__meta { display: flex; justify-content: space-between; font-size: .62rem; color: var(--hm-text3); margin-bottom: 10px; }
.hm-auction__btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #000;
    text-align: center;
    padding: 9px;
    border-radius: 10px;
    font-size: .75rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    letter-spacing: .02em;
}
.hm-auction__btn:hover { transform: scale(1.02); opacity: .9; }

/* ═══════════════════════════════ PLANS ══════════════════════════════════════*/
.hm-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 12px 14px;
    background: var(--hm-bg);
}
.hm-plan {
    background: #fff;
    border-radius: 16px;
    border: 2px solid var(--plan-color, #6366f1);
    padding: 16px 14px;
    position: relative;
    overflow: hidden;
}
.hm-plan::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--plan-color, #6366f1);
}
.hm-plan__header { margin-bottom: 12px; }
.hm-plan__name { font-size: .9rem; font-weight: 900; color: var(--hm-text); margin-bottom: 4px; }
.hm-plan__price { font-size: 1.4rem; font-weight: 900; color: var(--plan-color, #6366f1); line-height: 1; }
.hm-plan__price small { font-size: .5em; font-weight: 600; color: var(--hm-text3); }
.hm-plan__features { list-style: none; margin: 0 0 12px; padding: 0; }
.hm-plan__features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    color: var(--hm-text2);
    padding: 3px 0;
}
.hm-plan__features li i { color: var(--plan-color, #6366f1); font-size: .7rem; }
.hm-plan__btn {
    display: block;
    width: 100%;
    background: var(--plan-color, #6366f1);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.hm-plan__btn:hover { opacity: .88; transform: scale(1.01); }

/* ═══════════════════════════════ PRODUCT STRIP ══════════════════════════════*/
@keyframes hmStrip { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.hm-strip-wrap {
    overflow: hidden;
    padding: 10px 0;
    background: var(--hm-bg);
    border-top: 1px solid var(--hm-border);
    border-bottom: 1px solid var(--hm-border);
}
.hm-strip {
    display: inline-flex;
    gap: 8px;
    white-space: nowrap;
    animation: hmStrip 22s linear infinite;
}
.hm-strip:hover { animation-play-state: paused; }
.hm-strip__item {
    flex-shrink: 0;
    width: 76px; height: 76px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--hm-border);
    text-decoration: none;
    display: block;
}
.hm-strip__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-strip__price {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: .52rem;
    font-weight: 700;
    text-align: center;
    padding: 2px;
}

/* ═══════════════════════════════ MAIN GRID (Recomendado) ════════════════════*/
/* Staggered card entrance */
@keyframes hmCardIn {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)     scale(1);    }
}
@keyframes hmRippleAnim { to { transform: scale(5); opacity: 0; } }

.hm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 4px 6px 100px;
    background: var(--hm-bg);
}

.hm-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid var(--hm-border);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    cursor: pointer;
    position: relative;

    /* Initial hidden state for staggered animation */
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}
.hm-card.hm-card--in {
    animation: hmCardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: calc(var(--i, 0) * 55ms);
}
.hm-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 8px 20px rgba(0,0,0,.10); }

/* Shimmer image wrapper */
.hm-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(100deg, #f0f0f0 40%, rgba(255,255,255,.7) 50%, #f0f0f0 60%);
    background-size: 300% auto;
    animation: hmShimmer 1.4s linear infinite;
}
.hm-card__img-wrap.loaded { animation: none; background: #f5f5f5; }
.hm-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    position: relative; z-index: 1;
    transition: transform 0.4s ease;
}
.hm-card:hover .hm-card__img-wrap img { transform: scale(1.08); }

/* Hover overlay buy button */
.hm-card__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    background: var(--hm-primary);
    color: #fff;
    text-align: center;
    font-size: .6rem;
    font-weight: 800;
    padding: 5px;
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hm-card:hover .hm-card__overlay { transform: translateY(0); }

/* Stock badge */
.hm-card__stock {
    position: absolute;
    top: 5px; right: 5px;
    z-index: 3;
    background: rgba(255,255,255,.92);
    color: #d97706;
    font-size: .5rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Card body */
.hm-card__body {
    padding: 5px 6px 7px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.hm-card__name {
    font-size: .63rem;
    font-weight: 500;
    color: var(--hm-text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.hm-card:hover .hm-card__name { color: var(--hm-primary); }
.hm-card__bottom {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-top: auto;
}
.hm-card__price {
    font-size: .85rem;
    font-weight: 900;
    color: var(--hm-primary);
    line-height: 1;
}
.hm-card__currency {
    font-size: .55rem;
    font-weight: 700;
    color: var(--hm-text3);
}

/* Ripple */
.hm-ripple {
    position: absolute;
    border-radius: 50%;
    width: 40px; height: 40px;
    background: rgba(255,79,0,.2);
    transform: scale(0);
    animation: hmRippleAnim 0.55s linear forwards;
    pointer-events: none;
    z-index: 10;
    margin-left: -20px;
    margin-top: -20px;
}

/* ═══════════════════════════════ LIVE COUNTER ═══════════════════════════════*/
.hm-live-counter {
    position: fixed;
    bottom: 76px;
    right: 10px;
    z-index: 60;
    background: #fff;
    border: 1px solid var(--hm-border);
    border-radius: 20px;
    padding: 7px 12px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--hm-text2);
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.hm-live-counter__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: hmPulse 1.5s ease infinite;
    flex-shrink: 0;
}

/* ═══════════════════════════════ LEGACY COMPAT ══════════════════════════════*/
/* Keep old rt- classes for any shared components outside index */
.rt-fade-up { opacity:0; transform:translateY(18px); transition:opacity .45s ease,transform .45s ease; }
.rt-fade-up.rt-visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* 🎰 LAS VEGAS NEON CASINO BANNERS                                          */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── Second ticker: darker background with emoji ────────────────────────── */
.hm-ticker--neon {
    background: linear-gradient(90deg, #1a0533, #2d0052, #0a0a2e, #001a33, #002200);
    background-size: 400% auto;
    animation: hmRainbowBg 6s linear infinite;
}
@keyframes hmRainbowBg {
    0%   { background-position: 0% center; }
    100% { background-position: 400% center; }
}
.hm-ticker--neon .hm-ticker__track {
    color: #fff;
    font-size: .78rem;
    letter-spacing: .08em;
    text-shadow: 0 0 10px rgba(255,200,0,.6);
}
.hm-ticker__track--slow { animation-duration: 35s; }

/* ── Neon banner wrapper (Compact Horizontal Scroll) ────────────────────── */
.hm-neon-banners {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: var(--hm-bg);
    overflow-x: auto;
    scrollbar-width: none;
}
.hm-neon-banners::-webkit-scrollbar { display: none; }

/* ── Keyframes ──────────────────────────────────────────────────────────── */
@keyframes hmNeonGlow {
    0%,100% { text-shadow: 0 0 10px currentColor, 0 0 20px currentColor; }
    50%      { text-shadow: 0 0 20px currentColor, 0 0 40px currentColor, 0 0 60px currentColor; }
}
@keyframes hmFloat {
    0%,100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-10px) rotate(5deg); }
}
@keyframes hmFloat2 {
    0%,100% { transform: translateY(-5px) rotate(8deg); }
    50%      { transform: translateY(5px) rotate(-8deg); }
}
@keyframes hmFloat3 {
    0%,100% { transform: translateY(-8px) scale(1); }
    50%      { transform: translateY(8px) scale(1.1); }
}
@keyframes hmSparkle {
    0%   { opacity: 0; transform: scale(0) rotate(0deg); }
    50%  { opacity: 1; transform: scale(1) rotate(180deg); }
    100% { opacity: 0; transform: scale(0) rotate(360deg); }
}
@keyframes hmRainbowBorder {
    0%   { border-color: #FF416C; box-shadow: 0 0 12px #FF416C44; }
    16%  { border-color: #FF8C00; box-shadow: 0 0 12px #FF8C0044; }
    33%  { border-color: #FFC107; box-shadow: 0 0 12px #FFC10744; }
    50%  { border-color: #10B981; box-shadow: 0 0 12px #10B98144; }
    66%  { border-color: #3B82F6; box-shadow: 0 0 12px #3B82F644; }
    83%  { border-color: #8B5CF6; box-shadow: 0 0 12px #8B5CF644; }
    100% { border-color: #FF416C; box-shadow: 0 0 12px #FF416C44; }
}
@keyframes hmShine {
    0%   { left: -100%; }
    100% { left: 200%; }
}
@keyframes hmBounce {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

/* ── Jackpot banner (main) ──────────────────────────────────────────────── */
.hm-neon-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 8px 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid transparent;
    animation: hmRainbowBorder 3s linear infinite, hmBounce 4s ease infinite;
    transition: transform 0.25s;
    height: 86px;
    flex-shrink: 0;
    width: 220px;
}
.hm-neon-banner:hover { transform: scale(1.01); }

.hm-neon-banner--jackpot {
    background: linear-gradient(135deg, #1a0533 0%, #4a0080 50%, #7B2FBE 100%);
}
.hm-neon-banner--ship {
    background: linear-gradient(135deg, #003366 0%, #0066cc 50%, #00aaff 100%);
}

/* Shine sweep */
.hm-neon-banner::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    animation: hmShine 3s linear infinite;
}

/* Sparkles */
.hm-neon-banner__sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hm-neon-banner__sparkles span {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #FFD700;
    animation: hmSparkle 2s ease infinite;
}
.hm-neon-banner__sparkles span:nth-child(1) { top: 10%; left: 8%;  animation-delay: 0s;    background: #FFD700; }
.hm-neon-banner__sparkles span:nth-child(2) { top: 70%; left: 15%; animation-delay: 0.4s;  background: #FF6BFF; }
.hm-neon-banner__sparkles span:nth-child(3) { top: 20%; left: 50%; animation-delay: 0.8s;  background: #00FFFF; }
.hm-neon-banner__sparkles span:nth-child(4) { top: 80%; left: 60%; animation-delay: 1.2s;  background: #FFD700; }
.hm-neon-banner__sparkles span:nth-child(5) { top: 40%; left: 75%; animation-delay: 0.2s;  background: #FF416C; }
.hm-neon-banner__sparkles span:nth-child(6) { top: 15%; left: 90%; animation-delay: 0.6s;  background: #7BFF6B; }

.hm-neon-banner__content { position: relative; z-index: 2; }
.hm-neon-banner__eyebrow {
    font-size: .52rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2px;
    animation: hmNeonGlow 2s ease infinite;
}
.hm-neon-banner__big {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255,255,255,.5);
    margin-bottom: 2px;
}
.hm-neon-banner__sub {
    font-size: .58rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 6px;
}
.hm-neon-banner__cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: #000;
    font-size: .55rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .04em;
    box-shadow: 0 2px 8px rgba(255,200,0,.4);
}

/* Floating coins */
.hm-neon-banner__right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.hm-neon-banner__coin { font-size: 1.4rem; animation: hmFloat  2.5s ease infinite; }
.hm-neon-banner__coin--2 { font-size: 1rem; animation: hmFloat2 2s ease infinite; animation-delay: .4s; }
.hm-neon-banner__coin--3 { font-size: 1.6rem; animation: hmFloat3 3s ease infinite; animation-delay: .8s; }

/* ── 3-mini row - changed to separate flex inline elements ──────────────── */
.hm-neon-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255,255,255,.25);
    height: 86px;
    flex-shrink: 0;
    width: 110px;
}
.hm-neon-mini:hover { transform: scale(1.04); }
.hm-neon-mini i { font-size: 1.15rem; color: #fff; position: relative; z-index: 1; flex-shrink: 0; }
.hm-neon-mini > div { position: relative; z-index: 1; }
.hm-neon-mini__title { font-size: .62rem; font-weight: 900; color: #fff; }
.hm-neon-mini__sub   { font-size: .52rem; color: rgba(255,255,255,.8); margin-top: 1px; }
.hm-neon-mini__tag {
    position: absolute;
    top: 4px; right: 4px;
    background: #FFD700;
    color: #000;
    font-size: .45rem;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 20px;
}

.hm-neon-mini--pink   { background: linear-gradient(135deg, #EC4899, #F472B6); }
.hm-neon-mini--purple { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }
.hm-neon-mini--gold   { background: linear-gradient(135deg, #D97706, #F59E0B); }

/* ── Full-width VIP banner -> Compact ── */
.hm-neon-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    border: 2px solid transparent;
    animation: hmRainbowBorder 4s linear infinite;
    height: 86px;
    flex-shrink: 0;
    width: 220px;
}
.hm-neon-full__left { position: relative; z-index: 1; }
.hm-neon-full__label {
    font-size: .52rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 2px;
}
.hm-neon-full__title {
    font-size: .75rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}
.hm-neon-full__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: #000;
    font-size: .58rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 20px;
}
.hm-neon-full__right {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.hm-neon-full__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .45rem;
    color: rgba(255,255,255,.7);
}
.hm-neon-full__stat span {
    font-size: 0.95rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 10px #FFD70066;
    animation: hmNeonGlow 2.5s ease infinite;
}

/* 🎰 LAS VEGAS BULBS & SPLIT INFINITE VERTICAL SCROLL */
@keyframes hmBlinkYellow {
    0%, 100% { background-color: #FFD700; box-shadow: 0 0 8px #FFD700, 0 0 15px #FFD700; }
    50% { background-color: #555; box-shadow: none; }
}
@keyframes hmBlinkRed {
    0%, 100% { background-color: #FF0055; box-shadow: 0 0 8px #FF0055, 0 0 15px #FF0055; }
    50% { background-color: #555; box-shadow: none; }
}

.hm-vegas-showcase {
    background: #0d001a;
    border-radius: 18px;
    margin: 12px 8px;
    padding: 20px 16px 16px;
    position: relative;
    border: 3px solid #ff0055;
    box-shadow: 0 0 15px #ff0055, inset 0 0 15px #ff0055;
    overflow: hidden;
}

.hm-vegas-showcase__lights {
    display: flex;
    justify-content: space-around;
    position: absolute;
    width: calc(100% - 20px);
    left: 10px;
}
.hm-vegas-showcase__lights--top { top: 6px; }
.hm-vegas-showcase__lights--bottom { bottom: 6px; }

.hm-vegas-light {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFD700;
}
.hm-vegas-light:nth-child(odd) {
    animation: hmBlinkYellow 0.6s infinite;
}
.hm-vegas-light:nth-child(even) {
    animation: hmBlinkRed 0.6s infinite 0.3s;
}

.hm-vegas-showcase__title-container {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}
.hm-vegas-showcase__title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    animation: hmFlickerGold 3s infinite;
    margin: 0;
}
.hm-vegas-showcase__subtitle {
    font-size: .65rem;
    color: #00ffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-shadow: 0 0 6px #00ffff;
    margin-top: 2px;
}

.hm-vegas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}
.hm-vegas-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 35px;
    background: linear-gradient(to bottom, #0d001a 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}
.hm-vegas-grid::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 35px;
    background: linear-gradient(to top, #0d001a 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.hm-vegas-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hm-vegas-col--up {
    animation: hmScrollUp 18s linear infinite;
}
.hm-vegas-col--down {
    animation: hmScrollDown 18s linear infinite;
}
.hm-vegas-col:hover {
    animation-play-state: paused;
}

@keyframes hmScrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.hm-vegas-card {
    background: #1a0826;
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 0 8px rgba(0,255,255,0.2);
    transition: transform 0.2s, border-color 0.2s;
}
.hm-vegas-card:hover {
    transform: scale(1.02);
    border-color: #ff00ff;
    box-shadow: 0 0 12px rgba(255,0,255,0.5);
}
.hm-vegas-card__img-wrap {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
}
.hm-vegas-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hm-vegas-card__info {
    flex: 1;
    min-width: 0;
}
.hm-vegas-card__name {
    font-size: .58rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hm-vegas-card__price {
    font-size: .75rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 4px rgba(255,215,0,0.4);
}
.hm-vegas-card__tag {
    font-size: .45rem;
    background: #ff0055;
    color: #fff;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    width: fit-content;
    margin-top: 1px;
}

/* ═══════════════════════════════ RESPONSIVE / ADAPTABLE ═══════════════════════════════ */
@media (min-width: 768px) {
    .hm-hero__slider { height: 280px; }
    .hm-grid { grid-template-columns: repeat(4, 1fr); }
    .hm-vegas-grid { height: 280px; }
    .hm-flash__card, .hm-pcard { width: 160px; }
    .hm-cat__icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .hm-cat__label { font-size: .65rem; }
}

@media (min-width: 1024px) {
    .hm-hero__slider { height: 380px; }
    .hm-grid { grid-template-columns: repeat(6, 1fr); }
    .hm-vegas-grid { height: 320px; }
    .hm-flash__card, .hm-pcard { width: 180px; }
    
    /* Centrar contenedores principales en desktop como Alibaba */
    .hm-ticker, .hm-hero, .hm-section-hdr, .hm-cats, .hm-carousel-wrap, 
    .hm-grid, .hm-neon-banners, .hm-vegas-showcase, .hm-services {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hm-ticker, .hm-hero, .hm-section-hdr, .hm-cats, .hm-carousel-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}
