/* ============================================================
   KoolaChem — Wholesale Chemical Manufacturing
   Main Stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS Variables & Reset
   ---------------------------------------------------------- */
:root {
    --primary: #2c5f2d;
    --primary-dark: #1e4420;
    --primary-light: #3a7a3b;
    --secondary: #97bc62;
    --secondary-light: #b0d17e;
    --accent: #e8a838;
    --accent-dark: #d4922a;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --grey: #6c757d;
    --grey-light: #e9ecef;
    --border: #dee2e6;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container: 1200px;
    --navbar-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
}

/* ----------------------------------------------------------
   2. Typography
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text);
}

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-grey { color: var(--grey); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 1px; }

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 12px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------
   3. Layout & Utility
   ---------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--light);
}

.section-white {
    background-color: var(--white);
}

.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: #b0b0b0;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-wrap { flex-wrap: wrap; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ----------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.35);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ----------------------------------------------------------
   5. Badges
   ---------------------------------------------------------- */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    line-height: 1.5;
}

.badge-primary {
    background-color: rgba(44, 95, 45, 0.1);
    color: var(--primary);
}

.badge-secondary {
    background-color: rgba(151, 188, 98, 0.15);
    color: #5a7a2e;
}

.badge-accent {
    background-color: rgba(232, 168, 56, 0.12);
    color: var(--accent-dark);
}

/* ----------------------------------------------------------
   6. Navbar
   ---------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background-color: var(--primary);
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    height: 64px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo img {
    height: 42px;
    width: auto;
}

.navbar.scrolled .navbar-logo img {
    height: 36px;
}

.navbar-logo span {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 8px;
}

.nav-cta .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------------------------
   7. Hero Section
   ---------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: var(--navbar-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 95, 45, 0.88) 0%,
        rgba(30, 68, 32, 0.92) 50%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    display: block;
    font-size: 1.5rem;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ----------------------------------------------------------
   8. Page Header (Inner Pages)
   ---------------------------------------------------------- */
.page-header {
    position: relative;
    padding: 140px 0 60px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 95, 45, 0.92) 0%,
        rgba(26, 26, 26, 0.8) 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-header-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: var(--accent);
}

/* ----------------------------------------------------------
   9. Trust Bar
   ---------------------------------------------------------- */
.trust-bar {
    background-color: var(--primary-dark);
    padding: 20px 0;
    border-bottom: 3px solid var(--secondary);
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--accent);
    stroke: var(--accent);
}

.trust-item i {
    font-size: 1.75rem;
    color: var(--accent);
}

.trust-item div strong,
.trust-item .trust-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.trust-item div span,
.trust-item .trust-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------------------------
   10. Brand Cards
   ---------------------------------------------------------- */
.brand-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: height 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.brand-card:hover::before {
    height: 6px;
}

.brand-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.brand-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.brand-card .btn {
    font-size: 0.85rem;
}

/* ----------------------------------------------------------
   11. Category Filter Tabs
   ---------------------------------------------------------- */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ----------------------------------------------------------
   12. Product Grid
   ---------------------------------------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-card-image img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-image .badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    line-height: 1.35;
}

.product-card-body .product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.product-sizes span {
    font-size: 0.75rem;
    padding: 3px 10px;
    background-color: var(--light);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
}

.product-card-body .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px 16px;
}

/* Product hidden for filtering */
.product-card.hidden {
    display: none;
}

/* ----------------------------------------------------------
   13. Product Detail
   ---------------------------------------------------------- */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-detail-image,
