.gototop {
	display: none;
}

.home {
	background-size: cover;
}

.archive {
	background-size: cover;
}

.page {
	background-size: cover;
}

.product-template-default {
	background-size: cover;
}

.woofc-footer {
	background-color: white;
}

.section.primary .content {
	padding: 60px 0;
}

.section.primary {
	background-color: #1d1d1df6 !important;
}

.header {
	margin-bottom: 30px;
}

.page-title.section {
	padding: 40px 0;
	background-color: #1d1d1df6 !important;
}

.section.primary .content {
	padding: 30px 0;
}

.section.primary .sidebar {
	padding: 30px 0;
}

.blox-element.divider {
	border-color: white !important;
	margin-left: 20px;
	margin-right: 20px;
}

.page-title.section {
	padding-bottom: 0;
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs li a, .woocommerce div.product .woocommerce-tabs ul.tabs li a, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a, .woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
	color: white !important;
}

.woocommerce #content .quantity input.qty, .woocommerce .quantity input.qty, .woocommerce-page #content .quantity input.qty, .woocommerce-page .quantity input.qty {
	color: white
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
	color: white
}

textarea::-webkit-input-placeholder {
color: gray;
}

textarea:-moz-placeholder { /* Firefox 18- */
color: gray;  
}

textarea::-moz-placeholder {  /* Firefox 19+ */
color: gray;  
}

textarea:-ms-input-placeholder {
color: gray;  
}

/* CIRCLE STYLE */
/* Keyframes for the zoom animation */
@keyframes slowZoom {
  0% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(1.25); /* Slightly zoomed in */
  }
  100% {
    transform: scale(1); /* Back to normal size */
  }
}

/* Add the animation to the onsale element */
.woocommerce ul.products li.product .onsale, 
.woocommerce-page ul.products li.product .onsale {
  background-color: red !important;
  animation: slowZoom 5s infinite; /* Slow zoom effect (5 seconds duration, loops infinitely) */
  transition: transform 0.3s ease-in-out;
}