/* Seven POS - Component Styles */

/* 1. BUTTONS */
.sds-btn-primary {
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-6);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 66, 24, 0.2);
}

.sds-btn-primary:active { transform: scale(0.96); }

.sds-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. PRODUCT CARDS */
.sds-product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--divider);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: var(--transition-fast);
}

.sds-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.sds-product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--primary-light);
}

.sds-product-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.4;
}

.sds-product-price {
    font-size: 15px;
    font-weight: 900;
    color: var(--primary);
}

/* 3. DRAWERS */
.sds-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    z-index: 3000;
    transition: transform var(--transition-fast);
}

.sds-drawer--right {
    width: 480px;
    transform: translateX(100%);
    box-shadow: -10px 0 50px rgba(0,0,0,0.1);
}

.sds-drawer.show {
    transform: translateX(0);
}

.sds-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 2900;
}

/* 4. CATEGORY CHIPS */
.sds-category-chips {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    overflow-x: auto;
}

.sds-chip {
    padding: 10px 20px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--divider);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    color: var(--text-secondary);
}

.sds-chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
