/*
Theme Name: Formex Medical
Theme URI: https://www.formex-medical.nl
Description: Custom WordPress theme for Formex Medical - Your Partner in Healthcare and ICT Solutions
Author: Formex Medical
Version: 2.0.0
Text Domain: formex-medical
*/

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #7341B4;
    --primary-dark: #5a2e96;
    --primary-light: #9b6fd4;
    --accent: #00828d;
    --warning: #f0ad4e;
    --text: #444444;
    --text-light: #777777;
    --bg: #ffffff;
    --bg-light: #f0f9fa;
    --bg-grey: #f5f5f5;
    --bg-dark: #2c3e50;
    --border: #e3e3e3;
    --max-width: 1170px;
    --header-height: 80px;
    --section-padding: 50px;
    --font-body: 'Nunito', Helvetica, Arial, sans-serif;
    --font-heading: 'Poppins', Helvetica, Arial, sans-serif;
}

body { font-family: var(--font-body); font-size: 1em; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text); margin-bottom: 0.5em; line-height: 1.3; font-weight: 500; }
h1 { font-size: 1.8em; } h2 { font-size: 1.5em; } h3 { font-size: 1.5em; } h4 { font-size: 1.2em; }
p { margin-bottom: 1em; }
.lead { font-size: 15px; line-height: 1.5; }

.big-title { font-family: var(--font-heading); font-size: 48px; font-weight: 500; letter-spacing: -0.7px; line-height: 56px; margin-bottom: 60px; position: relative; }
.big-title::after { content: ''; display: block; width: 100px; height: 2px; background: var(--accent); position: absolute; bottom: -30px; left: 0; }
.big-title.text-center::after { left: 50%; transform: translateX(-50%); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.row > [class*="col-"] { padding: 0 15px; }
.col-lg-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-lg-12 { flex: 0 0 100%; max-width: 100%; }

section, .section { padding: var(--section-padding) 0; }
.background-grey, .bg-grey { background: var(--bg-grey); }
.background-light, .bg-light { background: var(--bg-light); }
.background-colored { background: var(--primary); color: white; }
.background-colored h1,.background-colored h2,.background-colored h3,.background-colored h4 { color: white; }

/* Topbar */
.topbar { background: var(--bg-dark); color: #aaa; font-size: 12px; padding: 8px 0; font-family: var(--font-heading); letter-spacing: 0.5px; }
.topbar .container { display: flex; justify-content: flex-end; align-items: center; }

/* Header */
.site-header { background: var(--bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.site-logo img { max-height: 50px; width: auto; }
.header-search { display: flex; align-items: center; }
.header-search input { padding: 6px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: 13px; font-family: var(--font-body); width: 200px; transition: width 0.3s; }
.header-search input:focus { border-color: var(--primary); outline: none; width: 260px; }

/* Nav */
.main-nav ul { list-style: none; display: flex; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; padding: 10px 16px; color: var(--text); font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; transition: color 0.3s; }
.main-nav > ul > li > a:hover, .main-nav > ul > li.current-menu-item > a, .main-nav > ul > li.current-menu-ancestor > a { color: var(--primary); }
.main-nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 230px; background: var(--bg); border: 1px solid var(--border); box-shadow: 0 6px 20px rgba(0,0,0,0.12); z-index: 999; }
.main-nav li:hover > .sub-menu { display: block; }
.main-nav .sub-menu li a { display: block; padding: 10px 20px; color: var(--text); font-size: 13px; font-family: var(--font-body); border-bottom: 1px solid var(--bg-light); transition: all 0.2s; }
.main-nav .sub-menu li a:hover { background: var(--bg-light); color: var(--primary); padding-left: 24px; }
.main-nav .sub-menu .sub-menu { top: 0; left: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 10px; flex-direction: column; gap: 5px; }
.nav-toggle .hamburger-line { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }
.nav-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Product Tabs */
.product-tabs .tab-pane { display: none; }
.product-tabs .tab-pane.active { display: block; }
.product-tabs .tab-link { text-decoration: none; transition: all 0.3s; }
.product-tabs .tab-link:hover { color: var(--primary); }
.product-tabs .tab-link.active { color: var(--primary); border-bottom: 2px solid var(--primary); margin-bottom: -2px; }
.read-more { max-height: none; overflow: visible; }
.read-more::after { display: none; }

/* Hero Slider */
.hero-slider { position: relative; height: 50vh; min-height: 400px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; overflow: hidden; }
.hero-slide.active { opacity: 1; }
.hero-slide .slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: kenburns 20s ease infinite alternate; }
.hero-slide .slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero-slide .slide-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 80px; color: white; z-index: 2; }
.hero-slide .slide-content.text-right { align-items: flex-end; text-align: right; }
.hero-slide .slide-content.text-left { align-items: flex-start; text-align: left; }
.hero-slide .slide-content.text-center { align-items: center; text-align: center; }
.hero-slide .slide-content h3 { color: white; font-size: 2.2em; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; filter: drop-shadow(0 0 0.5rem black); }
.hero-slide .slide-content .lead { font-size: 14px; font-style: italic; opacity: 0.9; margin-bottom: 20px; filter: drop-shadow(0 0 0.3rem black); }
.hero-slide .slide-content .slide-buttons { display: flex; gap: 12px; }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; }
.hero-dots .dot.active { background: white; transform: scale(1.2); }

