/* --- SKU IMPLEMENTATION STYLES (Nano-Chip) --- */

/* 1. Container: Minimal "Ghost" State */
.sku-nano-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    margin-top: 12px;
    background: transparent; 
    border: 1px solid transparent;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', system-ui, sans-serif;
    color: #94a3b8; /* Muted Slate */
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* 2. Hover: Glassmorphic Capsule */
.sku-nano-chip:hover {
    background: rgba(248, 250, 252, 0.95);
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.05);
    color: #334155;
    transform: translateY(-1px);
}

.sku-nano-chip:active {
    transform: scale(0.98);
}

/* 3. The Tech Icon */
.chip-icon {
    width: 16px;
    height: 16px;
    display: flex;
    color: inherit;
    transition: color 0.3s;
    flex-shrink: 0;
}

.chip-core {
    transition: fill 0.3s, opacity 0.3s;
}

/* Light up the core on hover */
.sku-nano-chip:hover .chip-core {
    fill: #10b981; /* Emerald Green */
    opacity: 1;
}

/* 4. Typography (Monospace for Data) */
.chip-data {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

.data-label {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.5;
}

.data-value {
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* 5. Success State Animation */
.chip-success {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) scale(0) rotate(-45deg);
    color: #10b981;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sku-nano-chip.is-copied {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.sku-nano-chip.is-copied .chip-success {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
}

.sku-nano-chip.is-copied .chip-icon {
    opacity: 0.5;
    transform: scale(0.9);
}
