/* ===== SHOP FRONTPAGINA ===== */
.shop-page {
    padding: 2.5rem 1rem 4rem;
    background: var(--kleur-achtergrond);
    min-height: 60vh;
}

.shop-page .container {
    display: block;
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shop-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.shop-header h1 {
    font-size: 2rem;
    color: var(--kleur-basis-donker);
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.shop-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--kleur-basis);
    margin: 0.75rem auto 0;
}

.shop-intro {
    font-size: 1.05rem;
    color: var(--kleur-tekst);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.shop-cart-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--kleur-knop);
    color: var(--kleur-tekst-licht);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.shop-cart-link:hover {
    background: var(--kleur-knop-secondair);
}

.shop-added-msg {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: #e8f5f0;
    color: #047857;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Categorie-filter shop */
.shop-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}
.shop-cat-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--kleur-tekst-licht);
    color: var(--kleur-basis-donker);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #e5e5e5;
    transition: all 0.2s ease;
}
.shop-cat-link:hover {
    border-color: var(--kleur-knop);
    color: var(--kleur-knop);
}
.shop-cat-link.active {
    background: var(--kleur-knop);
    color: var(--kleur-tekst-licht);
    border-color: var(--kleur-knop);
}
.shop-category-title {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--kleur-tekst);
}

.shop-card-stock {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.shop-card-stock.in-stock {
    color: #047857;
    font-weight: 500;
}

.shop-card-stock.out-of-stock {
    color: #b91c1c;
    font-weight: 500;
}

.shop-add-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.shop-qty-input {
    width: 4rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
}

.shop-cta-secondary {
    background: #6b7280;
}

.shop-cta-secondary:hover {
    background: #4b5563;
}

.shop-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--kleur-tekst-licht);
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--schaduw);
}

.shop-empty p {
    margin: 0 0 0.5rem 0;
    color: var(--kleur-tekst);
}

.shop-empty a {
    color: var(--kleur-knop);
    font-weight: 600;
    text-decoration: none;
}

.shop-empty a:hover {
    text-decoration: underline;
}

/* Product grid - mooie blokken */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 0 0 2rem;
}

@media (min-width: 600px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.shop-product-card {
    background: var(--kleur-tekst-licht);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--schaduw);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shop-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--schaduw-donker);
}

.shop-card-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.shop-card-image-link:hover .shop-card-image img {
    transform: scale(1.03);
}

.shop-card-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--kleur-achtergrond);
    overflow: hidden;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.shop-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kleur-basis-licht) 0%, var(--kleur-basis) 100%);
    color: var(--kleur-tekst-licht);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.shop-card-content {
    padding: 1.35rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-product-card h2 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem 0;
    color: var(--kleur-basis-donker);
    font-weight: 600;
    line-height: 1.3;
}

.shop-product-card h2 a {
    color: inherit;
    text-decoration: none;
}

.shop-product-card h2 a:hover {
    color: var(--kleur-basis);
    text-decoration: underline;
}

.shop-card-desc {
    font-size: 0.9rem;
    color: var(--kleur-tekst);
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.shop-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kleur-basis);
    margin: 0 0 1rem 0;
}

.shop-card-cta {
    display: inline-block;
    text-align: center;
    background: var(--kleur-knop);
    color: var(--kleur-tekst-licht);
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    margin-top: auto;
}

.shop-card-cta:hover {
    background: var(--kleur-knop-secondair);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--schaduw-donker);
}


/* ===== SHOP EDITOR (ADMIN) ===== */
.shop-editor-page .container {
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

.shop-editor-section {
    background: var(--kleur-tekst-licht);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px var(--schaduw);
}

.shop-editor-section h2 {
    font-size: 1.25rem;
    color: var(--kleur-basis-donker);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--kleur-achtergrond);
}

.visibility-form .toggle-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.visibility-form input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--kleur-knop);
}

.form-hint {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1rem 0;
}

.visibility-form .btn {
    margin-top: 0.5rem;
}

.product-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .product-form .form-row {
        grid-template-columns: 1fr;
    }
}

.product-form .form-group {
    margin-bottom: 1rem;
}

.product-form .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--kleur-tekst);
}

.product-form .form-input {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
}

.product-form .form-input:focus {
    outline: none;
    border-color: var(--kleur-knop);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.1);
}

.product-form textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.current-image {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: #666;
}