/* Buttons */
.btn { display: inline-block; padding: 10px 28px; border-radius: 50px; font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; transition: all 0.3s; cursor: pointer; border: 2px solid transparent; text-align: center; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-dark { background: transparent; border-color: var(--text); color: var(--text); }
.btn-dark:hover { background: var(--text); color: white; }
.btn-warning { background: var(--warning); border-color: var(--warning); color: white; }
.btn-warning:hover { background: #e09a3a; border-color: #e09a3a; color: white; }
.btn-white { background: white; border-color: white; color: var(--primary); }
.btn-white:hover { background: var(--bg-light); color: var(--primary-dark); }
.btn-inverted { background: transparent; border-color: white; color: white; }
.btn-inverted:hover { background: white; color: var(--primary); }
.btn-success { background: #28a745; border-color: #28a745; color: white; }
.btn-block { display: block; width: 100%; }

/* Post Items / Cards */
.post-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; background: var(--bg); display: flex; flex-direction: column; }
.post-item:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.post-item img { width: 100%; height: 220px; object-fit: cover; }
.post-item .post-item-body { padding: 20px; flex-grow: 1; }
.post-item .post-item-title { font-family: var(--font-heading); font-size: 18px; font-weight: 600; letter-spacing: -0.1px; line-height: 23px; color: var(--text); margin-bottom: 10px; }
.post-item .post-item-body p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

.card { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: box-shadow 0.3s; }
.card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.card-body { padding: 20px; flex-grow: 1; }
.card-footer { padding: 15px 20px; border-top: 1px solid var(--border); background: var(--bg-grey); text-align: center; }
.card-title { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.card-text { color: var(--text-light); font-size: 14px; }

/* Product Grid */
.product-grid { display: flex; flex-wrap: wrap; margin: -15px; padding: 30px 0; }
.product-grid .product-col { flex: 0 0 25%; max-width: 25%; padding: 15px; display: flex; align-items: stretch; }
.product-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--bg); display: flex; flex-direction: column; width: 100%; transition: box-shadow 0.3s; }
.product-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.product-card .product-image { position: relative; width: 100%; padding-top: 100%; background: white; }
.product-card .product-image img { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-width: calc(100% - 40px); max-height: calc(100% - 40px); padding: 20px; object-fit: contain; }
.product-card .product-image .badge-new { position: absolute; top: 10px; left: 10px; background: #dc3545; color: white; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 3px; text-transform: uppercase; }
.product-card .card-body { padding: 15px; flex-grow: 1; }
.product-card .card-body h5 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.product-card .card-body p { font-size: 13px; color: var(--text-light); margin-bottom: 0; }
.product-card .card-footer { background: var(--bg-grey); padding: 12px 15px; text-align: center; }

/* Category Grid */
.category-grid { display: flex; flex-wrap: wrap; margin: -15px; padding: 30px 0; }
.category-grid .cat-col { flex: 0 0 25%; max-width: 25%; padding: 15px; display: flex; }
.category-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--bg); display: flex; flex-direction: column; width: 100%; transition: box-shadow 0.3s; text-decoration: none; color: var(--text); }
.category-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); color: var(--primary); }
.category-card img { width: 100%; padding: 20px; object-fit: contain; height: 200px; }
.category-card .card-body { padding: 15px; text-align: center; }
.category-card .card-footer { background: var(--bg-grey); padding: 12px; text-align: center; }

