/**
 * WZT B2B Shop - Style publiczne
 * Zgodne z designem strony Wyjdziesz z Torbami
 */

/* ==========================================================================
   CSS Variables (domyślne, nadpisywane przez PHP)
   ========================================================================== */
:root {
    /* Kolory */
    --wzt-primary: #E63946;
    --wzt-primary-hover: #c62833;
    --wzt-headings: #E63946;
    --wzt-secondary: #1a1a1a;
    --wzt-dark: #0d0d0d;
    --wzt-light: #2d2d2d;
    --wzt-text-primary: #ffffff;
    --wzt-text-secondary: #d0d0d0;
    --wzt-text-muted: #999999;
    --wzt-border: #3d3d3d;
    --wzt-success: #28a745;
    --wzt-warning: #ffc107;
    --wzt-error: #dc3545;
    
    /* Typografia */
    --wzt-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --wzt-font-heading: 'Montserrat', var(--wzt-font-primary);
    
    /* Spacing */
    --wzt-spacing-xs: 0.5rem;
    --wzt-spacing-sm: 1rem;
    --wzt-spacing-md: 1.5rem;
    --wzt-spacing-lg: 2rem;
    --wzt-spacing-xl: 3rem;
    
    /* Border radius */
    --wzt-radius-sm: 4px;
    --wzt-radius-md: 8px;
    --wzt-radius-lg: 12px;
    --wzt-radius-xl: 16px;
    
    /* Shadows */
    --wzt-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --wzt-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --wzt-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    
    /* Transitions */
    --wzt-transition-fast: 0.15s ease;
    --wzt-transition-normal: 0.25s ease;
    --wzt-transition-slow: 0.4s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
.wzt-products-wrapper,
.wzt-product-single,
.wzt-product,
.wzt-cart,
.wzt-checkout,
.wzt-account,
.wzt-calculator {
    font-family: var(--wzt-font-primary);
    color: var(--wzt-text-primary);
    line-height: 1.6;
}

/* Nagłówki */
.wzt-product h1,
.wzt-product h2,
.wzt-product h3,
.wzt-product strong,
.wzt-calculator h1,
.wzt-calculator h2,
.wzt-calculator h3,
.wzt-calculator strong,
.wzt-product__title,
.wzt-product__pricing-table h2,
.wzt-product__description h2,
.wzt-product__specs h2,
.wzt-product__related h2,
.wzt-calculator__label,
.wzt-pricing-card__qty {
    color: var(--wzt-headings);
}

/* Wymuszone kolory dla strong w opisach */
.wzt-product strong,
.wzt-calculator strong,
.wzt-product__feature-text strong {
    color: var(--wzt-headings);
    font-weight: 600;
}

/* ==========================================================================
   Grid System
   ========================================================================== */
.wzt-grid {
    display: grid;
    gap: var(--wzt-spacing-md);
}

.wzt-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wzt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wzt-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1200px) {
    .wzt-grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 968px) {
    .wzt-grid--3,
    .wzt-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .wzt-grid--2,
    .wzt-grid--3,
    .wzt-grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.wzt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--wzt-font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--wzt-radius-md);
    cursor: pointer;
    transition: all var(--wzt-transition-fast);
}

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

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

.wzt-btn--secondary {
    background: var(--wzt-light);
    color: var(--wzt-text-primary);
    border: 1px solid var(--wzt-border);
}

.wzt-btn--secondary:hover {
    background: var(--wzt-border);
}

.wzt-btn--ghost {
    background: transparent;
    color: var(--wzt-text-secondary);
    border: 1px solid var(--wzt-border);
}

.wzt-btn--ghost:hover {
    color: var(--wzt-text-primary);
    border-color: var(--wzt-text-secondary);
}

.wzt-btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.wzt-btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.wzt-btn--block {
    width: 100%;
}

.wzt-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ==========================================================================
   Product Card
   ========================================================================== */
.wzt-product-card {
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
    overflow: hidden;
    transition: transform var(--wzt-transition-normal), box-shadow var(--wzt-transition-normal);
}

.wzt-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wzt-shadow-lg);
}

.wzt-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wzt-product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--wzt-light);
}

.wzt-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--wzt-transition-slow);
}

.wzt-product-card:hover .wzt-product-card__image img {
    transform: scale(1.05);
}

.wzt-product-card__badge {
    position: absolute;
    top: var(--wzt-spacing-sm);
    left: var(--wzt-spacing-sm);
    padding: 0.25rem 0.75rem;
    background: var(--wzt-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--wzt-radius-sm);
}

.wzt-product-card__content {
    padding: var(--wzt-spacing-md);
}

