/* =============================================
   UMKM Detail Page - Modern Styling
   ============================================= */

/* Page Background */
body {
    background-color: #f8fafc;
}

/* Detail Section Container */
.umkm-detail-section {
    position: relative;
    z-index: 10;
}

/* Breadcrumb Styling */
.breadcrumb-item a {
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #16a34a !important;
}

.breadcrumb-item.active {
    color: #64748b;
    font-weight: 600;
}

/* Hero Card (Profile Header) */
.umkm-hero-card {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.hero-cover {
    height: 180px;
    background: linear-gradient(135deg, #0f8040 0%, #22c55e 100%);
    position: relative;
}

.hero-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.83-1.66 1.66L52.968 1.66 54.627 0zm1.66 1.66l.83.83-1.66 1.66-.83-.83 1.66-1.66zM54.627 57.51l.83.83-1.66 1.66-.83-.83 1.66-1.66zm1.66 1.66l.83.83-1.66 1.66-.83-.83 1.66-1.66z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Avatar Offset */
.umkm-avatar-large {
    width: 140px;
    height: 140px;
    min-width: 140px;
    border: 5px solid white;
    z-index: 5;
    background: white;
}

.umkm-detail-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.hero-actions .btn {
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Sidebar Contact Card */
.details-sidebar .card {
    transition: all 0.3s ease;
}

.details-sidebar .card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.contact-list li {
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e2e8f0;
}

.contact-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0 !important;
}

/* Product Card */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

.product-img-box {
    background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
    min-height: 200px;
}

.product-desc {
    color: #475569;
    line-height: 1.6;
}

/* Utilities */
.line-height-base {
    line-height: 1.5;
}

@media (max-width: 768px) {
    .umkm-avatar-large {
        width: 120px;
        height: 120px;
        min-width: 120px;
        margin: 0 auto;
    }

    .hero-body {
        margin-top: -55px;
        padding-top: 1.5rem !important;
    }
}
