/**
 * ScooterDiscounter Theme CSS
 * Category Page Styles
 * Performance optimized - minimal, no heavy effects
 */

/* ===== CSS Variables ===== */
:root {
    --sd-green: #3aaa35;
    --sd-green-hover: #2d8a2a;
    --sd-green-light: #e8f5e8;
    --sd-orange: #FF6B00;
    --sd-orange-light: #fff3e6;
    --sd-dark: #1a1a1a;
    --sd-text: #333;
    --sd-text-light: #666;
    --sd-text-muted: #999;
    --sd-border: #e0e0e0;
    --sd-bg: #f5f5f5;
    --sd-white: #fff;
    --sd-red: #d32f2f;
    --sd-radius: 8px;
    --sd-max-width: 1200px;
    --sd-sidebar-width: 240px;
    --sd-gap: 24px;
}

/* ===== Base Reset for Theme ===== */
.sd-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--sd-text);
    -webkit-font-smoothing: antialiased;
}

.sd-wrapper * {
    box-sizing: border-box;
}

/* ===== Container ===== */
.sd-container {
    max-width: var(--sd-max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== Layout Wrappers ===== */
.sd-header-wrapper {
    width: 100%;
    background: var(--sd-white);
    border-bottom: 1px solid var(--sd-border);
}

.sd-breadcrumbs-wrapper {
    width: 100%;
    background: var(--sd-bg);
    border-bottom: 1px solid var(--sd-border);
}

.sd-main-wrapper {
    width: 100%;
    background: var(--sd-white);
    padding: 24px 0 60px;
}

.sd-footer-wrapper {
    width: 100%;
    background: var(--sd-dark);
}

/* ===== Two Column Layout ===== */
.sd-columns {
    display: grid;
    grid-template-columns: var(--sd-sidebar-width) 1fr;
    gap: var(--sd-gap);
}

.sd-sidebar {
    min-width: 0;
}

.sd-content {
    min-width: 0;
}

/* ===== Breadcrumbs ===== */
.sd-breadcrumbs {
    padding: 12px 0;
}

.sd-breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sd-breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--sd-text-light);
}

.sd-breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 6px;
    color: var(--sd-text-muted);
}

.sd-breadcrumbs a {
    color: var(--sd-text-light);
    text-decoration: none;
}

.sd-breadcrumbs a:hover {
    color: var(--sd-orange);
}

.sd-breadcrumbs .current {
    color: var(--sd-text);
}

/* ===== Category Header ===== */
.sd-category-header {
    margin-bottom: 20px;
}

.sd-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--sd-dark);
    margin: 0 0 8px;
}

.sd-category-icon {
    width: 40px;
    height: 40px;
    background: var(--sd-orange);
    border-radius: var(--sd-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sd-category-icon img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}

.sd-category-desc {
    margin-top: 12px;
    padding: 12px 16px;
    background: var(--sd-bg);
    border-radius: var(--sd-radius);
    font-size: 13px;
    color: var(--sd-text-light);
    line-height: 1.6;
}

/* ===== Filters Sidebar ===== */
.sd-filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sd-filter-block {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
}

.sd-filter-header {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 13px;
    background: var(--sd-bg);
    border-bottom: 1px solid var(--sd-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sd-filter-toggle {
    color: var(--sd-text-muted);
    font-size: 12px;
}

.sd-filter-content {
    padding: 12px 16px;
}

.sd-filter-options {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sd-filter-option {
    display: block;
}

.sd-filter-option a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--sd-text-light);
    text-decoration: none;
    line-height: 1.4;
}

.sd-filter-option a:hover {
    color: var(--sd-text);
}

.sd-filter-option.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.sd-filter-option.disabled {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--sd-text-muted);
}

.sd-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--sd-border);
    border-radius: 3px;
    flex-shrink: 0;
}

.sd-filter-option a:hover .sd-checkbox {
    border-color: var(--sd-orange);
}

.sd-option-label {
    flex: 1;
    min-width: 0;
}

.sd-option-count {
    margin-left: auto;
    font-size: 12px;
    color: var(--sd-text-muted);
    flex-shrink: 0;
}

/* Price filter specific - if HTML prices slip through */
.sd-filter-option .price {
    font-weight: inherit;
    color: inherit;
}

/* ===== Active Filters ===== */
.sd-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.sd-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #fff3e0;
    border: 1px solid #ffe0b2;
    border-radius: 20px;
    font-size: 12px;
}

.sd-filter-label {
    color: var(--sd-text-light);
}

.sd-filter-value {
    color: var(--sd-orange);
    font-weight: 500;
}

.sd-filter-remove {
    width: 16px;
    height: 16px;
    background: var(--sd-orange);
    color: var(--sd-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    line-height: 1;
}

.sd-filter-remove:hover {
    background: var(--sd-red);
}

.sd-clear-all {
    font-size: 12px;
    color: var(--sd-text-muted);
    text-decoration: none;
    padding: 6px 0;
}

.sd-clear-all:hover {
    color: var(--sd-red);
}

/* ===== Toolbar ===== */
.sd-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.sd-toolbar-left,
.sd-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-view-btns {
    display: flex;
    gap: 4px;
}

.sd-view-btn {
    width: 32px;
    height: 32px;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-text-muted);
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
}

.sd-view-btn:hover,
.sd-view-btn.active {
    border-color: var(--sd-orange);
    color: var(--sd-orange);
}

.sd-sorter,
.sd-limiter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-toolbar select {
    padding: 8px 28px 8px 10px;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    background: var(--sd-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 8px center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.sd-sort-dir {
    padding: 4px 8px;
    color: var(--sd-text-muted);
    text-decoration: none;
    font-size: 14px;
}

.sd-sort-dir:hover {
    color: var(--sd-orange);
}

.sd-amount {
    font-size: 13px;
    color: var(--sd-text-muted);
}

/* ===== Products Grid ===== */
.sd-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sd-no-products {
    padding: 40px;
    text-align: center;
    color: var(--sd-text-light);
}

/* ===== Product Card ===== */
.sd-product-card {
	 position: relative;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s;
}

.sd-product-card:hover {
    border-color: var(--sd-text-muted);
}

.sd-product-img {
    position: relative;
    height: 180px;
    background: var(--sd-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: var(--sd-radius) var(--sd-radius) 0 0;
}

.sd-product-img img {
    max-height: 156px;
    max-width: 100%;
    object-fit: contain;
}

.sd-product-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sd-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.sd-badge-sale {
    background: var(--sd-red);
    color: var(--sd-white);
}

.sd-badge-new {
    background: var(--sd-green);
    color: var(--sd-white);
}

.sd-wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: var(--sd-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--sd-text-muted);
    cursor: pointer;
    z-index: 1;
}

.sd-wishlist-btn:hover {
    color: var(--sd-red);
}

.sd-product-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sd-product-brand {
    font-size: 10px;
    color: var(--sd-orange);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.sd-product-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--sd-dark);
    text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sd-product-name:hover {
    color: var(--sd-orange);
}

.sd-product-sku {
    font-size: 11px;
    color: var(--sd-text-muted);
    margin-bottom: 8px;
}

.sd-product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
}

.sd-price-now {
    font-size: 16px;
    font-weight: 700;
    color: var(--sd-dark);
}

.sd-price-was {
    font-size: 12px;
    color: var(--sd-text-muted);
    text-decoration: line-through;
}

.sd-product-stock {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    margin-top: 6px;
}

.sd-stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.sd-product-stock.in-stock .sd-stock-dot {
    background: var(--sd-green);
}

.sd-product-stock.in-stock {
    color: var(--sd-green);
}

.sd-product-stock.out-of-stock .sd-stock-dot {
    background: var(--sd-red);
}

.sd-product-stock.out-of-stock {
    color: var(--sd-red);
}

.sd-product-action {
    padding: 12px;
    padding-top: 0;
}

/* ===== Green Add to Cart Button ===== */
.sd-btn-add {
    width: 100%;
    padding: 10px;
    background: var(--sd-green);
    color: var(--sd-white);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.sd-btn-add:hover {
    background: var(--sd-green-hover);
}

.sd-btn-add:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.sd-cart-icon {
    font-size: 14px;
}

/* ===== Pagination ===== */
.sd-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--sd-border);
}

.sd-page-link {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: var(--sd-bg);
    color: var(--sd-text);
}

.sd-page-link:hover {
    background: var(--sd-border);
}

.sd-page-current {
    background: var(--sd-orange);
    color: var(--sd-white);
}

.sd-page-prev,
.sd-page-next {
    background: transparent;
}

.sd-toolbar-bottom {
    margin-top: 24px;
}

.sd-toolbar-bottom .sd-toolbar {
    margin-bottom: 0;
}

.sd-toolbar-bottom .sd-pagination {
    margin-top: 16px;
    padding-top: 0;
    border-top: none;
}

/* ===== Mobile Filter Button (hidden on desktop) ===== */
.sd-mobile-filter-btn {
    display: none;
    width: 100%;
    padding: 12px;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    margin-bottom: 16px;
    cursor: pointer;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
    .sd-columns {
        grid-template-columns: 1fr;
    }
    
    .sd-sidebar {
        display: none;
    }
    
    .sd-mobile-filter-btn {
        display: block;
    }
    
    .sd-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
    :root {
        --sd-gap: 16px;
    }
    
    .sd-main-wrapper {
        padding: 16px 0 40px;
    }
    
    .sd-category-title {
        font-size: 20px;
    }
    
    .sd-category-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .sd-toolbar {
        padding: 10px 12px;
    }
    
    .sd-toolbar-left {
        flex: 1;
    }
    
    .sd-toolbar select {
        font-size: 12px;
        padding: 6px 24px 6px 8px;
    }
    
    /* 2 columns on mobile */
    .sd-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .sd-product-img {
        height: 140px;
        padding: 8px;
    }
    
    .sd-product-img img {
        max-height: 124px;
    }
    
    .sd-product-details {
        padding: 10px;
    }
    
    .sd-product-brand {
        font-size: 9px;
    }
    
    .sd-product-name {
        font-size: 12px;
        height: 32px;
    }
    
    .sd-product-sku {
        display: none;
    }
    
    .sd-price-now {
        font-size: 14px;
    }
    
    .sd-product-action {
        padding: 10px;
        padding-top: 0;
    }
    
    .sd-btn-add {
        padding: 8px;
        font-size: 12px;
    }
    
    .sd-cart-text {
        display: none;
    }
    
    .sd-pagination {
        gap: 4px;
    }
    
    .sd-page-link {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* ===== Responsive: Small Mobile ===== */
@media (max-width: 480px) {
    .sd-container {
        padding: 0 12px;
    }
    
    .sd-product-img {
        height: 120px;
    }
    
    .sd-product-img img {
        max-height: 104px;
    }
    
    .sd-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .sd-wishlist-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .sd-sidebar,
    .sd-toolbar,
    .sd-pagination,
    .sd-product-action,
    .sd-wishlist-btn {
        display: none !important;
    }
    
    .sd-columns {
        grid-template-columns: 1fr;
    }
    
    .sd-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* Hero Slider */
.sd-hero-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.sd-hero-slider__track {
    display: flex;
    transition: transform 0.5s ease;
}

.sd-hero-slider__slide {
    flex: 0 0 100%;
    min-height: 300px;
}

.sd-hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-hero-slider__nav--prev { left: 16px; }
.sd-hero-slider__nav--next { right: 16px; }

.sd-hero-slider__nav:hover {
    background: var(--sd-white);
}

.sd-hero-slider__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.sd-hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.sd-hero-slider__dot.is-active {
    background: var(--sd-white);
}

/* Slide Content */
.sd-slide {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px;
}

.sd-slide__content {
    max-width: 500px;
}

.sd-slide__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--sd-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sd-slide__text {
    font-size: 16px;
    margin: 0 0 20px;
    color: var(--sd-white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.sd-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--sd-green);
    color: var(--sd-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.sd-slide__btn:hover {
    background: var(--sd-green-hover);
}

/* USP Bar */
.sd-usp-bar {
    background: var(--sd-bg);
    padding: 20px 0;
    margin-bottom: 32px;
}

.sd-usp-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sd-usp-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-usp-bar__icon {
    font-size: 24px;
}

.sd-usp-bar__title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sd-dark);
}

.sd-usp-bar__subtitle {
    display: block;
    font-size: 12px;
    color: var(--sd-text-muted);
}

/* Section Headers */
.sd-section {
    margin-bottom: 40px;
}

.sd-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sd-section__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--sd-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-section__title--center {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.sd-section__title-icon {
    font-size: 24px;
}

.sd-section__link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--sd-orange);
    text-decoration: none;
    font-weight: 500;
}

.sd-section__link:hover {
    text-decoration: underline;
}

/* Categories Grid */
.sd-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sd-category-card {
    display: block;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.sd-category-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sd-category-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--sd-bg);
}

.sd-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd-category-card__content {
    padding: 12px;
}

.sd-category-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0;
}

