.single_add_to_cart_button, .single_variation_wrap, .tabs.wc-tabs{
display: none !important;
}






/* General container styling */
#category-products {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 0 60px;
}

/* Individual product card styling */
.product-item {
	text-align: center;
    background: none;
    max-width: 25%;
    width: 100%;
    position: relative;
    border-radius: 12px;
    padding: 0 0 34%;
    box-shadow: 0 8px 19px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* Title styling */
.product-item h3 {
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
    padding: 10px;
    margin: 0;
    color: #ffffff;
    text-align: left;
}

/* Image styling */
.product-item img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    border-radius: 15px;
}
.product-item:hover {
    transform: scale(1.05);
}



/* Container for product details */
#product-details {
  margin: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 40px;
}
#product-details h2 {
    color: var(--e-global-color-text);
    font-family: "Montserrat", Sans-serif;
    margin: 0px 0 30px;
    font-weight: 500;
    font-size: 25px;
    width: 100%;
}

/* Align image and variations side by side */
.product-container {
  display: flex;
  align-items: center; /* Vertically align content */
}

.product-image {
    width: 50%;
    position: relative;
    padding: 0 0 32%;
}

/* Left side image */
.product-image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

/* Right side variation buttons */
.product-variations {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-variations button {
    width: 65px;
    height: 65px;
    background-repeat: no-repeat;
    box-shadow: none;
    border-color: #c5c5c5;
    transition: all 0.3s ease-in-out;
    font-size: 11px;
    color: #ffffff;
    font-weight: 700;
    padding: 0;
    border-radius: 50%;
}
.product-variations .variation-button:hover,
.product-variations .variation-button:focus{
    box-shadow: none;
    border-radius: 50%;
    transform: scale(1);
    background-color: white;
    border-color: #000000;
    box-shadow: 0px 0px 9px 1px #020202;
}


/* Style the variation buttons */
.variation-button {
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  background-size: cover; /* Ensure the background image covers the button */
  border: 2px solid #ccc; /* Border style */
  border-radius: 50%; /* Make the button circular */
  cursor: pointer; /* Pointer cursor for hover effect */
  transition: transform 0.2s, box-shadow 0.2s; /* Add hover effect */
}

.variation-button:hover {
  transform: scale(1.1); /* Enlarge button on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

@media(max-width: 1100px){
	.product-item{
    	max-width: 33.33%;
    }
}

@media(max-width: 991px){
	.product-item{
    	padding: 0 0 50%;
        max-width: 50%;
    }
}
@media(max-width: 640px){
	#category-products{
    	flex-direction: column;
    	align-items: center;
    }
    .product-item{
    	padding: 0 0 360px;
        max-width: 360px;
    }
    #product-details {
        padding: 0;
	}
    #product-details h2 {
    	width: 100%;
        margin: 0px 0 15px;
        font-size: 22px;
    }
    .product-image {
        width: 100%;
        position: relative;
        padding: 0 0 60%;
    }
    .product-variations {
    	display: flex;
        width: 100%;
        padding: 20px 0 0px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .product-variations button {
        width: 75px;
        height: 75px;
        transition: all 0.3s ease-in-out;
        font-size: 10px;
    }
}
@media(max-width: 480px){
	.product-item{
    	padding: 0 0 100%;
    }
}