.wzt-product-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wzt-text-primary);
}

.wzt-product-card__description {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-product-card__pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wzt-product-card__price {
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-product-card__price strong {
    font-size: 1.25rem;
    color: var(--wzt-primary);
}

.wzt-product-card__min-qty {
    font-size: 0.75rem;
    color: var(--wzt-text-secondary);
}

.wzt-product-card__actions {
    padding: 0 var(--wzt-spacing-md) var(--wzt-spacing-md);
}

/* ==========================================================================
   Product Single
   ========================================================================== */
.wzt-product-single__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wzt-spacing-xl);
}

@media (max-width: 968px) {
    .wzt-product-single__layout {
        grid-template-columns: 1fr;
    }
}

.wzt-product-single__title {
    margin: 0 0 var(--wzt-spacing-sm);
    font-family: var(--wzt-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--wzt-text-primary);
}

.wzt-product-single__short-desc {
    margin-bottom: var(--wzt-spacing-md);
    color: var(--wzt-text-secondary);
}

/* Gallery */
.wzt-gallery__main {
    margin-bottom: var(--wzt-spacing-sm);
    border-radius: var(--wzt-radius-lg);
    overflow: hidden;
    background: var(--wzt-light);
}

.wzt-gallery__main img {
    width: 100%;
    height: auto;
    display: block;
}

.wzt-gallery__thumbnails {
    display: flex;
    gap: var(--wzt-spacing-xs);
    flex-wrap: wrap;
}

.wzt-gallery__thumb {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--wzt-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--wzt-transition-fast);
}

.wzt-gallery__thumb:hover,
.wzt-gallery__thumb--active {
    border-color: var(--wzt-primary);
}

.wzt-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Features */
.wzt-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--wzt-spacing-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--wzt-spacing-sm);
}

.wzt-product-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--wzt-light);
    border-radius: var(--wzt-radius-md);
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-product-feature__icon {
    color: var(--wzt-primary);
}

/* ==========================================================================
   Calculator
   ========================================================================== */
.wzt-calculator {
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
    padding: var(--wzt-spacing-md);
}

.wzt-calculator__header {
    margin-bottom: var(--wzt-spacing-md);
    padding-bottom: var(--wzt-spacing-sm);
    border-bottom: 1px solid var(--wzt-border);
}

.wzt-calculator__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.wzt-calculator__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--wzt-headings);
}

.wzt-calculator__min-info {
    font-weight: 400;
    color: var(--wzt-text-secondary);
    font-size: 0.875rem;
}

/* Quantity Input */
.wzt-calculator__quantity {
    margin-bottom: var(--wzt-spacing-md);
}

.wzt-calculator__quantity-input-wrapper {
    display: flex;
    align-items: center;
    max-width: 200px;
    background: var(--wzt-light);
    border: 1px solid var(--wzt-border);
    border-radius: var(--wzt-radius-md);
    overflow: hidden;
}

.wzt-calculator__qty-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--wzt-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color var(--wzt-transition-fast), color var(--wzt-transition-fast);
}

.wzt-calculator__qty-btn:hover {
    background: var(--wzt-border);
    color: var(--wzt-text-primary);
}

.wzt-calculator__quantity-input {
    flex: 1;
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wzt-text-primary);
    -moz-appearance: textfield;
}

.wzt-calculator__quantity-input::-webkit-outer-spin-button,
.wzt-calculator__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Quick Quantity Buttons */
.wzt-calculator__quick-qty {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--wzt-spacing-sm);
}

.wzt-calculator__quick-btn {
    padding: 0.5rem 1rem;
    background: var(--wzt-light);
    border: 1px solid var(--wzt-border);
    border-radius: var(--wzt-radius-sm);
    color: var(--wzt-text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--wzt-transition-fast);
}

.wzt-calculator__quick-btn:hover,
.wzt-calculator__quick-btn.active {
    border-color: var(--wzt-primary);
    color: var(--wzt-primary);
}

/* Personalization Options */
.wzt-calculator__personalization {
    margin-bottom: var(--wzt-spacing-md);
    padding: var(--wzt-spacing-md);
    background: var(--wzt-light);
    border-radius: var(--wzt-radius-md);
}

.wzt-calculator__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wzt-calculator__option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.wzt-calculator__option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--wzt-primary);
}

.wzt-calculator__option-text {
    color: var(--wzt-text-secondary);
}

.wzt-calculator__option input:checked + .wzt-calculator__option-text {
    color: var(--wzt-text-primary);
}