/* Homepage Products Grid */
.sd-sale-products .sd-products-grid,
.sd-new-products .sd-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sd-product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    background: var(--sd-red);
    color: var(--sd-white);
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
}

.sd-product-card__badge--new {
    background: var(--sd-green);
}

/* Brands Grid */
.sd-brands__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.sd-brands__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    text-decoration: none;
    min-height: 80px;
}

.sd-brands__item:hover {
    border-color: var(--sd-orange);
}

.sd-brands__item img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.sd-brands__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
}

/* Homepage Responsive */
@media (max-width: 1024px) {
    .sd-usp-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sd-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sd-sale-products .sd-products-grid,
    .sd-new-products .sd-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sd-brands__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .sd-slide__title {
        font-size: 24px;
    }
    
    .sd-usp-bar__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .sd-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sd-sale-products .sd-products-grid,
    .sd-new-products .sd-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sd-brands__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sd-hero-slider__nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .sd-usp-bar__grid {
        grid-template-columns: 1fr;
    }
    
    .sd-slide {
        min-height: 200px;
        padding: 20px;
    }
    
    .sd-slide__title {
        font-size: 20px;
    }
}

/**
 * ScooterDiscounter Theme - Subcategorie Thumbnails Grid & Non-Anchor Layout
 * Voor non-anchor categorieën (is_anchor = no)
 * Versie: 2.0 - Geconsolideerd
 */

/* ==========================================================================
   NON-ANCHOR CATEGORY: 1-COLUMN LAYOUT (geen sidebar/filters)
   ========================================================================== */

/* Verberg sidebar en filter bar bij non-anchor categorieën */
.category-non-anchor .sd-sidebar,
.category-non-anchor .sd-mobile-filter-bar {
    display: none !important;
}

/* Full width content bij non-anchor */
.category-non-anchor .sd-columns {
    grid-template-columns: 1fr;
}

/* ==========================================================================
   SUBCATEGORIEËN GRID
   ========================================================================== */

.sd-subcategories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

/* ==========================================================================
   SUBCATEGORIE CARD
   ========================================================================== */

.sd-subcategory-card {
    display: block;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sd-subcategory-card:hover {
    border-color: var(--sd-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.sd-subcategory-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--sd-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-subcategory-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.sd-subcategory-card:hover .sd-subcategory-card__image img {
    transform: scale(1.03);
}

/* Card Content */
.sd-subcategory-card__content {
    padding: 14px 16px;
    background: var(--sd-white);
    border-top: 1px solid var(--sd-border);
}

.sd-subcategory-card__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    text-align: center;
    line-height: 1.3;
}

.sd-subcategory-card:hover .sd-subcategory-card__title {
    color: var(--sd-orange);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .sd-subcategories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sd-subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sd-subcategory-card__content {
        padding: 12px;
    }
    
    .sd-subcategory-card__title {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .sd-subcategories-grid {
        gap: 10px;
    }
    
    .sd-subcategory-card__content {
        padding: 10px;
    }
    
    .sd-subcategory-card__title {
        font-size: 12px;
    }
}

/* ==========================================================================
   1-COLUMN LAYOUT (voor non-anchor categorieën)
   ========================================================================== */

.sd-columns--single {
    display: block; /* Geen grid, gewoon 1 kolom */
}

.sd-columns--single .sd-content {
    max-width: 100%;
}
/* ==========================================================================
   SCOOTERDISCOUNTER - LOGIN / ACCOUNT PAGES
   Toevoegen aan sd-theme.css
   ========================================================================== */

/* ==========================================================================
   PAGE TITLE (herbruikbaar voor account pagina's)
   ========================================================================== */

.sd-page-title {
    text-align: center;
    margin-bottom: 24px;
}

.sd-page-title h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sd-dark);
    margin: 0 0 6px 0;
}

.sd-page-title p {
    color: var(--sd-text-light);
    font-size: 14px;
    margin: 0;
}

@media (min-width: 768px) {
    .sd-page-title {
        margin-bottom: 32px;
    }
    
    .sd-page-title h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .sd-page-title p {
        font-size: 15px;
    }
}

/* ==========================================================================
   LOGIN GRID
   ========================================================================== */

.sd-login-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

/* Mobile: login eerst */
.sd-login-card--login {
    order: 1;
}

.sd-login-card--register {
    order: 2;
}

@media (min-width: 768px) {
    .sd-login-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .sd-login-card--login,
    .sd-login-card--register {
        order: unset;
    }
}

/* ==========================================================================
   LOGIN CARD
   ========================================================================== */

.sd-login-card {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
}

.sd-login-card__header {
    padding: 16px 16px 0;
}

.sd-login-card__header h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0 0 4px 0;
}

.sd-login-card__header p {
    color: var(--sd-text-light);
    font-size: 13px;
    margin: 0;
}

.sd-login-card__body {
    padding: 16px;
}

@media (min-width: 768px) {
    .sd-login-card__header {
        padding: 20px 24px 0;
    }
    
    .sd-login-card__header h2 {
        font-size: 18px;
    }
    
    .sd-login-card__header p {
        font-size: 14px;
    }
    
    .sd-login-card__body {
        padding: 20px 24px 24px;
    }
}

/* ==========================================================================
   FORM ELEMENTS
   ========================================================================== */

.sd-form-group {
    margin-bottom: 14px;
}

.sd-form-group:last-child {
    margin-bottom: 0;
}

.sd-form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--sd-text);
    margin-bottom: 6px;
}

.sd-form-label .required {
    color: var(--sd-red);
    margin-left: 2px;
}

.sd-form-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    background: var(--sd-white);
    color: var(--sd-text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}

.sd-form-input:focus {
    outline: none;
    border-color: var(--sd-green);
    box-shadow: 0 0 0 3px rgba(58, 170, 53, 0.1);
}

.sd-form-input::placeholder {
    color: var(--sd-text-muted);
}

/* Validation error state */
.sd-form-input.validation-failed,
.sd-form-input.error {
    border-color: var(--sd-red);
}

.sd-form-input.validation-failed:focus,
.sd-form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.sd-form-error,
.validation-advice {
    color: var(--sd-red);
    font-size: 12px;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .sd-form-group {
        margin-bottom: 16px;
    }
    
    .sd-form-input {
        padding: 10px 14px;
    }
}

/* ==========================================================================
   PASSWORD FIELD
   ========================================================================== */

.sd-password-wrapper {
    position: relative;
}

.sd-password-wrapper .sd-form-input {
    padding-right: 42px;
}

.sd-password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--sd-text-muted);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.15s ease;
}

.sd-password-toggle:hover {
    color: var(--sd-text-light);
}

.sd-password-toggle:focus {
    outline: none;
    color: var(--sd-green);
}

/* ==========================================================================
   FORM ROW (checkbox + forgot link)
   ========================================================================== */

.sd-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 400px) {
    .sd-form-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   CHECKBOX
   ========================================================================== */

.sd-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--sd-green);
    cursor: pointer;
    flex-shrink: 0;
}

.sd-checkbox-wrapper label {
    font-size: 13px;
    color: var(--sd-text-light);
    cursor: pointer;
    line-height: 1.3;
}

/* ==========================================================================
   LINKS
   ========================================================================== */

.sd-forgot-link {
    font-size: 13px;
    color: var(--sd-orange);
    text-decoration: none;
    font-weight: 500;
}

.sd-forgot-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    text-decoration: none;
    border: none;
    width: 100%;
    line-height: 1.4;
}

.sd-btn svg {
    flex-shrink: 0;
}

.sd-btn--primary {
    background: var(--sd-green);
    color: var(--sd-white);
}

.sd-btn--primary:hover {
    background: var(--sd-green-hover);
}

.sd-btn--secondary {
    background: var(--sd-dark);
    color: var(--sd-white);
}

.sd-btn--secondary:hover {
    background: #2a2a2a;
}

/* Loading state */
.sd-btn.loading,
.sd-btn[disabled] {
    opacity: 0.7;
    pointer-events: none;
}

/* ==========================================================================
   BENEFITS LIST
   ========================================================================== */

.sd-benefits-list {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
}

.sd-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--sd-border);
}

.sd-benefits-list li:last-child {
    border-bottom: none;
}

.sd-benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-green);
}

.sd-benefit-content {
    flex: 1;
    min-width: 0;
}

.sd-benefit-content strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sd-dark);
    margin-bottom: 1px;
}

.sd-benefit-content span {
    font-size: 12px;
    color: var(--sd-text-muted);
}

@media (min-width: 768px) {
    .sd-benefits-list {
        margin-bottom: 20px;
    }
    
    .sd-benefits-list li {
        gap: 12px;
        padding: 12px 0;
    }
    
    .sd-benefit-icon {
        width: 28px;
        height: 28px;
    }
    
    .sd-benefit-content strong {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .sd-benefit-content span {
        font-size: 13px;
    }
}

/* ==========================================================================
   TRUST BADGE
   ========================================================================== */

.sd-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--sd-bg);
    border-radius: 6px;
    margin-top: 16px;
}

.sd-trust-badge__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-green);
}

.sd-trust-badge__content {
    font-size: 12px;
    color: var(--sd-text-light);
    line-height: 1.4;
}

.sd-trust-badge__content strong {
    display: block;
    font-size: 13px;
    color: var(--sd-dark);
    margin-bottom: 1px;
}

@media (min-width: 768px) {
    .sd-trust-badge {
        gap: 12px;
        padding: 12px 14px;
        margin-top: 20px;
    }
    
    .sd-trust-badge__icon {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   HELP SECTION
   ========================================================================== */

.sd-help-section {
    text-align: center;
    margin-top: 20px;
    padding: 16px;
    background: var(--sd-bg);
    border-radius: var(--sd-radius);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.sd-help-section p {
    font-size: 13px;
    color: var(--sd-text-light);
    margin: 0;
}

.sd-help-section a {
    color: var(--sd-orange);
    text-decoration: none;
    font-weight: 500;
}

.sd-help-section a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .sd-help-section {
        margin-top: 32px;
        padding: 20px;
    }
    
    .sd-help-section p {
        font-size: 14px;
    }
}

/* ==========================================================================
   MESSAGES (gebruikt Magento's messages block)
   ========================================================================== */

.sd-messages {
    max-width: 880px;
    margin: 0 auto 20px;
}

.sd-messages .messages li {
    margin-bottom: 0;
}

.sd-messages .error-msg,
.sd-messages .success-msg,
.sd-messages .notice-msg {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 0;
}

.sd-messages .error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.sd-messages .success-msg {
    background: #e8f5e8;
    border: 1px solid #a7f3d0;
    color: #059669;
}

.sd-messages .notice-msg {
    background: #fff3e6;
    border: 1px solid #ffe0b2;
    color: #d97706;
}

/* ==========================================================================
   PERSISTENT / REMEMBER ME (Magento Persistent module)
   ========================================================================== */

/* Remember me checkbox - past binnen sd-checkbox-wrapper */
.sd-checkbox-wrapper .remember-me-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-checkbox-wrapper .remember-me-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--sd-green);
    cursor: pointer;
    flex-shrink: 0;
}

.sd-checkbox-wrapper .remember-me-box label {
    font-size: 13px;
    color: var(--sd-text-light);
    cursor: pointer;
}

.sd-checkbox-wrapper .remember-me-box a {
    font-size: 12px;
    color: var(--sd-orange);
    text-decoration: none;
    margin-left: 4px;
}

.sd-checkbox-wrapper .remember-me-box a:hover {
    text-decoration: underline;
}

.sd-checkbox-wrapper .remember-me-box a.hide {
    display: none;
}

/* Remember me popup */
.remember-me-popup {
    display: none;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 12px;
    overflow: hidden;
}

.remember-me-popup.show {
    display: block;
}

