:root {
  --teal-primary: #008080;
  --teal-dark: #006666;
  --teal-light: #00b3b3;
  --accent-orange: #ff7f50;
  --accent-blue: #5f9ea0;
  --text-dark: #2d3748;
  --text-light: #f8f9fa;
}

*{
  font-family:'Mulish', Roboto, Oxygen;
}
.lead{
font-family:'Mulish', Roboto, Oxygen;
  font-size:17px;
}
.cart-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 300px;
  transform: translateX(150%);
  transition: transform 0.3s ease-out;
}

.toast-inner {
  padding: 12px 24px;
  border-radius: 4px;
  color: white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-inner.success {
  background: #4CAF50;
}
.type{
  color: #072c2c !important;
}
.toast-inner.error {
  background: #f44336;
}

.toast-inner i {
  font-size: 1.2em;
}

.toast-visible {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .cart-toast {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }
}
.smallImg{
  border-radius: 5px;
  margin:5px;
  padding: 4px;
  border:1px solid #eee;
}
.smallImg .active{
  margin-bottom: 20px !important;
  padding:10px;
  border-left: 4px solid #0b9cb6;
}
h2{
  font-family: 'Mulish';
  font-weight:700;
}
.mincont{
  background-color: #dddddd;
}
h1{
   font-family: 'Mulish';
  font-weight:600;
}
.page-link{
  outline: 1px solid #022635dc !important;
}
.page-link .active {
  background-color: #008a78 !important;
}
.maxcont{
background-color: #eeeeeef1;
}
.pagination-cont {
    background-color: white;
    padding: 5px 10px;
  
    margin: 30px 0;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #008080;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: white;
    font-weight: 500;
}

.pagination .page-link:hover {
    background-color: #f0f9f9;
    border-color: #b2d8d8;
}

.pagination .page-link.active {
    background-color: #008080;
    color: white;
    border-color: #008080;
    font-weight: 600;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    padding: 0 15px;
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    color: #b0b0b0;
    background-color: #f9f9f9;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .pagination-container {
        padding: 12px 15px;
    }
    
    .pagination .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 14px;
    }
    
    .pagination .page-item:not(:nth-child(-n+3)):not(:nth-last-child(-n+3)) {
        display: none;
    }
    
    .pagination .page-item:nth-child(4)::before,
    .pagination .page-item:nth-last-child(4)::before {
        content: "...";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }
}

hr{
  border: 3px solid teal !important;
  width:70px;
  border-radius: 4px;
  margin-top: -3px;
  z-index: 1000;
}
.small-card{
  padding:20px;
  background-color:white;
  border: 1px solid #dfdfdf;
  border-radius:4px;
}

.small-card :hover{
  display:block;
}
.small-card:hover{
  cursor: pointer;
  border: none;
   font-family: 'Mulish';
  font-weight:600;
  color: teal;
  -webkit-box-shadow: 0px 3px 5px 3px rgba(215,231,245,1);
  -moz-box-shadow: 0px 3px 5px 3px rgba(215,231,245,1);
  box-shadow: 0px 3px 5px 3px rgba(215,231,245,1);
}
.mobileCart{
  display: none;
}
.quantityInput{
  padding:5px;
  margin-right:10px;
  background-color:#eee;
  width: 60px;
  text-align: center;
  border:1px solid #c4c4c4;
  border-radius: 3px;
}
.alert-check{
  background-color:  #ccfbf1!important;
  color: rgb(2, 43, 43);
  border-left:10px solid teal;
}
.alert-exclamation{
  background-color:   rgb(254 226 226)!important;
  color:#5c0505;
  border-left:10px solid rgb(248 113 113);
}