/* Result */
.wzt-calculator__result {
    padding: var(--wzt-spacing-md);
    background: var(--wzt-dark);
    border-radius: var(--wzt-radius-md);
    margin-bottom: var(--wzt-spacing-md);
}

.wzt-calculator__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.wzt-calculator__price-label {
    color: var(--wzt-text-secondary);
}

.wzt-calculator__unit-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wzt-text-primary);
}

.wzt-calculator__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--wzt-spacing-sm);
    margin-top: var(--wzt-spacing-sm);
    border-top: 1px solid var(--wzt-border);
}

.wzt-calculator__total-label {
    font-weight: 600;
    color: var(--wzt-text-primary);
}

.wzt-calculator__total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wzt-primary);
}

.wzt-calculator__savings {
    margin-top: var(--wzt-spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: var(--wzt-radius-sm);
    color: var(--wzt-success);
    font-size: 0.875rem;
}

.wzt-calculator__next-tier {
    margin-top: var(--wzt-spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--wzt-radius-sm);
    color: var(--wzt-primary);
    font-size: 0.875rem;
}

/* Price Table */
.wzt-calculator__price-table {
    margin-top: var(--wzt-spacing-md);
    padding-top: var(--wzt-spacing-md);
    border-top: 1px solid var(--wzt-border);
}

.wzt-calculator__table-title {
    margin: 0 0 var(--wzt-spacing-sm);
    font-size: 1rem;
    font-weight: 600;
}

.wzt-price-table {
    width: 100%;
    border-collapse: collapse;
}

.wzt-price-table th,
.wzt-price-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--wzt-border);
}

.wzt-price-table th {
    font-weight: 500;
    color: var(--wzt-text-secondary);
    font-size: 0.875rem;
}

.wzt-price-table__qty-link {
    background: none;
    border: none;
    color: var(--wzt-primary);
    cursor: pointer;
    font-size: inherit;
    padding: 0;
}

.wzt-price-table__qty-link:hover {
    text-decoration: underline;
}

.wzt-discount-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--wzt-success);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--wzt-radius-sm);
}

/* ==========================================================================
   Cart
   ========================================================================== */
.wzt-cart__layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--wzt-spacing-lg);
}

@media (max-width: 968px) {
    .wzt-cart__layout {
        grid-template-columns: 1fr;
    }
}

.wzt-cart__title {
    margin: 0 0 var(--wzt-spacing-md);
    font-size: 1.5rem;
}

/* Cart Header */
.wzt-cart__header {
    display: grid;
    grid-template-columns: 2fr 1fr 150px 1fr 50px;
    gap: var(--wzt-spacing-sm);
    padding: var(--wzt-spacing-sm) 0;
    border-bottom: 1px solid var(--wzt-border);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wzt-text-secondary);
}

@media (max-width: 768px) {
    .wzt-cart__header {
        display: none;
    }
}

/* Cart Item */
.wzt-cart__item {
    display: grid;
    grid-template-columns: 2fr 1fr 150px 1fr 50px;
    gap: var(--wzt-spacing-sm);
    padding: var(--wzt-spacing-md) 0;
    border-bottom: 1px solid var(--wzt-border);
    align-items: center;
}

@media (max-width: 768px) {
    .wzt-cart__item {
        grid-template-columns: 1fr;
        gap: var(--wzt-spacing-sm);
    }
}

.wzt-cart__col--product {
    display: flex;
    gap: var(--wzt-spacing-sm);
    align-items: flex-start;
}

.wzt-cart__item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--wzt-radius-sm);
    overflow: hidden;
    background: var(--wzt-light);
}

.wzt-cart__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wzt-cart__item-name {
    display: block;
    font-weight: 600;
    color: var(--wzt-text-primary);
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.wzt-cart__item-name:hover {
    color: var(--wzt-primary);
}

.wzt-cart__item-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--wzt-text-secondary);
}

.wzt-cart__item-meta--design {
    color: var(--wzt-primary);
}

.wzt-cart__item-meta--files {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Quantity */
.wzt-cart__quantity {
    display: flex;
    align-items: center;
    background: var(--wzt-light);
    border: 1px solid var(--wzt-border);
    border-radius: var(--wzt-radius-sm);
    overflow: hidden;
}

.wzt-cart__qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--wzt-text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
}

.wzt-cart__qty-btn:hover:not(:disabled) {
    background: var(--wzt-border);
    color: var(--wzt-text-primary);
}

.wzt-cart__qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wzt-cart__qty-input {
    width: 60px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    text-align: center;
    font-weight: 600;
    color: var(--wzt-text-primary);
    -moz-appearance: textfield;
}

