:root {
    --primary-orange: #EF7300;
    --dark-blue: #053A62;
    --icon-bg: #F9DDD1;
    --bg-color: #f1f5f9;
}

.olmia-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.olmia-brand__logo img {
    height: 90px !important;
    width: auto;
    display: block;
}

.olmia-brand__text {
    font-size: 36px;
    font-weight: 400;
    color: #f58220; /* Olmia orange */
    font-family: inherit;
    white-space: nowrap;
    margin-left: 20px;
}


/* ================================
   OLMIA SEARCH – FIX ICON
================================ */

/* Main form */
.cm-autocomplete .aa-Form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #ffffff;
    height: 56px;
    padding: 0 42px 0 14px; /* space for right icon */
}

/* Input */
.cm-autocomplete .aa-Input {
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    font-size: 15px;
    color: #333;
}

/* Placeholder */
.cm-autocomplete .aa-Input::placeholder {
    color: #9a9a9a;
}

/* PREFIX: keep it but reposition */
.cm-autocomplete .aa-InputWrapperPrefix {
    position: absolute !important;
    right: 14px !important;
    left: auto !important;
    top: 45% !important;
    transform: translateY(-50%) !important;
}

/* Submit button */
.cm-autocomplete .aa-SubmitButton {
    background: none;
    border: none;
    padding: 0;
    color: #1e73be;
    cursor: pointer;
}

/* Icon size */
.cm-autocomplete .aa-SubmitIcon {
    width: 32px;
    height: 32px;
}

/* Hide clear (X) button */
.cm-autocomplete .aa-ClearButton {
    display: none !important;
}

/* Focus state */
.cm-autocomplete .aa-Form:focus-within {
    border-color: #1e73be;
}

.aa-SubmitButton svg.aa-SubmitIcon {
    transform: translate(-80%, -67%) !important;
}

/* ================================
   OLMIA BUTTONS
================================ */

.olmia-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* height: 44px; */
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s ease;
    white-space: nowrap;
}

/* Primary – Orange */
.olmia-btn--primary {
    background: #f58220;
    color: #ffffff !important;
    border: 1px solid #f58220;
}

.olmia-btn--primary:hover {
    background: #e36f0f;
    border-color: #e36f0f;
    color: #ffffff !important;
}

/* Secondary – Blue Outline */
.olmia-btn--secondary {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff;
}

.olmia-btn--secondary:hover {
    background: #1e3a8a;
    color: #ffffff !important;
}

.olmia-button-group {
    display: flex;
    gap: 14px;
}

.olmia-link-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #f58220 !important;
    text-decoration: none;
    /* text-align: right; */
    float: right;
}

.olmia-link-btn__arrow{
    font-size:16px;
    line-height:1;
    transform: translateY(1px);
    transition: transform .2s ease;
}

.olmia-link-btn:hover .olmia-link-btn__arrow{
    transform: translate(3px, 1px);
}



