ody {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f4f4f4;
    color: #2c3e50;
}
.container {
    flex: 1;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.breadcrumb {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb a {
    color: #2c3e50;
    text-decoration: none;
    padding: 6px 12px;
    background: linear-gradient(145deg, #ffffff, #e5e7eb);
    border-radius: 6px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1), -1px -1px 3px rgba(255,255,255,0.7);
    transition: all 0.2s ease;
}
.breadcrumb a:hover, .breadcrumb a:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
    transform: translateY(-1px);
}
.breadcrumb span {
    color: #6b7280;
}
.breadcrumb span.separator {
    margin: 0 6px;
}
.message {
    color: #28a745;
    font-weight: 500;
    text-align: center;
    background: #d4edda;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
}
.message.error {
    color: #dc2626;
    background: #f8d7da;
}
.success-message {
    color: #28a745;
    font-weight: 500;
    text-align: center;
    background: #d4edda;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    animation: fadeIn 1s ease-in-out;
}
.success-message.fade-out {
    animation: fadeOut 1s ease-in-out forwards;
}
.notice-bar {
    margin: 15px 0;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #f5faff, #e6f0fa);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.notice-bar p {
    font-size: 14px;
    color: #6b7280;
}
.order-summary {
    margin: 15px 0;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 2px solid #3498db;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease-in-out;
}
.order-summary p {
    font-size: 14px;
    color: #2c3e50;
}
.order-summary #total-sum {
    font-weight: 700;
    color: #2c3e50;
}
.order-summary .note {
    font-size: 13px;
    font-style: italic;
    color: #6b7280;
}
h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
p {
    font-size: 14px;
    color: #6b7280;
}
.cart-container {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 15px 0;
}
.cart-block {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}
.cart-block:last-child {
    border-bottom: none;
}
.cart-block:not(:last-child) {
    box-shadow: 0 4px 6px -2px rgba(0,0,0,0.1);
}
.cart-block:hover {
    background: #f5faff;
}
.cart-block h3 {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 6px 6px 0 0;
}
.cart-item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 8px;
    min-width: 140px;
    background: linear-gradient(145deg, #f9f9f9, #e8ecef);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.cart-item-position {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
    width: 100%;
}
.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-top: 3px solid #3498db;
}
.cart-item-details {
    flex: 1;
    min-width: 180px;
    padding-right: 10px;
}
.cart-item-details h4 {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
    max-width: 180px;
}
.cart-item-details h4 a {
    color: #2c3e50;
    text-decoration: none;
}
.cart-item-details h4 a:hover {
    color: #3498db;
    text-decoration: underline;
}
.cart-item-details h4 a.copy-link.copied {
    color: #28a745;
    position: relative;
}
.cart-item-details h4 a.copy-link.copied::after {
    content: '✓';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
}
.cart-item-details p {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0;
}
.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cart-item-order {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}
.cart-item-order input[type="number"] {
    width: 55px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background: #f8f8f8;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.5);
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}
.cart-item-order .total {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    padding: 5px;
    border-radius: 5px;
    background: #f8f8f8;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.5);
}
.cart-item-order button {
    padding: 8px 12px;
    background: linear-gradient(145deg, #ffffff, #e5e7eb);
    color: #2c3e50;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}
.cart-item-order button:hover,
.cart-item-order button:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
}
.cart-item-order .action-btn {
    padding: 8px 12px;
    background: linear-gradient(145deg, #ffffff, #e5e7eb);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}
.cart-item-order .action-btn:hover,
.cart-item-order .action-btn:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
}
.action-btn {
    padding: 8px 12px;
    background: linear-gradient(145deg, #ffffff, #e5e7eb);
    color: #2c3e50;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,0.5);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.action-btn:hover,
.action-btn:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
    outline: 2px solid #3498db;
    outline-offset: 2px;
}
.action-btn-small {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 400;
    background: linear-gradient(145deg, #f9f9f9, #e8ecef);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1), -1px -1px 2px rgba(255,255,255,0.5);
}
.action-btn-small:hover,
.action-btn-small:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
}
.action-btn-recalculate {
    padding: 6px;
    font-size: 12px;
    background: linear-gradient(145deg, #dfe9f3, #ffffff);
    border-radius: 6px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1), -1px -1px 2px rgba(255,255,255,0.5);
}
.action-btn-recalculate:hover,
.action-btn-recalculate:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
}
.action-btn-primary {
    color: #28a745;
    background: linear-gradient(145deg, #ffffff, #e5e7eb);
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}
.action-btn-primary:hover,
.action-btn-primary:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
    transform: scale(1.05);
    outline: 2px solid #28a745;
    outline-offset: 2px;
}
.action-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}
.action-btn.disabled {
    background: linear-gradient(145deg, #e0e0e0, #d0d0d0);
    color: #6b7280;
    cursor: not-allowed;
    box-shadow: none;
}
.kp-instruction {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
    text-align: center;
}
.scrollable-kp {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}
.kp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin: 10px 0;
}
.kp-table th,
.kp-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #2c3e50;
}
.kp-table th {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
    font-weight: 600;
}
.kp-table img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.kp-table-note {
    margin-top: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #f5faff, #e6f0fa);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 14px;
    color: #6b7280;
}
.kp-text {
    white-space: pre;
    user-select: text;
    font-family: monospace;
    font-size: 14px;
    color: #2c3e50;
    background: #fff;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}
.add-item-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    max-width: 800px;
    margin: 15px auto;
    width: 100%;
}
.add-item-form label {
    display: block;
    margin: 8px 0 4px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}