.wzt-cart__min-qty {
    display: block;
    font-size: 0.75rem;
    color: var(--wzt-text-secondary);
    margin-top: 0.25rem;
}

.wzt-cart__item-total {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--wzt-text-primary);
}

.wzt-cart__remove {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--wzt-text-secondary);
    cursor: pointer;
    transition: color var(--wzt-transition-fast);
}

.wzt-cart__remove:hover {
    color: var(--wzt-error);
}

/* Cart Summary */
.wzt-cart__summary {
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
    padding: var(--wzt-spacing-md);
    position: sticky;
    top: var(--wzt-spacing-md);
}

.wzt-cart__summary-title {
    margin: 0 0 var(--wzt-spacing-md);
    font-size: 1.25rem;
    padding-bottom: var(--wzt-spacing-sm);
    border-bottom: 1px solid var(--wzt-border);
}

.wzt-cart__summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.wzt-cart__summary-label {
    color: var(--wzt-text-secondary);
}

.wzt-cart__summary-value {
    font-weight: 500;
}

.wzt-cart__summary-row--total {
    margin-top: var(--wzt-spacing-sm);
    padding-top: var(--wzt-spacing-sm);
    border-top: 1px solid var(--wzt-border);
}

.wzt-cart__summary-value--total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wzt-primary);
}

.wzt-cart__summary-actions {
    margin-top: var(--wzt-spacing-md);
}

.wzt-cart__summary-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--wzt-spacing-sm);
    padding-top: var(--wzt-spacing-sm);
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

/* Shipping Notice */
.wzt-cart__shipping-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: var(--wzt-spacing-sm) 0;
    padding: 0.75rem;
    background: var(--wzt-light);
    border-radius: var(--wzt-radius-sm);
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-cart__shipping-notice--success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--wzt-success);
}

.wzt-cart__shipping-progress {
    flex: 1;
    height: 4px;
    background: var(--wzt-border);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.wzt-cart__shipping-progress-bar {
    height: 100%;
    background: var(--wzt-primary);
    border-radius: 2px;
    transition: width var(--wzt-transition-normal);
}

/* Empty Cart */
.wzt-cart__empty {
    text-align: center;
    padding: var(--wzt-spacing-xl);
}

.wzt-cart__empty-icon {
    color: var(--wzt-text-secondary);
    margin-bottom: var(--wzt-spacing-md);
}

.wzt-cart__empty h2 {
    margin: 0 0 var(--wzt-spacing-sm);
}

.wzt-cart__empty p {
    color: var(--wzt-text-secondary);
    margin-bottom: var(--wzt-spacing-md);
}

/* ==========================================================================
   File Uploader
   ========================================================================== */
.wzt-file-uploader__dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--wzt-spacing-lg);
    background: var(--wzt-light);
    border: 2px dashed var(--wzt-border);
    border-radius: var(--wzt-radius-lg);
    text-align: center;
    cursor: pointer;
    transition: border-color var(--wzt-transition-fast), background-color var(--wzt-transition-fast);
}

.wzt-file-uploader__dropzone:hover,
.wzt-file-uploader__dropzone.dragover {
    border-color: var(--wzt-primary);
    background: rgba(230, 57, 70, 0.05);
}

.wzt-file-uploader__icon {
    color: var(--wzt-text-secondary);
    margin-bottom: var(--wzt-spacing-sm);
}

.wzt-file-uploader__text {
    color: var(--wzt-text-secondary);
    margin: 0;
}

.wzt-file-uploader__browse {
    background: none;
    border: none;
    color: var(--wzt-primary);
    cursor: pointer;
    text-decoration: underline;
}

.wzt-file-uploader__info {
    margin: var(--wzt-spacing-xs) 0 0;
    font-size: 0.75rem;
    color: var(--wzt-text-secondary);
}

.wzt-file-uploader__input {
    display: none;
}

.wzt-file-uploader__list {
    margin-top: var(--wzt-spacing-sm);
}

.wzt-file-uploader__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-sm);
    margin-bottom: 0.5rem;
}

.wzt-file-uploader__item-name {
    font-weight: 500;
}

.wzt-file-uploader__item-size {
    color: var(--wzt-text-secondary);
    font-size: 0.875rem;
}

.wzt-file-uploader__item-remove {
    padding: 0.25rem;
    background: transparent;
    border: none;
    color: var(--wzt-text-secondary);
    cursor: pointer;
}

.wzt-file-uploader__item-remove:hover {
    color: var(--wzt-error);
}

/* ==========================================================================
   Account
   ========================================================================== */
.wzt-account__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--wzt-spacing-lg);
}