.activelink{
  color:teal !important;
  font-weight: 700;
}
.link{
  margin:10px 0;
}
.loader {
  height: 15px;
  aspect-ratio: 6;
  display: flex;
}
.loader:before,
.loader:after {
  content: "";
  flex: 1;
  padding-left: calc(100%/6);
  background: radial-gradient(closest-side at calc(100%/3) 50%,#008a78 90%,#07dada00) 0/75% 100% content-box;
  animation: l20 2s infinite;
}
.loader:after {
  --_s:-1;
}
@keyframes l20 {
    0%       {transform:scale(var(--_s,1)) translate(0)    rotate(0)}
    25%      {transform:scale(var(--_s,1)) translate(-25%) rotate(0)}
    50%      {transform:scale(var(--_s,1)) translate(-25%) rotate(1turn)}
    75%,100% {transform:scale(var(--_s,1)) translate(0)    rotate(1turn)}
}

.fa-check-circle-o{
  margin-right:10px !important;
}
.chat{
  position:fixed;
  background-color: #e4e4e400;
  height:100px;
  border-radius:50%;
  z-index: 9999;
  width:70px;
  height: 70px;
  top:79%;
  left: 80%;
  box-shadow: -1px 6px 15px 6px rgba(0, 0, 0, 0.341);
  transition: all 0s ease !important;
cursor: pointer;
}
h1 .mb-3{
  color:white !important;
}
.text-reset{
  color:white !important;
}
.left-nav a{
  color: #2874f0;
  padding:8px;
  width: 100%;
}
.left-nav{
  position:fixed;
  width: 268px !important;
}
.box {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}
html {
  scroll-behavior: smooth;
}

p,h4,h5,a{
  text-decoration:none !important;
}
body{
  overflow-x: hidden;
  width:100%;
  background-image: url('/static/images/wholebg.jpg');
  background-position:top;
  margin:0;
  padding:0;
}

.product-img{
 height:150px;
 width:100%;
}

.mpesa-icon{
  background-image: url('/static/images/mpesa-icon.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto;
}
.logo{
  width:100px;
  height: 60px;
  left:20px;
  position: absolute;
  top:0;
  left:10px;
  margin-bottom:20px;
}
.logo-container{
  width: 120px;
  height: 90px;
  margin-left:34%;
}
  .logo-container p{
    text-align: center;
  }

.logo-centered{
  width: 100%;
}
.logo-img{
  width: 100%;
}
.preloader{
  position:fixed;
  z-index: 9999;
  background-color:white;
  height:100vh;
  width: 100%;
  position: relative;
  margin: 0;
  overflow-y:hidden;
}
.wheel{
  position: absolute;
  width: 5px;
  height: 5px;
  left:49%;
  top:49%;
}

.divide-line{
  position: relative;
  height: 1px;
  width: 20%;
  margin: 16px 0;
  background-color: #0b9cb6;
}

.line{
  position: relative;
  height: 1px;
  width: 100%;
  margin: 36px 0;
  background-color: #d4d4d4;
}
.line::before{
  content: 'Or';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFF;
  color: #080808;
  padding: 0 15px;
}
.previous_price{
  color: #585858;
  text-decoration: line-through;
  font-weight: 400;
   font-family: 'Mulish', Tahoma, Geneva, Verdana, sans-serif;
}
.price{
  color: #343a40;
    font-weight: 600;
  float: left;
   font-family: 'Arial', Tahoma, Geneva, Verdana, sans-serif;
}
.show{
  display: block;
}
.btn-sm{
  margin-left:0px !important;
}

.check-icon{
  margin-right: 10px;
}
.hidden{
  display: none;
}
.filter-btn{
  background-color:transparent;
  border: none;
}
.card{
  border-radius: unset !important;
}
.product-section{
  background-color:white;
}

.product{
  background-color:white;
  padding-bottom:30px;
  padding-top:20px;
  max-width:220px !important;
  border-radius:4px important;
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.product:hover{
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: transparent;
  cursor: pointer;
}
.service-card:hover{
cursor: pointer;
}
.service-card{
  width: 550px !important;
  padding: 25px;
  font-size: small;
  margin:10px;
}

  .side-nav{
    position: absolute;
    border-radius:8px;
    width: 210px;
    background-color:#ffffffc0;
    left:4px;
    top:68px;
    height:100%;
    position:fixed;
    z-index: 89;
    margin-right:30px;
    overflow-y: scroll;
  }
  .side-nav ul li{
    list-style: none;
  }
  .fa-angle-down{
    font-weight: 600;
  }

  .social-links{
    display: flex;
    position: absolute;
    top:100vh;
  }
  .social-links i{
    margin:-15px;
  }
  .h3{
    text-align: center;
    margin-right:100px;
  }
  .h4{
    text-align: center;
    color: #0b9cb6;
    margin-top:30px;
    margin-right:130px;
  }
@media screen and (max-height: 450px) {
  .search-form{
    float:unset;
  }
}

@media screen and (max-width: 1000px) {
 .navbar-nav a{
  display:none !important;
 }
 .h4,.h3{
  margin-top: unset;
  margin-left: unset;
  margin-right: unset;
 }
 .service-card{
  width: unset !important;
  margin-left:unset;
  }
}

@media screen and (max-width: 750px) {
.mobileCart{
  display: block;
}
.desktopCart{
  display: none;
}
}

 @media screen and (max-width: 900px) {
  .service-card{
    width: unset !important;
    margin-left:unset;
    }
    .socialIcons{
      display: none !important;
    }
  .side-nav{
    display: none;
  }
  .product-img{
    height: unset !important;
  }

.left-nav{
  display: none;
}

 .climb img{
  display: none;
}
}

.btn{
  text-transform: none !important;
}

.card.product h6.mb-0 {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 42px;
}
.right-summary{
  font-size:14px;
}

.card.product b {
  color: #022c26;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 19px;
  font-weight: 600;
  display: block;
  margin: 8px 0;
  position: relative;
}

.card.product b::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 25%;
  width: 50%;
  height: 2px;
  background: rgba(37, 99, 235, 0.2);
}

.card.product s {
  color: #a10505 !important;
  font-size: 13px;
  font-weight: 500;
}

.card.product .badge-success {
  position: absolute;
  top: 15px;
  right: -25px;
  background-color: #ffffff;
  padding: 8px 30px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.329);
  text-align: center;
  width: 150px;
  color: #bd2a05;
}

.card.product .badge-success::before {
  font-weight: 900;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .card.product h6.mb-0 {
    font-size: 15px;
    min-height: 38px;
  }
  
  .card.product b {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .card.product h6.mb-0 {
    font-size: 15px;
    min-height: 38px;
  }
  
  .card.product b {
    font-size: 18px;
  }
}
.product .btn-info {
    color: #000000 !important;
  
}

.product .btn-secondary {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: #ffffff !important;
}

.product .btn-info:hover {
  /* transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 128, 128, 0.3);
  background: linear-gradient(135deg, #009999, #007a7a) !important; */
}

.product .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(37, 211, 102, 0.3);
}

.product .btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) !important;
}

