/*
Theme Name: Shesha Afrizanya
Template: neve
Theme URI: https://shesha.afrizanya.com/
Author: Afrizanya
Author URI: https://www.afrizanya.com
Description: Neve child theme for Shesha
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neve
*/

body {
	background-color: #f9f4f2 !important;
}

/* Container to hold the image */
.animate-me {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden; /* Ensures the image doesn't go outside the container */
}

/* The image that will move */
.animate-me img {
    position: absolute;
    left: -200px; /* Start off-screen on the left */
    top: 50%; /* Vertically centered */
    transform: translateY(-50%); /* Center the image vertically */
    animation: moveRight 5s linear infinite; /* Animation that moves the image */
}

/* Define the animation */
@keyframes moveRight {
    0% {
        left: -200px; /* Start off-screen on the left */
    }
    50% {
        left: 50%; /* Move the image to the center of the container */
    }
    75% {
        left: 100%; /* Move the image off-screen to the right */
    }
    100% {
        left: 100%; /* Move the image off-screen to the right */
    }
}


@media (min-width: 960px) {
  .archive.woocommerce .neve-main > .shop-container .nv-shop.col {
    max-width: 100% !important;;
  }
  .shop-container ul.products * {
  	font-size: 0.9rem !important;
  }
}
footer .component-wrap div p {
    display: none;
}