@media (max-width: 968px) {
    .wzt-account__layout {
        grid-template-columns: 1fr;
    }
}

.wzt-account__sidebar {
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
    padding: var(--wzt-spacing-md);
}

.wzt-account__user {
    display: flex;
    gap: var(--wzt-spacing-sm);
    align-items: center;
    margin-bottom: var(--wzt-spacing-md);
    padding-bottom: var(--wzt-spacing-md);
    border-bottom: 1px solid var(--wzt-border);
}

.wzt-account__avatar img {
    border-radius: 50%;
}

.wzt-account__user-info strong {
    display: block;
}

.wzt-account__user-info span {
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-account__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wzt-account__nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--wzt-text-secondary);
    text-decoration: none;
    border-radius: var(--wzt-radius-sm);
    transition: all var(--wzt-transition-fast);
}

.wzt-account__nav-item:hover {
    background: var(--wzt-light);
    color: var(--wzt-text-primary);
}

.wzt-account__nav-item--active {
    background: rgba(230, 57, 70, 0.1);
    color: var(--wzt-primary);
}

.wzt-account__nav-item--logout {
    margin-top: var(--wzt-spacing-sm);
    padding-top: var(--wzt-spacing-sm);
    border-top: 1px solid var(--wzt-border);
}

/* Dashboard */
.wzt-dashboard__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wzt-spacing-md);
    margin-bottom: var(--wzt-spacing-lg);
}

@media (max-width: 640px) {
    .wzt-dashboard__stats {
        grid-template-columns: 1fr;
    }
}

.wzt-stat-card {
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
    padding: var(--wzt-spacing-md);
    text-align: center;
}

.wzt-stat-card__value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wzt-primary);
}

.wzt-stat-card__label {
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-dashboard__section {
    margin-bottom: var(--wzt-spacing-lg);
}

.wzt-dashboard__section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--wzt-spacing-sm);
}

.wzt-link {
    color: var(--wzt-primary);
    text-decoration: none;
}

.wzt-link:hover {
    text-decoration: underline;
}

/* Quick Actions */
.wzt-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wzt-spacing-md);
}

@media (max-width: 640px) {
    .wzt-quick-actions {
        grid-template-columns: 1fr;
    }
}

.wzt-quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--wzt-spacing-md);
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
    text-decoration: none;
    color: var(--wzt-text-secondary);
    transition: all var(--wzt-transition-fast);
}

.wzt-quick-action:hover {
    background: var(--wzt-light);
    color: var(--wzt-text-primary);
}

.wzt-quick-action__icon {
    color: var(--wzt-primary);
}

/* ==========================================================================
   Modal
   ========================================================================== */
.wzt-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wzt-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.wzt-modal__content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
    padding: var(--wzt-spacing-lg);
    margin: var(--wzt-spacing-md);
}

.wzt-modal__close {
    position: absolute;
    top: var(--wzt-spacing-sm);
    right: var(--wzt-spacing-sm);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--wzt-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.wzt-modal__close:hover {
    color: var(--wzt-text-primary);
}

/* ==========================================================================
   Forms
   ========================================================================== */
.wzt-form-row {
    margin-bottom: var(--wzt-spacing-md);
}

.wzt-form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--wzt-text-primary);
}

.wzt-form-row input,
.wzt-form-row select,
.wzt-form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--wzt-light);
    border: 1px solid var(--wzt-border);
    border-radius: var(--wzt-radius-md);
    color: var(--wzt-text-primary);
    font-size: 1rem;
    font-family: var(--wzt-font-primary);
}

.wzt-form-row input:focus,
.wzt-form-row select:focus,
.wzt-form-row textarea:focus {
    outline: none;
    border-color: var(--wzt-primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.wzt-form-actions {
    margin-top: var(--wzt-spacing-md);
}

/* ==========================================================================
   Status Badges
   ========================================================================== */
.wzt-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--wzt-radius-sm);
}

