/* ===== SHOP HERO ===== */
.shop-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 40px;
    background: radial-gradient(ellipse at top left, #0d0d2e 0%, #0a0a0f 60%);
    border-bottom: 1px solid #1a1a2e;
    align-items: center;
}

.shop-hero-badge {
    display: inline-block;
    background: rgba(0, 245, 255, 0.1);
    color: #00f5ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.shop-hero-left h1 {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.shop-hero-left h1 span {
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-hero-left p {
    font-size: 16px;
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 32px;
}

.shop-hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.shop-trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.shop-trust-badges span {
    font-size: 13px;
    color: #aaaaaa;
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    padding: 6px 14px;
    border-radius: 20px;
}

/* TENZO FLASH SALE */
.tenzo-flash-sale {
    background: linear-gradient(135deg, #0d0d2e, #1a0a2e);
    border: 2px solid #ff3232;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.tenzo-flash-sale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff3232, #ff8800);
}

.flash-badge {
    display: inline-block;
    background: rgba(255, 50, 50, 0.15);
    color: #ff3232;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    width: fit-content;
    animation: pulse 2s infinite;
}

.flash-icon {
    font-size: 48px;
}

.tenzo-flash-sale h3 {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.tenzo-flash-sale p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}

.flash-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flash-old {
    font-size: 16px;
    color: #555555;
    text-decoration: line-through;
}

.flash-new {
    font-size: 28px;
    font-weight: 900;
    color: #ff3232;
}

.flash-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-box {
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 56px;
}

.countdown-box span:first-child {
    font-size: 24px;
    font-weight: 900;
    color: #ff3232;
}

.countdown-box span:last-child {
    font-size: 10px;
    color: #aaaaaa;
    letter-spacing: 1px;
}

.countdown-sep {
    font-size: 24px;
    font-weight: 900;
    color: #ff3232;
}

/* ===== CATEGORIES ===== */
.shop-categories {
    padding: 20px 40px;
    background: #0d0d1a;
    border-bottom: 1px solid #1a1a2e;
    overflow-x: auto;
}

.categories-row {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.cat-btn {
    background: transparent;
    border: 1px solid #1a1a2e;
    border-radius: 20px;
    padding: 8px 20px;
    color: #aaaaaa;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Segoe UI', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-btn:hover {
    border-color: #00f5ff;
    color: #00f5ff;
}

.cat-active {
    background: rgba(0, 245, 255, 0.1);
    border-color: #00f5ff;
    color: #00f5ff;
}

/* ===== SHOP SECTIONS ===== */
.shop-section {
    padding: 50px 40px;
    background: #0a0a0f;
    border-bottom: 1px solid #1a1a2e;
}

.shop-count {
    font-size: 13px;
    color: #aaaaaa;
}

/* ===== STORES GRID ===== */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.store-card {
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 245, 255, 0.08);
}

.elite-store {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.08);
}

.pro-store {
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.05);
}

.store-card-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.store-avatar {
    font-size: 40px;
    flex-shrink: 0;
}

.store-info {
    flex: 1;
}

.store-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.store-name-row h3 {
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
}

.store-tick {
    font-size: 16px;
}

.elite-partner-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.pro-badge {
    display: inline-block;
    background: rgba(0, 245, 255, 0.1);
    color: #00f5ff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 6px;
}

.store-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #555555;
    flex-wrap: wrap;
}

.store-stats-row {
    display: flex;
    gap: 0;
    border: 1px solid #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
}

.store-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 8px;
    border-right: 1px solid #1a1a2e;
    text-align: center;
}

.store-stat:last-child {
    border-right: none;
}

.ss-value {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
}

.ss-label {
    font-size: 10px;
    color: #aaaaaa;
    text-transform: uppercase;
}

.store-products-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-pill {
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    color: #aaaaaa;
}

.store-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.store-social span {
    font-size: 11px;
    color: #555555;
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    padding: 4px 10px;
    border-radius: 20px;
}

/* JOIN STORE CARD */
.join-store-card {
    border: 2px dashed #1a1a2e;
    justify-content: center;
}

.join-store-card:hover {
    border-color: #00f5ff;
    border-style: solid;
}

.join-store-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.join-store-icon {
    font-size: 52px;
}

.join-store-inner h3 {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
}

.join-store-inner p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}

.join-store-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.join-store-perks span {
    font-size: 12px;
    color: #aaaaaa;
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 6px 12px;
    text-align: left;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.product-card {
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: #00f5ff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 245, 255, 0.1);
}

.product-image {
    background: #0a0a0f;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border-bottom: 1px solid #1a1a2e;
}

.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-store {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #aaaaaa;
}

.store-tick-small {
    font-size: 12px;
}

.product-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.product-price {
    font-size: 18px;
    font-weight: 900;
    color: #00f5ff;
}

.product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-meta span {
    font-size: 11px;
    color: #aaaaaa;
}

/* ===== REQUEST SECTION ===== */
.request-section {
    background: radial-gradient(ellipse at center, #0d0d2e 0%, #0a0a0f 70%);
}

.request-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.request-badge {
    display: inline-block;
    background: rgba(0, 245, 255, 0.1);
    color: #00f5ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.request-left h2 {
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.request-left p {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 32px;
}

.request-how {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.rs-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

.request-step h4 {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.request-step p {
    font-size: 13px;
    color: #aaaaaa;
    margin: 0;
    line-height: 1.5;
}

.request-form-box {
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    border-radius: 20px;
    padding: 36px;
}

.request-form-box h3 {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

/* ===== STORE CTA ===== */
.store-cta {
    padding: 60px 40px;
    background: #0d0d1a;
    border-bottom: 1px solid #1a1a2e;
}

.store-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.store-cta h2 {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.store-cta p {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

.store-cta-tiers {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-tier {
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #aaaaaa;
}

.cta-tier.blue {
    border-color: #00f5ff;
    color: #00f5ff;
}

.cta-tier.gold {
    border-color: #ffd700;
    color: #ffd700;
}

.cta-tier span:last-child {
    font-weight: 900;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .shop-hero {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    .shop-hero-left h1 { font-size: 36px; }
    .shop-categories { padding: 16px 20px; }
    .shop-section { padding: 30px 20px; }
    .stores-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .request-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .request-left h2 { font-size: 32px; }
    .store-cta { padding: 30px 20px; }
    .store-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .stores-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-hero { gap: 30px; }
    .shop-hero-left h1 { font-size: 42px; }
}
/* ===== FLASH SALE INACTIVE ===== */
.flash-inactive {
    opacity: 0.5;
    border: 1px solid #2a2a2a !important;
    background: #0a0a0a !important;
}

.flash-inactive::before {
    display: none;
}

.flash-badge-inactive {
    background: #1a1a1a !important;
    color: #444 !important;
    animation: none !important;
}

.flash-inactive-msg {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    color: #555;
    font-size: 13px;
    margin: 4px 0;
}

/* ===== STORES EMPTY STATE ===== */
.stores-empty-state {
    text-align: center;
    padding: 80px 20px;
    border: 1px dashed #1a1a2e;
    border-radius: 16px;
    background: #0a0a0f;
    margin-top: 24px;
}

.stores-empty-state .empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.stores-empty-state h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.stores-empty-state p {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.empty-store-tiers {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
