/* ========================================
   SELLER SHOP PAGE
   Clean & Modern Design
   ======================================== */

/* ========================================
   SHOP HERO SECTION
   ======================================== */
.shop-hero {
    background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, transparent 55%);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 48px 0 36px;
    margin-top: 70px;
    position: relative;
}

.shop-hero-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.shop-avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    border: 2px solid rgba(249,115,22,0.3);
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.shop-avatar:hover {
    transform: scale(1.05);
    border-color: rgba(249,115,22,0.5);
}

.shop-info {
    flex: 1;
    min-width: 200px;
}

.shop-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    color: #f97316;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-badge i {
    font-size: 0.6rem;
}

.shop-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.shop-sub {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* ========================================
   PRODUCT GRID
   ======================================== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 2fr));
    gap: 16px;
    padding: 40px 0 60px;
}

.shop-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.shop-card:hover {
    border-color: rgba(249,115,22,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.shop-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-img {
    transform: scale(1.05);
}

.shop-card-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(249,115,22,0.25);
    font-size: 2.5rem;
}

.shop-card-body {
    padding: 12px 14px;
}

.shop-card-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.shop-card-price {
    font-size: 0.8rem;
    color: #f97316;
    font-weight: 700;
    margin-top: 4px;
    display: block;
}

.shop-card-cat {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 500;
}

.shop-card-cat i {
    font-size: 0.55rem;
}

/* ========================================
   EMPTY STATE
   ======================================== */
.shop-empty {
    text-align: center;
    padding: 80px 20px;
    color: #64748b;
}

.shop-empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    opacity: 0.3;
    color: #475569;
}

.shop-empty-text {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ========================================
   SELLER STATS (Optional Enhancement)
   ======================================== */
.shop-stats {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.shop-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
}

.shop-stat i {
    color: #f97316;
    font-size: 0.7rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 767px) {
    .shop-hero {
        padding: 32px 0 24px;
        margin-top: 60px;
    }

    .shop-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .shop-avatar {
        width: 80px;
        height: 80px;
    }

    .shop-title {
        font-size: 1.3rem;
    }

    .shop-sub {
        font-size: 0.8rem;
    }

    .shop-stats {
        justify-content: center;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 24px 0 40px;
    }

    .shop-card {
        border-radius: 10px;
    }

    .shop-card-body {
        padding: 10px 12px;
    }
}

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


/*** additional style ***/
#shop-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filter-btn {
    border: none;
    outline: none;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #ea580c;
    color: white;
    box-shadow: 0 5px 15px rgba(234,88,12,0.35);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: #111827;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card.hide {
    display: none;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 16px;
    color: white;
}
