/* Base styling (unchanged) */
.product-nutrition-card {
    grid-area: nutrition;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.nutrition-table th,
.nutrition-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e6e8ee;
}

.nutrition-table th {
    text-align: left;
    font-weight: 600;
    color: #102052;
    background: #f6f8fb;
}

.nutrition-nutrient {
    font-weight: 600;
    color: #333;
}

.nutrition-value {
    text-align: left;
}

.nutrition-row:hover {
    background: #f9fbff;
}

.nutrition-empty {
    padding: 15px;
    background: #f6f8fb;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.product-image-info-row {
    display: inline-flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    font-size: 14px;
}

.product-image-info-row .uos {
    font-weight: bold;
}

.product-image-info-row .enquire-link a {
    text-decoration: none;
    color: #102052;
    font-weight: 500;
    transition: color 0.2s;
}

.product-image-info-row .enquire-link a:hover {
    color: #1a73e8;
}

/* Product card grid */
.product-card {
    width: 80%;
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "image info"
        "extra extra"
        "nutrition nutrition";
    gap: 20px;
}

.product-image-card,
.product-info-card,
.product-extra-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
}

.product-image-card {
    grid-area: image;
    text-align: center;
}

.product-info-card {
    grid-area: info;
}

.product-extra-card {
    grid-area: extra;
}

.product-image-large {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 8px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    color: #102052;
    margin-bottom: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    font-size: 14px;
}

.info-label {
    font-weight: 600;
    color: #555;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 15px;
}

.extra-item {
    background:#f6f8fb;
    padding:12px;
    border-radius:8px;
}

/* ====== Responsive adjustments ====== */
@media (max-width: 1024px) {
    .product-card {
        width: 90%;
        grid-template-columns: 1fr; /* single column */
        grid-template-areas:
            "image"
            "info"
            "extra"
            "nutrition";
    }
    .product-image-info-row {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .product-card {
        width: 95%;
        padding: 10px;
    }
    .product-image-large {
        max-height: 250px;
    }
    .product-title {
        font-size: 20px;
    }
    .nutrition-table th,
    .nutrition-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .product-card {
        margin: 20px auto;
    }
    .product-image-large {
        max-height: 180px;
    }
    .product-title {
        font-size: 18px;
    }
    .extra-item {
        padding: 10px;
        font-size: 13px;
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 220px); 
    justify-content: center; 
    gap: 20px; 
    margin-top: 15px;
    padding: 0 10px; 
}

.product-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 350px; 
    padding: 15px;
}


.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.product-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}


.product-desc {
    font-weight: 600;
    font-size: 1em;
    color: #222;
    margin: 10px 0 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}


.product-ean {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 10px;
}


a.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 220px); 
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 220px); 
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 220px); 
        margin-top: 20px;
    }
    .product-item {
        height: 320px;
    }
    .product-image {
        height: 150px;
    }
    .product-desc {
        font-size: 0.95em;
        -webkit-line-clamp: 3; 
    }
    .product-ean {
        font-size: 0.75em;
    }
}

.filter-container {
    text-align: center;
    margin-top: 40px;
}

#product-filter {
    width: 300px;
    max-width: 90%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    transition: border-color 0.3s;
}

#product-filter:focus {
    outline: none;
    border-color: rgb(245, 99, 75);
}

/* ===== Top Bar Base ===== */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1180px; /* default width */
    margin: 40px auto 20px auto;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
    gap: 10px; /* small gap between elements if wrapped */
}

.top-bar .productCount p {
    margin: 0;
    font-weight: bold;
    font-size: 1rem; /* base font size */
}

.filter-container {
    text-align: center;
    margin-top: 0;
    width: auto;
}

/* ===== Filter Input ===== */
#product-filter {
    width: 300px; /* default width */
    max-width: 90%; /* scales down on smaller screens */
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    transition: border-color 0.3s;
}

#product-filter:focus {
    outline: none;
    border-color: rgb(245, 99, 75);
}