.current-image .thumb {
    display: inline-block;
    max-width: 80px;
    max-height: 60px;
    object-fit: cover;
    border-radius: 6px;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.inline-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.category-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 0.5rem;
}
.category-check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-weight: normal;
}
.category-check input { accent-color: var(--kleur-knop); }
.product-card-body .product-categories {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0 0 0.25rem 0;
}

.form-actions {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #20b090;
    color: white;
}

.btn-primary:hover {
    background: #1a9b7a;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

/* Producten grid in editor */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.shop-product-card.admin {
    border: 1px solid #e5e5e5;
}

.shop-product-card.admin.inactive {
    opacity: 0.75;
}

.shop-product-card .product-card-image {
    aspect-ratio: 4/3;
    background: #f0f0f0;
    overflow: hidden;
}

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

.shop-product-card .product-card-image .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 0.85rem;
    color: #999;
}

.product-card-body {
    padding: 1.35rem 1.5rem;
}

.product-card-body h3 {
    font-size: 1rem;
    margin: 0 0 0.35rem 0;
    color: var(--kleur-basis-donker);
}

.product-card-body .product-price {
    font-weight: 600;
    color: var(--kleur-basis);
    margin: 0 0 0.5rem 0;
}

.inactive-badge {
    display: inline-block;
    font-size: 0.75rem;
    background: #f0f0f0;
    color: #666;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.product-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.product-card-actions .edit-btn {
    background: #20b090;
    color: white;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 7.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.product-card-actions .edit-btn:hover {
    background: #1a9b7a;
}

.product-card-actions .delete-btn {
    background: #dc2626;
    color: white;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-card-actions .delete-btn:hover {
    background: #c41e3a;
}

.product-card-body .product-stock {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 0.35rem 0;
}

.product-card-actions .inline-form {
    display: inline;
}

.products-list-section .empty-state {
    padding: 2rem;
    text-align: center;
    color: #666;
}

/* Galerij bewerken (edit-product) */
.product-image-gallery-edit {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-image-gallery-edit li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    position: relative;
}

.product-image-gallery-edit li.is-main-image .thumb {
    border-color: var(--kleur-basis);
    box-shadow: 0 0 0 2px var(--kleur-basis);
}

.product-image-gallery-edit .main-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--kleur-basis);
    color: var(--kleur-tekst-licht);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    z-index: 1;
}

.product-image-gallery-edit .thumb {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.product-image-gallery-edit .image-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.product-image-gallery-edit .btn-set-main {
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
    background: #dbeafe;
    color: #1e40af;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.product-image-gallery-edit .btn-set-main:hover {
    background: #bfdbfe;
}

.product-image-gallery-edit .btn-delete-image {
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
    background: #fee2e2;
    color: #b91c1c;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.product-image-gallery-edit .btn-delete-image:hover {
    background: #fecaca;
}

.label-extra-images { display: block; margin-top: 0.5rem; }


/* ===== PRODUCTDETAILPAGINA ===== */
.product-detail-page .product-detail-container {
    max-width: 1100px;
    margin: 0 auto;
}

.product-detail-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--kleur-tekst);
}

.product-detail-breadcrumb a {
    color: var(--kleur-basis);
    text-decoration: none;
}

.product-detail-breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

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

@media (min-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1.2fr 1fr;
    }
}

.product-detail-gallery {
    position: sticky;
    top: 1rem;
}

.product-gallery-main {
    aspect-ratio: 4/3;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-thumb {
    width: 64px;
    height: 64px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
}

.product-thumb.active {
    border-color: var(--kleur-basis);
}

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

.product-gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--kleur-basis-licht) 0%, var(--kleur-basis) 100%);
    color: var(--kleur-tekst-licht);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.product-detail-info {
    padding: 0 0 2rem;
}

.product-detail-title {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    color: var(--kleur-basis-donker);
    font-weight: 600;
    line-height: 1.3;
}

.product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kleur-basis);
    margin: 0 0 1rem 0;
}

