/* Add custom CSS styles below */ 
/* Hide the original icons */
.home-block--store-features .store-feature__icon i {
    display: none;
}
.footer__block * {

    color: white !important;
}
.top-header {
    background: #059a00 !important;
}
.top-header .top-header__info li a span,
.top-header .top-header__info li a  i {
    color:#fff; !imporatnt;
}


/* Style for the icon containers - transparent background */
.home-block--store-features .store-feature__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: transparent !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Icon background images */
.home-block--store-features .store-feature__icon::after {
    content: '';
    width: 50px;
    height: 50px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* First feature - Fast Shipping (Delivery truck icon) */
.home-block--store-features .row > div:nth-child(1) .store-feature__icon::after {
    background-image: url('https://i.postimg.cc/tCdPjXpT/delivery.png');
}

/* Second feature - Secure Shopping (Shopping cart icon) */
.home-block--store-features .row > div:nth-child(2) .store-feature__icon::after {
    background-image: url('https://i.postimg.cc/CLpDXZyX/grocery-store.png');
}

/* Third feature - Multiple Payment Options (Payment protection icon) */
.home-block--store-features .row > div:nth-child(3) .store-feature__icon::after {
    background-image: url('https://i.postimg.cc/449VW60p/payment-protection.png');
}

/* Style the titles to match the purple color */
.home-block--store-features .title--primary {
    color: #9C27B0;
    font-size: 18px;
    font-weight: bold;
}

/* Style the description text */
.home-block--store-features p {
    color: #888;
    font-size: 14px;
}

/* Center align all content */
.home-block--store-features .store-feature {
    text-align: center;
    padding: 20px 10px;
}

/* Make all columns 33.33% width on all screens */
.home-block--store-features .col-md-4,
.home-block--store-features .col-sm-12 {
    width: 33.33%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

/* Media Queries for responsive adjustments */
@media (max-width: 768px) {
    .home-block--store-features .title--primary {
        font-size: 16px;
    }
    
    .home-block--store-features p {
        font-size: 12px;
    }
    
    .home-block--store-features .store-feature__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .home-block--store-features .store-feature__icon::after {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .home-block--store-features .col-md-4,
    .home-block--store-features .col-sm-12 {
        padding-right: 5px;
        padding-left: 5px;
    }
    
    .home-block--store-features .store-feature {
        padding: 15px 5px;
    }
}

/* Clear float after row */
.home-block--store-features .row:after {
    content: "";
    display: table;
    clear: both;
}

/* Override Bootstrap responsive behavior */
@media (max-width: 991px) {
    .home-block--store-features .col-md-4 {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .home-block--store-features .col-sm-12 {
        width: 33.33%;
    }
}

/* Add hover effect */
.home-block--store-features .store-feature:hover .store-feature__icon {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Section background */
.home-block--store-features {
    background-color: #fff;
    padding: 40px 0;
}


.store-feature__icon::before {

	background-color: transparent !important;; 

}

.home-block--square-images .banner--square {
	background-color: transparent !important;; 
	
}

div.special-offer-entry:nth-child(2) > div:nth-child(1) {
  opacity: 0 !important;  ;
}



footer.footer {
    background: #a24900;
    border-top-left-radius: 5pc;
    border-top-right-radius: 5pc;
}