.auth-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.auth-shell {
    min-height: 100vh;
    padding: 24px 0;
}

.auth-shell > .row {
    min-height: calc(100vh - 48px);
    width: 100%;
    align-items: center;
}

.auth-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: 0 auto;
}

.auth-subtitle {
    color: #6c757d;
}

.site-body {
    font-family: "Segoe UI", sans-serif;
}

.site-footer {
    background: #212529;
    color: #fff;
    padding: 25px 0;
}

.home-hero {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    padding: 100px 0;
}

.home-section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.home-feature-icon {
    width: 70px;
    height: 70px;
    background: #eef4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0d6efd;
    margin: 0 auto 15px;
}

.home-pricing-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.home-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.home-pricing-card--popular {
    border: 3px solid #0d6efd;
}

.home-badge-popular {
    background: #0d6efd;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
}

.home-price {
    font-size: 36px;
    font-weight: 700;
    color: #0d6efd;
}

.home-testimonial {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.home-cta {
    background: #0d6efd;
    color: #fff;
    padding: 70px 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.store-body {
    background: #f8fafc;
    color: #1f2937;
}

.store-hero {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    padding: 84px 0 68px;
}

.store-hero-card,
.store-product-card,
.store-feature-card,
.store-detail-main,
.store-detail-related {
    border: none;
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.store-hero-badge,
.store-filter-chip,
.store-category-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 600;
}

.store-hero-badge {
    background: rgba(255, 255, 255, 0.16);
    padding: 8px 14px;
    margin-bottom: 16px;
}

.store-filter-chip {
    padding: 10px 16px;
    margin: 0 8px 10px 0;
    background: #fff;
    border: 1px solid #dbe4f0;
    color: #334155;
}

.store-product-card {
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.store-product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e5e7eb;
}

.store-category-badge {
    padding: 6px 12px;
    background: #e8f1ff;
    color: #0d6efd;
    font-size: 12px;
    text-transform: uppercase;
}

.store-price {
    color: #0d6efd;
    font-size: 1.45rem;
    font-weight: 700;
}

.store-stock {
    font-size: 14px;
    color: #475569;
}

.store-footer {
    background: #0f172a;
    color: #fff;
    padding: 24px 0;
}

.store-detail-main-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    background: #e5e7eb;
}

.store-detail-related-image {
    height: 220px;
    object-fit: cover;
}

.panel-body {
    background: #f4f7fb;
}

.panel-wrapper {
    min-height: 100vh;
}

.panel-sidebar {
    min-height: 100vh;
}

.panel-sidebar--admin {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.panel-sidebar--customer {
    background: linear-gradient(180deg, #0f766e 0%, #115e59 100%);
}

.panel-brand {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.panel-nav-link {
    color: rgba(255, 255, 255, 0.82);
    border-radius: 0.9rem;
    padding: 0.8rem 1rem;
    margin-bottom: 0.35rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.panel-nav-link:hover,
.panel-nav-link.active {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.panel-user-box {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.panel-content-shell {
    min-height: 100vh;
}

.content-card,
.summary-card,
.form-card,
.invoice-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.form-card .card-body,
.content-card .card-body,
.invoice-card .card-body {
    position: relative;
    z-index: 1;
}

.form-card .card-header,
.content-card .card-header {
    border-bottom: 0;
    background: #fff;
}

.table-responsive {
    overflow-x: auto;
}

.section-muted {
    color: #6b7280;
}

.tracking-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    margin: 0 auto 10px;
}

.invoice-shell {
    position: relative;
    overflow: hidden;
}

.invoice-watermark {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-24deg);
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 0.3rem;
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.invoice-watermark.paid {
    color: #198754;
}

.invoice-watermark.unpaid {
    color: #dc3545;
}

.invoice-header {
    background: linear-gradient(135deg, #0f766e 0%, #0f172a 100%);
    color: #fff;
}

.info-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: #6c757d;
}

.amount-box {
    border-radius: 1rem;
    background: #f8fafc;
}

.form-preview-image {
    max-height: 240px;
    object-fit: cover;
}

.checkout-price {
    font-size: 28px;
    font-weight: 700;
}

.page-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 991.98px) {
    .panel-sidebar {
        min-height: auto;
    }
}

@media print {
    .auth-body {
        background: #fff;
    }

    .no-print,
    .panel-sidebar,
    .panel-page-header {
        display: none !important;
    }

    .panel-content-shell {
        padding: 0 !important;
    }

    .invoice-card,
    .content-card {
        box-shadow: none;
    }

    .panel-body {
        background: #fff;
    }
}
