/* Product Detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

.product-detail-image {
    border-radius: 16px;
    overflow: hidden;
    background: #fff3e8;
    aspect-ratio: 1;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-no-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.product-detail-category {
    font-size: 0.8rem;
    color: #f5a623;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin: 8px 0 16px;
    line-height: 1.3;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e65c00;
    margin-bottom: 12px;
}

.product-detail-delivery {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #f0e0d0;
}

.product-detail-description {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0e0d0;
}

.product-detail-description h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.product-detail-description p {
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* Seller Card */
.seller-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1.5px solid #f0e0d0;
    flex-wrap: wrap;
}

.seller-card-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e65c00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.seller-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-card-info { flex: 1; }

.seller-card-name {
    font-weight: 700;
    color: #222;
    font-size: 0.95rem;
}

.seller-card-city {
    font-size: 0.82rem;
    color: #888;
    margin-top: 2px;
}

.seller-card-bio {
    font-size: 0.82rem;
    color: #666;
    margin-top: 4px;
}

.seller-card-link {
    font-size: 0.82rem;
    color: #e65c00;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}
/* Seller Profile */
.seller-profile-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border: 1.5px solid #f0e0d0;
    flex-wrap: wrap;
}

.seller-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #e65c00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.seller-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-profile-info { flex: 1; }

.seller-profile-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px;
}

.seller-profile-location {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.seller-profile-bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.seller-profile-stats {
    display: flex;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e65c00;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
}

.seller-wa-btn {
    align-self: center;
    white-space: nowrap;
}
/* Dashboard */
.dashboard-product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-product-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #f0e0d0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-product-image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff3e8;
    flex-shrink: 0;
}

.dashboard-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-product-info { flex: 1; }

.dashboard-product-title {
    font-weight: 700;
    color: #222;
    font-size: 0.95rem;
}

.dashboard-product-meta {
    font-size: 0.82rem;
    color: #888;
    margin-top: 4px;
}

.dashboard-product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-action {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #f5f5f5;
    transition: background 0.2s;
}

.btn-action:hover { background: #e0e0e0; }
.btn-view { background: #e8f5e9; }
.btn-edit { background: #fff3e0; }
.btn-delete { background: #fce4ec; }