/* -------------------------------------------------background color to the entire website------------------------------------------------------------- */

/* Apply background color to the entire website */


/* ------------------------------------------- banner product (laptop & mobile) ------------------------------------------------------ */

/* Default styling for the "seller-banner-product-button" */
.seller-banner-product-button {
  background-color: #FF5733;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 45px;
  display: none; /* Hide the button by default */
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

/* Show the button when hovering over any column */
.seller-column-1:hover .seller-banner-product-button {
  display: inline-block;
  opacity: 1; 
}

.seller-column-2:hover .seller-banner-product-button {
  display: inline-block;
  opacity: 1; 
}

.seller-column-3:hover .seller-banner-product-button {
  display: inline-block;
  opacity: 1; 
}

.seller-top-content:hover .seller-banner-product-button {
  display: inline-block;
  opacity: 1; 
}

.seller-bottom-content:hover .seller-banner-product-button {
  display: inline-block;
  opacity: 1; 
}

/* Hover effect for the button */
.seller-banner-product-button:hover {
  background-color: #D44C29;
}


/* Rest of your existing styles */
.seller-banner-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px;
  padding: 20px;
}

.seller-column-1, .seller-column-2, .seller-column-3 {
  width: 27%;
  height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  aspect-ratio: 1;
}

.seller-column-4 {
  width: 13%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  border-radius: 10px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  aspect-ratio: 1;
}

.seller-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.seller-column-1 {
  background-image: url('../images/seller/NATURAL BG.webp');
}

.seller-column-2 {
  background-image: url('../images/seller/NATURAL BG.webp');
}

.seller-column-3 {
  background-image: url('../images/seller/NATURAL BG.webp');
}

.seller-column-4 .seller-top-content {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-image: url('../images/seller/NATURAL BG.webp');
  background-position: center;
  padding: 0px;
  border-radius: 10px;
}

.seller-column-4 .seller-bottom-content {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-image: url('../images/seller/NATURAL BG.webp');
  background-position: center;
  padding: 0px;
  border-radius: 10px;
}

.seller-top-content, .seller-bottom-content {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
}

.seller-overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;  
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}


/* Media Query for laptop view */
@media (max-width: 1440px) and (min-width: 1024px) {

  .seller-banner-product {
    background-color: transparent;
    margin: 0px;
  }

  .seller-column-4 .seller-top-content {
    width: 98%;
    height: 98%;
  }

  .seller-column-4 .seller-bottom-content {
    width: 98%;
    height: 98%;
  }

 }

/* Media Query for Mobile View */
@media (max-width: 768px) {
  .seller-banner-product {
    margin: 0px;
    background-color: transparent;
    flex-direction: column;
    align-items: center;
  }

  .seller-column-1, .seller-column-2, .seller-column-3 {
    width: 90%;
    height: auto;
    margin-bottom: 0px;
    background-size: contain;
    background-position: center;
  }

  .seller-column-4 {
    width: 90%;
    height: 720px;
  }

}

/* ---------- nochanges after click in button ---------------- */
/* Prevent focus styles on button */
.seller-banner-product-button:focus {
  outline: none;
  
}

/* ------------------------------------------------------- New Home Page sections stert ------------------------------------------------------------ */

/* ------------------------------------------------------- category section --------------------------------------------------------------------- */


#homepage-categories {
  width: 100%;
  padding: 40px 0;
}

.home-page-categories-container {
  max-width: 1460px !important;
  padding: 0px;
  margin: 20px auto;
}

.category-card {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  z-index: 1;
}

/* Background Image Zoom Effect */
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit;
  transform: scale(1.1);
  transition: transform 0.8s ease;
  z-index: -1;
}

.category-card:hover::before {
  transform: scale(1);
}

.category-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.home-page-categories-card-text {
  background: white;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  margin: 20px;
  transition: opacity 0.4s ease, transform 0.6s ease;
  transform: translateY(0);
}