.wzt-status--pending { background: rgba(255, 193, 7, 0.2); color: #ffc107; }
.wzt-status--processing { background: rgba(0, 123, 255, 0.2); color: #007bff; }
.wzt-status--sent { background: rgba(23, 162, 184, 0.2); color: #17a2b8; }
.wzt-status--on-hold { background: rgba(255, 193, 7, 0.2); color: #ffc107; }
.wzt-status--completed { background: rgba(40, 167, 69, 0.2); color: #28a745; }
.wzt-status--accepted { background: rgba(40, 167, 69, 0.2); color: #28a745; }
.wzt-status--cancelled { background: rgba(108, 117, 125, 0.2); color: #6c757d; }
.wzt-status--rejected { background: rgba(220, 53, 69, 0.2); color: #dc3545; }
.wzt-status--refunded { background: rgba(108, 117, 125, 0.2); color: #6c757d; }
.wzt-status--failed { background: rgba(220, 53, 69, 0.2); color: #dc3545; }
.wzt-status--expired { background: rgba(108, 117, 125, 0.2); color: #6c757d; }
.wzt-status--converted { background: rgba(40, 167, 69, 0.2); color: #28a745; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.wzt-error {
    padding: var(--wzt-spacing-md);
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--wzt-error);
    border-radius: var(--wzt-radius-md);
    color: var(--wzt-error);
    text-align: center;
}

.wzt-success-message {
    padding: var(--wzt-spacing-md);
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--wzt-success);
    border-radius: var(--wzt-radius-md);
    color: var(--wzt-success);
    text-align: center;
}

.wzt-loading {
    position: relative;
    pointer-events: none;
}

.wzt-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid var(--wzt-border);
    border-top-color: var(--wzt-primary);
    border-radius: 50%;
    animation: wzt-spin 0.8s linear infinite;
}

@keyframes wzt-spin {
    to { transform: rotate(360deg); }
}

.wzt-hidden {
    display: none !important;
}

/* ==========================================================================
   Universal Product View
   ========================================================================== */
.wzt-product {
    max-width: 1400px;
    margin: 0 auto;
}

.wzt-product__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wzt-spacing-xl);
    margin-bottom: var(--wzt-spacing-xl);
}

@media (max-width: 1024px) {
    .wzt-product__main {
        grid-template-columns: 1fr;
        gap: var(--wzt-spacing-lg);
    }
}

/* Gallery */
.wzt-product__gallery {
    position: sticky;
    top: var(--wzt-spacing-lg);
    align-self: start;
}

@media (max-width: 1024px) {
    .wzt-product__gallery {
        position: static;
    }
}

.wzt-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--wzt-spacing-sm);
}

.wzt-gallery__main {
    aspect-ratio: 1;
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-xl);
    overflow: hidden;
}

.wzt-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wzt-gallery__thumbs {
    display: flex;
    gap: var(--wzt-spacing-xs);
    overflow-x: auto;
    padding-bottom: var(--wzt-spacing-xs);
}

.wzt-gallery__thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    padding: 0;
    background: var(--wzt-secondary);
    border: 2px solid transparent;
    border-radius: var(--wzt-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--wzt-transition-fast);
}

.wzt-gallery__thumb:hover,
.wzt-gallery__thumb--active {
    border-color: var(--wzt-primary);
}

.wzt-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.wzt-product__info {
    display: flex;
    flex-direction: column;
}

.wzt-product__header {
    margin-bottom: var(--wzt-spacing-md);
}

.wzt-product__category {
    font-size: 0.875rem;
    color: var(--wzt-primary);
    margin-bottom: var(--wzt-spacing-xs);
}

.wzt-product__category a {
    color: inherit;
    text-decoration: none;
}

.wzt-product__title {
    margin: 0 0 var(--wzt-spacing-sm);
    font-family: var(--wzt-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .wzt-product__title {
        font-size: 1.75rem;
    }
}

.wzt-product__excerpt {
    color: var(--wzt-text-secondary);
    line-height: 1.7;
}

/* Features */
.wzt-product__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wzt-spacing-md);
    margin-bottom: var(--wzt-spacing-lg);
    padding: var(--wzt-spacing-md);
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
}

.wzt-product__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--wzt-spacing-sm);
    flex: 1;
    min-width: 140px;
}

.wzt-product__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--wzt-radius-md);
    color: var(--wzt-primary);
}

.wzt-product__feature-text strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.wzt-product__feature-text span {
    font-size: 0.75rem;
    color: var(--wzt-text-secondary);
}

/* Calculator styling in product context */
.wzt-product__calculator .wzt-calculator {
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-xl);
    padding: var(--wzt-spacing-lg);
}

.wzt-calculator__section {
    margin-bottom: var(--wzt-spacing-lg);
}

.wzt-calculator__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--wzt-spacing-sm);
    font-weight: 600;
    color: var(--wzt-headings);
    font-size: 1rem;
}

.wzt-calculator__hint {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-calculator__qty-wrapper {
    display: flex;
    align-items: center;
    background: var(--wzt-light);
    border-radius: var(--wzt-radius-lg);
    overflow: hidden;
}

.wzt-calculator__qty-wrapper .wzt-calculator__qty-btn {
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    color: var(--wzt-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--wzt-transition-fast);
}

.wzt-calculator__qty-wrapper .wzt-calculator__qty-btn:hover {
    background: var(--wzt-border);
    color: var(--wzt-text-primary);
}

.wzt-calculator__qty-wrapper .wzt-calculator__qty-input {
    flex: 1;
    height: 56px;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wzt-text-primary);
    -moz-appearance: textfield;
}

