/* Camfasco Industrial Main Styles (Tailwind Compiled) */

/* Layout Utilities */
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.mt-20 { margin-top: 5rem; }
.mb-10 { margin-bottom: 2.5rem; }

/* Flex & Grid */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Typography */
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.tracking-tighter { letter-spacing: -0.05em; }
.uppercase { text-transform: uppercase; }

/* Colors & Branding */
.bg-camfasco-blue { background-color: #2E5C8A; }
.text-camfasco-blue { color: #2E5C8A; }
.bg-camfasco-orange { background-color: #D97634; }
.text-camfasco-orange { color: #D97634; }

/* Custom Component Classes */
.fss-top-bar { background-color: #F8F9FA; border-bottom: 1px solid #E5E7EB; }
.fss-header { background-color: #FFFFFF; border-bottom: 1px solid #E5E7EB; }
.fss-nav-bar { background-color: #2E5C8A; border-bottom: 4px solid #D97634; color: #FFFFFF; }
.fss-input { border: 2px solid #E5E7EB; border-radius: 0.125rem; }
.fss-footer { background-color: #2E5C8A; border-top: 8px solid #D97634; color: #FFFFFF; }

/* Product Card Styling */
.product-card {
    border: 1px solid #E5E7EB;
    border-radius: 0.125rem;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}
.product-card:hover {
    border-color: #2E5C8A;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