.category-card:hover .home-page-categories-card-text {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

/* Hide text when hovering */
.category-card:hover .home-page-categories-card-text {
  opacity: 0;
  visibility: hidden;
}

.home-page-categories-card-text h2 {
  font-size: 20px;
  color: #333;
  font-weight: 600;
}

/* Hover Content Styling */
.category-hover-content {
  position: absolute;
  top: 20px;
  left: 20px;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  background: white;
  border-radius: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 0.4s ease, transform 0.6s ease;
  padding: 20px;
  text-align: center;
}

/* Show hover card with animation */
.category-card:hover .category-hover-content {
  opacity: 1;
  transform: translateY(0);
}

/* Image */
.hover-image {
  width: 130px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
}

/* Text Styling */
.hover-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.hover-title a:hover {
  color: #333;
}

.orange-divider {
  width: 65px;
  height: 4px;
  background-color: #FF5733;
  border-radius: 2px;
  margin: 0 0 15px !important;
}

.hover-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.home-page-categories-card-h-button {
  position: relative;
  color: white;
  font-size: 15px;
  font-weight: 600;
  background-color: #ffc107;
  padding: 8px 30px;
  display: inline-block;
  border: none;
  border-radius: 20px;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.home-page-categories-card-h-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

.home-page-categories-card-h-button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.home-page-categories-card-h-button::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 27px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background-color: #ff9881;
}

.home-page-categories-card-h-button:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}


/* 💻 Laptop Only */
@media (min-width: 1025px) and (max-width: 1440px) {

  .home-page-categories-container {
    max-width: 90% !important;
  }

}



/* 💻 Small Laptop Only */
@media (min-width: 769px) and (max-width: 1024px) {

  .home-page-categories-container {
    max-width: 85% !important;
  }
  
}