.add-item-form input[type="text"],
.add-item-form input[type="email"],
.add-item-form input[type="tel"],
.add-item-form textarea {
    width: 100%;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background: #f8f8f8;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.5);
    font-size: 14px;
}
.add-item-form textarea {
    resize: vertical;
    min-height: 80px;
}
.add-item-form button {
    padding: 8px 12px;
    background: linear-gradient(145deg, #ffffff, #e5e7eb);
    color: #2c3e50;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}
.add-item-form button:hover,
.add-item-form button:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
}
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.add-item-block {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 6px;
    padding: 8px;
    background: #f8f8f8;
    border-radius: 6px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.5);
}
.add-item-block:hover {
    background: #f5faff;
}
.add-item-row {
    flex: 1 1 70%;
}
.add-item-row label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}
.add-item-row input {
    width: 100%;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background: #f8f8f8;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.5);
    font-size: 14px;
}
.add-item-controls {
    flex: 1 1 20%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.add-item-controls label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}
.add-item-controls input {
    width: 100%;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background: #f8f8f8;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.5);
    font-size: 14px;
}
.add-item-controls .btn {
    padding: 8px 12px;
    background: linear-gradient(145deg, #ffffff, #e5e7eb);
    color: #2c3e50;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}
.add-item-controls .btn:hover,
.add-item-controls .btn:focus {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
}
.add-item-form form {
    margin-top: 15px;
}
.add-item-form h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}
.add-item-form p {
    font-size: 14px;
    color: #6b7280;
}
details {
    margin-top: 15px;
    background: #f8f8f8;
    border-radius: 6px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.5);
}
summary {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    background: linear-gradient(145deg, #e0e0e0, #d0d0d0);
    border-radius: 6px;
    transition: all 0.2s ease;
}
summary:hover {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    color: #fff;
}
details[open] summary {
    border-bottom: 1px solid #2c3e50;
    border-radius: 6px 6px 0 0;
}
.print-header {
    display: none;
}
.print-header-title {
    font-size: 20px;
}
.empty-message {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin: 15px 0;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 6px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.5);
}
.empty-message a {
    color: #3498db;
    text-decoration: none;
}
.empty-message a:hover {
    color: #2c3e50;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    border: 0;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; display: none; }
}
@media print {
    body {
        font-family: Arial, sans-serif;
        font-size: 12pt;
        color: #000;
        background: #fff;
        margin: 0;
    }
    .header-section, .breadcrumb, .notice-bar, .cart-actions, .add-item-form, details, footer, .message {
        display: none;
    }
    .print-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 12pt;
        border-bottom: 1px solid #000;
    }
    .print-header img {
        width: 100px;
        height: auto;
    }
    .print-header p {
        margin: 5px 0;
        font-size: 10pt;
    }
    .cart-container {
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 80px 0 0 0;
    }
    .cart-block {
        border: 1px solid #000;
        padding: 10px;
        background: none;
    }
    .cart-item {
        page-break-inside: avoid;
        border-bottom: 1px solid #000;
        display: block;
    }
    .cart-item img {
        display: none;
    }
    .cart-item-details p, .cart-item-details h4 {
        color: #000;
        margin: 5px 0;
    }
    .cart-item-order input, .cart-item-order button, .cart-item-order .action-btn {
        display: none;
    }
    .cart-item-order .total {
        background: none;
        box-shadow: none;
        color: #000;
    }
    .order-summary {
        background: none;
        box-shadow: none;
        border-top: 1px solid #000;
        padding: 10px 0;
    }
    .order-summary p {
        color: #000;
        font-size: 12pt;
    }
    .kp-table {
        box-shadow: none;
        border: none;
        margin: 80px 0 0 0;
    }
    .kp-table th {
        background: none;
        color: #000;
        border-bottom: 1px solid #000;
    }
    .kp-table td {
        color: #000;
        border-bottom: 1px solid #000;
    }
    .kp-table img {
        display: none;
    }
    .kp-table-note {
        display: none;
    }
    .kp-text {
        display: none;
    }
    h3 {
        color: #000;
        font-size: 14pt;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 12px;
        margin: 12px;
    }
    .message {
        font-size: 13px;
        padding: 8px;
    }
    .notice-bar {
        padding: 10px;
        font-size: 13px;
    }
    .order-summary p {
        font-size: 13px;
        padding: 10px;
    }
    .cart-block {
        padding: 8px;
    }
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .cart-item img {
        width: 60px;
        height: 60px;
    }
    .cart-item-details {
        min-width: 0;
        padding-right: 0;
    }
    .cart-item-details h4 {
        font-size: 13px;
        max-width: 100%;
        white-space: normal;
    }
    .cart-item-details h4 a.copy-link.copied::after {
        right: -15px;
    }
    .cart-item-details p {
        font-size: 13px;
    }
    .cart-item-order input[type="number"] {
        width: 50px;
        font-size: 13px;
        padding: 4px;
    }
    .cart-item-order .total {
        font-size: 13px;
    }
    .cart-item-order button, .cart-item-order .action-btn {
        font-size: 13px;
        padding: 8px 12px;
        width: 100%;
        text-align: center;
    }
    .action-btn-small {
        padding: 5px 8px;
        font-size: 11px;
    }
    .action-btn-recalculate {
        padding: 5px;
        font-size: 11px;
    }
    .add-item-form {
        max-width: 100%;
    }
    .add-item-form input, .add-item-form textarea {
        font-size: 13px;
    }
    .add-item-form h3 {
        font-size: 16px;
    }
    .add-item-form p {
        font-size: 13px;
    }
    .form-actions {
        flex-direction: column;
        gap: 6px;
    }
    .form-actions .action-btn,
    .form-actions .action-btn-primary {
        width: 100%;
        font-size: 13px;
        padding: 8px 12px;
    }
    .cart-actions {
        flex-direction: column;
        position: sticky;
        bottom: 10px;
        background: #fff;
        padding: 10px;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
        z-index: 10;
        margin-bottom: 10px;
    }
    .action-btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 13px;
    }
    .scrollable-kp {
        padding: 8px;
    }
    .kp-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .kp-table th, .kp-table td {
        font-size: 13px;
        padding: 10px;
    }
    .kp-table img {
        width: 30px;
        height: 30px;
    }
    .kp-table-note {
        font-size: 13px;
        padding: 10px;
    }
    .kp-text {
        font-size: 13px;
        padding: 8px;
        max-height: 200px;
    }
    .kp-instruction {
        font-size: 13px;
        padding: 8px;
    }
    .cart-item-position {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 8px;
        margin: 8px;
    }
    .cart-item-details p {
        font-size: 12px;
    }
    .cart-item-details h4 {
        font-size: 12px;
        max-width: 100%;
        white-space: normal;
    }
    .cart-item-details h4 a.copy-link.copied::after {
        right: -12px;
    }
    .cart-item-order input[type="number"] {
        width: 40px;
        font-size: 12px;
        padding: 3px;
    }
    .cart-item-order button, .cart-item-order .action-btn {
        font-size: 12px;
        padding: 8px 12px;
        width: 100%;
    }
    .action-btn-small {
        padding: 4px 6px;
        font-size: 10px;
    }
    .action-btn-recalculate {
        padding: 4px;
        font-size: 10px;
    }
    .add-item-form h3 {
        font-size: 14px;
    }
    .add-item-form input, .add-item-form textarea {
        font-size: 12px;
    }
    .add-item-controls input[type="number"] {
        width: 50px;
        padding: 4px;
    }
    .form-actions .action-btn,
    .form-actions .action-btn-primary {
        font-size: 12px;
        padding: 8px 12px;
    }
    .action-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    .scrollable-kp {
        padding: 6px;
    }
    .kp-table th, .kp-table td {
        font-size: 12px;
        padding: 8px;
    }
    .kp-table img {
        width: 24px;
        height: 24px;
    }
    .kp-table-note {
        font-size: 12px;
        padding: 8px;
    }
    .kp-text {
        font-size: 12px;
        padding: 6px;
        max-height: 150px;
    }
    .kp-instruction {
        font-size: 12px;
        padding: 6px;
    }
    .cart-item-position {
        font-size: 12px;
    }
}