/* ===== Back Button ===== */
.back-button {
    text-decoration: none;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #e2e2e2;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
    .top-bar {
        width: 95%;
        justify-content: space-between;
    }
    #product-filter {
        width: 250px;
        font-size: 0.95em;
    }
}

@media (max-width: 992px) {
    .top-bar {
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
    }
    #product-filter {
        width: 100%;
        max-width: 300px;
        margin-top: 10px;
    }
    .top-bar .productCount p {
        font-size: 0.95em;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        width: 95%;
    }
    #product-filter {
        width: 100%;
        font-size: 0.9em;
    }
    .back-button {
        font-size: 0.85em;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .top-bar .productCount p {
        font-size: 0.85em;
    }
    #product-filter {
        width: 90%;
        font-size: 0.85em;
    }
    .back-button {
        width: 100%;
        text-align: center;
    }
}

.back-button {
    text-decoration: none;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #333;
}

.back-button:hover {
    background: #e2e2e2;
}

.ProdItem {
	float: left;
	display:inline-block;
	width:18.6%;
	margin:0.5%;
	/*width:18%;*/
	text-align: center;
	border:1px solid #ecec;
	min-height:290px;
	padding-top:10px;
}

.CatItem {
	float: left;
	display:inline-block;
	width:30%;
	margin:0.5%;
	/*width:18%;*/
	text-align: center;
	cursor: pointer;
	/*border:1px solid #666;*/
	border: 2px solid #a9c8ea;
	min-height:160px;
	position: relative;
}
	 
.CatImg {
	height: 80%;
	width: 80%;
	/*border: 1px solid #ccc;*/
}

.CategoryConf {
	margin: 10px;
	padding-top:20px;
	background-color: #b2d9cb;
	height: 233px;
	width: 350px;
	text-align: center;
	border: 1px solid #ccc;
	cursor: pointer;
	float:left;
}

.CategoryProds {
	margin: 10px;
	background-color: #f8f8f8;
	height: 320px;
	width: 350px;
	text-align: center;
	border: 1px solid #ccc;
	cursor: pointer;
	float:left;
}

.CategoryProds:hover {	
	background-color: #f4f6fa;
	-webkit-transition: background .2s; /* For Safari 3.0 to 6.0 */
    transition: background .2s; /* For modern browsers */
}

.CategoryProdsbg {
	margin: 10px;
	height: 263px;
	width: 350px;
	text-align: center;
	cursor: pointer;
	float:left;
	border-radius: 8px;
	background-color: #f2f7fa;
	padding: 20px 20px 0px 20px;
}

.CategoryProdsbg:hover {
	background-color:#deeffa;
}

.BrandProds {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 250px;
    width: 250px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
}