.remember-me-popup-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--sd-bg);
    border-bottom: 1px solid var(--sd-border);
}

.remember-me-popup-head h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0;
}

.remember-me-popup-head .remember-me-popup-close {
    font-size: 13px;
    color: var(--sd-text-muted);
    text-decoration: none;
}

.remember-me-popup-head .remember-me-popup-close:hover {
    color: var(--sd-orange);
}

.remember-me-popup-body {
    padding: 16px;
}

.remember-me-popup-body p {
    font-size: 13px;
    color: var(--sd-text-light);
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.remember-me-popup-close-button {
    text-align: right;
}

.remember-me-popup-close-button .button {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--sd-white);
    background: var(--sd-green);
    border-radius: 6px;
    text-decoration: none;
}

.remember-me-popup-close-button .button:hover {
    background: var(--sd-green-hover);
}

.remember-me-popup-close-button .button span {
    /* Reset magento button span styling */
}

/* ==========================================================================
   LOGIN PAGE - SINGLE COLUMN VARIANT (als registratie uit staat)
   ========================================================================== */

.sd-account-login.login-only .sd-login-grid {
    max-width: 440px;
}

.sd-account-login.login-only .sd-login-card--login {
    order: unset;
}
/* ==========================================================================
   SCOOTERDISCOUNTER - REGISTER / ACCOUNT CREATE PAGE
   Toevoegen aan sd-theme.css (na login sectie)
   ========================================================================== */

/* ==========================================================================
   REGISTER LAYOUT
   ========================================================================== */

.sd-register-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sd-register-layout {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 24px;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .sd-register-layout {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

/* ==========================================================================
   REGISTER CARD
   ========================================================================== */

.sd-register-card {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
}

.sd-register-card__body {
    padding: 16px;
}

@media (min-width: 768px) {
    .sd-register-card__body {
        padding: 24px;
    }
}

/* ==========================================================================
   FORM SECTIONS
   ========================================================================== */

.sd-form-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sd-border);
}

.sd-form-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (min-width: 768px) {
    .sd-form-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
}

.sd-form-section__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-form-section__title svg {
    color: var(--sd-green);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .sd-form-section__title {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   FORM ROW (meerdere velden naast elkaar)
   ========================================================================== */

.sd-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 480px) {
    .sd-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.sd-form-row .sd-form-group {
    margin-bottom: 0;
}

/* 3 kolommen voor sommige velden */
.sd-form-row--3 {
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .sd-form-row--3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .sd-form-row--3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ==========================================================================
   FORM HINT
   ========================================================================== */

.sd-form-hint {
    font-size: 12px;
    color: var(--sd-text-muted);
    margin-top: 4px;
    line-height: 1.4;
}

/* ==========================================================================
   FORM SELECT (dropdown)
   ========================================================================== */

.sd-form-select {
    width: 100%;
    padding: 10px 36px 10px 12px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    background-color: var(--sd-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: var(--sd-text);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.sd-form-select:focus {
    outline: none;
    border-color: var(--sd-green);
    box-shadow: 0 0 0 3px rgba(58, 170, 53, 0.1);
}

/* ==========================================================================
   PASSWORD STRENGTH INDICATOR
   ========================================================================== */

.sd-password-strength {
    margin-top: 8px;
}

.sd-password-strength__bar {
    height: 4px;
    background: var(--sd-border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.sd-password-strength__fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.sd-password-strength__fill.weak {
    width: 33%;
    background: var(--sd-red);
}

.sd-password-strength__fill.medium {
    width: 66%;
    background: var(--sd-orange);
}

.sd-password-strength__fill.strong {
    width: 100%;
    background: var(--sd-green);
}

.sd-password-strength__text {
    font-size: 12px;
    color: var(--sd-text-muted);
}

/* ==========================================================================
   FORM ACTIONS
   ========================================================================== */

.sd-form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--sd-border);
}

@media (min-width: 480px) {
    .sd-form-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .sd-form-actions .sd-btn--primary {
        width: auto;
        min-width: 180px;
        order: 2;
    }
    
    .sd-form-actions .sd-btn--link {
        order: 1;
    }
}

@media (min-width: 768px) {
    .sd-form-actions {
        margin-top: 24px;
        padding-top: 24px;
    }
    
    .sd-form-actions .sd-btn--primary {
        min-width: 200px;
    }
}

/* Link button */
.sd-btn--link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    color: var(--sd-orange);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.sd-btn--link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   TRUST ROW
   ========================================================================== */

.sd-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--sd-border);
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .sd-trust-row {
        gap: 24px;
        margin-top: 24px;
        padding-top: 24px;
    }
}

.sd-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--sd-text-muted);
}

@media (min-width: 768px) {
    .sd-trust-item {
        font-size: 12px;
    }
}

.sd-trust-item svg {
    color: var(--sd-green);
    flex-shrink: 0;
}

/* ==========================================================================
   REGISTER SIDEBAR
   ========================================================================== */

.sd-register-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Sidebar Card */
.sd-sidebar-card {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    padding: 16px;
}

@media (min-width: 768px) {
    .sd-sidebar-card {
        padding: 20px;
    }
}

.sd-sidebar-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-sidebar-card__title svg {
    flex-shrink: 0;
}

/* Help card variant */
.sd-sidebar-card--help {
    background: var(--sd-bg);
}

.sd-sidebar-card--help p {
    font-size: 13px;
    color: var(--sd-text-light);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.sd-sidebar-card--help p:last-child {
    margin-bottom: 0;
}

.sd-sidebar-card--help a {
    color: var(--sd-orange);
    text-decoration: none;
    font-weight: 500;
}

.sd-sidebar-card--help a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   BENEFITS LIST (compact voor sidebar)
   ========================================================================== */

.sd-benefits-compact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sd-benefits-compact li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--sd-text);
    border-bottom: 1px solid var(--sd-border);
}

.sd-benefits-compact li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sd-benefits-compact li:first-child {
    padding-top: 0;
}

.sd-benefits-compact svg {
    flex-shrink: 0;
    color: var(--sd-green);
}

/* ==========================================================================
   NAME WIDGET OVERRIDE (Magento customer/widget/name)
   ========================================================================== */

.sd-name-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 480px) {
    .sd-name-fields {
        grid-template-columns: 1fr 1fr;
    }
}

/* When prefix is shown, adjust grid */
.sd-name-fields.has-prefix {
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .sd-name-fields.has-prefix {
        grid-template-columns: 100px 1fr 1fr;
    }
}

/* Individual name field styling */
.sd-name-fields .field {
    margin-bottom: 0;
}

.sd-name-fields .field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--sd-text);
    margin-bottom: 6px;
}

.sd-name-fields .field label.required em {
    color: var(--sd-red);
    font-style: normal;
    margin-right: 2px;
}

.sd-name-fields .field .input-box {
    /* Reset default margins */
}

.sd-name-fields .field input.input-text,
.sd-name-fields .field select {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    background: var(--sd-white);
    color: var(--sd-text);
    -webkit-appearance: none;
    appearance: none;
}

.sd-name-fields .field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.sd-name-fields .field input.input-text:focus,
.sd-name-fields .field select:focus {
    outline: none;
    border-color: var(--sd-green);
    box-shadow: 0 0 0 3px rgba(58, 170, 53, 0.1);
}

/* ==========================================================================
   ADDRESS FIELDS (optioneel, als showAddressFields enabled is)
   ========================================================================== */

.sd-address-section .sd-form-row {
    margin-bottom: 14px;
}

.sd-address-section .sd-form-row:last-child {
    margin-bottom: 0;
}

/* Country/Region selects */
.sd-address-section select {
    width: 100%;
    padding: 10px 36px 10px 12px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    background-color: var(--sd-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: var(--sd-text);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.sd-address-section select:focus {
    outline: none;
    border-color: var(--sd-green);
    box-shadow: 0 0 0 3px rgba(58, 170, 53, 0.1);
}

/* ==========================================================================
   DOB / TAXVAT / GENDER WIDGETS
   ========================================================================== */

/* Date of Birth widget */
.sd-register-card .customer-dob {
    display: flex;
    gap: 8px;
}

.sd-register-card .customer-dob .dob-day,
.sd-register-card .customer-dob .dob-month,
.sd-register-card .customer-dob .dob-year {
    flex: 1;
}

.sd-register-card .customer-dob input,
.sd-register-card .customer-dob select {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    background: var(--sd-white);
    color: var(--sd-text);
}

/* Gender widget */
.sd-register-card .customer-gender select {
    width: 100%;
    padding: 10px 36px 10px 12px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    background-color: var(--sd-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: var(--sd-text);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

/* ==========================================================================
   NEWSLETTER CHECKBOX (register specific)
   ========================================================================== */

.sd-newsletter-option {
    margin-bottom: 12px;
}

.sd-newsletter-option:last-child {
    margin-bottom: 0;
}

.sd-newsletter-option .sd-checkbox-wrapper label span {
    display: block;
    font-size: 12px;
    color: var(--sd-text-muted);
    margin-top: 2px;
}
/* ==========================================================================
   SCOOTERDISCOUNTER - CUSTOMER ACCOUNT AREA
   Toevoegen aan sd-theme.css
   ========================================================================== */

/* ==========================================================================
   ACCOUNT LAYOUT (Sidebar + Content)
   ========================================================================== */

.sd-account-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .sd-account-layout {
        flex-direction: row;
        gap: 24px;
    }
}

/* ==========================================================================
   ACCOUNT SIDEBAR
   ========================================================================== */

.sd-account-sidebar {
    width: 100%;
}

@media (min-width: 1024px) {
    .sd-account-sidebar {
        width: 260px;
        flex-shrink: 0;
    }
}

/* Mobile: Dropdown navigatie */
.sd-account-nav-mobile {
    display: block;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .sd-account-nav-mobile {
        display: none;
    }
}

.sd-account-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: var(--sd-white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    cursor: pointer;
    font-family: inherit;
}

.sd-account-nav-toggle svg {
    transition: transform 0.2s ease;
}

.sd-account-nav-toggle.open svg {
    transform: rotate(180deg);
}

.sd-account-nav-dropdown {
    display: none;
    border-top: 1px solid var(--sd-border);
}

.sd-account-nav-dropdown.open {
    display: block;
}

/* Desktop: Sticky sidebar */
.sd-account-nav-desktop {
    display: none;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
    position: sticky;
    top: 24px;
}

@media (min-width: 1024px) {
    .sd-account-nav-desktop {
        display: block;
    }
}

/* Nav Header */
.sd-account-nav__header {
    padding: 16px;
    background: var(--sd-bg);
    border-bottom: 1px solid var(--sd-border);
}

.sd-account-nav__user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-account-nav__avatar {
    width: 40px;
    height: 40px;
    background: var(--sd-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-green);
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.sd-account-nav__info {
    overflow: hidden;
}

.sd-account-nav__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sd-account-nav__email {
    font-size: 12px;
    color: var(--sd-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Nav Menu */
.sd-account-nav__menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.sd-account-nav__item {
    margin: 0;
}

.sd-account-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--sd-text);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sd-account-nav__link:hover {
    background: var(--sd-bg);
    color: var(--sd-orange);
}

.sd-account-nav__link.current,
.sd-account-nav__item.current .sd-account-nav__link {
    background: var(--sd-orange-light);
    color: var(--sd-orange);
    font-weight: 500;
}

.sd-account-nav__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--sd-text-muted);
}

.sd-account-nav__link:hover .sd-account-nav__icon,
.sd-account-nav__link.current .sd-account-nav__icon,
.sd-account-nav__item.current .sd-account-nav__icon {
    color: var(--sd-orange);
}

/* Logout link */
.sd-account-nav__item--logout {
    border-top: 1px solid var(--sd-border);
    margin-top: 8px;
    padding-top: 8px;
}

.sd-account-nav__item--logout .sd-account-nav__link {
    color: var(--sd-text-muted);
}

.sd-account-nav__item--logout .sd-account-nav__link:hover {
    color: var(--sd-red);
    background: #fef2f2;
}

.sd-account-nav__item--logout .sd-account-nav__link:hover .sd-account-nav__icon {
    color: var(--sd-red);
}

/* ==========================================================================
   ACCOUNT CONTENT
   ========================================================================== */

.sd-account-content {
    flex: 1;
    min-width: 0;
}

/* ==========================================================================
   DASHBOARD HEADER
   ========================================================================== */

.sd-dashboard-header {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    padding: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .sd-dashboard-header {
        padding: 24px;
    }
}

.sd-dashboard-header h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sd-dark);
    margin: 0 0 4px 0;
}

@media (min-width: 768px) {
    .sd-dashboard-header h1 {
        font-size: 24px;
    }
}

.sd-dashboard-header p {
    font-size: 14px;
    color: var(--sd-text-light);
    margin: 0;
}

/* ==========================================================================
   QUICK LINKS
   ========================================================================== */

.sd-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .sd-quick-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sd-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sd-quick-link:hover {
    border-color: var(--sd-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sd-quick-link__icon {
    width: 40px;
    height: 40px;
    background: var(--sd-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-text-light);
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sd-quick-link:hover .sd-quick-link__icon {
    background: var(--sd-orange-light);
    color: var(--sd-orange);
}

.sd-quick-link__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--sd-text);
    text-align: center;
}

/* ==========================================================================
   DASHBOARD GRID
   ========================================================================== */

.sd-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .sd-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.sd-dashboard-grid .sd-card--full {
    grid-column: 1 / -1;
}

/* ==========================================================================
   CARD COMPONENT
   ========================================================================== */

.sd-card {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
}

.sd-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--sd-border);
    background: var(--sd-bg);
}