.product-detail-short-desc {
    font-size: 1rem;
    color: var(--kleur-tekst);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.product-added-msg {
    padding: 0.5rem 1rem;
    background: #e8f5f0;
    color: #047857;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-detail-add-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-detail-add-form label {
    font-weight: 500;
}

.product-detail-add-form input[type="number"] {
    width: 4rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.product-detail-stock {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1.5rem 0;
}

.product-detail-stock.out-of-stock {
    color: #b91c1c;
}

.product-detail-long-description {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.product-detail-long-description h2 {
    font-size: 1.15rem;
    margin: 0 0 0.75rem 0;
    color: var(--kleur-basis-donker);
}

.long-desc-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--kleur-tekst);
}


/* ===== WINKELWAGEN ===== */
.cart-page .shop-header .shop-card-cta { margin-top: 0.5rem; }
.cart-form { max-width: 700px; margin-top: 1.5rem; }
.cart-list { list-style: none; padding: 0; margin: 0; }
.cart-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}
.cart-item-info { display: flex; flex-direction: column; gap: 0.25rem; }
.cart-item-price { font-size: 0.9rem; color: #666; }
.cart-item-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cart-item-subtotal { font-weight: 600; min-width: 5rem; }
.cart-remove-btn { background: none; border: none; color: #dc2626; cursor: pointer; font-size: 0.9rem; text-decoration: underline; }
.cart-remove-btn:hover { color: #b91c1c; }
.cart-total { font-size: 1.25rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 2px solid #ddd; }
.cart-actions { margin-top: 1rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }


/* ===== CHECKOUT ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .checkout-layout { grid-template-columns: 1fr 320px; } }
.checkout-form h2, .checkout-summary h2 { font-size: 1.15rem; margin-bottom: 1rem; }
.checkout-form .form-group { margin-bottom: 1rem; }
.checkout-form .form-group label { display: block; margin-bottom: 0.35rem; font-weight: 500; }
.checkout-form .form-group input { width: 100%; padding: 0.6rem 0.85rem; border: 1px solid #ddd; border-radius: 8px; }
.checkout-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-placeholder { background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 8px; padding: 1rem; margin: 1.5rem 0; }
.payment-placeholder h3 { margin: 0 0 0.5rem 0; font-size: 1rem; }
.payment-placeholder p { margin: 0; font-size: 0.9rem; color: #333; }
.payment-methods-block { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1rem; margin: 1.5rem 0; }
.payment-methods-block h3 { margin: 0 0 0.75rem 0; font-size: 1rem; }
.payment-method-option { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; cursor: pointer; }
.payment-method-option input { accent-color: var(--kleur-knop); }
.payment-fallback { margin: 0; font-size: 0.9rem; color: #555; }
.payment-methods-header .header-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.payment-methods-page .payment-methods-info { margin-top: 2rem; padding: 1.25rem; background: #f0f9ff; border-radius: 10px; border: 1px solid #bae6fd; }
.payment-methods-page .payment-methods-info h2 { font-size: 1rem; margin: 0 0 0.5rem 0; }
.payment-methods-page .payment-methods-info ul { margin: 0; padding-left: 1.25rem; }
.payment-methods-page .payment-methods-info li { margin-bottom: 0.35rem; }
.btn-checkout { width: 100%; margin-top: 0.5rem; padding: 0.9rem; font-size: 1rem; }
.checkout-summary { background: #f9fafb; border-radius: 12px; padding: 1.5rem; height: fit-content; }
.checkout-items { list-style: none; padding: 0; margin: 0 0 1rem 0; }
.checkout-items li { display: flex; justify-content: space-between; padding: 0.35rem 0; }
.checkout-total { margin: 0; padding-top: 1rem; border-top: 1px solid #ddd; font-size: 1.1rem; }


/* ===== ADMIN BESTELLINGEN ===== */
/* Filters bestellingen */
.orders-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.orders-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.orders-filter-tabs .filter-label,
.orders-filter-month .filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-right: 0.5rem;
}

.orders-tab {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.orders-tab:hover {
    background: #f3f4f6;
    border-color: var(--kleur-basis-licht);
    color: var(--kleur-basis-donker);
}

.orders-tab.active {
    background: var(--kleur-basis);
    color: var(--kleur-tekst-licht);
    border-color: var(--kleur-basis);
}

.orders-filter-month {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.orders-month-select {
    max-width: 180px;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
}

.shop-orders-page .orders-table-wrap { overflow-x: auto; margin-top: 1rem; }
.orders-table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.orders-table th, .orders-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid #eee; }
.shop-orders-page .orders-table th, .shop-orders-page .orders-table td { padding: 0.5rem 0.75rem; }
.orders-table th { background: #f9fafb; font-weight: 600; color: #374151; }
.orders-table td.order-actions { display: flex; gap: 0.35rem; flex-wrap: wrap; align-items: center; }
.shop-orders-page .orders-table .action-btn { padding: 0.28rem 0.5rem; font-size: 0.7rem; border-radius: 4px; min-height: auto; line-height: 1.2; }
.shop-orders-page .orders-table .action-btn.action-btn-icon { padding: 0.3rem; min-width: 0; }
.shop-orders-page .orders-table .action-btn.action-btn-icon svg { width: 14px; height: 14px; }
.action-btn.action-btn-icon { min-width: 0; padding: 0.5rem; display: inline-flex; align-items: center; justify-content: center; }
.action-btn.action-btn-icon svg { display: block; }
.order-status { display: inline-block; padding: 0.25rem 0.6rem; border-radius: 6px; font-size: 0.85rem; font-weight: 500; }
.order-status.status-pending { background: #fef3c7; color: #92400e; }
.order-status.status-paid { background: #d1fae5; color: #065f46; }
.order-status.status-processing { background: #dbeafe; color: #1e40af; }
.order-status.status-shipped { background: #e0e7ff; color: #3730a3; }
.order-status.status-cancelled { background: #fee2e2; color: #991b1b; }
.action-btn.print-btn { background: #6366f1; color: white; text-decoration: none; padding: 0.45rem 0.9rem; border-radius: 6px; font-size: 0.85rem; }
.action-btn.print-btn:hover { background: #4f46e5; }
.action-btn.print-btn-small { padding: 0.35rem 0.6rem; font-size: 0.75rem; white-space: nowrap; }
.shop-orders-page .orders-table .action-btn.print-btn-small { padding: 0.28rem 0.5rem; font-size: 0.7rem; }

.orders-bulk-form { margin-top: 0; }
.orders-bulk-actions { margin-bottom: 0.75rem; }
.orders-bulk-actions .btn-danger { background: #dc2626; color: white; border: none; padding: 0.45rem 0.9rem; border-radius: 6px; font-size: 0.85rem; cursor: pointer; }
.orders-bulk-actions .btn-danger:hover { background: #b91c1c; }
.orders-table .col-check { width: 2.5rem; text-align: center; vertical-align: middle; }
.orders-table .col-check input[type="checkbox"] { cursor: pointer; }
.action-btn.delete-btn { background: #dc2626; color: white; text-decoration: none; padding: 0.35rem 0.6rem; border-radius: 6px; font-size: 0.75rem; border: none; cursor: pointer; }
.action-btn.delete-btn:hover { background: #b91c1c; }
.shop-orders-page .orders-table .action-btn.delete-btn { padding: 0.28rem 0.5rem; font-size: 0.7rem; flex: none; min-width: 0; width: auto; }

.order-detail-content { max-width: 800px; }
.order-address-block { margin-bottom: 2rem; }
.order-info-block, .order-items-block, .order-status-block { margin-bottom: 2rem; }
.order-info-block h2, .order-items-block h2, .order-status-block h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.order-items-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.order-items-table th, .order-items-table td { padding: 0.5rem 0.75rem; text-align: left; border-bottom: 1px solid #eee; }
.order-items-table th { background: #f9fafb; }
.order-total { font-size: 1.1rem; }
.order-detail-page .header-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.order-detail-page .form-input { width: 100%; max-width: 300px; padding: 0.5rem 0.75rem; border: 1px solid #ddd; border-radius: 6px; }

/* Instellingen bestellingen (shop-orders) */
.order-settings-section {
    background: var(--kleur-tekst-licht);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.order-settings-section h2 {
    font-size: 1.15rem;
    margin: 0 0 1rem 0;
    color: var(--kleur-basis-donker);
}
.order-settings-form .form-group { margin-bottom: 1rem; }
.order-settings-form .form-group label { display: block; font-weight: 500; margin-bottom: 0.35rem; }
.order-settings-form .form-input {
    width: 100%;
    max-width: 600px;
    padding: 0.65rem 0.85rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    resize: vertical;
}
.order-settings-form .form-group small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: #666;
}

/* Bestelnummer instellingen */
.order-number-settings-page .order-number-form .form-actions { margin-top: 1.5rem; display: flex; gap: 0.75rem; align-items: center; }
.order-number-settings-page .order-settings-section { margin-bottom: 2rem; }
.order-number-settings-page .order-settings-title { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--kleur-basis-donker, #1a1a1a); }
.order-number-settings-page .checkbox-label { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; cursor: pointer; }
.order-number-preview { background: #f8fafc; border-radius: 8px; padding: 1.25rem; }
.order-number-preview-text { margin: 0 0 0.5rem 0; font-size: 1rem; }
.order-number-preview-note { margin: 0; font-size: 0.85rem; color: #64748b; }

/* Persoonlijk dankbericht op bestelbon */
.order-thankyou-block {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-left: 4px solid #20b090;
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.order-thankyou-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #14532d;
}

/* Klantgegevens stijl */
.order-info-block {
    background: var(--kleur-tekst-licht);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.order-info-block h2 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
    color: var(--kleur-basis-donker);
}
.order-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 500px) {
    .order-info-grid { grid-template-columns: repeat(2, 1fr); }
}
.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.order-info-item.order-info-address { grid-column: 1 / -1; }
.order-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6b7280;
}
.order-info-value {
    font-size: 0.95rem;
    color: var(--kleur-tekst);
}
.order-info-value a {
    color: var(--kleur-knop);
    text-decoration: none;
}
.order-info-value a:hover { text-decoration: underline; }

/* Etsy-koppeling pagina */
.etsy-koppeling-page .etsy-section { margin-bottom: 2.5rem; }
.etsy-koppeling-page .etsy-section-title { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--kleur-basis-donker, #1a1a1a); }
.etsy-koppeling-page .etsy-callback-url { word-break: break-all; background: #f1f5f9; padding: 0.75rem 1rem; border-radius: 8px; margin: 0.5rem 0 1rem 0; font-size: 0.9rem; }
.etsy-koppeling-page .form-hint { font-size: 0.9rem; color: #64748b; margin-top: 0.5rem; }
.etsy-koppeling-page .etsy-status { margin-left: 0.75rem; font-weight: 500; }
.etsy-koppeling-page .etsy-status-ok { color: #059669; }
.etsy-koppeling-page .etsy-inline-form { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.etsy-koppeling-page .etsy-inline-form .action-btn.btn-sm { padding: 0.5rem 0.85rem; min-width: 6.5em; white-space: nowrap; flex-shrink: 0; }
.etsy-koppeling-page .etsy-input-small { width: 120px; max-width: 100%; padding: 0.4rem 0.5rem; font-size: 0.9rem; }
.etsy-koppeling-page .etsy-mappings-table-wrap { overflow-x: auto; margin: 1rem 0; }
.etsy-koppeling-page .etsy-mappings-table { margin-bottom: 0; }
.etsy-koppeling-page .etsy-sync-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 0.5rem 0; }

/* Analytics pagina */
.analytics-page .analytics-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; margin-bottom: 1.5rem; }
.analytics-page .filter-label { font-weight: 600; color: #64748b; font-size: 0.9rem; }
.analytics-page .analytics-tab { padding: 0.4rem 0.9rem; border-radius: 8px; background: #f1f5f9; color: #475569; text-decoration: none; font-size: 0.9rem; }
.analytics-page .analytics-tab:hover { background: #e2e8f0; color: #1e293b; }
.analytics-page .analytics-tab.active { background: var(--kleur-knop, #6366f1); color: white; }
.analytics-page .analytics-summary { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem; }
.analytics-page .analytics-summary-item { background: #f8fafc; border-radius: 10px; padding: 1rem 1.5rem; min-width: 180px; }
.analytics-page .analytics-summary-value { display: block; font-size: 1.5rem; font-weight: 700; color: var(--kleur-basis-donker, #1a1a1a); }
.analytics-page .analytics-summary-label { font-size: 0.85rem; color: #64748b; }
.analytics-page .analytics-table-wrap { overflow-x: auto; }
.analytics-page .analytics-table { margin-bottom: 0; }
.analytics-page .analytics-cart-items { margin: 0; padding-left: 1.2rem; font-size: 0.9rem; }
.analytics-page .analytics-cart-items li { margin-bottom: 0.25rem; }
.analytics-page .analytics-section { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e2e8f0; }
.analytics-page .analytics-section-title { font-size: 1.1rem; margin: 0 0 1rem 0; color: var(--kleur-basis-donker, #1a1a1a); }
.analytics-page .analytics-product-list { margin: 0; padding-left: 1.25rem; }
.analytics-page .analytics-product-list li { margin-bottom: 0.4rem; }
.analytics-page .analytics-no-data { margin: 0; color: #64748b; font-size: 0.95rem; }
.analytics-page .analytics-hint { margin: 0 0 0.75rem 0; font-size: 0.9rem; color: #64748b; }
