/* Loja — estilos base */

body {
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    color: #1a1a1a;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 4px;
    background-color: #2d6a52;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s;
}

.btn-primary:hover {
    background-color: #1e4638;
}

.btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 4px;
    border: 1px solid #d4d4d4;
    background-color: #fff;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #13312A;
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
}

.btn-secondary:hover {
    border-color: #155446;
    background-color: #fafafa;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 4px;
    background-color: #dc2626;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-danger:hover {
    background-color: #b91c1c;
}

.input-field {
    display: block;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #d4d4d4;
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.input-field:focus {
    outline: none;
    border-color: #155446;
    box-shadow: 0 0 0 2px rgba(21, 84, 70, 0.12);
}

.card {
    border-radius: 4px;
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #e8e8e8;
}

@media (min-width: 640px) {
    .card {
        padding: 1.25rem;
    }
}

.badge,
.badge-success,
.badge-warning,
.badge-danger,
.badge-info,
.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
    white-space: nowrap;
    vertical-align: middle;
}

.badge-success { background-color: #eef6f1; color: #245443; }
.badge-warning { background-color: #F6E9CA; color: #7a5c3a; }
.badge-danger { background-color: #fef2f2; color: #991b1b; }
.badge-info { background-color: #eff6ff; color: #1e40af; }
.badge-accent { background-color: #f5ebe3; color: #7a5c3a; }

.form-section-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #13312A;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.form-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 1.5rem;
}

@media (max-width: 639px) {
    .form-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .form-tabs::-webkit-scrollbar {
        display: none;
    }

    .form-tab {
        flex-shrink: 0;
    }
}

.form-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #737373;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: -1px;
}

.form-tab:hover { color: #155446; }
.form-tab.active { color: #155446; border-bottom-color: #155446; }

.form-panel { display: none; }
.form-panel.active { display: block; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prose ul { list-style: disc; padding-left: 1.25rem; }
.prose p + p { margin-top: 0.75rem; }

.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    color: #C69A72;
}

.star-rating .star-empty { color: #d4d4d4; }

.star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.125rem;
}

.star-input input { display: none; }

.star-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #d4d4d4;
}

.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label {
    color: #C69A72;
}

.powered-by-abcommerce {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #a3a3a3;
    text-decoration: none;
}

.powered-by-abcommerce:hover { color: #C69A72; }
.powered-by-abcommerce strong { color: #C69A72; font-weight: 600; }

/* Frete */
.shipping-box {
    border-top: 1px solid #e8e8e8;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
}

.shipping-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.shipping-row .input-field {
    flex: 1;
    max-width: 160px;
}

.shipping-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #737373;
}

.shipping-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #e8e8e8;
    border-top-color: #155446;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.shipping-estimate-note {
    font-size: 0.8125rem;
    color: #737373;
    margin-bottom: 0.5rem;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.shipping-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.75rem;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    font-size: 0.875rem;
}

.shipping-option-days {
    display: block;
    font-size: 0.8125rem;
    color: #737373;
    font-weight: 400;
}

.shipping-option-price {
    font-weight: 600;
    color: #13312A;
    white-space: nowrap;
}

.shipping-error {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 0.5rem;
    background: #fafafa;
}

.account-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #525252;
    border-radius: 3px;
    text-decoration: none;
}

.account-nav-link:hover {
    background: #fff;
    color: #13312A;
}

.account-nav-link.active {
    background: #fff;
    color: #155446;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #155446;
}

.stat-box {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 1rem;
    background: #fff;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #13312A;
}

.stat-label {
    font-size: 0.75rem;
    color: #737373;
    margin-top: 0.25rem;
}

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background: #fff;
}

.faq-question {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    color: #525252;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.75rem;
    margin: 0 1rem 1rem;
}

.ticket-message {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 0.875rem 1rem;
    background: #fff;
}

.ticket-message-staff {
    background: #f6f9f8;
    border-color: #c8ddd8;
}

.shipping-option-select {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background: #fafafa;
    cursor: pointer;
    font-size: 0.875rem;
}

.shipping-option-select:has(input:checked) {
    border-color: #155446;
    background: #f6f9f8;
}

.shipping-option-select input {
    accent-color: #155446;
}

.shipping-option-select > span:first-of-type {
    flex: 1;
}

@media (min-width: 480px) {
    .xs\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ——— Loja (produtos naturais) ——— */

.store-shell {
    background-color: #faf7f2;
    color: #1f2937;
}

.store-promo {
    background: linear-gradient(90deg, #1e4638 0%, #2d6a52 50%, #1e4638 100%);
    color: #f5efe6;
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
}

.store-header {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ebe3d6;
    box-shadow: 0 1px 0 rgba(30, 70, 56, 0.04);
}

.store-nav-link {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.15s;
}

.store-nav-link:hover,
.store-nav-link.is-active {
    color: #1e4638;
}

.store-search {
    position: relative;
}

.store-search .ph {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.store-search .input-field {
    padding-left: 2.25rem;
    border-color: #ebe3d6;
    background: #fff;
    border-radius: 9999px;
}

.store-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #18382d 0%, #245443 45%, #2d6a52 100%);
    color: #fff;
}

.store-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(198, 154, 114, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.store-hero-pattern {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.6;
    pointer-events: none;
}

.store-hero-pattern::after {
    content: '';
    position: absolute;
    inset: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.store-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4b896;
}

.store-section {
    padding: 3rem 0;
}

.store-section-alt {
    background: #f5efe6;
    border-block: 1px solid #ebe3d6;
}

.store-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.store-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e4638;
    line-height: 1.25;
}

.store-section-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2d6a52;
    text-decoration: none;
}

.store-section-link:hover {
    color: #1e4638;
    text-decoration: underline;
}

.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid #ebe3d6;
    background: #fff;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.category-tile:hover {
    border-color: #b8d9c8;
    box-shadow: 0 8px 24px rgba(30, 70, 56, 0.08);
    transform: translateY(-2px);
}

.category-tile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: #eef6f1;
    color: #2d6a52;
    font-size: 1.25rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #d8ebe0;
    color: #2d6a52;
    font-size: 1.125rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 1rem;
    border: 1px solid #ebe3d6;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.product-card:hover {
    border-color: #d8ebe0;
    box-shadow: 0 12px 32px rgba(30, 70, 56, 0.1);
    transform: translateY(-3px);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5efe6;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0.875rem 1rem 1rem;
}

.product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e4638;
    background: #eef6f1;
    border: 1px solid #d8ebe0;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.product-card-cta:hover {
    background: #2d6a52;
    color: #fff;
    border-color: #2d6a52;
}