/* Forces the 2-column structure */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; 
            column-gap: 50px;
            row-gap: 35px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .icon-container {
            background-color: var(--icon-bg);
            padding: 10px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon-container svg {
            width: 30px;
            height: 30px;
            stroke: var(--primary-orange);
            fill: none;
            stroke-width: 2;
        }

        .text-content h3 {
            color: var(--primary-orange);
            margin: 0 0 4px 0;
            font-size: 22px;
            font-weight: 600;
        }

        .text-content p {
            margin: 0;
            font-size: 20px;
            line-height: 1.4;
            color: var(--dark-blue);
        }

        .cta-button {
            background-color: var(--primary-orange);
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .cta-button:hover {
            opacity: 0.9;
        }

        /* Responsive: stack only on very small mobile screens */
        @media (max-width: 600px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }
        
        :root {
            --brand-orange: #f27a00; /* Matching Olmia Orange */
            --light-orange: #f5912d;
            --white: #ffffff;
        }

        .review-card {
            background-color: var(--brand-orange);
            width: 420px;
            border-radius: 12px;
            color: var(--white);
        }

        .rating-box {
            background-color: var(--light-orange);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            margin-bottom: 25px;
        }

        .score {
            font-size: 5rem;
            font-weight: bold;
            line-height: 1;
            margin: 0;
        }

        .stars {
            font-size: 1.8rem;
            margin: 10px 0;
            letter-spacing: 2px;
        }

        .review-count {
            font-size: 1rem;
            opacity: 0.95;
        }

        .usp-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .usp-item {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .check-icon {
            background-color: var(--white);
            color: var(--brand-orange);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .usp-item:last-child {
            margin-bottom: 0;
        }
        
        .ha-testimonial-carousel--basic {
	background:#fff !important;
    padding-top: 50px !important;
    padding-bottom:50px !important;
    border-radius: 10px;
}

 :root {
            --brand-orange: #f27a00;
            --text-blue: #0a3d62;
            --card-border: #e2e8f0;
            --bg-light: #ffffff;
        }
 .case-container {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
        }

        .case-card {
            background: var(--bg-light);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .case-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-content {
            padding: 25px;
            flex-grow: 1;
        }

        .case-title {
            color: var(--brand-orange);
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 12px 0;
        }

        .case-excerpt {
            color: var(--text-blue);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .case-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 650px) {
            .case-container {
                grid-template-columns: 1fr;
            }
        }
        
/*Breadcrumb*/
.home .breadcrumb-navxt,
.front-page .breadcrumb-navxt,.home .breadcrumb_section {
	display: none;
}

/* === Breadcrumb orange bar === */
.breadcrumb_section {
	background-color: #f97316; /* orange */
	padding: 0;
}

/* Inner width alignment (matches header/container width) */
.breadcrumb_section .e-con-inner {
	margin: 0 auto;
	padding: 14px 0px;
}

/* Breadcrumb text */
.breadcrumb_section .breadcrumb-navxt {
	font-size: 15px;
	color: #ffffff;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

/* Links */
.breadcrumb_section .breadcrumb-navxt a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
}

.breadcrumb_section .breadcrumb-navxt a:hover {
	text-decoration: underline;
}

/* Separator ">" */
.breadcrumb_section .breadcrumb-navxt {
	gap: 6px;
}

.breadcrumb_section .breadcrumb-navxt > span,
.breadcrumb_section .breadcrumb-navxt > a {
	display: inline-flex;
	align-items: center;
}

/* Current page */
.breadcrumb_section .breadcrumb-navxt .current-item {
	color: #ffffff;
}

/* Remove Elementor default spacing */
.breadcrumb_section .elementor-widget {
	margin: 0;
}

/* Only the last breadcrumb item bold */
.breadcrumb-navxt > :last-child,
.breadcrumb-navxt > :last-child a {
	font-weight: 700 !important;
}

/* CTA Buttons */
.cta-buttons-wrapper {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

/* Base button */
.cta-btn {
	padding: 14px 26px;
	font-size: 20px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.25s ease;
	white-space: nowrap;
}

/* Primary (orange) */
.cta-btn-primary {
	background-color: #f97316;
	color: #ffffff !important;
	border: 2px solid #f97316;
}

.cta-btn-primary:hover {
	background-color: #ea580c;
	border-color: #ea580c;
	color: #ffffff !important;
}

/* Outline */
.cta-btn-outline {
	background-color: transparent;
	color: #ffffff !important;
	border: 2px solid #ffffff;
}

.cta-btn-outline:hover {
	background-color: #ffffff;
	color: #0f172a;
}

/* CTA Buttons - centered */
.cta-buttons-wrapper {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center; /* centers the group */
	flex-wrap: wrap;
	width: 100%;
}

:root {
            --brand-orange: #f27a00;
            --brand-blue: #0a3d62;
            --card-border: #eef2f6;
            --bg-white: #ffffff;
        }
		
        .stats-container {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--bg-white);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(10, 61, 98, 0.03);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            color: var(--brand-orange);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            color: var(--brand-blue);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .stats-container {
                grid-template-columns: 1fr;
            }
        }
        
        :root {
            --brand-orange: #f27a00;
            --text-blue: #0a3d62;
            --icon-bg: #fdf2e9;
            --card-border: #eef2f6;
        }
		
        .solutions-grid {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .solution-card {
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 30px;
            background: #fff;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .solution-card:hover {
            box-shadow: 0 8px 24px rgba(10, 61, 98, 0.08);
            border-color: #d1d9e0;
        }

        .icon-badge {
            background-color: var(--icon-bg);
            padding: 8px;
            border-radius: 6px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-badge svg {
            width: 24px;
            height: 24px;
            stroke: var(--brand-orange);
            fill: none;
            stroke-width: 2;
        }

        .solution-card h3 {
            color: var(--brand-orange);
            font-size: 21px;
            font-weight: 600;
            margin: 0 0 12px 0;
        }

        .solution-card p {
            color: var(--text-blue);
            font-size: 19px;
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .solutions-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .solutions-grid { grid-template-columns: 1fr; }
        }
        
        :root {
            --brand-orange: #f27a00;
            --white: #ffffff;
        }
        .cta-bar {
            background-color: var(--brand-orange);
            padding: 25px 50px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .cta-item {
            display: flex;
            align-items: center;
            color: var(--white);
            text-decoration: none;
        }

        .icon-circle {
            background-color: var(--white);
            color: var(--brand-orange);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .icon-circle svg {
            width: 28px;
            height: 28px;
            stroke: var(--brand-orange);
            fill: none;
            stroke-width: 2;
        }

        .text-group {
            display: flex;
            flex-direction: column;
        }

        .text-group .title {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0;
            color: #fff !important;
        }

        .text-group .subtitle {
            font-size: 1rem;
            margin: 0;
            opacity: 0.9;
            color: #fff !important;
        }

        /* Hover effect for links */
        a.cta-item:hover .title {
            text-decoration: underline;
        }

        @media (max-width: 900px) {
            .cta-bar {
                justify-content: flex-start;
                padding: 30px;
            }
        }

        @media (max-width: 600px) {
            .cta-item {
                width: 100%;
            }
        }
        
.new_icon_box .elementor-icon {
    background: #EF7300;
    padding: 15px;
    border-radius: 50%;
}

:root {
            --brand-orange: #f27a00;
            --brand-blue: #0a3d62;
            --card-border: #eef2f6;
            --bg-white: #ffffff;
        }
		
        .features-container {
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Strict 2-column layout */
            gap: 15px 25px;
        }

        .feature-box {
            background: var(--bg-white);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 20px 25px;
            display: flex;
            align-items: center;
            transition: border-color 0.2s ease;
        }

        .feature-box:hover {
            border-color: #cbd5e1;
        }

        .check-icon {
            background-color: var(--brand-orange);
            color: white;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 14px;
            font-weight: bold;
        }

        .feature-text {
            color: var(--brand-blue);
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0;
        }

        /* Mobile optimization: stack to 1 column */
        @media (max-width: 768px) {
            .features-container {
                grid-template-columns: 1fr;
            }
        }
        
        :root {
            --brand-orange: #f27a00;
            --brand-dark-blue: #0a3d62;
            --btn-blue: #06385d;
            --text-gray: #4a5568;
            --border-light: #e2e8f0;
        }
		
        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .product-card {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }

        /* "NEW" Badge ribbon effect */
        .badge-new {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #ff3b30;
            color: white;
            padding: 5px 15px;
            font-weight: 900;
            font-size: 0.8rem;
            transform: rotate(-5deg);
            border-radius: 3px;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
            z-index: 2;
        }

        .product-image {
            width: 100%;
            height: 220px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
        }

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

        .product-title {
            color: var(--brand-orange);
            font-size: 21px;
            font-weight: 600;
            margin: 0 0 15px 0;
        }

        .specs-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            flex-grow: 1;
        }

        .specs-list li {
            color: var(--brand-dark-blue);
            font-size: 17px;
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px;
            font-weight: 500;
        }

        .specs-list li::before {
            content: "•";
            color: var(--btn-blue);
            font-weight: bold;
            display: inline-block; 
            width: 1em;
            margin-left: -1em;
        }

        .btn-specs {
            background-color: var(--btn-blue);
            color: white !important;
            text-decoration: none;
            text-align: center;
            padding: 14px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background 0.2s ease;
        }

        .btn-specs:hover {
            background-color: #042a47;
        }

        .btn-specs span {
            margin-left: 8px;
            font-size: 1.2rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .product-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 650px) {
            .product-container { grid-template-columns: 1fr; }
        }
        
.olmia-brand__text {
  display:none;
}

:root {
            --brand-orange: #f27a00;
            --icon-bg: #fdf2e9;
            --text-blue: #0a3d62;
            --border-light: #eef2f6;
        }
		
        .process-container {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        /* Styling the Link Wrapper */
        .process-link {
            text-decoration: none; /* Remove underline */
            display: block;
            color: inherit; /* Keep text colors defined in children */
        }

        .process-step {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 25px 15px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            height: 100%; /* Ensure all boxes are same height */
            box-sizing: border-box;
        }

        /* Hover effects now trigger on the whole link */
        .process-link:hover .process-step {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(10, 61, 98, 0.05);
            border-color: var(--brand-orange);
        }

        .icon-container {
            background-color: var(--icon-bg);
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .icon-container svg {
            width: 26px;
            height: 26px;
            stroke: var(--brand-orange);
            fill: none;
            stroke-width: 2;
        }

        .step-label {
            color: var(--brand-orange);
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .process-container { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 600px) {
            .process-container { grid-template-columns: repeat(2, 1fr); }
        }
        
.item-li {
            margin-bottom: 35px;
            display: flex;
            flex-direction: column;
        }

        .item-li .header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        /* Exact Green from image: #8cc34bish - using #79c343 for better match */
        .check-icon-list {
            width: 26px;
            height: 26px;
            margin-right: 18px;
            flex-shrink: 0;
        }

        .item-li h2 {
            color: #003a5d; /* Deep Navy/Teal */
            font-size: 24px;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.5px;
        }

        .item-li p {
            margin: 0;
            font-size: 17.5px;
            line-height: 1.35;
            color: #2e5b7e; /* Slightly lighter teal-blue */
            font-weight: 400;
        }
        
.icon-badge-bg .elementor-icon { 
    background-color: #fdf2e9;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -6px;
}
.icon-badge-bg .elementor-icon svg { 
    height: 28px;
}

/* Tablet landscape / small laptop */
@media (min-width: 1024px){
   .image-left {
    width: 175px !important;
    height: 200px !important;
    top: 150px !important;
    left: -44px !important;
   }
   
   .image-right {
    width: 245px !important;
    height: 280px !important;
    top: 154px !important;
    right: 0;
   }

}

/* Standard laptop */
@media (min-width: 1200px){
  .image-left {
    width: 270px !important;
    height: 230px !important;
    top: 150px !important;
    left: 0;
  }
  
  .image-right {
    width: 280px !important;
    height: 280px !important;
    top: 140px !important;
    right: 0;
  }
}

/* Large laptop / desktop */
@media (min-width: 1367px){
   .image-left {
    width: 275px !important;
    height: 230px !important;
    top: 150px !important;
    left: 0;
  }
  
  .image-right {
    width: 440px !important;
    height: 280px !important;
    top: 140px !important;
    right: 0;
  }
  
}

/* Force ONLY this Elementor Icon List inline (widget: 7def0ba) */
.elementor-element-7def0ba .elementor-icon-list-items.elementor-inline-items{
  display: flex !important;
  flex-wrap: wrap;              /* change to nowrap if you want no wrapping */
  gap: 18px 28px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.elementor-element-7def0ba .elementor-icon-list-item.elementor-inline-item{
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
}

.elementor-element-7def0ba .elementor-icon-list-icon{
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.elementor-element-7def0ba .elementor-icon-list-text{
  display: inline-block;
  line-height: 1.2;
}

.elementor-element-7def0ba .elementor-icon-list-icon svg{
  width: 18px;
  height: 18px;
}

/* Mobile: stack */
@media (max-width: 767px){
  .elementor-element-7def0ba .elementor-icon-list-items.elementor-inline-items{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* =========================
   LAYOUT
========================= */

.olmia-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* =========================
   SIDEBAR
========================= */

.olmia-sidebar {
    width: 220px;
}

.olmia-sidebar h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 15px;
}

.olmia-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.olmia-sidebar li {
    margin-bottom: 12px;
    font-size: 14px;
}

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

.olmia-sidebar input {
    margin-right: 6px;
}

.olmia-sidebar .count {
    background: #eee;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
}

/* =========================
   GRID
========================= */

.olmia-category-grid {
    flex: 1;
    display: grid;
    gap: 30px;
}

/* 4 Columns */
.olmia-category-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 3 Columns fallback */
.olmia-category-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* =========================
   CARD
========================= */

.olmia-category-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px 30px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: all 0.25s ease;
}

.olmia-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE BLOCK
========================= */

.olmia-category-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.olmia-category-image img {
    max-height: 140px;
    width: auto;
}

/* =========================
   TITLE
========================= */

.olmia-category-title {
    font-size: 20px;
    font-weight: 600;
    color: #e67300;
    margin-bottom: 6px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 20px;
}

/* =========================
   COUNT
========================= */

.olmia-category-count {
    display: block;
    color: #4BC442;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* =========================
   BUTTON
========================= */

.olmia-category-btn {
    background: #0c3559;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

.olmia-category-btn:hover {
    background: #09263e;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {
    .olmia-category-grid.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .olmia-category-grid.columns-4,
    .olmia-category-grid.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .olmia-wrapper {
        flex-direction: column;
    }

    .olmia-category-grid.columns-4,
    .olmia-category-grid.columns-3 {
        grid-template-columns: 1fr;
    }
}

/* =============================
   FILTER HEADER
============================= */

.olmia-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #6b6b6b;
    cursor: pointer;
    margin-bottom: 20px;
}

.olmia-toggle-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

/* Rotate when open */
.olmia-sidebar.open .olmia-toggle-icon {
    transform: rotate(45deg);
}

/* =============================
   FILTER LIST
============================= */

.olmia-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.olmia-sidebar.collapsed .olmia-filter-list {
    display: none;
}

/* =============================
   CUSTOM CHECKBOX
============================= */

.olmia-checkbox-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    margin-bottom: 14px;
    cursor: pointer;
}

.olmia-checkbox-wrapper input {
    position: absolute;
    opacity: 0;
}

.olmia-custom-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
}

/* Checkmark */
.olmia-checkbox-wrapper input:checked + .olmia-custom-checkbox {
    background: #0c3559;
    border-color: #0c3559;
}

.olmia-checkbox-wrapper input:checked + .olmia-custom-checkbox:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.olmia-label-text {
    flex-grow: 1;
    color: #333;
}

.count {
    background: #f1f1f1;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

/* Hover */
.olmia-checkbox-wrapper:hover .olmia-label-text {
    color: #e67300;
}
/*.olmia-category-heading {
    font-size: 44px;
    color: #053A62;
    margin-bottom: 20px;
}
.olmia-category-description {
    font-size: 20px;
    margin-bottom: 50px;
}*/

.olmia-category-header {
    margin-bottom: 40px;
}

.olmia-category-heading {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #053A62;
}

.olmia-category-description {
    line-height: 1.6;
    color: #053A62;
    font-size: 18px;
}

.cmtsfwc-Filter-category {
    display:none !important;
}

.thomas-wrapper {
    display: flex;
    gap: 30px;
}

.thomas-sidebar {
    width: 280px;
    background: #f4f6f8;
    padding: 20px;
    border-radius: 6px;
}

.thomas-filter {
    margin-bottom: 20px;
}

.thomas-filter h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.thomas-filter label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.thomas-products {
    flex: 1;
}

.thomas-count {
    margin-bottom: 20px;
    font-weight: 600;
}

.thomas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.thomas-card {
    background: #fff;
    border: 1px solid #e3e6ea;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.thomas-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.thomas-card img {
    max-height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
}

.thomas-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.thomas-meta {
    font-size: 13px;
    color: #666;
}

.thomas-pagination {
    margin-top: 30px;
}

/* Mobile */
@media (max-width: 767px) {
    .olmia-button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .olmia-button-group .olmia-btn {
        width: 100%;
        justify-content: center;
    }
}