.sd-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0;
}

.sd-card__title svg {
    color: var(--sd-green);
    flex-shrink: 0;
}

.sd-card__action {
    font-size: 13px;
    color: var(--sd-orange);
    text-decoration: none;
    font-weight: 500;
}

.sd-card__action:hover {
    text-decoration: underline;
}

.sd-card__body {
    padding: 16px;
}

/* ==========================================================================
   INFO ROWS
   ========================================================================== */

.sd-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sd-border);
}

.sd-info-row:first-child {
    padding-top: 0;
}

.sd-info-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sd-info-row__icon {
    width: 32px;
    height: 32px;
    background: var(--sd-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-text-muted);
    flex-shrink: 0;
}

.sd-info-row__content {
    flex: 1;
    min-width: 0;
}

.sd-info-row__label {
    font-size: 12px;
    color: var(--sd-text-muted);
    margin-bottom: 2px;
}

.sd-info-row__value {
    font-size: 14px;
    color: var(--sd-dark);
    font-weight: 500;
}

.sd-info-row__link {
    font-size: 13px;
    color: var(--sd-orange);
    text-decoration: none;
}

.sd-info-row__link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   ADDRESS BOXES
   ========================================================================== */

.sd-address-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 480px) {
    .sd-address-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.sd-address-box {
    padding: 14px;
    background: var(--sd-bg);
    border-radius: 6px;
}

.sd-address-box__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sd-address-box__title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sd-dark);
}

.sd-address-box__title svg {
    color: var(--sd-text-muted);
}

.sd-address-box__edit {
    font-size: 12px;
    color: var(--sd-orange);
    text-decoration: none;
}

.sd-address-box__edit:hover {
    text-decoration: underline;
}

.sd-address-box address {
    font-size: 13px;
    color: var(--sd-text-light);
    font-style: normal;
    line-height: 1.6;
}

.sd-address-box--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100px;
    color: var(--sd-text-muted);
}

.sd-address-box--empty svg {
    margin-bottom: 8px;
    opacity: 0.5;
}

.sd-address-box--empty span {
    font-size: 13px;
}

/* ==========================================================================
   NEWSLETTER BADGE
   ========================================================================== */

.sd-newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.sd-newsletter-badge--active {
    background: var(--sd-green-light);
    color: var(--sd-green);
}

.sd-newsletter-badge--inactive {
    background: var(--sd-bg);
    color: var(--sd-text-muted);
}

/* ==========================================================================
   ORDERS TABLE
   ========================================================================== */

.sd-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.sd-orders-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--sd-border);
    background: var(--sd-bg);
}

.sd-orders-table td {
    padding: 14px 12px;
    font-size: 14px;
    border-bottom: 1px solid var(--sd-border);
    vertical-align: middle;
}

.sd-orders-table tr:last-child td {
    border-bottom: none;
}

.sd-orders-table .order-id a {
    color: var(--sd-orange);
    text-decoration: none;
    font-weight: 600;
}

.sd-orders-table .order-id a:hover {
    text-decoration: underline;
}

.sd-orders-table .order-date {
    color: var(--sd-text-light);
    font-size: 13px;
}

.sd-orders-table .order-total {
    font-weight: 600;
    color: var(--sd-dark);
}

.sd-order-status {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.sd-order-status--complete,
.sd-order-status--closed {
    background: var(--sd-green-light);
    color: var(--sd-green);
}

.sd-order-status--processing,
.sd-order-status--shipped {
    background: #e3f2fd;
    color: #1976d2;
}

.sd-order-status--pending,
.sd-order-status--pending_payment,
.sd-order-status--holded {
    background: var(--sd-orange-light);
    color: var(--sd-orange);
}

.sd-order-status--canceled {
    background: #fef2f2;
    color: var(--sd-red);
}

.sd-orders-table .order-actions a {
    font-size: 13px;
    color: var(--sd-orange);
    text-decoration: none;
    margin-right: 12px;
}

.sd-orders-table .order-actions a:last-child {
    margin-right: 0;
}

.sd-orders-table .order-actions a:hover {
    text-decoration: underline;
}

/* Responsive table */
@media (max-width: 767px) {
    .sd-orders-table thead {
        display: none;
    }

    .sd-orders-table tbody {
        display: block;
    }

    .sd-orders-table tr {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--sd-border);
    }

    .sd-orders-table tr:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .sd-orders-table tr:first-child {
        padding-top: 0;
    }

    .sd-orders-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border-bottom: none;
    }

    .sd-orders-table td::before {
        content: attr(data-label);
        font-size: 12px;
        color: var(--sd-text-muted);
        font-weight: 500;
    }

    .sd-orders-table .order-actions {
        justify-content: flex-end;
        gap: 12px;
    }

    .sd-orders-table .order-actions::before {
        display: none;
    }

    .sd-orders-table .order-actions a {
        margin-right: 0;
    }
}

/* Empty orders */
.sd-orders-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 16px;
    color: var(--sd-text-muted);
}

.sd-orders-empty svg {
    margin-bottom: 12px;
    opacity: 0.4;
}

.sd-orders-empty p {
    font-size: 14px;
    margin: 0 0 16px 0;
}

/* ==========================================================================
   ACCOUNT PAGE TITLE (voor subpagina's)
   ========================================================================== */

.sd-account-page-title {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.sd-account-page-title h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--sd-dark);
    margin: 0;
}

@media (min-width: 768px) {
    .sd-account-page-title h1 {
        font-size: 20px;
    }
}

/* ==========================================================================
   OVERRIDE: Body class voor account pagina's
   ========================================================================== */

.customer-account .col-main {
    /* Reset standaard Magento styling */
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
}

.customer-account .col-left,
.customer-account .col-right {
    display: none !important;
}

.customer-account .main-container {
    background: var(--sd-bg);
}

.customer-account .my-account {
    /* Container reset */
}
/* ==========================================================================
   SCOOTERDISCOUNTER - ORDER PAGES (History & View)
   Toevoegen aan sd-theme.css
   ========================================================================== */

/* ==========================================================================
   PAGE HEADER (voor order history)
   ========================================================================== */

.sd-page-header {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 768px) {
    .sd-page-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
    }
}

.sd-page-header h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sd-dark);
    margin: 0;
}

@media (min-width: 768px) {
    .sd-page-header h1 {
        font-size: 22px;
    }
}

.sd-page-header__count {
    font-size: 14px;
    color: var(--sd-text-muted);
    margin: 0;
}

/* ==========================================================================
   ORDER HISTORY TABLE (enhanced)
   ========================================================================== */

.sd-orders-table .hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .sd-orders-table .hide-mobile {
        display: table-cell;
    }
}

.sd-orders-table .order-actions-header {
    width: 120px;
}

@media (max-width: 767px) {
    .sd-orders-table .order-actions-header {
        width: auto;
    }
}

/* Action buttons in table */
.sd-btn-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--sd-orange);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.15s ease;
}

.sd-btn-action:hover {
    background: var(--sd-orange-light);
}

.sd-btn-action svg {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .sd-btn-action {
        padding: 8px;
    }
    
    .sd-btn-action .hide-mobile {
        display: none;
    }
}

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.sd-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
}

.sd-empty-state svg {
    color: var(--sd-border);
    margin-bottom: 16px;
}

.sd-empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0 0 8px 0;
}

.sd-empty-state p {
    font-size: 14px;
    color: var(--sd-text-muted);
    margin: 0 0 24px 0;
}

/* ==========================================================================
   ORDER VIEW - HEADER
   ========================================================================== */

.sd-order-view {
    /* Container voor order detail pagina */
}

.sd-order-header {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    padding: 16px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .sd-order-header {
        padding: 20px 24px;
    }
}

.sd-order-header__main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 600px) {
    .sd-order-header__main {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.sd-order-header__title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sd-order-header__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--sd-bg);
    border-radius: 50%;
    color: var(--sd-text-light);
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sd-order-header__back:hover {
    background: var(--sd-orange-light);
    color: var(--sd-orange);
}

.sd-order-header__title h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--sd-dark);
    margin: 0;
}

@media (min-width: 768px) {
    .sd-order-header__title h1 {
        font-size: 22px;
    }
}

.sd-order-header__date {
    font-size: 13px;
    color: var(--sd-text-muted);
    margin: 4px 0 0 0;
}

.sd-order-header__status {
    flex-shrink: 0;
}

.sd-order-header__actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--sd-border);
}

/* ==========================================================================
   ORDER ITEMS TABLE
   ========================================================================== */

.sd-order-items-table {
    width: 100%;
    border-collapse: collapse;
}

.sd-order-items-table thead th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--sd-bg);
    border-bottom: 1px solid var(--sd-border);
}

.sd-order-items-table thead th.col-price,
.sd-order-items-table thead th.col-qty,
.sd-order-items-table thead th.col-subtotal {
    text-align: right;
}

.sd-order-items-table thead th.col-qty {
    text-align: center;
}

.sd-order-items-table tbody td {
    padding: 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--sd-border);
    vertical-align: top;
}

.sd-order-items-table tbody tr:last-child td {
    border-bottom: none;
}

/* Product cell */
.sd-order-items-table .col-product {
    min-width: 200px;
}

.sd-order-items-table .product-name {
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0 0 4px 0;
}

.sd-order-items-table .product-name a {
    color: var(--sd-dark);
    text-decoration: none;
}

.sd-order-items-table .product-name a:hover {
    color: var(--sd-orange);
}

.sd-order-items-table .item-options {
    margin: 8px 0 0 0;
    padding: 0;
    list-style: none;
}

.sd-order-items-table .item-options dt {
    font-size: 12px;
    color: var(--sd-text-muted);
    display: inline;
}

.sd-order-items-table .item-options dd {
    font-size: 12px;
    color: var(--sd-text);
    display: inline;
    margin: 0 12px 0 4px;
}

/* SKU cell */
.sd-order-items-table .col-sku {
    font-size: 13px;
    color: var(--sd-text-muted);
    font-family: monospace;
}

/* Price cells */
.sd-order-items-table .col-price,
.sd-order-items-table .col-subtotal {
    text-align: right;
    white-space: nowrap;
}

.sd-order-items-table .col-qty {
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .sd-order-items-table thead {
        display: none;
    }
    
    .sd-order-items-table tbody tr {
        display: block;
        padding: 16px;
        border-bottom: 1px solid var(--sd-border);
    }
    
    .sd-order-items-table tbody tr:last-child {
        border-bottom: none;
    }
    
    .sd-order-items-table tbody td {
        display: block;
        padding: 4px 0;
        border-bottom: none;
        text-align: left !important;
    }
    
    .sd-order-items-table tbody td.col-product {
        padding-bottom: 8px;
    }
    
    .sd-order-items-table tbody td.col-sku {
        display: none;
    }
    
    .sd-order-items-table tbody td.col-price::before,
    .sd-order-items-table tbody td.col-qty::before,
    .sd-order-items-table tbody td.col-subtotal::before {
        content: attr(data-label);
        font-size: 12px;
        color: var(--sd-text-muted);
        margin-right: 8px;
    }
    
    .sd-order-items-table tbody td.col-price,
    .sd-order-items-table tbody td.col-qty,
    .sd-order-items-table tbody td.col-subtotal {
        display: inline-block;
        margin-right: 16px;
    }
}

