/* Default Header Container Styles */
.default_header_container {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
header {
  border: none;
}
/* Link Styles within Header */
.default_header_container a {
  position: relative; /* Position relative for the pseudo-element */
  color: #007bff; /* Bootstrap primary color for links */
  text-decoration: none; /* Remove underline */
  margin: 0 1rem; /* Spacing between links */
  transition: color 0.3s; /* Smooth transition for color */
}

/* Hover Effect for Links */
.default_header_container a:hover:not(:has(img)) {
  color: #0056b3; /* Darker blue on hover */
  /* Removed background color change on hover */
}

/* Animated Underline Effect */
.default_header_container a::after {
  content: ""; /* Empty content for the pseudo-element */
  position: absolute; /* Position absolute for the underline */
  left: 0; /* Align to the left */
  bottom: -2px; /* Position just below the text */
  width: 100%; /* Full width of the link */
  height: 2px; /* Height of the underline */
  background-color: #100e8b; /* Color of the underline */
  transform: scaleX(0); /* Start with scale 0 */
  transition: transform 0.3s ease; /* Smooth transition for the scale */
}

/* Scale the underline on hover */
.default_header_container a:hover:not(:has(img))::after {
  transform: scaleX(1); /* Scale to full width on hover */
}

/* Carousel Wrapper Styles */
.carouselWrapper {
  position: relative; /* Ensure positioning for child elements */
  overflow: hidden; /* Prevent overflow of elements */
  border-radius: 10px; /* Rounded corners for a softer look */
}

/* Swiper Slide Styles */
.swiper-slide {
  transition: transform 0.3s ease; /* Smooth transition for slide movement */
}

/* Home Slider Card Styles */
.home_slider_card {
  border-radius: 10px; /* Rounded corners for the slide cards */
  overflow: hidden; /* Prevent overflow of images */
}

/* Image Styles */
.home_slider_card img {
  transition: transform 0.3s ease; /* Smooth transition for image scaling */
}

/* Scale image on hover */
.home_slider_card:hover img {
  transform: scale(1.05); /* Slightly scale up the image on hover */
}

main > div:first-of-type {
  -moz-box-shadow: 0px 20px 105px 45px rgba(102, 46, 255, 0.14);
  -webkit-box-shadow: 0px 20px 105px 45px rgba(102, 46, 255, 0.14);
  box-shadow: 0px 20px 105px 45px rgba(102, 46, 255, 0.14);
  transition: transform 0.3s ease; /* Smooth transition for slide movement */
}
img {
  object-fit: cover;
}

/* Product Card Styles */
.home_products_grid_card {
  position: relative; /* Ensure positioning for child elements */
  overflow: hidden; /* Prevent overflow of elements */
  border-radius: 10px; /* Rounded corners for a softer look */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

/* Simulated Overlay Effect */
.home_products_grid_card::before {
  content: ""; /* Empty content for the pseudo-element */
  position: absolute; /* Position absolute for the overlay */
  top: 0; /* Cover the entire card */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(77, 77, 77, 0.3); /* Dark overlay */
  opacity: 0; /* Initially hidden */
  transition: opacity 0.5s; /* Smooth transition for overlay */
}

/* Title Styles */
.home_products_grid_card h3 {
  margin-bottom: 0.5rem; /* Spacing below the title */
  transform: translateY(0); /* Keep title in view */
  transition: transform 0.7s, opacity 0.7s; /* Smooth transition for title */
  opacity: 1; /* Always visible */
}
#__next
  > div.flex.flex-1.flex-col
  > main
  > div:nth-child(2)
  > div
  > div.flex.items-center.justify-between.-mt-2.lg\:-mt-2\.5.pb-0\.5.mb-4.md\:mb-5.lg\:mb-6.\32
  xl\:mb-7.\33
  xl\:mb-8
  > h3 {
  transform: none;
  opacity: 1;
  margin: inherit;
}
/* Price Styles */
main > div:nth-child(2) .text-heading {
  margin-top: 1.5rem; /* Spacing above price */
  font-weight: bold; /* Bold for price */
  opacity: 0; /* Initially hidden */
  transform: translateY(40px); /* Initial position for animation */
  transition: all 0.7s; /* Smooth transition for price */
}

/* Old Price Styles */
main > div:nth-child(2) .text-heading .old {
  text-decoration: line-through; /* Strikethrough for old price */
  color: rgba(77, 77, 77, 0.4); /* Lightened color for old price */
}

/* Cart Styles */
main > div:nth-child(2) .cart {
  font-size: 12px; /* Font size for cart */
  opacity: 0; /* Initially hidden */
  letter-spacing: 1px; /* Letter spacing for cart */
  font-family: "Lato", sans-serif; /* Font family for cart */
  transform: translateY(40px); /* Initial position for animation */
  transition: all 0.7s; /* Smooth transition for cart */
}

/* Hover Effect for Product Card */
.home_products_grid_card:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

/* Show overlay and animate elements on hover */
.home_products_grid_card:hover::before {
  opacity: 1; /* Show overlay */
}

.home_products_grid_card:hover h3 {
  transform: translateY(0px); /* Keep title static */
}

.home_products_grid_card:hover .text-heading {
  transform: translateY(0px); /* Move price into view */
  opacity: 1; /* Show price */
}

.home_products_grid_card:hover .cart {
  transform: translateY(0px); /* Move cart into view */
  opacity: 1; /* Show cart */
}

/* Hover Effect for Product Card */
.home_products_grid_card:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

/* Show overlay and animate elements on hover */
.home_products_grid_card:hover::before {
  opacity: 1; /* Show overlay */
}

.home_products_grid_card:hover h3 {
  transform: translateY(0px); /* Move title into view */
  opacity: 1; /* Show title */
  visibility: visible; /* Make it visible */
}

.home_products_grid_card:hover .text-heading {
  transform: translateY(0px); /* Move price into view */
  opacity: 1; /* Show price */
}

.home_products_grid_card:hover .cart {
  transform: translateY(0px); /* Move cart into view */
  opacity: 1; /* Show cart */
}

/* speecial producs */

.default_product_featured_container {
  grid-template-columns: none;
}

.default_product_featured_card img:nth-child(2n) {
  transform: translateX(6%) translateY(14%) rotatez(135deg);
  transition-property: width, transform;
  transition-duration: 0.3s;
  scale: 0.8;
}

.default_product_featured_card img:nth-child(2n + 1) {
  transform: translateX(-9%) translateY(-32%) rotatez(-45deg);
  transition-property: width, transform;
  transition-duration: 0.5s;
  scale: 0.8;
}

.default_product_featured_card:hover img:nth-child(2n) {
  width: 60%;
  transform: translateX(-15%) translateY(60%) rotatez(135deg);
  visibility: hidden;
  opacity: 0;
}

.default_product_featured_card:hover img:nth-child(2n + 1) {
  width: 120%;
  transform: translateX(-50%) translateY(7%) rotatez(-0);
  scale: 1.1;
}





.product-image-container img:first-child {
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.product-image-container img:nth-child(2) {
  transform: translateX(-30%) translateY(5%) rotatez(135deg);
  z-index: 2;
  opacity: 0;
}

.default_product_featured_card:hover .product-image-container img:nth-child(2) {
  opacity: 1;
  width: 60%;
  transform: translateX(-15%) translateY(60%) rotatez(135deg);
}

.default_product_featured_card > div:last-child {
  position: relative;
  z-index: 10;
}
.default_product_featured_card img {
  height: revert-layer;
  
}