.wzt-calculator__qty-wrapper .wzt-calculator__qty-input::-webkit-outer-spin-button,
.wzt-calculator__qty-wrapper .wzt-calculator__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.wzt-calculator__quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wzt-spacing-xs);
    margin-top: var(--wzt-spacing-sm);
}

.wzt-calculator__quick-btn {
    padding: 0.625rem 1rem;
    background: var(--wzt-light);
    border: 1px solid var(--wzt-border);
    border-radius: var(--wzt-radius-md);
    color: var(--wzt-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--wzt-transition-fast);
}

.wzt-calculator__quick-btn:hover {
    border-color: var(--wzt-primary);
    color: var(--wzt-primary);
}

.wzt-calculator__quick-btn.active {
    background: var(--wzt-primary);
    border-color: var(--wzt-primary);
    color: white;
}

/* Personalization options */
.wzt-calculator__options {
    display: flex;
    flex-direction: column;
    gap: var(--wzt-spacing-sm);
}

.wzt-calculator__option {
    display: block;
    cursor: pointer;
}

.wzt-calculator__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wzt-calculator__option-box {
    display: block;
    padding: var(--wzt-spacing-md);
    background: var(--wzt-light);
    border: 2px solid var(--wzt-border);
    border-radius: var(--wzt-radius-lg);
    transition: all var(--wzt-transition-fast);
}

.wzt-calculator__option:hover .wzt-calculator__option-box {
    border-color: var(--wzt-primary);
    background: rgba(230, 57, 70, 0.05);
}

.wzt-calculator__option input:checked + .wzt-calculator__option-box {
    border-color: var(--wzt-primary);
    background: rgba(230, 57, 70, 0.05);
}

.wzt-calculator__option-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--wzt-headings);
}

.wzt-calculator__option-price {
    color: var(--wzt-primary);
    font-size: 0.875rem;
}

.wzt-calculator__option-desc {
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-calculator__note {
    display: flex;
    align-items: flex-start;
    gap: var(--wzt-spacing-xs);
    margin-top: var(--wzt-spacing-sm);
    padding: var(--wzt-spacing-sm);
    background: var(--wzt-light);
    border-radius: var(--wzt-radius-md);
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-calculator__print-areas {
    margin-top: var(--wzt-spacing-sm);
    padding: var(--wzt-spacing-sm);
    background: var(--wzt-dark);
    border-radius: var(--wzt-radius-md);
    font-size: 0.875rem;
}

.wzt-calculator__print-areas strong {
    display: block;
    margin-bottom: var(--wzt-spacing-xs);
}

.wzt-calculator__print-area {
    display: inline-block;
    margin-right: var(--wzt-spacing-sm);
    color: var(--wzt-text-secondary);
}

/* Summary */
.wzt-calculator__summary {
    padding: var(--wzt-spacing-lg);
    background: var(--wzt-dark);
    border-radius: var(--wzt-radius-lg);
    margin-bottom: var(--wzt-spacing-md);
}

.wzt-calculator__price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--wzt-spacing-xs);
    color: var(--wzt-text-secondary);
}

.wzt-calculator__unit-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wzt-text-primary);
}

.wzt-calculator__design-line {
    padding-bottom: var(--wzt-spacing-sm);
    margin-bottom: var(--wzt-spacing-sm);
    border-bottom: 1px solid var(--wzt-border);
}

.wzt-calculator__savings {
    display: flex;
    align-items: center;
    gap: var(--wzt-spacing-xs);
    padding: var(--wzt-spacing-sm);
    background: rgba(40, 167, 69, 0.1);
    border-radius: var(--wzt-radius-md);
    color: var(--wzt-success);
    font-size: 0.875rem;
    margin-bottom: var(--wzt-spacing-sm);
}

.wzt-calculator__total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--wzt-spacing-sm);
    font-weight: 600;
}

.wzt-calculator__total {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wzt-primary);
}

.wzt-calculator__next-tier {
    margin-top: var(--wzt-spacing-sm);
    padding: var(--wzt-spacing-sm);
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--wzt-radius-md);
    font-size: 0.875rem;
    color: var(--wzt-primary);
}

