/* ==========================================================================
   Pathway IT — inventory.css  (Inventory Management product page)
   ========================================================================== */

.product-badge { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); }

/* screenshots strip */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: clamp(2.5rem, 5vw, 3.4rem); }
.shot { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-md); background: var(--paper); }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.shot .cap { padding: 1rem 1.2rem; font-size: .88rem; color: var(--slate-600); }
@media (max-width: 900px) { .shots { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* integrations */
.integrations { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: clamp(2.5rem, 5vw, 3rem); }
.integration { display: inline-flex; align-items: center; gap: .6rem; padding: .8rem 1.3rem; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--paper); font-weight: 600; transition: all var(--t) var(--ease); }
.integration:hover { border-color: var(--indigo-400); box-shadow: var(--sh-md); transform: translateY(-2px); }
.integration svg { width: 20px; height: 20px; color: var(--indigo); }

/* problem callout */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: clamp(2.5rem, 5vw, 3.4rem); }
.problem-c { padding: 1.6rem; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--amber); }
.problem-c b { display: block; margin-bottom: .4rem; }
.problem-c p { font-size: .9rem; color: var(--slate-600); }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