.product .btn {
  position: relative;
  overflow: hidden;
 color: #ffffff !important;
  z-index: 1;
}

.product .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.product .btn:hover::after {
  opacity: 1;
}

ul{
  list-style: none !important;
}

.side-nav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color:rgb(17, 17, 17);
}

.search-form :hover{
  background-color: none;
}
.light{
    font-weight: 200;
}
.centered{
    margin-top:40px;
    margin-left:40px;
    margin-bottom:40px;
}
.user{
  border: 1px solid gray;
  border-radius:8px;
  padding:10px;
}

.user i{
  color: #0b9cb6;
  margin-right:10px;
}

.home-herosection{
  background:white;
  backdrop-filter:blur(-5px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position:right;
}

.W-100{
  background-image: url('/static/images/access.jpg');
  background-position:right;
  background-repeat: no-repeat;
  background-size: cover;
}
.noItems{
  color:coral;
}

td,tr{
  background-color: white !important;
  font-size: small;
}
.reveal.active{
  transition: translateY(0px);
  opacity:1;
  }
.reveal{
position: relative;
transition: translateY(450px);
opacity:0;
transition: all 2s ease;
}

.contacts{
    margin-top:100px;
}
.hero-details{
  font-weight: 300;
}

@media only screen and (max-width: 600px) {
    .centered{
        margin:30px;
    }
    td,tr{
      font-size:97%;
    }
    .products-list p{
        width: fit-content;
        height: fit-content;
    }
    .featured{
      background-color: none;
    }
    .products-list img{
        width:100%;
    }
    .product{
      max-width:unset !important;
    }

    .summary-card{
      margin-top:50px;
    }
    .product-wrapper{
      margin-left:0px;
    }
    .centered{
      margin-top:0px;
      margin-left:0px;
      margin-bottom:0px;
  }
  }
.camera-container{
    margin-top:60px;
}
.sidenav {
  height:100%;
  width: 0;
  position: fixed;
  z-index: 999999;
  top: 0;
  background-color:#ffffff;
  left: 0;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.7s;
  background-image: url('/static/images/bg.png');
}
#cookieConsent {
  font-size: 14px;
}
.sidenav a {
  text-decoration: none;
  display: block;
  transition: 0.3s;
  font-size:medium;
  padding:8px 6px;
  color: black;
  margin-left: 0px;
}
.sidenav a:hover {
  color:#0b9cb6;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color:rgb(17, 17, 17);
}