.BrandProds:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.CategoryFullImg {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.CategoryTitle {
    text-align: center;
    color: #102052;
    font-size: 20px;
}

.Main {
	width: 90%;
    padding-left: 10%;
	min-height:800px;
	margin-left: auto;
	margin-right: auto; 
	background-color: #ffffff; 
    margin-top:1%;
    margin-bottom:1%;
	/*background-color:#294376; FA 280224*/
	overflow-y:auto;

}

/*=== MEDIA QUERY ===*/
@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:400,500,600,700|Montserrat|Poppins:400,500,600,700");
body {
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

/*required to resize images in carousel*/
.item {
	width:90%;
	padding:5px;
	
}
.owl-stage .active{
    background-color:white;
}
.owl-dots .active{
    background-color:white;
}
.owl-item .item{
    text-align: center;
    display:block;
    margin:auto;
}
.owl-item{
    margin-right:0px!important;
}
.p-carousel{
    display:block;
}

img.imggall {
	width: 50%;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: #232323;
  letter-spacing: 0.5px;
}

h1, .h1 {
  font-size: 48px;
  text-transform: uppercase;
}

h2, .h2 {
  font-size: 38px;
  text-transform: uppercase;
}

h3, .h3 {
  font-size: 28px;
  line-height: 38px;
  text-transform: uppercase;
}

h4, .h4 {
  font-size: 22px;
  line-height: 30px;
}

h5, .h5 {
  font-size: 18px;
  line-height: 24px;
}

h6, .h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.font-primary {
  font-family: "Barlow Condensed", sans-serif;
}

.font-secondary {
  font-family: "Montserrat", sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

.navbar-toggle .icon-bar {
  background: rgb(245, 99, 75);
}

input[type=email], input[type=password], input[type=text], input[type=tel] {
  box-shadow: none;
  height: 50px;
  outline: none;
  font-size: 14px;
}
input[type=email]:focus, input[type=password]:focus, input[type=text]:focus, input[type=tel]:focus {
  box-shadow: none;
  border: 1px solid rgb(245, 99, 75);
}

.form-control {
  box-shadow: none;
  border-radius: 0;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid rgb(245, 99, 75);
}

.btn {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 18px 35px;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: 700;
  transition: all 0.5s ease;
  border: 1px solid transparent;
}

.btn-main, .btn-small, .btn-transparent {
  background: linear-gradient(90deg, rgb(245, 99, 75) 0%, #fe9418 100%);
  color: #fff;
}
.btn-main:hover, .btn-small:hover, .btn-transparent:hover {
  background: linear-gradient(90deg, #fe9418 0%, rgb(245, 99, 75) 100%);
  color: #fff !important;
  transform: translateY(-5px);
}

.btn-solid-border {
  border: 2px solid rgb(245, 99, 75);
  background: transparent;
  color: #fff;
}
.btn-solid-border:hover {
  border: 2px solid rgb(245, 99, 75);
  background: rgb(245, 99, 75);
}

.btn-white {
  border: 2px solid #fff;
  background: #fff;
  color: #232323;
}
.btn-white:hover {
  border: 1px solid rgb(245, 99, 75);
  background: rgb(245, 99, 75);
  color: #fff !important;
}

.btn-transparent {
  background: transparent;
  padding: 0;
  color: rgb(245, 99, 75);
}
.btn-transparent:hover {
  background: transparent;
  color: rgb(245, 99, 75);
}

.btn-large {
  padding: 20px 45px;
}
.btn-large.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.btn-small {
  padding: 10px 25px;
  font-size: 12px;
}

.btn-round {
  border-radius: 4px;
}

.btn-round-full {
  border-radius: 50px;
}

.btn.active:focus, .btn:active:focus, .btn:focus {
  outline: 0;
}

.bg-shadow {
  background-color: #fff;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.bg-gray {
  background: #f0f2f4;
}

.bg-primary {
  background: rgb(245, 99, 75) !important;
}

.section {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 70px;
}
.section-title .title {
  font-size: 50px;
  line-height: 50px;
}
.section-title p {
  color: #666;
  font-family: "Montserrat", sans-serif;
}

.page-title {
  padding: 155px 0 100px;
}

.overly, .bg-4 {
  position: relative;
}
.overly:before, .bg-4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0.8;
}

.overly-2, .textimonial, .cta, .slider, .page-title {
  position: relative;
}

.overly-2:before, .textimonial:before, .cta:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
}

.ProdItem {
	float: left;
	display:inline-block;
	width:180px;
	margin:10px;
	padding:10px;
	/*width:18%;*/
	text-align: center;
	cursor: pointer;
	border:1px solid #ecec;
	min-height:100px;
}

.ProdGal {
	margin-left:auto;
	margin-right:auto;
	display: block;
	width:80%;
	/*width:18%;*/
	text-align: center;
	padding-top:50px;
	padding-bottom:50px;
	height: auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	overflow: auto;
}

.ProdGal h1 {
	color: #3333CC;
}

.ProdGal h1 {
	font-family: 'Alata', sans-serif;
}

.ProdGal a {
	color: #666;
	/*font-weight: 500;*/
	font-family: calibri;
	font-size: 16px;
	
}

.ProdsImg {
	height:120px;
	width:auto;
	padding: 5px;
}

.CatContainer{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}

.CatContainer a{
	
}

.CatItem {
	width:320px;
	margin:10px;
	/*width:18%;*/
	text-align: center;
	cursor: pointer;
	/*border:1px solid #666;*/
	border: 2px solid #000;
}

.CatTitle {
	margin-bottom: 0px;
	height: 50px;
	background-color: #000;
	opacity: 0.8;
	color: #fff;
	line-height: 50px;
	font-family: 'Alata', sans-serif;
	font-size: 20px;
	font-weight: bold;
}

.CatItem:hover, .CatTitle:hover {
	border: 2px solid rgb(245, 99, 75);
}
.CatTitle:hover {
	background-color: rgb(245, 99, 75);
}


.CatImg {
	width:100%;
	margin-top:20px;
	/*padding: 5px;*/
}

.page-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #fff 0,
    #fff 156px,
    rgba(0, 0, 0, 0.8) 156px,
    rgba(0, 0, 0, 0.8) 100%
  );
}
 .slider:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.8;
}