.store-footer {
    background: linear-gradient(180deg, #18382d 0%, #0f241c 100%);
    color: #d8ebe0;
}

.store-footer a:hover {
    color: #fff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
}

.store-btn-primary {
    border-radius: 9999px;
}

/* ——— Painel admin ——— */

.admin-shell {
    overflow-x: hidden;
}

.admin-sidebar {
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1024px) {
    .admin-sidebar {
        box-shadow: none;
    }
}

.admin-sidebar-brand {
    text-decoration: none;
    color: inherit;
}

.admin-sidebar-brand:hover {
    color: #fff;
}

.admin-sidebar-nav [data-nav-group-trigger] {
    min-height: 2.5rem;
}

.admin-sidebar-nav a {
    min-height: 2.25rem;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.admin-toolbar form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1 1 100%;
    min-width: 0;
}

@media (min-width: 640px) {
    .admin-toolbar form {
        flex: 1 1 auto;
    }
}

.admin-toolbar .input-field {
    flex: 1 1 100%;
    min-width: 0;
}

@media (min-width: 480px) {
    .admin-toolbar .input-field {
        flex: 1 1 calc(50% - 0.25rem);
    }
}

@media (min-width: 768px) {
    .admin-toolbar .input-field {
        flex: 0 1 auto;
        width: auto;
        min-width: 9rem;
    }

    .admin-toolbar .input-field.admin-toolbar-search {
        min-width: 14rem;
    }
}

.admin-toolbar .btn-primary,
.admin-toolbar .btn-secondary {
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 640px) {
    .admin-toolbar .btn-primary,
    .admin-toolbar .btn-secondary {
        width: auto;
    }
}

.admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.25rem;
    padding: 0 0.25rem;
}