.item-1{
  background: url('/static/images/prof1.jpg');
  background-position:right;
  background-repeat: no-repeat;
  background-size: cover;
}
.item-2{
  background: url('/static/images/prof1.jpg');
  background-position:right;
  background-repeat: no-repeat;
  background-size: cover;
}
.item-3{
  background: url('/static/images/bgacceess.jpg');
  background-position:right;
  background-repeat: no-repeat;
  background-size: cover;
}
h1{
  font-weight: 800 !important;
  color:#00308f86
}

.main-navbar {
  background-color: rgba(255, 255, 255, 0.737);
}

.main-navbar .top-navbar {
  background-color: #fcfcfc;
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-navbar .top-navbar .brand-name {
  color: black;
}

.main-navbar .top-navbar .nav-link {
  color: black;
  font-size: 16px;
  text-transform: capitalize;
}

.main-navbar .top-navbar .dropdown-menu {
  padding: 0px 0px;
  border-radius: 0px;
}

.main-navbar .top-navbar .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  font-size: 14px;
}

.main-navbar .top-navbar .dropdown-menu .dropdown-item i {
  width: 20px;
  text-align: center;
  color: #2874f0;
  font-size: 14px;
}

.main-navbar .navbar {
  padding: 0px;
  background-color: #fcfcfc;
  -webkit-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.75);
}

.main-navbar .navbar .nav-item .nav-link {
  padding: 8px 20px;
  color: rgb(7, 93, 150);
  font-size: 15px;
}

.main-navbar .navbar .nav-item .nav-link:hover {
  margin-bottom: 5px;
  color: coral;
}

.navbrand {
  margin-left: 20px !important;
}