#success, #error {
  display: none;
}

.navbar-logo {
  height: 130px;   /* adjust slightly if needed */
  width: auto;
}

.slider {
  padding-top:156px
}

.text-color {
  color: rgb(183, 85, 77);
}

.text-black {
  color: #232323;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 26px;
  line-height: 36px;
}

.text-lg {
  font-size: 56px;
  line-height: 66px;
}

.no-spacing {
  letter-spacing: 0px;
}

a {
  transition: all 0.35s ease;
}

a:hover, a:focus {
  color: rgb(245, 99, 75) !important;
  text-decoration: none !important;
  outline: 0;
}

.font-size-13 {
  font-size: 13px;
}

.letter-spacing {
  letter-spacing: 1px;
}

.bg-black-50 {
  background: #181a23;
}

.navbar-nav li {
  padding: 0px 10px;
}
.navbar-nav .nav-link {
  font-family: "Montserrat", sans-serif;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: rgb(245, 99, 75);
}

.top-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}
.top-header ul li {
  padding: 0px 25px;
  border-left: 1px solid #dedede;
}

.dropdown {
  height: 100%;
}



.dropdown-menu {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
  padding: 24px 0 26px;
  min-width: 280px;
  left: 0px;
  top: 100%;
  transform: translateY(10%);
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  transition: all 0.3s ease 0s;
  display: block;
}

.dropdown-item {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  padding: 0.55rem 2rem;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  z-index: 20;
  transform: translateY(0%);
}

.dropdown-item:hover {
  background: transparent;
  color: rgb(245, 99, 75);
}

ul.dropdown-menu li {
  padding-left: 0px !important;
}

.fixed-nav {
  background: #fff;
}

.navbar-toggler {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0px;
  padding: 5px 10px;
}

.navbar-collapse.collapse.show {
  background: #fff !important;
}

.bg-3 {
  background: url("../images/bg/bg-cta.jpg") no-repeat;
  background-size: cover;
}

.bg-4 {
  background: url("../images/about/img-7.jpg") no-repeat;
  background-size: cover;
}

.mt-80px {
  margin-top: -80px;
}

.number {
  opacity: 0.1;
  font-size: 130px;
  display: block;
  line-height: 120px;
  position: absolute;
  top: 10px;
}

.why .card {
  transition: all 0.4s ease 0s;
}
.why .card:hover {
  background: #181a23;
}

.why .card:hover h3,
.why .card:hover p {
  color: #fff;
}

.hover-style-1 {
  position: relative;
}
.hover-style-1:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0px;
  transition: all 600ms ease;
  background: linear-gradient(90deg, rgb(183, 85, 77) 0%, #fe9418 100%);
  border-color: rgb(245, 99, 75);
}
.hover-style-1 h3, .hover-style-1 p, .hover-style-1 a, .hover-style-1 i, .hover-style-1 h4 {
  position: relative;
  transition: all 600ms ease;
}
.hover-style-1:hover:before {
  height: 100%;
}
.hover-style-1:hover a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.hover-style-1:hover h3,
.hover-style-1:hover h4,
.hover-style-1:hover p,
.hover-style-1:hover a {
  color: #fff;
}