.admin-table-wrap table {
    min-width: 36rem;
}

.admin-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.admin-form-shell {
    width: 100%;
    max-width: 48rem;
}

/* Checkboxes — admin e loja */
.checkbox-field {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    user-select: none;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #374151;
}

.checkbox-field input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    margin: 0;
    border: 1.5px solid #d1d5db;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
}

.checkbox-field input[type="checkbox"]:hover {
    border-color: #2d6a52;
}

.checkbox-field input[type="checkbox"]:focus-visible {
    outline: none;
    border-color: #2d6a52;
    box-shadow: 0 0 0 3px rgba(45, 106, 82, 0.2);
}

.checkbox-field input[type="checkbox"]:checked {
    border-color: #2d6a52;
    background-color: #2d6a52;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5L6.5 11.5L12.5 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.75rem;
}

.checkbox-field input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

/* File upload — admin */
.file-field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin: 0;
}

.file-field .file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    background-color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #13312A;
    transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
}

.file-field:hover .file-trigger,
.file-field:focus-within .file-trigger {
    border-color: #2d6a52;
    background-color: #f8faf9;
}

.file-field:focus-within .file-trigger {
    box-shadow: 0 0 0 2px rgba(45, 106, 82, 0.15);
}

.file-trigger-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #2d6a52;
    flex-shrink: 0;
}

.file-name {
    font-size: 0.8125rem;
    color: #9ca3af;
    flex: 1 1 8rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-field-has-files .file-name {
    color: #374151;
    font-weight: 500;
}

.file-hint {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.375rem;
}

.file-field-dashed {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem 1rem;
    border: 1.5px dashed #d4d4d4;
    border-radius: 6px;
    background-color: #fafafa;
    transition: border-color 0.15s, background-color 0.15s;
    gap: 0.5rem;
}

.file-field-dashed:hover,
.file-field-dashed:focus-within {
    border-color: #2d6a52;
    background-color: #f3f8f6;
}

.file-field-dashed .file-trigger {
    align-self: center;
    background-color: #2d6a52;
    border-color: #2d6a52;
    color: #fff;
}

.file-field-dashed:hover .file-trigger,
.file-field-dashed:focus-within .file-trigger {
    background-color: #1e4638;
    border-color: #1e4638;
}

.file-field-dashed .file-trigger-icon {
    color: #fff;
}

.file-field-dashed .file-name {
    text-align: center;
    flex: none;
}

.file-field-dashed.file-field-has-files {
    border-style: solid;
    border-color: #2d6a52;
    background-color: #f3f8f6;
}

/* Error pages */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.error-page-store {
    background: linear-gradient(180deg, #eef6f1 0%, #fff 45%, #faf7f2 100%);
}

.error-page-admin {
    background: linear-gradient(160deg, #13312A 0%, #0f2822 55%, #0a1c18 100%);
}

.error-shell {
    width: 100%;
    max-width: 28rem;
}

.error-card {
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.error-card-store {
    background: #fff;
    border: 1px solid #e8e8e8;
}

.error-card-admin {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(8px);
}

.error-admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.error-admin-brand i {
    color: #C69A72;
    font-size: 1rem;
}

.error-code {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 0.75rem;
}

.error-card-store .error-code {
    color: #2d6a52;
}

.error-card-admin .error-code {
    color: #C69A72;
}

.error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.error-icon-store {
    background: #eef6f1;
    color: #2d6a52;
}

.error-icon-admin {
    background: rgba(198, 154, 114, 0.16);
    color: #C69A72;
}

.error-icon-danger {
    background: #fef2f2;
    color: #dc2626;
}

.error-icon-admin.error-icon-danger {
    background: rgba(220, 38, 38, 0.15);
    color: #fca5a5;
}

.error-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.error-card-store .error-title {
    color: #13312A;
}

.error-card-admin .error-title {
    color: #fff;
}

.error-message {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.error-card-store .error-message {
    color: #6b7280;
}

.error-card-admin .error-message {
    color: rgba(255, 255, 255, 0.72);
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.error-page-admin .btn-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
    color: #fff;
}

.error-page-admin .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
}