/* ==========================================================================
   ORDER TOTALS (in tfoot)
   ========================================================================== */

.sd-order-totals tr td {
    padding: 8px 16px;
    font-size: 14px;
    border-top: 1px solid var(--sd-border);
}

.sd-order-totals tr:first-child td {
    padding-top: 16px;
}

.sd-order-totals tr:last-child td {
    padding-bottom: 16px;
}

.sd-order-totals tr td:first-child {
    text-align: right;
    color: var(--sd-text-light);
}

.sd-order-totals tr td:last-child {
    text-align: right;
    width: 120px;
}

.sd-order-totals tr.grand_total td {
    font-weight: 700;
    font-size: 16px;
    color: var(--sd-dark);
    border-top: 2px solid var(--sd-border);
    padding-top: 12px;
}

@media (max-width: 767px) {
    .sd-order-totals {
        display: block;
        background: var(--sd-bg);
        padding: 16px;
        border-top: 1px solid var(--sd-border);
    }
    
    .sd-order-totals tr {
        display: flex;
        justify-content: space-between;
        border: none !important;
    }
    
    .sd-order-totals tr td {
        padding: 4px 0;
        border: none !important;
    }
    
    .sd-order-totals tr:first-child td {
        padding-top: 4px;
    }
}

/* ==========================================================================
   ORDER TIMELINE (comments/history)
   ========================================================================== */

.sd-order-timeline {
    /* Container */
}

.sd-timeline-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sd-border);
}

.sd-timeline-item:first-child {
    padding-top: 0;
}

.sd-timeline-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

@media (min-width: 600px) {
    .sd-timeline-item {
        flex-direction: row;
        gap: 16px;
    }
}

.sd-timeline-item__date {
    font-size: 12px;
    color: var(--sd-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 600px) {
    .sd-timeline-item__date {
        width: 140px;
    }
}

.sd-timeline-item__content {
    font-size: 14px;
    color: var(--sd-text);
    line-height: 1.5;
}

/* ==========================================================================
   GIFT MESSAGE
   ========================================================================== */

.sd-gift-message {
    background: var(--sd-bg);
    border-radius: 6px;
    padding: 16px;
}

.sd-gift-message__from,
.sd-gift-message__to {
    font-size: 14px;
    margin-bottom: 4px;
}

.sd-gift-message__from strong,
.sd-gift-message__to strong {
    color: var(--sd-text-muted);
    font-weight: 500;
}

.sd-gift-message__text {
    font-size: 14px;
    color: var(--sd-text);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--sd-border);
    font-style: italic;
}

/* Gift message in items table */
.sd-gift-message-row td {
    background: var(--sd-bg);
    padding: 0 !important;
}

.sd-item-gift-message {
    position: relative;
    padding: 16px;
}

.sd-gift-message-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--sd-text-muted);
    cursor: pointer;
    padding: 4px;
}

.sd-gift-message-close:hover {
    color: var(--sd-text);
}

/* ==========================================================================
   ORDER ACTIONS (bottom of view page)
   ========================================================================== */

.sd-order-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

@media (min-width: 480px) {
    .sd-order-actions {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================================================
   PAGINATION SPACING
   ========================================================================== */

.sd-pagination {
    margin: 20px 0;
}

.sd-card + .sd-pagination {
    margin-top: 20px;
}

.sd-pagination + .sd-card {
    margin-top: 0;
}
/* ==========================================================================
   SCOOTERDISCOUNTER - ACCOUNT EDIT & ADDRESS BOOK
   Toevoegen aan sd-theme.css
   ========================================================================== */

/* ==========================================================================
   FORM SECTIONS
   ========================================================================== */

.sd-form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sd-form-row {
    /* Container voor name widget etc */
}

.sd-form-row--2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .sd-form-row--2col {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   FORM GROUPS (improved)
   ========================================================================== */

.sd-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sd-form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--sd-dark);
}

.sd-form-label.sd-required::after,
.sd-required .sd-form-label::after {
    content: ' *';
    color: var(--sd-red);
}

.sd-form-hint {
    font-size: 12px;
    color: var(--sd-text-muted);
    margin: 4px 0 0 0;
}

/* ==========================================================================
   PASSWORD FIELD WITH TOGGLE
   ========================================================================== */

.sd-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sd-password-wrapper .sd-form-input {
    padding-right: 44px;
}

.sd-password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--sd-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-password-toggle:hover {
    color: var(--sd-text);
}

/* ==========================================================================
   CHECKBOX STYLING
   ========================================================================== */

.sd-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--sd-text);
}

.sd-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--sd-border);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--sd-orange);
}

.sd-checkbox:checked {
    border-color: var(--sd-orange);
}

.sd-checkbox-text {
    user-select: none;
}

/* ==========================================================================
   FORM ACTIONS
   ========================================================================== */

.sd-form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

@media (min-width: 480px) {
    .sd-form-actions {
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .sd-form-actions--left {
        justify-content: flex-start;
    }
}

.sd-form-actions .sd-btn--secondary {
    order: 2;
}

.sd-form-actions .sd-btn--primary {
    order: 1;
}

@media (min-width: 480px) {
    .sd-form-actions .sd-btn--secondary {
        order: 1;
    }
    
    .sd-form-actions .sd-btn--primary {
        order: 2;
    }
}

/* ==========================================================================
   ADDRESS GRID (2 columns for default addresses)
   ========================================================================== */

.sd-address-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .sd-address-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   ADDRESS BOX (for default billing/shipping)
   ========================================================================== */

.sd-address-box {
    background: var(--sd-bg);
    border-radius: var(--sd-radius);
    overflow: hidden;
}

.sd-address-box__header {
    padding: 12px 16px;
    background: var(--sd-white);
    border-bottom: 1px solid var(--sd-border);
}

.sd-address-box__header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0;
}

.sd-address-box__header h3 svg {
    color: var(--sd-orange);
}

.sd-address-box__body {
    padding: 16px;
}

.sd-address-text {
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
    color: var(--sd-text);
}

.sd-address-empty {
    font-size: 14px;
    color: var(--sd-text-muted);
    margin: 0;
}

.sd-address-box__actions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--sd-border);
}

/* ==========================================================================
   ADDRESS LIST (for additional addresses)
   ========================================================================== */

.sd-address-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sd-address-list__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--sd-border);
}

.sd-address-list__item:first-child {
    padding-top: 0;
}

.sd-address-list__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

@media (min-width: 600px) {
    .sd-address-list__item {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.sd-address-list__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   BUTTON LINK STYLING
   ========================================================================== */

.sd-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--sd-orange);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.sd-btn-link:hover {
    color: var(--sd-dark);
    text-decoration: underline;
}

.sd-btn-link svg {
    flex-shrink: 0;
}

.sd-btn-link--danger {
    color: var(--sd-red);
}

.sd-btn-link--danger:hover {
    color: #b71c1c;
}

/* ==========================================================================
   EMPTY STATE COMPACT
   ========================================================================== */

.sd-empty-state--compact {
    padding: 32px 24px;
}

.sd-empty-state--compact svg {
    margin-bottom: 12px;
}

.sd-empty-state--compact p {
    margin-bottom: 16px;
}

/* ==========================================================================
   NAME FIELDS GRID (for name widget)
   ========================================================================== */

.sd-name-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .sd-name-fields {
        grid-template-columns: 1fr 1fr;
    }
    
    .sd-name-fields.has-extra-fields {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sd-name-fields .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sd-name-fields label {
    font-size: 14px;
    font-weight: 500;
    color: var(--sd-dark);
}

.sd-name-fields label.required::after {
    content: ' *';
    color: var(--sd-red);
}

.sd-name-fields label em {
    display: none; /* Hide the * from Magento, we use CSS */
}

/* ==========================================================================
   HIDDEN UTILITY
   ========================================================================== */

.sd-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   PAGE HEADER WITH BUTTON
   ========================================================================== */

.sd-page-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .sd-page-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ==========================================================================
   CARD SPACING FOR FORMS
   ========================================================================== */

.sd-card + .sd-card {
    margin-top: 20px;
}

form .sd-card:first-of-type {
    margin-top: 0;
}
/* ==========================================================================
   SCOOTERDISCOUNTER - ADDRESS EDIT EXTRA STYLES
   Toevoegen aan sd-theme.css (na sd-account-forms.css sectie)
   ========================================================================== */

/* ==========================================================================
   SELECT WRAPPER (voor country select)
   ========================================================================== */

.sd-select-wrapper select,
select.sd-form-select {
    width: 100%;
    height: 44px;
    padding: 10px 36px 10px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--sd-text);
    background: var(--sd-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sd-select-wrapper select:focus,
select.sd-form-select:focus {
    outline: none;
    border-color: var(--sd-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* ==========================================================================
   CHECKBOX GROUP (multiple checkboxes stacked)
   ========================================================================== */

.sd-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

/* ==========================================================================
   DEFAULT ADDRESS BADGE
   ========================================================================== */

.sd-default-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--sd-green-light);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--sd-green);
}

.sd-default-badge svg {
    flex-shrink: 0;
}

/* ==========================================================================
   FORM ROW RESPONSIVE IMPROVEMENTS
   ========================================================================== */

@media (max-width: 599px) {
    .sd-form-row--2col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ADDRESS TEXT STYLING
   ========================================================================== */

.sd-address-text br {
    content: '';
}

/* Verberg lege regels in adressen */
.sd-address-text:empty::before {
    content: '-';
    color: var(--sd-text-muted);
}
/* ==========================================================================
   SCOOTERDISCOUNTER - REVIEWS
   Toevoegen aan sd-theme.css
   ========================================================================== */

/* ==========================================================================
   RATING STARS
   ========================================================================== */
.sd-rating-stars {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
}

.sd-rating-stars__empty {
    color: #e0e0e0;
}

.sd-rating-stars__filled {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f59e0b;
}

/* Kleinere sterren voor lijsten */
.sd-rating-stars--sm {
    font-size: 14px;
    letter-spacing: 1px;
}

/* Grotere sterren voor product pagina */
.sd-rating-stars--lg {
    font-size: 20px;
    letter-spacing: 3px;
}

.sd-rating-stars {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}

.sd-rating-stars__empty {
    color: var(--sd-border);
    letter-spacing: 2px;
}

.sd-rating-stars__filled {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f59e0b;
    letter-spacing: 2px;
}

/* ==========================================================================
   REVIEWS LIST
   ========================================================================== */

.sd-reviews-list {
    /* Container */
}

.sd-review-item {
    padding: 20px;
    border-bottom: 1px solid var(--sd-border);
}

.sd-review-item:last-child {
    border-bottom: none;
}

.sd-review-item__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.sd-review-item__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--sd-text-muted);
}

.sd-review-item__date svg {
    flex-shrink: 0;
}

.sd-review-item__rating {
    /* Rating stars container */
}

.sd-review-item__product {
    margin-bottom: 8px;
}

.sd-review-item__product a {
    font-size: 16px;
    font-weight: 600;
    color: var(--sd-dark);
    text-decoration: none;
}

.sd-review-item__product a:hover {
    color: var(--sd-orange);
}

.sd-review-item__text {
    font-size: 14px;
    color: var(--sd-text);
    line-height: 1.6;
    margin-bottom: 12px;
    
    /* Truncate long reviews */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sd-review-item__actions {
    /* Action links */
}

/* ==========================================================================
   REVIEW DETAIL PAGE
   ========================================================================== */

.sd-review-detail .sd-card + .sd-card {
    margin-top: 20px;
}

/* Product info in review detail */
.sd-review-product {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 479px) {
    .sd-review-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.sd-review-product__image {
    flex-shrink: 0;
}

.sd-review-product__image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    background: var(--sd-white);
}

.sd-review-product__info {
    flex: 1;
    min-width: 0;
}

.sd-review-product__name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.sd-review-product__name a {
    color: var(--sd-dark);
    text-decoration: none;
}

.sd-review-product__name a:hover {
    color: var(--sd-orange);
}

.sd-review-product__average {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.sd-review-product__average-label {
    font-size: 13px;
    color: var(--sd-text-muted);
}

/* Review meta info */
.sd-review-meta {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sd-border);
}

.sd-review-meta__date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sd-text-muted);
}