.hover-style-1:hover i {
  color: rgba(255, 255, 255, 0.8) !important;
}

.mt--45 {
  margin-top: -45px;
}

.course .card-body a h4:hover {
  color: rgb(245, 99, 75);
}

.course-widget li a {
  color: #232323;
  opacity: 0.9;
}

.team-content-overlay li a {
  color: #fff;
}
.team-content-overlay li a:hover {
  background: rgb(245, 99, 75);
}

.team-item .card-body {
  margin-top: -120px;
}

.team-content-overlay {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  width: 100%;
  background-color: rgba(41, 40, 45, 0.85);
  transition: opacity 0.3s ease-out;
}

.overlay-content {
  width: 100%;
  position: absolute;
  left: 0;
  padding: 25px;
  box-sizing: border-box;
  text-align: center;
  top: 50%;
  transform: translateY(-40%);
}

.team-item:hover .team-content-overlay {
  opacity: 1;
}

.team-item:hover .card-body {
  opacity: 0;
}

.team-wrap .card-subtitle {
  position: relative;
}
.team-wrap .card-subtitle:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  max-width: 26px;
  border-top: 4px solid #ddd;
  margin-top: 20px;
}
.team-wrap ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid #dedede;
  color: #232323;
  display: inline-block;
  text-align: center;
  padding-top: 6px;
}
.team-wrap ul li a:hover {
  background: rgb(245, 99, 75);
  border-color: rgb(245, 99, 75);
  color: #fff !important;
}

.divider {
  margin: 0 auto;
  background: rgb(245, 99, 75);
  width: 45px;
  height: 4px;
}

.cta {
  background: url("../images/bg/slide2.jpg") fixed 50% 50% no-repeat;
  background-size: cover;
}

.w-40 {
  width: 40%;
}

.testimonial-slider .slick-dots li {
  color: #fff;
}

.slick-dots li.slick-active button::before {
  color: rgb(245, 99, 75);
}

.slick-dots li button::before {
  color: #fff;
  font-size: 10px;
}

.slick-slide:focus, .slick-slide a {
  outline: none;
}

.lh-35 {
  line-height: 35px;
}

.pricing .card-body ul li {
  font-size: 15px;
}
.pricing h3 {
  padding-left: 20px;
}
.pricing h3 sup {
  top: 20px;
  left: 0px;
}
.pricing h3 sub {
  font-size: 13px;
}
.pricing .btn-solid-border:hover {
  color: #fff !important;
}

.map {
  width: 100%;
  height: 450px;
}

.mt--170 {
  margin-top: -170px;
}

.blog .card a h4 {
  font-weight: 700;
}
.blog .card a h4:hover {
  color: rgb(245, 99, 75);
}

.blog-post-meta span {
  font-size: 13px;
}

.lh-25 {
  line-height: 23px;
}

.search i {
  position: absolute;
  right: 15px;
  top: 15px;
}

.tags a {
  display: inline-block;
  color: #232323;
  border: 1px solid #dedede;
  padding: 3px 10px;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
}

.follow a {
  width: 35px;
  height: 35px;
  background: #fff;
  display: inline-block;
  text-align: center;
  padding-top: 5px;
}

.pagination {
  border: 0px;
}
.pagination li a {
  color: #232323;
}
.pagination .page-item.active .page-link {
  background-color: rgb(245, 99, 75);
  border-color: rgb(245, 99, 75);
  color: #fff !important;
}
.pagination .page-item:last-child .page-link {
  border-radius: 0px;
}
.pagination .page-item:first-child .page-link {
  border-radius: 0px;
}
.pagination .page-link {
  background: transparent;
  padding: 15px 20px;
}