@media only screen and (max-width: 600px) {
  .main-navbar .top-navbar .nav-link {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.is-invalid {
    border-color: #dc3545 !important;
}


.el-sidebar {
  width: 333px;
  background: #ffffff;
  border-right: 1px solid #eaeaea;
  padding: 20px 15px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}


.el-sidebar-header {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.el-sidebar-header h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.el-sidebar-header i {
  margin-right: 10px;
  color: #004d4d;
}

.el-sidebar-header .btn {
  font-size: 0.85rem;
  padding: 4px 8px;
}

.el-sidebar-section {
  margin-bottom: 25px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.el-sidebar-section:hover {
  border-color: #004d4d;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}

.el-section-header {
  background: #f8f9fa;
  padding: 12px 15px;
  margin: 0;
}

.el-section-header h4 {
  color: #2c3e50;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* Category List */
.el-category-list {
  list-style: none;
  padding: 15px;
  margin: 0;
}

.el-category-item {
  margin-bottom: 8px;
}

.el-category-item a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #34495e;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.el-category-item a:hover {
  background-color: #f8f9fa;
  border-color: #e9ecef;
  transform: translateX(3px);
}

.el-category-item.el-active a {
  background-color: #e3f2fd;
  border-left: 3px solid #056d6d;
  color: #2c3e50;
  font-weight: 500;
}

.el-category-item i {
  color: #004d4d;
  margin-right: 12px;
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.el-item-count {
  margin-left: auto;
  background: #ecf0f1;
  color: #7f8c8d;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.el-category-item.el-active .el-item-count {
  background: #004d4d;
  color: white;
}

/* Price Filter */
.el-price-filter {
  padding: 15px;
}

.el-range-input {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #ecf0f1;
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 10px;
}

.el-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #004d4d;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.el-range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #004d4d;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.el-price-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: #95a5a6;
  font-size: 0.8rem;
}

/* Brand Filters */
.el-brand-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
}

.el-brand-option {
  display: flex;
  align-items: center;
}

.el-brand-option input {
  margin-right: 10px;
}

.el-brand-option label {
  cursor: pointer;
  font-size: 0.9rem;
  color: #34495e;
  transition: color 0.2s ease;
}

.el-brand-option label:hover {
  color: #004d4d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .el-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
  
  .el-category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
  }
  
  .el-category-item {
    margin-bottom: 0;
  }
  
  .el-category-item a {
    flex-direction: column;
    text-align: center;
    padding: 12px 8px;
  }
  
  .el-category-item i {
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
  
  .el-item-count {
    font-size: 0.7rem;
  }
  
  .el-brand-filters {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
}

/* Scrollbar styling */
.el-sidebar::-webkit-scrollbar {
  width: 6px;
}

.el-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.el-sidebar::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 3px;
}

.el-sidebar::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}



.return-policy-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.return-policy-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.policy-header {
    background: #2c3e50;
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.policy-header h2 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.policy-badge.no-returns {
    background: #e74c3c;
    color: white;
}

.policy-content {
    padding: 30px;
}

.policy-highlight {
    background: #fff8e1;
    border: 1px solid #ffd54f;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-content h3 {
    color: #e65100;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.warning-content p {
    margin: 0;
    color: #555;
}

.policy-details {
    display: grid;
    gap: 25px;
    margin-bottom: 25px;
}

.policy-point h4 {
    color: #2c3e50;
    margin: 0 0 12px 0;
    font-size: 1.1rem;
}

.policy-point ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
}

.policy-point li {
    margin-bottom: 8px;
}

.contact-support {
    background: #e8f4fd;
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
}

.contact-support a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.contact-support a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-highlight {
        flex-direction: column;
        text-align: center;
    }
}
  .share-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    .share-title {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .share-buttons {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .btn-share {
        border-radius: 50px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        transition: all 0.3s ease;
        border: none;
    }
    .btn-share:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .btn-facebook {
        background-color: #3b5998;
        color: white;
    }
    .btn-twitter {
        background-color: #1da1f2;
        color: white;
    }
    .btn-whatsapp {
        background-color: #25d366;
        color: white;
    }
    .btn-pinterest {
        background-color: #bd081c;
        color: white;
    }
    .btn-email {
        background-color: #6c757d;
        color: white;
    }
    .btn-link {
        background-color: #17a2b8;
        color: white;
    }
    
    
    
    .category-card {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.category-overlay {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 10px;
}

.category-content {
    position: relative;
    z-index: 2;
}