/* Ratings per criterium */
.sd-review-ratings {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sd-border);
}

.sd-review-ratings__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0 0 12px 0;
}

.sd-review-ratings__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sd-review-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-review-rating-row__label {
    font-size: 13px;
    color: var(--sd-text);
    min-width: 100px;
}

/* Review text */
.sd-review-text__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0 0 12px 0;
}

.sd-review-text__content {
    font-size: 14px;
    color: var(--sd-text);
    line-height: 1.7;
    background: var(--sd-bg);
    padding: 16px;
    border-radius: 6px;
}

/* ==========================================================================
   REVIEW RECENT (for dashboard)
   ========================================================================== */

.sd-recent-reviews {
    /* Container */
}

.sd-recent-review {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sd-border);
}

.sd-recent-review:first-child {
    padding-top: 0;
}

.sd-recent-review:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sd-recent-review__number {
    width: 24px;
    height: 24px;
    background: var(--sd-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--sd-text-muted);
    flex-shrink: 0;
}

.sd-recent-review__content {
    flex: 1;
    min-width: 0;
}

.sd-recent-review__product {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.sd-recent-review__product a {
    color: var(--sd-dark);
    text-decoration: none;
}

.sd-recent-review__product a:hover {
    color: var(--sd-orange);
}

.sd-recent-review__rating {
    /* Rating stars */
}

/* ==========================================================================
   OVERRIDE DEFAULT MAGENTO RATING BOX (fallback)
   ========================================================================== */

.sd-card .rating-box {
    display: inline-block;
    width: 80px;
    height: 16px;
    background: var(--sd-border);
    position: relative;
    vertical-align: middle;
}

.sd-card .rating-box .rating {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #f59e0b;
}
/* ==========================================================================
   RATING SUMMARY (product pagina's, categorie lijsten)
   ========================================================================== */

.sd-ratings {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.sd-rating-links {
    margin: 0;
    font-size: 13px;
}

.sd-rating-links a {
    color: var(--sd-text-muted);
    text-decoration: none;
}

.sd-rating-links a:hover {
    color: var(--sd-orange);
    text-decoration: underline;
}

.sd-rating-separator {
    color: var(--sd-border);
    margin: 0 4px;
}

.sd-no-rating {
    margin: 0;
    font-size: 13px;
}

.sd-no-rating a {
    color: var(--sd-orange);
    text-decoration: none;
}

.sd-no-rating a:hover {
    text-decoration: underline;
}
/* ==========================================================================
   SCOOTERDISCOUNTER - NEWSLETTER
   ========================================================================== */

/* ==========================================================================
   TOGGLE SWITCH
   ========================================================================== */

.sd-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.sd-toggle__input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sd-toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--sd-border);
    transition: 0.3s;
    border-radius: 28px;
}

.sd-toggle__slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.sd-toggle__input:checked + .sd-toggle__slider {
    background-color: var(--sd-green);
}

.sd-toggle__input:checked + .sd-toggle__slider::before {
    transform: translateX(24px);
}

.sd-toggle__input:focus + .sd-toggle__slider {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

/* ==========================================================================
   NEWSLETTER OPTION ROW
   ========================================================================== */

.sd-newsletter-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sd-newsletter-option__content {
    flex: 1;
}

.sd-newsletter-option__title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--sd-dark);
    margin-bottom: 4px;
    cursor: pointer;
}

.sd-newsletter-option__description {
    font-size: 13px;
    color: var(--sd-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   NEWSLETTER STATUS INDICATOR
   ========================================================================== */

.sd-newsletter-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--sd-radius);
    font-size: 14px;
    margin-top: 20px;
}

.sd-newsletter-status svg {
    flex-shrink: 0;
}

.sd-newsletter-status--subscribed {
    background: var(--sd-green-light);
    color: var(--sd-green);
}

.sd-newsletter-status--unsubscribed {
    background: var(--sd-bg);
    color: var(--sd-text-muted);
}
/* ==========================================================================
   SCOOTERDISCOUNTER - STOCK NOTIFICATIONS
   ========================================================================== */

/* ==========================================================================
   STOCK TABLE
   ========================================================================== */

.sd-stock-table {
    width: 100%;
    border-collapse: collapse;
}

.sd-stock-table thead {
    background: var(--sd-bg);
}

.sd-stock-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--sd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--sd-border);
}

.sd-stock-table td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--sd-border);
}

.sd-stock-table tbody tr:last-child td {
    border-bottom: none;
}

.sd-stock-table tbody tr:hover {
    background: var(--sd-bg);
}

/* Column widths */
.sd-stock-table .col-image {
    width: 80px;
}

.sd-stock-table .col-date {
    width: 140px;
}

.sd-stock-table .col-action {
    width: 120px;
    text-align: right;
}

.sd-stock-table th.col-action {
    text-align: right;
}

/* ==========================================================================
   STOCK ITEM ELEMENTS
   ========================================================================== */

.sd-stock-item__image {
    display: block;
}

.sd-stock-item__image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    background: var(--sd-white);
}

.sd-stock-item__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--sd-dark);
    text-decoration: none;
    display: block;
}

.sd-stock-item__name:hover {
    color: var(--sd-orange);
}

.sd-stock-item__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--sd-text-muted);
}

.sd-stock-item__date svg {
    flex-shrink: 0;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {
    .sd-stock-table thead {
        display: none;
    }
    
    .sd-stock-table,
    .sd-stock-table tbody,
    .sd-stock-table tr,
    .sd-stock-table td {
        display: block;
    }
    
    .sd-stock-table tr {
        padding: 16px;
        border-bottom: 1px solid var(--sd-border);
    }
    
    .sd-stock-table tr:last-child {
        border-bottom: none;
    }
    
    .sd-stock-table td {
        padding: 8px 0;
        border-bottom: none;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .sd-stock-table td::before {
        content: attr(data-label);
        font-size: 12px;
        font-weight: 600;
        color: var(--sd-text-muted);
        text-transform: uppercase;
        min-width: 100px;
        flex-shrink: 0;
    }
    
    .sd-stock-table .col-image::before {
        display: none;
    }
    
    .sd-stock-table .col-image {
        justify-content: center;
    }
    
    .sd-stock-table .col-action {
        width: 100%;
        text-align: left;
        padding-top: 12px;
        margin-top: 4px;
        border-top: 1px solid var(--sd-border);
    }
    
    .sd-stock-table .col-action::before {
        display: none;
    }
}
/* ==========================================================================
   SCOOTERDISCOUNTER - LOGOUT PAGE
   ========================================================================== */
/* Centered auth container (voor logout) */
.sd-auth-container--centered {
    max-width: 480px;
    margin: 40px auto;
    text-align: center;
}

/* Success icon */
.sd-auth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 24px;
}

.sd-auth-icon--success {
    background: var(--sd-green-light);
    color: var(--sd-green);
}

.sd-auth-icon--success svg {
    width: 48px;
    height: 48px;
}

/* Auth actions stacked */
.sd-auth-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.sd-auth-actions .sd-btn {
    justify-content: center;
}

/**
 * ==========================================================================
 * PRODUCT PAGE STYLES - v2.2.2
 * 
 * FIXES v2.2.2:
 * - Witruimte tussen breadcrumbs en product (16px)
 * - Mobiel: qty + cart NAAST elkaar (niet boven)
 * - Mobiel: tekst 'in winkelwagen' ZICHTBAAR
 * - Mobiel sticky bar: compact en werkend
 * 
 * Voeg toe ONDERAAN sd-theme.css
 * ==========================================================================
 */

/* ===== Product Page - Witruimte boven (maar niet te veel) ===== */
.catalog-product-view .sd-main-wrapper {
    padding-top: 16px;
}

/* ===== Product Page Container ===== */
.sd-product-page {
    /* Geen extra padding nodig */
}

/* ===== Two Column Layout ===== */
.sd-product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .sd-product-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== Gallery - Reset all margins ===== */
.sd-product-gallery {
    /* Geen extra styling */
}

/* Reset Magento gallery margins/padding */
.sd-product-gallery .product-image,
.sd-product-gallery .product-img-box,
.sd-product-gallery .product-image-gallery,
.sd-product-gallery .MagicToolboxContainer {
    margin: 0 !important;
    padding: 0 !important;
}

.sd-product-gallery .product-image img,
.sd-product-gallery .MagicZoom,
.sd-product-gallery .cloud-zoom,
.sd-product-gallery > img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* ===== Product Info Column ===== */
.sd-product-info {
    display: flex;
    flex-direction: column;
}

/* Title */
.sd-product-page .sd-product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sd-dark);
    line-height: 1.25;
    margin: 0 0 8px 0;
}

@media (max-width: 767px) {
    .sd-product-page .sd-product-title {
        font-size: 20px;
    }
}

/* ===== Reviews ===== */
.sd-product-page .sd-product-rating {
    margin-bottom: 4px;
}

.sd-product-page .sd-review-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sd-product-page .sd-stars-display {
    display: flex;
    gap: 1px;
}

.sd-product-page .sd-star-full,
.sd-product-page .sd-star-half {
    color: #f5a623;
    font-size: 15px;
}

.sd-product-page .sd-star-empty {
    color: #d1d5db;
    font-size: 15px;
}

.sd-product-page .sd-review-links {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.sd-product-page .sd-review-count,
.sd-product-page .sd-add-review,
.sd-product-page .sd-first-review {
    color: var(--sd-green);
    text-decoration: none;
}

.sd-product-page .sd-review-count:hover,
.sd-product-page .sd-add-review:hover,
.sd-product-page .sd-first-review:hover {
    text-decoration: underline;
}

.sd-product-page .sd-separator {
    color: var(--sd-text-muted);
}

/* ===== Brand (orange, under reviews) ===== */
.sd-product-page .sd-product-brand {
    font-size: 13px;
    color: var(--sd-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.sd-product-page .sd-product-brand:hover {
    text-decoration: underline;
}

/* ===== Short Description ===== */
.sd-product-page .sd-product-short-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--sd-text);
    margin-bottom: 12px;
}

.sd-product-page .sd-product-short-desc ul {
    margin: 6px 0;
    padding-left: 18px;
}

.sd-product-page .sd-product-short-desc li {
    margin: 3px 0;
}

/* ==========================================================================
   PRICE + STOCK ROW - VOLLEDIG BLOK MET BORDERS RONDOM
   ========================================================================== */
.sd-product-page .sd-price-stock-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 16px;
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    background: var(--sd-bg);
    margin-bottom: 16px;
}

/* Price Box - Left side */
.sd-product-page .sd-price-box {
    flex-shrink: 0;
}

.sd-product-page .sd-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.sd-product-page .sd-price-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--sd-dark);
    line-height: 1;
}

.sd-product-page .sd-price-old {
    font-size: 16px;
    color: var(--sd-text-muted);
    text-decoration: line-through;
}

.sd-product-page .sd-price-save {
    background: var(--sd-red);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.sd-product-page .sd-price-vat {
    display: block;
    font-size: 12px;
    color: var(--sd-text-muted);
    margin-top: 4px;
}

/* Stock Info - Right side */
.sd-product-page .sd-stock-info {
    text-align: right;
    flex-shrink: 0;
}

.sd-product-page .sd-stock-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.sd-product-page .sd-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sd-product-page .sd-stock-row.sd-in-stock .sd-stock-dot {
    background: var(--sd-green);
}

.sd-product-page .sd-stock-row.sd-in-stock .sd-stock-text {
    color: var(--sd-green);
    font-size: 15px;
    font-weight: 600;
}

.sd-product-page .sd-stock-row.sd-out-of-stock .sd-stock-dot {
    background: var(--sd-red);
}

.sd-product-page .sd-stock-row.sd-out-of-stock .sd-stock-text {
    color: var(--sd-red);
    font-size: 15px;
    font-weight: 600;
}

.sd-product-page .sd-delivery-row {
    font-size: 13px;
    color: var(--sd-text-muted);
    margin-top: 2px;
    text-align: right;
}

@media (max-width: 767px) {
    .sd-product-page .sd-price-current {
        font-size: 24px;
    }
    
    .sd-product-page .sd-price-stock-row {
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }
    
    .sd-product-page .sd-stock-info {
        text-align: left;
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid var(--sd-border);
    }
    
    .sd-product-page .sd-stock-row {
        justify-content: flex-start;
    }
    
    .sd-product-page .sd-delivery-row {
        text-align: left;
    }
}

/* ==========================================================================
   ADD TO CART SECTION - DESKTOP
   ========================================================================== */
.sd-product-page .sd-add-to-cart {
    margin-bottom: 12px;
}

.sd-product-page .sd-addtocart-box {
    display: flex;
    flex-direction: row;  /* ALTIJD horizontaal */
    flex-wrap: nowrap;    /* NOOIT wrappen */
    gap: 10px;
    align-items: stretch;
}

/* Qty Control */
.sd-product-page .sd-qty-control {
    display: flex;
    align-items: center;
    border: 2px solid var(--sd-border);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
}

.sd-product-page .sd-qty-btn {
    width: 40px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: var(--sd-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    font-family: inherit;
}

.sd-product-page .sd-qty-btn:hover {
    background: var(--sd-bg);
}

.sd-product-page .sd-qty-input {
    width: 44px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--sd-border);
    border-right: 1px solid var(--sd-border);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--sd-dark);
    background: white;
    -moz-appearance: textfield;
    font-family: inherit;
}