/* 📱 Tablet */
@media (max-width: 1024px) and (min-width: 768px) {

  .col-md-3 {
    width: 50%;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .home-page-categories-container {
    display: flex !important;
    flex-direction: row !important;
  }

  .category-card {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .home-page-categories-card-text {
    width: 85% !important;
  }

  .hover-image {
    width: 150px;
  }

  .hover-title {
    font-size: 18px;
  }

  .hover-desc {
    font-size: 13px;
  }
}

/* Media Query for Mobile View */
@media (max-width: 425px) {
  .category-card {
    height: 450px;
    overflow: hidden;
    align-items: center;
    justify-content: flex-end;
    color: white;
  }

  .home-page-categories-card-text {
    width: 90% !important; 
  }
}



/* button */
.home-page-button-1 {
  position: relative;
  margin: 20px auto 0;
  padding: 10px 18px;
  background-color: bisque;
  transition: all 0.2s ease;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.home-page-button-1:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #ffc107;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .25);
  z-index: 0;
}

.home-page-button-1:hover:before {
  width: 100%;
  background: #ffc107;
}

.home-page-button-1 span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.home-page-button-1 span + svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #333;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  z-index: 1;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}

.home-page-button-1:hover svg {
  transform: translateX(0);
}

.home-page-button-1:active {
  transform: scale(0.95);
}


/* ------------------------------------------------------- product section 2 --------------------------------------------------------------------- */

.home-page-products-section-bg {
  background-color: #6ce75312;
}

.home-page-products-container {
  max-width: 1460px !important;
}

.card-img-top-2 {
  object-fit: contain;
  padding: 13px;
  border-radius: 27px;
} 

.new-product-home-page-seller {
  width: 20%;
}

.home-page-products-title-2 {
  text-align: center;
  font-size: 20px;
}

.home-page-products-subtitle-2 {
  text-align: center;
  font-size: 16px;
  margin: 0px;
  line-height: 1.5;
}

/* company trust icon */
.shop-name-with-image {
  font-weight: 600;
  color: #ffc107;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}


/* company trust icon */

.card-body-2 {
  padding: 0 20px 20px 20px;
}

/* new button */
/* Original Hover Effect (solid button) -> Now used by Contact Supplier */
.custom-hover-btn-1 {
  width: 100%;
  transition: all 0.3s ease;
  line-height: 1.5;
  padding: 10px 10px;
  border-radius: 3px;
}

.custom-hover-btn-1:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 128, 0, 0.3);
}






/* New Hover for Outline Button -> Now used by View Mobile Number */
/* Hover base style */
.custom-hover-btn-2 {
  width: 100%;
  padding: 0 19px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

/* Icon inside the button */
.custom-hover-btn-2 .icon-left {
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect for both text and icon */
.custom-hover-btn-2:hover {
  color: #ffc107;
  transform: scale(1.05);
}

/* Icon color and movement on hover */
.custom-hover-btn-2:hover .icon-left {
  color: #157347;
  transform: scale(1.2) rotate(-5deg);
}






.home-page-products-button-2 {
  margin: 0px !important;
}

/* 💻 Laptop Only */
@media (min-width: 1025px) and (max-width: 1440px) {

  .home-page-products-container {
    max-width: 90% !important;
  }

}

/* 💻 Small Laptop Only */
@media (min-width: 769px) and (max-width: 1024px) {

  .home-page-products-container {
    max-width: 85% !important;
  }
  
}

/* 📱 Tablet */
@media (max-width: 1024px) and (min-width: 768px) {

  .new-product-home-page-seller {
    width: 50%;
  }

}

/* 📱 Mobile */
@media (max-width: 767px) {

  .home-page-products-section-container {
    justify-content: center;
  }

  .new-product-home-page-seller {
    width:48%;
  }

  .custom-hover-btn-2, .custom-hover-btn-1 {
    max-width: 100%;
  }

}

/* 📱 Mobile */
@media (max-width: 425px) {

  .shop-name-with-image {
    flex-direction: column;
    gap: 0;
    margin: 15px 0;
  }

}

/* --------------------------------------------------------- about us section -------------------------------------------------------------------- */

/* Main Section */
.seller-home-page-about-us-info {
  width: 100%;
}

/* First Column Styling */
.seller-home-page-about-us-info-col1 {
  padding: 20px 0px 20px 20px;
}

.seller-home-page-about-us-info-col1-subtitle {
  color: #238d00;
  font-size: 20px;
  font-weight: 600;
}

.seller-home-page-about-us-info-col1-title {
  font-size: 40px;
  font-weight: bold !important;
  margin-top: 10px;
  color: #333;
}

.seller-home-page-about-us-info-col1-text {
  margin-top: 15px;
  font-size: 16px;
  color: #666;
}

.seller-home-page-about-us-info-col1-btn {
  margin-top: 20px;
  padding: 12px 18px;
  color: white;
  background-color: bisque; /* gainsboro add this also */
  border-radius: 25px;
  text-decoration: none;
}

.seller-home-page-about-us-info-col1-btn svg {
  margin-left: 10px;
}

.seller-home-page-about-us-info-col1-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #238d00;
}

.seller-home-page-about-us-info-col1-card-counter {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

.home-page-counter-card {
  background-color: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
  margin: 0px;
  border: 1px solid #4e4e4e0d !important;
  border-radius: 20px;
}

/* Counter Section with Background Image and Overlay */
.counter-row {
  display: flex !important;
  align-content: center;
  height: 215px;
  position: relative;
  background: url('http://localhost:8080/bulkbusiness/assets/front/images/seller/counterbg4.png') no-repeat center center/cover;
  padding: 40px 20px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0px 4px 16px rgb(0 0 0 / 40%);
}

.counter-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* Overlay */
  z-index: -1;
}

/* Second Column Styling */
.seller-home-page-about-us-info-col2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.seller-home-page-about-us-info-col2-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.seller-home-page-about-us-info-col2-card-text {
  font-size: 16px;
  color: #646464;
}

.home-page-product-shop-about-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1b6c00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.home-page-product-shop-about-icon img {
  width: 40px;
  height: auto;
}

/* Card Box Shadow */
.card.shadow {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  transition: box-shadow 0.3s ease;
}

.card.shadow:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure Cards have the same size and wrap correctly */
.home-page-products-col-2-card {
  flex: 2 0 45%; /* 4 cards per row */
  margin: 13px !important;
  padding: 20px;
  background-color: #e3e3e3;
  border-radius: 20px;
}

.home-page-products-card-info {
  border: 2px solid white;
  border-radius: 20px;
}


/* 💻 Laptop (small screens/desktops) */
@media (max-width: 1440px) and (min-width: 1025px) {

  .seller-home-page-about-us-info-col1-title {
    font-size: 30px;
  }

  .seller-home-page-about-us-info-col1-card-counter {
    font-size: 25px;
  }

  .seller-home-page-about-us-info-col1-card-title {
    font-size: 18px;
  }

  .home-page-products-col-2-card {
    margin: 10px !important;
    padding: 15px;
  }

  .seller-home-page-about-us-info-col2-card-title {
    font-size: 18px;
  }

  .seller-home-page-about-us-info-col2-card-text {
    font-size: 15px;
  }

}



/* 📱 Tablet */
@media (max-width: 1024px) and (min-width: 768px) {

  .col-md-7 {
    width: auto;
  }

  .seller-home-page-about-us-info-col1 {
    padding: 20px;
  }

  .home-page-counter-card-container {
    flex-direction: row !important;
  }

  .counter-row {
    height: auto;
  }

  .seller-home-page-about-us-info-col2-container {
    width: auto !important;
  }

}



/* 📱 Mobile */
@media (max-width: 767px) {

  .seller-home-page-about-us-info-col1 {
    padding: 20px;
  }

  .seller-home-page-about-us-info-col1-title {
    font-size: 35px;
  }

  .counter-row {
    height: auto;
  }

}


/* ------------------------------------------------------- main product section --------------------------------------------------------------------- */

.home-page-main-products-container {
  max-width: 1460px !important;
}

.home-page-products-card {
  height: 100%;
  border-radius: 20px !important;
  margin: 0px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* .home-page-products-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} */

.hover-effect {
  transition: all 0.3s ease;
}

.hover-effect:hover {
  background-color: #FF5733;
  color: white !important;
  border-color: #FF5733;
}

/* Subtitle Style */
.home-page-products-subtitle {
  color: #525252;
  display: block;
  margin: 15px 0 10px;
  font-size: 17px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.home-page-products-subtitle:hover {
  color: #333 !important;
}

/* Title Style */
.home-page-products-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #238d00;
}

/* Icon Wrapper */
.home-page-product-shop-icon {
  width: 80px;
  height: 80px;
  margin: 0 15px -64px 0;
  border: 7px solid white;
  background-color: #238d00;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0.5, 0.6, 0.7), box-shadow 0.3s ease;
}

.home-page-product-shop-icon img {
  width: 50px;
  height: auto;
  padding: 4px;
  transition: transform 0.4s ease;
}

/* Icon Hover */
.home-page-products-card .home-page-product-shop-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.home-page-products-card:hover .home-page-product-shop-icon img {
  transform: scale(1.05);
}

/* Button CSS */
.home-page-products-button {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.home-page-products-button:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #FF5733;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .25);
  z-index: 0;
}

.home-page-products-button:hover:before {
  width: 100%;
  background: #FF5733;
}

.home-page-products-button span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Adds a subtle shadow */
}

.home-page-products-button span + svg { /* assuming your arrow is an svg */
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #333;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  z-index: 1;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4)); /* Adds shadow to the arrow */
}

.home-page-products-button:hover svg {
  transform: translateX(0);
}

.home-page-products-button:active {
  transform: scale(0.95);
}

/* 💻 Laptop Only */
@media (min-width: 1025px) and (max-width: 1440px) {

  .home-page-main-products-container {
    max-width: 90% !important;
  }

}

/* 💻 Small Laptop Only */
@media (min-width: 769px) and (max-width: 1024px) {

  .home-page-main-products-container {
    max-width: 85% !important;
  }
  
}

/* 📱 Tablet */
@media (max-width: 1024px) and (min-width: 768px) {

  .home-page-products-section-container {
    flex-direction: row !important;
  }

}

/* button */
.home-page-button-2 {
  position: relative;
  margin: 10px auto 0;
  padding: 10px 18px;
  background-color: bisque;
  transition: all 0.2s ease;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.home-page-button-2:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #ffc107;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .25);
  z-index: 0;
}

.home-page-button-2:hover:before {
  width: 100%;
  background: #ffc107;
}

.home-page-button-2 span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.home-page-button-2 span + svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #333;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  z-index: 1;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}

.home-page-button-2:hover svg {
  transform: translateX(0);
}

.home-page-button-2:active {
  transform: scale(0.95);
}

/* ------------------------------------------------------- newslatter section --------------------------------------------------------------------- */

.bulk-newsletter {
  border-radius: 20px !important;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.1) !important;
}

