// OriginStrip.jsx — the · USA SOURCED · FULLY SUSTAINABLE · ... strip
const OriginStrip = ({ vertical = false, color = '#fff' }) => {
  const text = '· USA SOURCED · FULLY SUSTAINABLE · SOURCE TO BOTTLE · BE SUPERIOR ·';
  const baseStyle = {
    fontFamily: 'Inter, sans-serif',
    fontWeight: 600,
    fontSize: 11,
    letterSpacing: '0.22em',
    textTransform: 'uppercase',
    color,
    whiteSpace: 'nowrap',
  };
  if (vertical) {
    return (
      <div style={{ ...baseStyle, writingMode: 'vertical-rl', transform: 'rotate(180deg)' }}>
        {text}
      </div>
    );
  }
  return <div style={baseStyle}>{text}</div>;
};

window.OriginStrip = OriginStrip;