/* Quote notice */
.wzt-calculator__quote-notice {
    text-align: center;
    padding: var(--wzt-spacing-lg);
    background: var(--wzt-light);
    border-radius: var(--wzt-radius-lg);
    margin-bottom: var(--wzt-spacing-md);
}

.wzt-calculator__quote-icon {
    color: var(--wzt-primary);
    margin-bottom: var(--wzt-spacing-sm);
}

.wzt-calculator__quote-notice p {
    margin: 0 0 var(--wzt-spacing-md);
    color: var(--wzt-text-secondary);
}

/* Actions */
.wzt-calculator__actions {
    display: flex;
    flex-direction: column;
    gap: var(--wzt-spacing-sm);
}

.wzt-calculator__secondary-actions {
    display: flex;
    gap: var(--wzt-spacing-sm);
}

.wzt-calculator__secondary-actions .wzt-btn {
    flex: 1;
    justify-content: center;
}

/* Pricing Table */
.wzt-product__pricing-table {
    margin-bottom: var(--wzt-spacing-xl);
    text-align: center;
}

.wzt-product__pricing-table h2 {
    margin: 0 0 var(--wzt-spacing-xs);
    color: var(--wzt-headings);
}

.wzt-product__pricing-subtitle {
    color: var(--wzt-text-secondary);
    margin-bottom: var(--wzt-spacing-lg);
}

.wzt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--wzt-spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.wzt-pricing-card {
    position: relative;
    background: var(--wzt-secondary);
    border: 2px solid var(--wzt-border);
    border-radius: var(--wzt-radius-xl);
    padding: var(--wzt-spacing-lg) var(--wzt-spacing-md);
    text-align: center;
    transition: all var(--wzt-transition-fast);
    cursor: pointer;
}

.wzt-pricing-card:hover {
    border-color: var(--wzt-primary);
    transform: translateY(-4px);
}

.wzt-pricing-card--first {
    border-color: var(--wzt-primary);
}

.wzt-pricing-card__badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.375rem 0.75rem;
    background: var(--wzt-success);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--wzt-radius-md);
}

.wzt-pricing-card__qty {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.wzt-pricing-card__unit {
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
    margin-bottom: var(--wzt-spacing-sm);
}

.wzt-pricing-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wzt-primary);
}

.wzt-pricing-card__per {
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
    margin-bottom: var(--wzt-spacing-sm);
}

.wzt-pricing-card__btn {
    width: 100%;
}

.wzt-product__pricing-note {
    margin-top: var(--wzt-spacing-lg);
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}

.wzt-product__pricing-note a {
    color: var(--wzt-primary);
}

/* Description */
.wzt-product__description {
    margin-bottom: var(--wzt-spacing-xl);
    padding: var(--wzt-spacing-lg);
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-xl);
}

.wzt-product__description h2 {
    margin: 0 0 var(--wzt-spacing-md);
    color: var(--wzt-headings);
}

.wzt-product__description-content {
    color: var(--wzt-text-secondary);
    line-height: 1.8;
}

.wzt-product__description-content p {
    margin-bottom: 1rem;
}

.wzt-product__description-content ul,
.wzt-product__description-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* Specifications */
.wzt-product__specs {
    margin-bottom: var(--wzt-spacing-xl);
}

.wzt-product__specs h2 {
    margin: 0 0 var(--wzt-spacing-md);
    color: var(--wzt-headings);
}

.wzt-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--wzt-spacing-sm);
}

.wzt-spec-item {
    display: flex;
    justify-content: space-between;
    padding: var(--wzt-spacing-md);
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-md);
}

.wzt-spec-item__label {
    color: var(--wzt-text-secondary);
}

.wzt-spec-item__value {
    font-weight: 500;
    text-align: right;
}

/* Related Products */
.wzt-product__related {
    margin-bottom: var(--wzt-spacing-xl);
}

.wzt-product__related h2 {
    margin: 0 0 var(--wzt-spacing-md);
    color: var(--wzt-headings);
}

.wzt-product__related .wzt-product-card {
    text-decoration: none;
    display: block;
}

/* ==========================================================================
   Categories
   ========================================================================== */
.wzt-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--wzt-spacing-lg);
    background: var(--wzt-secondary);
    border-radius: var(--wzt-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--wzt-transition-normal);
}

.wzt-category-card:hover {
    background: var(--wzt-light);
    transform: translateY(-4px);
}

.wzt-category-card__icon {
    color: var(--wzt-primary);
    margin-bottom: var(--wzt-spacing-sm);
}

.wzt-category-card__title {
    margin: 0 0 0.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wzt-text-primary);
}

.wzt-category-card__count {
    font-size: 0.875rem;
    color: var(--wzt-text-secondary);
}