.sd-product-page .sd-qty-input::-webkit-outer-spin-button,
.sd-product-page .sd-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Cart Button - Desktop */
.sd-product-page .sd-btn-cart {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--sd-green);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
    font-family: inherit;
}

.sd-product-page .sd-btn-cart:hover {
    background: var(--sd-green-hover);
}

.sd-product-page .sd-btn-cart:active {
    transform: scale(0.98);
}

.sd-product-page .sd-cart-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.sd-product-page .sd-cart-text {
    /* Tekst altijd zichtbaar */
}

/* Wishlist Button (icon only) */
.sd-product-page .sd-btn-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-height: 48px;
    background: white;
    border: 2px solid var(--sd-border);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    align-self: stretch;
    transition: border-color 0.2s, background 0.2s;
}

.sd-product-page .sd-btn-wishlist:hover {
    border-color: var(--sd-orange);
    background: #fff7ed;
}

.sd-product-page .sd-wishlist-icon {
    font-size: 20px;
    color: #6b7280;
    transition: color 0.2s;
}

.sd-product-page .sd-btn-wishlist:hover .sd-wishlist-icon {
    color: var(--sd-orange);
}

/* ==========================================================================
   ADD TO CART - MOBILE: Compact maar HORIZONTAAL
   ========================================================================== */
@media (max-width: 767px) {
    .sd-product-page .sd-addtocart-box {
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    /* Qty control compact */
    .sd-product-page .sd-qty-control {
        flex-shrink: 0;
    }
    
    /* Qty knoppen kleiner op mobiel */
    .sd-product-page .sd-qty-btn {
        width: 36px;
        height: 44px;
        font-size: 16px;
    }
    
    .sd-product-page .sd-qty-input {
        width: 40px;
        height: 44px;
        font-size: 14px;
    }
    
    /* Cart button vult beschikbare ruimte */
    .sd-product-page .sd-btn-cart {
        flex: 1 1 auto;
        min-width: 0;
        padding: 12px 14px;
        font-size: 14px;
        gap: 6px;
    }
    
    /* Wishlist button */
    .sd-product-page .sd-btn-wishlist {
        flex-shrink: 0;
        width: 48px;
        height: auto;
        min-height: 48px;
        align-self: stretch;
    }
    
    .sd-product-page .sd-cart-icon {
        font-size: 16px;
    }
    
    /* TEKST BLIJFT ZICHTBAAR */
    .sd-product-page .sd-cart-text {
        display: inline !important;
    }
}

/* Extra small screens */
@media (max-width: 374px) {
    .sd-product-page .sd-qty-btn {
        width: 32px;
        height: 40px;
        font-size: 14px;
    }
    
    .sd-product-page .sd-qty-input {
        width: 34px;
        height: 40px;
        font-size: 13px;
    }
    
    .sd-product-page .sd-btn-cart {
        padding: 10px 10px;
        font-size: 13px;
    }
    
    .sd-product-page .sd-btn-wishlist {
        width: 40px;
        height: 40px;
    }
}

/* ===== USPs with ORANGE checkmarks ===== */
.sd-product-page .sd-product-usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--sd-border);
    align-items: start;
}

.sd-product-page .sd-usp {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    color: var(--sd-text);
}

.sd-product-page .sd-usp-check {
    color: var(--sd-orange);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sd-product-page .sd-usp-highlight {
    color: var(--sd-green);
    font-weight: 600;
}

@media (max-width: 480px) {
    .sd-product-page .sd-product-usps {
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
    }
    
    .sd-product-page .sd-usp {
        font-size: 12px;
    }
}

/* ===== Secondary Actions ===== */
.sd-product-page .sd-secondary-actions {
    margin-top: 8px;
}

.sd-product-page .sd-addto-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    border: none;
    background: transparent;
    color: var(--sd-text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.15s;
    font-family: inherit;
}

.sd-product-page .sd-addto-btn:hover {
    color: var(--sd-dark);
}

/* ===== Configurable Validation ===== */
.sd-product-page .validation-failed {
    border-color: var(--sd-red) !important;
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

.sd-product-page .sd-option-error {
    color: var(--sd-red);
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

/* ==========================================================================
   STICKY BAR - DESKTOP
   ========================================================================== */
.sd-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--sd-border);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sd-sticky-bar.visible {
    transform: translateY(0);
}

.sd-sticky-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
}

.sd-sticky-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sd-sticky-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.sd-sticky-img img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--sd-border);
}

.sd-sticky-details {
    min-width: 0;
}

.sd-sticky-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--sd-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.sd-sticky-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--sd-dark);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.sd-sticky-old {
    font-size: 12px;
    color: var(--sd-text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.sd-sticky-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sd-sticky-qty {
    display: flex;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    overflow: hidden;
}

.sd-sticky-qty .sd-qty-btn {
    width: 32px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: var(--sd-text);
    font-family: inherit;
}

.sd-sticky-qty .sd-qty-btn:hover {
    background: var(--sd-bg);
}

.sd-sticky-qty .sd-qty-input {
    width: 36px;
    height: 36px;
    border: none;
    border-left: 1px solid var(--sd-border);
    border-right: 1px solid var(--sd-border);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    background: white;
    font-family: inherit;
}

.sd-sticky-cart-btn {
    background: var(--sd-green);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    font-family: inherit;
}

.sd-sticky-cart-btn:hover {
    background: var(--sd-green-hover);
}

.sd-sticky-cart-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Sticky USPs - alleen op mobiel zichtbaar */
.sd-sticky-usps {
    display: none;
}

/* ==========================================================================
   STICKY BAR - MOBILE
   ========================================================================== */
@media (max-width: 767px) {
    /* Container: column zodat USPs eronder komen */
    .sd-sticky-bar .sd-sticky-container {
        display: flex;
        flex-direction: column;
        padding: 10px 16px;
    }
    
    /* Main row: prijs, qty, button naast elkaar */
    .sd-sticky-bar .sd-sticky-main {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    /* Verberg afbeelding */
    .sd-sticky-bar .sd-sticky-img {
        display: none;
    }
    
    /* Verberg naam */
    .sd-sticky-bar .sd-sticky-name {
        display: none;
    }
    
    /* Prijs - vaste breedte, niet groeien */
    .sd-sticky-bar .sd-sticky-info {
        flex: none;
    }
    
    .sd-sticky-bar .sd-sticky-price {
        font-size: 16px;
        font-weight: 700;
        white-space: nowrap;
    }
    
    .sd-sticky-bar .sd-sticky-old {
        display: none;
    }
    
    /* Actions */
    .sd-sticky-bar .sd-sticky-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Qty compact */
    .sd-sticky-bar .sd-sticky-qty {
        display: flex;
    }
    
    .sd-sticky-bar .sd-sticky-qty .sd-qty-btn {
        width: 30px;
        height: 34px;
    }
    
    .sd-sticky-bar .sd-sticky-qty .sd-qty-input {
        width: 32px;
        height: 34px;
    }
    
    /* Button breder */
    .sd-sticky-bar .sd-sticky-cart-btn {
        padding: 9px 20px;
        font-size: 13px;
    }
    
    /* USPs eronder, gecentreerd */
    .sd-sticky-bar .sd-sticky-usps {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 6px;
        padding-top: 6px;
        border-top: 1px solid var(--sd-border);
        font-size: 10px;
    }
}

/* Extra small screens */
@media (max-width: 374px) {
    .sd-sticky-bar .sd-sticky-price {
        font-size: 14px;
    }
    
    .sd-sticky-bar .sd-sticky-qty .sd-qty-btn {
        width: 26px;
        height: 30px;
    }
    
    .sd-sticky-bar .sd-sticky-qty .sd-qty-input {
        width: 28px;
        height: 30px;
    }
    
    .sd-sticky-bar .sd-sticky-cart-btn {
        padding: 7px 10px;
        font-size: 12px;
    }
}

/* ===== Tabs ===== */
.sd-product-tabs {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--sd-border);
}

.sd-tabs-nav {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--sd-border);
    margin-bottom: 20px;
}

.sd-tab-btn {
    padding: 12px 0;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--sd-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s;
    font-family: inherit;
}

.sd-tab-btn:hover {
    color: var(--sd-text);
}

.sd-tab-btn.active {
    color: var(--sd-green);
    border-bottom-color: var(--sd-green);
}

.sd-tab-pane {
    display: none;
}

.sd-tab-pane.active {
    display: block;
}

/* ===== Lightbox ===== */
.sd-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sd-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.sd-lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.sd-lightbox-close,
.sd-lightbox-prev,
.sd-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.2s;
}

.sd-lightbox-close:hover,
.sd-lightbox-prev:hover,
.sd-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sd-lightbox-close { top: 20px; right: 20px; }
.sd-lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.sd-lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.sd-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
}
/* ==========================================================================
   WISHLIST - Main Container
   ========================================================================== */

.sd-wishlist {
    min-height: 300px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================================================
   WISHLIST - Header
   ========================================================================== */

.sd-wishlist-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px 16px;
    max-width: 100%;
    box-sizing: border-box;
}

.sd-wishlist-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--sd-dark);
    margin: 0;
}

.sd-wishlist-title__icon {
    color: var(--sd-orange);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sd-wishlist-count {
    font-size: 14px;
    font-weight: 500;
    color: var(--sd-text-muted);
    background: var(--sd-bg);
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.sd-wishlist-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.sd-wishlist-actions .sd-btn {
    flex: 1;
    justify-content: center;
    padding: 12px 20px;
    white-space: nowrap;
}

/* ==========================================================================
   WISHLIST - Grid
   ========================================================================== */

.sd-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

/* ==========================================================================
   WISHLIST - Item Card
   ========================================================================== */

.sd-wishlist-item {
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    overflow: hidden;
    transition: all 0.2s ease;
}

.sd-wishlist-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--sd-text-muted);
}

/* Item Image */
.sd-wishlist-item__image {
    position: relative;
    aspect-ratio: 1;
    background: var(--sd-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.sd-wishlist-item__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sd-wishlist-item__image > a:not(.sd-wishlist-item__remove) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Remove Button */
.sd-wishlist-item__remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sd-white);
    border: 1px solid var(--sd-border);
    color: var(--sd-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    z-index: 10;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sd-wishlist-item__remove svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.sd-wishlist-item__remove:hover {
    background: var(--sd-red);
    border-color: var(--sd-red);
    color: var(--sd-white);
}

/* Badge */
.sd-wishlist-item__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.sd-wishlist-item__badge--sale {
    background: var(--sd-red);
    color: var(--sd-white);
}

.sd-wishlist-item__badge--new {
    background: var(--sd-green);
    color: var(--sd-white);
}

/* Item Body */
.sd-wishlist-item__body {
    padding: 16px;
}

.sd-wishlist-item__brand {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sd-text-muted);
    margin-bottom: 4px;
}

.sd-wishlist-item__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--sd-text);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.sd-wishlist-item__name a {
    color: inherit;
    text-decoration: none;
}

.sd-wishlist-item__name a:hover {
    color: var(--sd-orange);
}

.sd-wishlist-item__sku {
    font-size: 12px;
    color: var(--sd-text-muted);
    margin-bottom: 12px;
}

.sd-wishlist-item__comment {
    font-size: 13px;
    color: var(--sd-text-light);
    margin-bottom: 12px;
    font-style: italic;
}

