body {
    background: #ffffff;
    
  }

.banner--square figure {
background-color: #ffffff00;
}

.banner--square {
    background-color: #ffffff00;
 }

/*Banners*/
.home-block--fixed-banner .container {
  max-width: 100% !important;
  padding: 0px !important;
}

.index .home-block--fixed-banner img {
  background-color: transparent !important;
  border-radius: 0;
}

.home-block:first-of-type {
  padding: 0px !important;
}



/* Features Items */
.store-feature {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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


}

.store-feature__icon i {
  color: #0F5376;
  font-size: 60px;
  display: inline-block;
}

@media (max-width: 768px) {
  /* Apply grid layout only inside the features section */
  .home-block--store-features .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  /* First item spans both columns (full-width row) */
  .home-block--store-features .row > .col-md-4:nth-child(1) {
    grid-column: 1 / -1;
  }

  /* Make sure columns don't have conflicting width rules */
  .home-block--store-features .row > .col-md-4 {
    width: 100%;
  }
}




/*footer*/
.footer .footer-list--payment-methods li {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 3.25rem;
    box-shadow: 0 0 2px rgba(0, 0, 0, .15);
    height: 32px;
    margin: .2rem;
    background: white;
}

.footer .footer-list li a {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 0;
    color: var(--color-text);
    transition: color 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.footer .footer-list li a:hover {
    opacity: .8 !important;
    color: #fff !important;
}

.footer .footer-list li a:hover .sicon-mail {
    opacity: .8 !important;
}

.footer .footer-list li a:hover i {
    color: #fff !important;
    opacity: 0.8 !important;
}

.footer__bottom a:hover {
    opacity: 0.8 !important;
    color: #fff !important;
}

.footer-list a:hover i,
.footer-list a:hover {
    color: #282579 !important;
    opacity: .8 !important;
}

.footer-list a:hover {
    color: #282579 !important;
    opacity: .8 !important;
}

footer .title--primary {
    color: #fff !important;
}

footer .title--primary:before {
    background-color: #ffffff !important;
}

footer h2 {
    color: #fff !important;
}

footer {
    border: 0 !important;
    border-radius: 15% 15% 0 0 !important;
    background-color: #282579 !important;
    padding-top: 3rem;
}

footer * {
    color:#fff !important;
}


.footer .footer-list--row {
    display: flex;
    justify-content: center;
}

.footer__mid * {
    color: #fff !important;
}

.footer__bottom {
    background-color: #000 !important;
}

.footer__bottom .container {
    display: flex;
    justify-content: center;
}

.footer-list--social-links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #282579; /* primary color background */
  color: white; /* icon color */
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-list--social-links li a i {
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-list--social-links li a:hover {
  background-color: white; /* invert on hover */
  color: #282579;
  transform: translateY(-3px);
}

.footer-list--social-links li a:hover i {
  color: #282579;
}

body ul.footer-list--social-links li:hover a {
  
    background: #624e93 !important;
    color: var(--color-primary);
}

/* Add the image above the .footer__top .row */
.footer__top {
  position: relative;
  text-align: center; 
  padding-top: 140px; 
}


.footer__top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;      
  height: 100px;   
  background-image: url('https://i.postimg.cc/905Vyv5F/C5-W6-PPBi-P6-Oj1-FUggx6-Wz-Yf-LZp-Mxqodzm90qm-WSZ-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.footer__top .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

/* Ensure each column aligns its inner content */
.footer__top .footer__block {
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* Center social links */
.footer-list--social-links {
  justify-content: center;
  display: flex;
  gap: 0.5rem;
}

/* Center app links in footer mid */
.footer__mid .list--horizontal {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

/* Center payment methods */
.footer-list--payment-methods {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

/* Center the text in bottom bar */
.footer__bottom .container {
  display: flex;
  justify-content: center;
  text-align: center;
}


.product-block {
  border:1px solid red !important;
}

.store-feature {
    border: 0 solid #ddd; 
    border-radius: 8px;
    background-color: transparent; 
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
   box-shadow: none !important;
    display: flex
;
    flex-direction: column;
    align-items: center;
}