.font-size-12 {
  font-size: 12px;
}

.post-tags a {
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
}

.social-share a {
  color: #232323;
  padding: 0px 10px;
}

.reply-btn {
  font-size: 12px;
  padding: 6px 17px;
  font-weight: 400;
  border: 2px solid #eee;
}

.footer {
  padding-top: 90px;
  padding-bottom: 45px;
}
.footer p {
  color: #fff;
  opacity: 0.8;
  font-size: 14px;
}

.bg-black {
  background: #111;
}

.footer-menu li a {
  color: #fff;
  opacity: 0.8;
  font-size: 14px;
}
.footer-menu li a:hover {
  color: rgb(245, 99, 75);
  opacity: 1;
}

.lh-40 {
  line-height: 40px;
}

.footer-socials li a {
  color: #fff;
  opacity: 0.8;
}

.recent-blog a {
  line-height: 1.5;
  font-size: 14px;
}

.footer-socials li a {
  color: #595b65;
  font-size: 18px;
  padding-left: 10px;
}

/*=== MEDIA QUERY ===*/
@media (max-width: 400px) {
  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }
  .navbar-nav li {
    padding: 0px;
  }
}
@media (max-width: 480px) {
  .slider h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .text-lg {
    font-size: 28px;
    line-height: 38px;
  }
  .lead {
    font-size: 1rem;
  }
  .media {
    display: block;
  }
  .media-body {
    margin-top: 20px;
  }
  .number {
    font-size: 50px;
    line-height: 65px;
  }
  .dropdown-menu {
    display: none;
    text-align: center;
  }
  .navbar-nav li {
    padding: 0px;
  }
}

/* ===== Adjust Product Grid Gaps on Smaller Screens ===== */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 220px); /* keep 2 per row */
        gap: 10px; /* reduce gap between products */
        margin: 20px auto; /* keep it centered */
        padding: 0 5px; /* reduce side padding */
    }
    .product-item {
        height: 320px;
    }
    .product-image {
        height: 150px;
    }
    .product-desc {
        font-size: 0.95em;
        -webkit-line-clamp: 3;
    }
    .product-ean {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(1, 220px); /* 1 per row */
        gap: 10px;
        margin: 0 auto; /* fully centered */
        padding: 0 5px;
    }
    .product-item {
        height: auto;
    }
    .product-image {
        height: 180px;
    }
    .product-desc {
        font-size: 0.9em;
    }
    .product-ean {
        font-size: 0.7em;
    }
}
@media (max-width: 768px) {
  .media {
    display: block;
  }
  .media-body {
    margin-top: 20px;
  }
  .services .media img {
    width: 100% !important;
  }
  .dropdown-menu {
    display: none;
    text-align: center;
  }
  .navbar-nav li {
    padding: 0px;
  }
}
/*# sourceMappingURL=style.css.map */

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

.products-header-sort{
	display:inline-block;
}

.products-header-filter{
	display:inline-block;
}

.prod-container {
	overflow:hidden;
	display:flex;
	justify-content:flex-start;
	align-items:flex-start;
	flex-wrap:wrap;
	margin-top:10px;
	margin-bottom:80px;
}

.prodDiv{
	display:inline-block;
	width:320px;
	height:230px;
	margin:8px;
}

.products-header-breadcrumb{
	font-size:16px!important;
}
#Filter_ProdDiv {
	padding:7px;
	display: inline-block;
}

#Filter_ProdDiv_Label {
	display: inline-block;
}

#Sort_ProdDiv {
	padding: 7px;
	display: inline-block;
}

#Sort_ProdDiv_Label {
	
	display: inline-block;
}

#frmProdView {
	display:inline-block;
}


#frmselectPr{
	display:inline-block;
}

.cardButton {
    all: unset;
    cursor: pointer;
    width: 100%;
    display: block;
}

.BrandCardForm {
    display: contents;
}

.BrandCardButton {
    all: unset;
    cursor: pointer;
}