/* Partners */
.partners-section { padding: var(--section-padding) 0; }
.partners-carousel { display: flex; align-items: center; gap: 20px; overflow: hidden; }
.partners-carousel img { max-height: 60px; max-width: 120px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s; }
.partners-carousel img:hover { filter: grayscale(0%); opacity: 1; }

/* Testimonials */
.testimonials-section { padding: var(--section-padding) 0; background: var(--bg-light); }
.testimonial-item { text-align: left; padding: 30px; background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.testimonial-item blockquote { font-size: 14px; font-weight: 300; font-style: italic; line-height: 1.55; padding-bottom: 15px; margin-bottom: 0; color: var(--text); }
.testimonial-author { padding-top: 10px; border-top: 1px solid var(--border); }
.testimonial-author cite { font-size: 14px; font-style: normal; color: var(--text); font-weight: 600; display: block; }
.testimonial-city { font-size: 13px; color: var(--text-light); }

/* Content Pages */
.page-content { padding: var(--section-padding) 0; }
.page-content .entry-content { max-width: 900px; }
.page-content .entry-content p { margin-bottom: 1em; line-height: 1.7; }
.page-content .entry-content ul, .page-content .entry-content ol { margin-bottom: 1em; padding-left: 25px; }
.page-content .entry-content li { font-size: 1rem; line-height: 1.7; margin-left: 1.3em; }

/* Sidebar */
.content-with-sidebar { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.content-with-sidebar .main-content { flex: 0 0 66.666%; max-width: 66.666%; padding: 0 15px; }
.content-with-sidebar .sidebar { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.sidebar .widget { margin-bottom: 30px; padding: 20px; background: var(--bg-grey); border-radius: 8px; }
.sidebar .widget h4 { margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); font-size: 14px; letter-spacing: 1px; }
.sidebar .widget ul { list-style: none; }
.sidebar .widget ul li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar .widget ul li:last-child { border-bottom: none; }
.sidebar .widget ul li a { color: var(--text); font-size: 14px; }
.sidebar .widget ul li a:hover { color: var(--primary); }

/* Product Detail */
.product-info-box { background: var(--bg-grey); border: 1px solid #d0d0d0; border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.product-info-box .product-price { font-size: 1.4em; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.product-info-box .product-vat { font-size: 12px; color: var(--text-light); margin-bottom: 15px; }
.read-less { max-height: 190px; overflow: hidden; position: relative; }
.read-less::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, white); }

/* CTA Section */
.cta-section { background: var(--primary); color: white; padding: var(--section-padding) 0; }
.cta-section h2 { color: white; margin-bottom: 15px; }
.cta-section p { margin-bottom: 25px; font-size: 1.1em; opacity: 0.9; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #ccc; padding: 50px 0 0; }
.footer-grid { display: flex; flex-wrap: wrap; margin: 0 -15px 30px; }
.footer-col { padding: 0 15px; }
.footer-col-main { flex: 0 0 33.333%; max-width: 33.333%; }
.footer-col-sub { flex: 0 0 16.666%; max-width: 16.666%; }
.footer-col h4 { color: white; font-family: var(--font-heading); font-size: 14px; letter-spacing: 1px; font-weight: 600; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 3px 0; }
.footer-col ul li a { color: #aaa; font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: white; }
.footer-col p { font-size: 14px; color: #aaa; margin-bottom: 5px; }
.social-links { display: flex; gap: 12px; margin-top: 10px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: #aaa; transition: all 0.3s; }
.social-links a:hover { color: white; }
.social-links a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; background: rgba(0,0,0,0.1); margin-top: 30px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #888; }
.footer-bottom a { color: #aaa; margin-left: 20px; }
.footer-bottom a:hover { color: white; }

/* Breadcrumb */
.breadcrumb { padding: 15px 0; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 5px; }

/* Forms */
.form-control { width: 100%; padding: 10px 15px; border: 1px solid var(--border); border-radius: 4px; font-size: 14px; font-family: var(--font-body); transition: border-color 0.3s; }
.form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(115,65,180,0.1); }
textarea.form-control { min-height: 150px; resize: vertical; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; }

/* Cookie Notice */
.cookie-notice { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-dark); color: white; padding: 15px 20px; z-index: 9999; display: flex; align-items: center; justify-content: center; gap: 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.cookie-notice img { width: 80px; height: 80px; object-fit: contain; }
.cookie-notice-text { flex: 1; max-width: 600px; }
.cookie-notice-text strong { display: block; font-size: 16px; margin-bottom: 4px; }
.cookie-notice-text p { margin: 0; font-size: 14px; }
.btn-accent { display: inline-block; padding: 10px 40px; background: var(--accent); color: white; border: none; border-radius: 4px; font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.btn-accent:hover { background: #006d76; color: white; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000; display: none; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: white; border-radius: 8px; max-width: 800px; width: 90%; max-height: 90vh; overflow-y: auto; padding: 30px; position: relative; }
.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-light); }

/* Filter Sidebar */
.filter-nav { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: white; z-index: 998; transition: left 0.5s; overflow-y: auto; border-right: 1px solid var(--border); padding: 20px; }
.filter-nav.open { left: 0; }
.filter-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 997; display: none; }
.filter-nav-overlay.active { display: block; }
.filter-toggle { position: fixed; left: 0; top: 50%; transform: translateY(-50%); background: var(--primary); color: white; border: none; padding: 10px 12px; border-radius: 0 15px 15px 0; cursor: pointer; z-index: 996; font-size: 14px; }

/* Alert */
.alert { padding: 15px 20px; border-radius: 4px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-light { color: var(--text-light); }
.text-theme { color: var(--primary); }
.text-white { color: white; }
.d-flex { display: flex; }
.d-none { display: none; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.flex-grow-1 { flex-grow: 1; }
.m-b-20 { margin-bottom: 20px; }
.m-b-30 { margin-bottom: 30px; }
.m-b-40 { margin-bottom: 40px; }
.m-b-50 { margin-bottom: 50px; }
.m-t-20 { margin-top: 20px; }
.m-t-30 { margin-top: 30px; }
.p-t-50 { padding-top: 50px; }
.p-b-50 { padding-bottom: 50px; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 8px; }
.border { border: 1px solid var(--border); }

.heading-text { margin-bottom: 30px; }
.heading-creative strong { color: var(--primary); }
.item-link { display: inline-flex; align-items: center; gap: 5px; color: var(--primary); font-weight: 600; font-size: 14px; transition: gap 0.3s; }
.item-link:hover { gap: 10px; color: var(--primary-dark); }
.item-link::after { content: '\203A'; font-size: 18px; }

/* AOS Animations */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
    .big-title { font-size: 2em; line-height: 30px; margin-bottom: 40px; }
    .big-title::after { bottom: -20px; }
}
@media (max-width: 992px) {
    .col-lg-2,.col-lg-3,.col-lg-4,.col-lg-6,.col-lg-8,.col-lg-10,.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    .product-grid .product-col { flex: 0 0 33.333%; max-width: 33.333%; }
    .category-grid .cat-col { flex: 0 0 33.333%; max-width: 33.333%; }
    .content-with-sidebar .main-content, .content-with-sidebar .sidebar { flex: 0 0 100%; max-width: 100%; }
    .footer-col-main,.footer-col-sub { flex: 0 0 50%; max-width: 50%; margin-bottom: 20px; }
    .footer-bottom .container { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .nav-toggle { display: flex; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; }
    .main-nav .sub-menu { position: static; box-shadow: none; border: none; padding-left: 20px; }
    .header-search { display: none; }
    .hero-slider { height: 360px; min-height: 360px; }
    .hero-slide .slide-content { padding: 0 20px; }
    .hero-slide .slide-content h3 { font-size: 1.4em; }
    .product-grid .product-col { flex: 0 0 50%; max-width: 50%; }
    .category-grid .cat-col { flex: 0 0 50%; max-width: 50%; }
    .footer-col-main,.footer-col-sub { flex: 0 0 100%; max-width: 100%; }
}
@media (max-width: 576px) {
    .product-grid .product-col { flex: 0 0 100%; max-width: 100%; }
    .category-grid .cat-col { flex: 0 0 100%; max-width: 100%; }
    .hero-slide .slide-content .slide-buttons { flex-direction: column; }
}
