.pricelist-display {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2d3748;
}

.pricelist-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.price-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f3f5;
    transition: background-color 0.2s ease;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background: #f7fafc;
}

.price-name {
    flex: 1;
    font-weight: 500;
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.5;
}

.price-separator {
    margin: 0 1rem;
    color: #cbd5e0;
    font-weight: 300;
}

.price-value {
    font-weight: 600;
    color: #2b6cb0;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: right;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.price-unit {
    margin-left: 0.5rem;
    color: #718096;
    font-size: 0.9rem;
    font-weight: 400;
}

.pricelist-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.price-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2b6cb0;
}

.price-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #cbd5e0;
}

.card-content {
    text-align: left;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 0.5rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.card-unit {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: lowercase;
}

.pricelist-minimal {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.price-line {
    display: flex;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.price-line:last-child {
    border-bottom: none;
}

.price-name {
    flex: 1;
    font-weight: 500;
    color: #2d3748;
    font-size: 1rem;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted #e2e8f0;
    margin: 0 1rem;
    height: 1px;
}

.price-info {
    color: #2b6cb0;
    font-weight: 600;
    min-width: 120px;
    text-align: right;
    font-size: 0.95rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.pricelist-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricelist-table th {
    background: #f7fafc;
    padding: 1rem 1.25rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricelist-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f3f5;
    vertical-align: middle;
}

.pricelist-table .price-name {
    font-weight: 500;
    color: #2d3748;
}

.pricelist-table .price-value {
    color: #2b6cb0;
    font-weight: 600;
    text-align: right;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.pricelist-table tr:last-child td {
    border-bottom: none;
}

.pricelist-table tr:hover {
    background: #f7fafc;
}

@media (max-width: 768px) {
    .pricelist-cards {
        grid-template-columns: 1fr;
    }
    
    .price-item,
    .price-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    
    .price-separator,
    .price-dots {
        display: none;
    }
    
    .price-value,
    .price-info {
        text-align: left;
    }
    
    .pricelist-table {
        font-size: 0.9rem;
    }
    
    .pricelist-table th,
    .pricelist-table td {
        padding: 0.75rem 1rem;
    }
}

:root {
    --corporate-blue: #2b6cb0;
    --corporate-dark: #2d3748;
    --corporate-gray: #718096;
    --corporate-light: #e2e8f0;
    --corporate-bg: #f7fafc;
}

.price-item,
.price-card,
.price-line {
    line-height: 1.6;
}

.price-item:hover,
.price-card:hover,
.pricelist-table tr:hover {
    transition: all 0.2s ease;
}

.price-value,
.card-price,
.price-info {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

@media print {
    .pricelist-clean,
    .pricelist-cards,
    .pricelist-minimal,
    .pricelist-table {
        border: none;
        box-shadow: none;
        background: white;
    }
    
    .price-item {
        page-break-inside: avoid;
    }
    
    .price-card {
        page-break-inside: avoid;
        border: 1px solid #000 !important;
    }
}