/* Price */
.sd-wishlist-item__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.sd-wishlist-item__price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--sd-dark);
}

.sd-wishlist-item__price-old {
    font-size: 14px;
    color: var(--sd-text-muted);
    text-decoration: line-through;
}

/* Stock Status */
.sd-wishlist-item__stock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.sd-wishlist-item__stock--in {
    color: var(--sd-green);
}

.sd-wishlist-item__stock--out {
    color: var(--sd-red);
}

.sd-wishlist-item__stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

/* Item Footer */
.sd-wishlist-item__footer {
    display: flex;
    gap: 8px;
}

.sd-wishlist-item__footer--shared {
    flex-direction: column;
}

.sd-wishlist-item__qty {
    width: 60px;
    padding: 10px;
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    font-size: 14px;
    text-align: center;
    background: var(--sd-white);
}

.sd-wishlist-item__qty:focus {
    outline: none;
    border-color: var(--sd-orange);
}

.sd-wishlist-item__cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--sd-green);
    color: var(--sd-white);
    border: none;
    border-radius: var(--sd-radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}

.sd-wishlist-item__cart-btn:hover {
    background: var(--sd-green-hover);
}

.sd-wishlist-item__cart-btn:disabled {
    background: var(--sd-border);
    color: var(--sd-text-muted);
    cursor: not-allowed;
}

/* ==========================================================================
   WISHLIST - Empty State
   ========================================================================== */

.sd-wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--sd-bg);
    border-radius: var(--sd-radius);
}

.sd-wishlist-empty__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--sd-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-text-muted);
}

.sd-wishlist-empty__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 0 0 8px 0;
}

.sd-wishlist-empty__text {
    color: var(--sd-text-light);
    margin: 0 0 24px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   WISHLIST - Footer
   ========================================================================== */

.sd-wishlist-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--sd-border);
    flex-wrap: wrap;
    gap: 16px;
}

.sd-wishlist-footer__left,
.sd-wishlist-footer__right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   WISHLIST - Sharing Form
   ========================================================================== */

.sd-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--sd-orange-light);
    border: 1px solid var(--sd-orange);
    border-radius: var(--sd-radius);
    margin-bottom: 24px;
    color: var(--sd-text);
}

.sd-info-box svg {
    flex-shrink: 0;
    color: var(--sd-orange);
    margin-top: 2px;
}

.sd-info-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.sd-form__section {
    margin-bottom: 24px;
}

.sd-form__group {
    margin-bottom: 20px;
}

.sd-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-text);
    margin-bottom: 8px;
}

.sd-form__label.required::after {
    content: ' *';
    color: var(--sd-red);
}

.sd-form__hint {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--sd-text-muted);
    margin-top: 2px;
}

.sd-form__optional {
    font-weight: 400;
    color: var(--sd-text-muted);
}

.sd-form__textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    font-size: 14px;
    font-family: inherit;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    background: var(--sd-white);
}

.sd-form__textarea:focus {
    outline: none;
    border-color: var(--sd-orange);
}

.sd-form__note {
    font-size: 12px;
    color: var(--sd-text-muted);
    margin: 8px 0 0 0;
}

.sd-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--sd-border);
}

/* Validation errors */
.sd-form__textarea.validation-failed {
    border-color: var(--sd-red);
}

.validation-advice {
    color: var(--sd-red);
    font-size: 12px;
    margin-top: 4px;
}

/* ==========================================================================
   WISHLIST - Sidebar Widget
   ========================================================================== */

.sd-sidebar-wishlist__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sd-sidebar-wishlist__item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sd-border);
}

.sd-sidebar-wishlist__item:last-child {
    border-bottom: none;
}

.sd-sidebar-wishlist__image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--sd-bg);
    border-radius: 4px;
    overflow: hidden;
}

.sd-sidebar-wishlist__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sd-sidebar-wishlist__info {
    flex: 1;
    min-width: 0;
}

.sd-sidebar-wishlist__name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--sd-text);
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.3;
}

.sd-sidebar-wishlist__name:hover {
    color: var(--sd-orange);
}

.sd-sidebar-wishlist__price {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    margin-bottom: 8px;
}

.sd-sidebar-wishlist__actions {
    display: flex;
    gap: 8px;
}

.sd-sidebar-wishlist__cart,
.sd-sidebar-wishlist__remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sd-bg);
    border-radius: 4px;
    color: var(--sd-text-light);
    text-decoration: none;
    transition: all 0.15s ease;
}

.sd-sidebar-wishlist__cart:hover {
    background: var(--sd-green);
    color: var(--sd-white);
}

.sd-sidebar-wishlist__remove:hover {
    background: var(--sd-red);
    color: var(--sd-white);
}

/* ==========================================================================
   WISHLIST - Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .sd-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sd-wishlist-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sd-wishlist-title {
        font-size: 20px;
    }
    
    .sd-wishlist-grid {
        grid-template-columns: 1fr;
    }
    
    .sd-wishlist-footer {
        flex-direction: column;
    }
    
    .sd-wishlist-footer__left,
    .sd-wishlist-footer__right {
        width: 100%;
        justify-content: center;
    }
    
    .sd-form__actions {
        flex-direction: column;
    }
    
    .sd-form__actions .sd-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   WISHLIST - Messages Styling
   ========================================================================== */

.sd-wishlist .messages,
.sd-wishlist .messages ul,
.sd-wishlist .messages li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.sd-wishlist .messages {
    margin-bottom: 20px;
}

.sd-wishlist .messages li li,
.sd-wishlist .success-msg li,
.sd-wishlist .error-msg li,
.sd-wishlist .notice-msg li {
    padding: 12px 16px;
    border-radius: var(--sd-radius);
    font-size: 14px;
    margin-bottom: 8px;
    list-style: none !important;
}

.sd-wishlist .success-msg li {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.sd-wishlist .error-msg li {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.sd-wishlist .notice-msg li {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.sd-wishlist .messages a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* ==========================================================================
   WISHLIST - Header Actions (Delen + Alles toevoegen)
   ========================================================================== */

/* Buttons styling is now in main .sd-wishlist-actions rule */

/* ==========================================================================
   HOMEPAGE - Hero Section with Slider + Side Banners
   ========================================================================== */

/* Homepage heeft geen breadcrumbs, dus minder ruimte nodig bovenaan */
.cms-index-index .sd-main-wrapper {
    padding-top: 0;
}

.sd-hero {
    padding: 12px 0 0;
}

.sd-hero__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sd-hero__grid--full {
    grid-template-columns: 1fr;
}

/* Main Slider */
.sd-hero__slider {
    position: relative;
    border-radius: var(--sd-radius);
    overflow: visible; /* Allow dots to show outside */
    background: var(--sd-bg);
    aspect-ratio: 21/9;
}

.sd-hero__slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--sd-radius);
    overflow: hidden;
}

.sd-hero__slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.sd-hero__slider-slide {
    min-width: 100%;
    height: 100%;
}

.sd-hero__slider-slide img,
.sd-hero__slider-slide > a,
.sd-hero__slider-slide > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sd-hero__slider-slide > div,
.sd-hero__slider-slide .sd-slide {
    height: 100%;
}

/* Slider Navigation Arrows */
.sd-hero__slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
    z-index: 10;
}

.sd-hero__slider-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.sd-hero__slider-nav--prev { left: 16px; }
.sd-hero__slider-nav--next { right: 16px; }

.sd-hero__slider-nav svg {
    width: 20px;
    height: 20px;
    stroke: #333;
}

/* Slider Dots - ONDER de slider */
.sd-hero__slider-dots {
    position: absolute;
    bottom: -24px; /* Onder de slider */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.sd-hero__slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sd-border);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.sd-hero__slider-dot:hover {
    background: var(--sd-text-light);
}

.sd-hero__slider-dot.is-active {
    background: var(--sd-orange);
    width: 28px;
    border-radius: 5px;
}

/* Side Banners */
.sd-hero__side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sd-hero__banner {
    flex: 1;
    border-radius: var(--sd-radius);
    overflow: hidden;
    position: relative;
    display: block;
    background: var(--sd-bg);
    min-height: 0;
}

.sd-hero__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.sd-hero__banner:hover img {
    transform: scale(1.03);
}

/* Slide Content Overlay (voor CMS blocks met tekst) */
.sd-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.sd-slide__content {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
    max-width: 50%;
    color: #fff;
}

.sd-slide__badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sd-slide__title {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
}

.sd-slide__text {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 16px;
}

.sd-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--sd-orange);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sd-slide__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.sd-slide--image-only {
    display: block;
}

.sd-slide--image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner Content Overlay */
.sd-banner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #fff;
    text-decoration: none;
    background-size: cover;
    background-position: center;
}

.sd-banner--blue { background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%); }
.sd-banner--green { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
.sd-banner--orange { background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%); }

.sd-banner__content {
    position: relative;
    z-index: 2;
}

.sd-banner__tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sd-banner__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
}

.sd-banner__link {
    font-size: 12px;
    opacity: 0.9;
}

.sd-banner__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    opacity: 0.2;
}

/* ==========================================================================
   HOMEPAGE - Quick Categories
   ========================================================================== */

.sd-quick-cats {
    padding: 40px 0 24px; /* Extra padding-top voor dots ruimte */
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.sd-quick-cats__grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.sd-quick-cats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    background: #fff;
    border-radius: var(--sd-radius);
    text-decoration: none;
    color: var(--sd-text);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.sd-quick-cats__item:hover {
    border-color: var(--sd-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.sd-quick-cats__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-quick-cats__icon svg {
    width: 40px;
    height: 40px;
}

.sd-quick-cats__name {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--sd-text);
}

/* ==========================================================================
   HOMEPAGE - Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .sd-hero__grid {
        grid-template-columns: 1fr;
    }
    
    .sd-hero__slider {
        aspect-ratio: 21/9;
    }
    
    .sd-hero__side {
        flex-direction: row;
    }
    
    .sd-hero__banner {
        aspect-ratio: 2/1;
    }
    
    .sd-quick-cats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .sd-hero__grid {
        padding: 0 12px;
        gap: 12px;
    }
    
    .sd-hero__slider {
        border-radius: 8px;
    }
    
    .sd-hero__slider-inner {
        border-radius: 8px;
    }
    
    .sd-hero__slider-nav {
        width: 32px;
        height: 32px;
    }
    
    .sd-hero__slider-nav--prev { left: 8px; }
    .sd-hero__slider-nav--next { right: 8px; }
    
    .sd-hero__slider-dots {
        bottom: -20px;
    }
    
    .sd-hero__side {
        flex-direction: column;
    }
    
    .sd-hero__banner {
        aspect-ratio: 21/9;
        border-radius: 8px;
    }
    
    .sd-quick-cats {
        padding: 32px 12px 16px;
    }
    
    .sd-quick-cats__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .sd-quick-cats__item {
        padding: 12px 4px;
        border-radius: 8px;
    }
    
    .sd-quick-cats__icon {
        width: 36px;
        height: 36px;
    }
    
    .sd-quick-cats__icon svg {
        width: 32px;
        height: 32px;
    }
    
    .sd-quick-cats__name {
        font-size: 10px;
    }
    
    .sd-slide__content {
        padding: 20px;
        max-width: 70%;
    }
}

/* ==========================================================================
   CATEGORY DESCRIPTION (SEO content)
   ========================================================================== */

.sd-category-description {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sd-border);
}

.sd-category-description-content {
    max-width: 900px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
}

.sd-category-description-content h2 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--sd-dark);
    margin: 2rem 0 1rem 0;
}

.sd-category-description-content h2:first-child {
    margin-top: 0;
}

.sd-category-description-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sd-text);
    margin: 1.5rem 0 0.75rem 0;
}

.sd-category-description-content p {
    margin: 0 0 1rem 0;
}

.sd-category-description-content ul,
.sd-category-description-content ol {
    margin: 0 0 1rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.sd-category-description-content li {
    margin-bottom: 0.5rem;
}

.sd-category-description-content a {
    color: var(--sd-orange);
    text-decoration: none;
}

.sd-category-description-content a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .sd-category-description {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .sd-category-description-content {
        font-size: 0.875rem;
    }
    
    .sd-category-description-content h2 {
        font-size: 1.25rem;
    }
    
    .sd-category-description-content h3 {
        font-size: 1rem;
    }
}