.bulk-newsletter-text {
  color: #999999;
}

.bulk-newsletter-right-column {
  padding: 30px;
  align-content: center;
  border-radius: 35px;
  background-color: #f2f2f2 !important;
}

.custom-search-input {
  width: 81%; /* ✅ Reduced from 78% */
  padding: 8px 12px;
  border: 1px solid #dddddd;
  border-radius: 30px;
}

.custom-search-input:focus,
.custom-search-input:active {
  outline: none;
  border: 1px solid #dddddd;
  box-shadow: none;
}

/* From Uiverse.io by adamgiebl */
.bulk-newsletter-button {
  width: 140px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  background-color: #ffc107;
  border-radius: 30px;
}

/* Image Wrapper (replacing SVG) */
.bulk-newsletter-button .svg-wrapper {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.bulk-newsletter-button .svg-wrapper img {
  display: block;
  transition: transform 0.3s ease-in-out;
}

.bulk-newsletter-button span {
  color: white;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.bulk-newsletter-button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.bulk-newsletter-button:hover .svg-wrapper img {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.bulk-newsletter-button:hover span {
  transform: translateX(5em);
}

.bulk-newsletter-button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

@media (max-width: 1024px) and (min-width: 769px) {

  .bulk-newsletter-left-column {
    width: 100%;
  }

  .bulk-newsletter-right-column {
    width: 100%;
  }

}

/* 📱 Tablet */
@media (max-width: 768px) and (min-width: 426px) {

  .bulk-newsletter {
    width: auto !important;
    margin: 20px !important;
  }

  .bulk-newsletter-button .svg-wrapper {
    width: 30%;
  }

  .bulk-newsletter-left-column {
    width: 100%;
  }

  .bulk-newsletter-right-column {
    width: 100%;
  }

}

/* 📱 Tablet */
@media (max-width: 768px) {

  .products-paragraph {
    text-align: center !important;
  }
}

/* 📱 Mobile */
@media (max-width: 425px) {

  .bulk-newsletter-right-column {
    padding: 15px;
  }

  .bulk-newsletter-search-container {
    flex-direction: column !important;
    align-items: center;
  }

  .custom-search-input {
    width: 100%;
    margin:0 0px 12px 0 !important;
  }

  .bulk-newsletter-button .svg-wrapper img {
    width: 75%
  }

  .bulk-newsletter-button .svg-wrapper {
    display: flex;
    justify-content: center;
    width: 35%;
    align-items: center;
  }

  .bulk-newsletter-button span {
    margin-left: 0;
  }

  .bulk-newsletter {
    margin: 20px !important;
  }

}

/* ------------------------------------------------------- End -------------------------------------------------------------------- */