.product-detail-img {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-detail-image img,
.product-detail-img img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.product-detail-info h1,
.product-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-detail-info .badge,
.product-detail-info .product-badge {
    margin-bottom: 1.25rem;
}

.product-detail-info .description,
.product-detail-info .product-description {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sizes-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.sizes-table th,
.sizes-table td {
    text-align: left;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.sizes-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    background-color: rgba(44, 95, 45, 0.05);
}

.sizes-table tr:last-child td {
    border-bottom: none;
}

/* ----------------------------------------------------------
   14. Forms
   ---------------------------------------------------------- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text);
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Quote Request Form */
.quote-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.quote-form h3 {
    margin-bottom: 0.25rem;
}

.quote-form .form-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ----------------------------------------------------------
   15. About Section
   ---------------------------------------------------------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text);
}

.about-text ul {
    margin-top: 1.25rem;
}

.about-text ul li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
}

.about-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.85rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-image-grid img {
    border-radius: var(--radius);
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-image-grid img:first-child {
    grid-row: span 2;
    height: 100%;
}

/* ----------------------------------------------------------
   16. Contact Section
   ---------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-list {
    margin-top: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background-color: rgba(44, 95, 45, 0.08);
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    display: block;
}

/* ----------------------------------------------------------
   17. Footer
   ---------------------------------------------------------- */
.footer {
    background-color: var(--dark);
    color: #b0b0b0;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: #b0b0b0;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 3px;
    min-width: 16px;
}

.footer-contact-item a {
    color: #b0b0b0;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #777;
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/* ----------------------------------------------------------
   18. WhatsApp Float
   ---------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ----------------------------------------------------------
   19. Back to Top
   ---------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 899;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ----------------------------------------------------------
   20. Toast Notification
   ---------------------------------------------------------- */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 2000;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast-success {
    background-color: var(--primary);
}

.toast-error {
    background-color: #dc3545;
}

.toast-info {
    background-color: #0dcaf0;
    color: var(--dark);
}

/* ----------------------------------------------------------
   21. Animations
   ---------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------
   22. Responsive — 1200px
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-grid .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

/* ----------------------------------------------------------
   23. Responsive — 992px
   ---------------------------------------------------------- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .section { padding: 60px 0; }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    /* Mobile nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        background-color: var(--primary-dark);
        transition: right 0.35s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 14px 0;
        font-size: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Grids */
    .brand-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----------------------------------------------------------
   24. Responsive — 768px
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }

    .section { padding: 50px 0; }
    .section-title { font-size: 1.85rem; }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    /* Grids */
    .brand-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-bar .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .trust-item {
        flex-direction: column;
        gap: 6px;
    }

    .trust-item .trust-text {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 25px 20px;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
    }

    .about-image-grid img:first-child {
        grid-row: auto;
        height: 200px;
    }

    .filter-tabs {
        gap: 6px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ----------------------------------------------------------
   25. Responsive — 576px
   ---------------------------------------------------------- */
@media (max-width: 576px) {
    body {
        font-size: 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .container {
        padding: 0 16px;
    }

    .section { padding: 40px 0; }

    .hero {
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .page-header {
        padding: 110px 0 40px;
    }

    .page-header-content h1 {
        font-size: 1.65rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card-image {
        height: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 18px;
        right: 18px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 78px;
        right: 22px;
    }

    .brand-card {
        padding: 30px 20px;
    }

    .product-detail-image {
        padding: 25px;
        min-height: 280px;
    }

    .sizes-table th,
    .sizes-table td {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/* ----------------------------------------------------------
   Class Aliases & Missing Styles
   ---------------------------------------------------------- */

/* Navbar aliases */
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand img.navbar-logo {
    height: 42px;
    width: auto;
}

.navbar.scrolled .navbar-brand img.navbar-logo {
    height: 36px;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* Hero subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer inner (alias for footer-grid) */
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Footer contact list */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #999;
}

/* Trust bar inner */
.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Brand card icon as image */
.brand-card-icon {
    width: 100%;
    height: 160px;
    margin: 0 0 1.25rem;
    overflow: hidden;
    border-radius: var(--radius);
}

.brand-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brand-card:hover .brand-card-icon img {
    transform: scale(1.05);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Product card link/img/footer */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover {
    color: inherit;
}

.product-card-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: var(--radius) var(--radius) 0 0;
}

.product-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 15px;
}

.product-card-body h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.product-card-footer {
    padding: 0 15px 15px;
}

.product-card-footer .btn {
    width: 100%;
    text-align: center;
}

/* Product grid 4-col variant */
.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Contact form wrap */
.contact-form-wrap {
    background: var(--white);
}

.contact-form-wrap h2 {
    margin-bottom: 10px;
}

.contact-form-wrap > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-form input,
.contact-form textarea,
.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

/* Quote form wrap */
.quote-form-wrap {
    background: var(--white);
}

.quote-form-wrap h2 {
    margin-bottom: 10px;
}

.quote-form-wrap > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Contact info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ----------------------------------------------------------
   Additional Classes (page-specific)
   ---------------------------------------------------------- */

/* Products toolbar */
.products-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.product-search .search-input,
.search-input {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    width: 260px;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

/* Category grid (homepage) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-card-img {
    height: 200px;
    overflow: hidden;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card-img img {
    transform: scale(1.05);
}

.category-card h3 {
    padding: 15px 20px 5px;
    font-size: 1.2rem;
    color: var(--primary);
}

.category-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* About grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Team gallery */
.team-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Quote page grid */
.quote-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-info-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-light);
}

.quote-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.quote-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.quote-benefits {
    list-style: none;
    padding: 0;
}

.quote-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Form section */
.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--grey-light);
}

/* Product badge */
.product-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-badge-lg {
    font-size: 0.85rem;
    padding: 5px 14px;
}

.badge-sanitiser {
    background: #0d6efd;
}

.badge-disinfectant {
    background: #dc3545;
}

/* Product sizes */
.sizes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.size-tag {
    display: inline-block;
    background: var(--light);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.product-sizes {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.product-sizes-section {
    margin: 25px 0;
}

.product-sizes-section h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Product wholesale note */
.product-wholesale-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f0f7f0;
    border: 1px solid #c3dfc3;
    border-radius: var(--radius);
    padding: 15px;
    margin: 20px 0;
}

.product-wholesale-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.product-wholesale-note p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
}

/* Product actions */
.product-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.product-description-sm {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Subsection title */
.subsection-title {
    font-size: 1.4rem;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    margin-bottom: 25px;
}

/* Button variants */
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1fba59;
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-nav {
    padding: 8px 20px !important;
    border-radius: var(--radius) !important;
    font-size: 0.85rem !important;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About preview (homepage) */
.about-preview {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.about-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 95, 45, 0.88);
}

.about-preview-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.about-preview-text h2 {
    color: var(--white);
}

.about-preview-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Footer logo */
.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results p {
    font-size: 1.1rem;
}

/* Page header small variant */
.page-header-sm {
    min-height: 200px;
}

/* Contact detail items */
.contact-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
}

.contact-detail p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-detail a {
    color: var(--primary);
}

/* Contact info card */
.contact-info-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-map iframe {
    border-radius: var(--radius);
}

/* Responsive additions */
@media (max-width: 992px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .team-gallery { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .quote-page-grid { grid-template-columns: 1fr; }
    .products-toolbar { flex-direction: column; align-items: stretch; }
    .search-input { width: 100%; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .trust-bar-inner { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .category-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .team-gallery { grid-template-columns: 1fr 1fr; }
    .product-actions { flex-direction: column; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .footer-inner { grid-template-columns: 1fr; }
    .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .brand-card-icon { height: 120px; }
}

@media (max-width: 576px) {
    .category-grid { grid-template-columns: 1fr; }
    .team-gallery { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .checkbox-group { flex-direction: column; }
    .product-grid-4 { grid-template-columns: 1fr; }
    .trust-bar-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ----------------------------------------------------------
   26. Print Styles
   ---------------------------------------------------------- */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .toast,
    .hero-scroll {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
