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

/* Apply background color to the entire website */

.button-center{
  text-align: center;
  align-items: center;
  justify-content: center;
}
/* ------------------------------------------------ Header new -------------------------------------------------- */

/* General Styling */
.seller-header {
  width: 100%;
}

.new-seller-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.seller-column-1 {
  width: 4%;
}

/* Column 1 */
.seller-column-1 .seller-image {
  width: 100px;
  height: auto;
  object-fit: cover;
  border: 1px solid #cacaca;
  border-radius: 8px;
  float: left;
}

/* Column 2 */
.seller-column-2 {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.seller-column-2 .seller-title {
  font-size: 18px;
  font-weight: bold;
}

.seller-column-2 .seller-details {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 2px;
}

.seller-address-image, .seller-gst-no-image {
  width: 25px;
  height: auto;
  margin-right: 5px; /* Adds space between the image and the text */
}

.seller-column-2 .seller-details span {
  font-size: 14px;
  color: #666;
  margin-right: 30px;
}

/* Column 3 */
.seller-column-3 .seller-product-image {
  width: 80px;
  height: auto;
  object-fit: contain;
  float: left;
  cursor: pointer;
}

/* Column 4 & 5 */
.seller-column-4 {
  width: 11%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.seller-column-5 {
  width: 9%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.seller-button-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  background-color: transparent;
  color: #FF5733;
  border: 1px solid #FF5733;
  border-radius: 5px;
  cursor: pointer;
  width: 250px;
}

.seller-button-1 .text-content {
  display: flex;
  flex-direction: column;
}

.seller-button-1 .call-text {
  font-size: 15px;
  font-weight: 600;
}

.seller-button-1 .button-content {
  display: flex;
  align-items: center;
}

.seller-button-1 .button-icon {
  width: 25px;
  height: auto;
  margin-right: 5px;
}

.seller-button-1 .response-rate {
  font-size: 10px;
}

/* Hover Image */
.seller-button-1 .hover-icon {
  display: none; /* Initially hidden */
}

.seller-button-1:hover .button-icon {
  display: none; /* Hide the default icon */
}

.seller-button-1:hover .hover-icon {
  display: block; /* Show hover icon */
}

/* Hover Effect for Button */
.seller-button-1:hover {
  color: white;
  background-color: #FF5733;
}

.seller-button-2 {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #FF5733;
  color: white;
  border: 1px solid #FF5733;
  border-radius: 5px;
  cursor: pointer;
}

.seller-button-2 .button-icon {
  width: 25px;
  height: auto;
  margin-right: 5px;
}

.seller-button-2:hover {
  background-color: #ff3b0f;
  border: 1px solid #FF5733;
}


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

  .seller-column-4 {
    width: 14%;
  }

  .seller-column-5 {
    width: 14%;
  }

  .seller-column-1 {
    width: 5%;
  }

}


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

  .seller-column-1 {
    width: 15%;
  }

  .new-seller-container {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

  .seller-column-2 {
    width: 90%;
  }

  .seller-column-2 .seller-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .seller-column-2 .seller-details span {
    margin-right: 0px;
  }

  .seller-column-1, .seller-column-2, .seller-column-3, .seller-column-4, .seller-column-5 {
    text-align: center;
  }

  .seller-image, .product-image {
    width: 80px;
    height: auto;
  }

  .seller-button {
    width: 100%;
    justify-content: center;
  }

  .seller-button .button-icon {
    margin-right: 5px;
  }

  .seller-column-4 {
    width: 55%;
  }

  .seller-column-5 {
    width: 55%;
    display: flex;
    justify-content: center;
  }

  .seller-button-2 {
    width: 209px;
    display: flex;
    justify-content: center;
  }

}






/* ------------------------------------------- Products (laptop & mobile) ------------------------------------------------------------ */


/* Default Styling for the intro-profile section */
.intro-profile {
  margin: 30px;
}

.intro-title h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
}

.intro-paragraph p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0px 0;
  text-align: left;
}

/* Styling for the "Read More" button */
.intro-read-more-button {
  background-color: transparent; /* Green background */
  color: #333;
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 0px;
  cursor: pointer;
  border-radius: 5px;
  margin: 10px 0px 30px; /* Adds space between buttons */
  transition: background-color 0.3s ease; /* Smooth transition */
}

/* Hover effect for the "Read More" button */
.intro-read-more-button:hover {
  color: #f96407; /* Darker green on hover */
}

.button-container {
  margin: 20px auto;
  width: 30%;
  display: flex;
  justify-content: center;
}

.button-container .intro-button {
  font-size: 18px;
  color: white;
  font-weight: 600;
  background-color: #f96407;
  padding: 10px 50px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.5s ease;
  cursor: pointer;
}

.button-container .intro-button:hover {
  background-color: #dd5500;
}

/* Styling for the new product cards and Owl Carousel */
.seller-custom-new-products {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}


.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  padding:10px 0px 10px 0px;
  -webkit-transform: translate3d(0, 0, 0);
}

.seller-custom-card {
  width: 345px;
  margin: 10px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seller-custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.seller-custom-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.seller-custom-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
}

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

.seller-custom-s-button {
  background-color: #f96407;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.seller-custom-s-button:hover {
  background-color: #dd5500;
}

.owl-nav {
  display: none;
}

.owl-carousel .owl-dots {
  display: none;
}

/* Media Query for mobile view */
@media (max-width: 768px) {
  .intro-profile {
    margin: 10px;
  }

  .intro-title h2 {
    font-size: 23px;
    margin: 20px 20px 0px 20px;
  }

  .intro-paragraph p {
    font-size: 14px;
    margin: 0px 20px 10px 20px;
  }

  .intro-read-more-button {
    margin: 0px 0px 30px 20px;
  }

  .button-container {
    width: 65%;
    margin: 10px auto 70px;
  }

  .seller-custom-new-products {
    flex-direction: column;
    align-items: center;
  }

  .seller-custom-card {
    width: auto;
    margin-bottom: 20px;
  }
}

/* Owl Carousel Specific Styles */
.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

































/* --------------------------------------------- rating reviews (laptop & mobile) -------------------------------------------------------- */


.rating-reviews {
  width: 100%;
  padding: 20px;
}

.rating-title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin: 20px 0px 30px;
}

.rating-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.rating-left {
  display: flex;
  justify-content: flex-end;
  width: 53%;
  gap: 20px;
}

.left-side {
  width: 25%;
}

.right-side {
  width: 35%;
}

.average-rating {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 0px;
}

.average-rating-review {
  font-size: 16px;
  color: #333;
  text-align: left;
  margin: 0px;
}

.stars {
  font-size: 20px;
  margin-left: 10px;
}

.star-row,
.satisfaction-row {
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.satisfaction-row span {
  width: 10%;
}

.bar1 {
  width: 78%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.bar2 {
  width: 50%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background-color: #66bb6a;
}

.rating-right {
  width: 40%;
}

.user-satisfaction-title {
  width: 70%;
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Vertical Divider Style */
.divider {
  width: 2px;
  background-color: #e0e0e0; /* Light gray divider */
  margin-top: 5px; /* Add space on top */
  margin-bottom: 5px; /* Add space on bottom */
}


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

  .satisfaction-row span {
    width: 14%;
  }

  .bar2 {
    width: 38%;
  }

  .user-satisfaction-title {
    width: 67%;
  }

  .sub-column-2 {
    width: 60%;
  }

  .sub-column-3 {
    width: 25% !important;
  }

  .reviews-container {
    gap: 15px !important;
  }

}


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

  .rating-title {
    font-size: 23px;
  }

  .average-rating {
    font-size: 23px;
  }

  .stars {
    font-size: 15px;
  }

  .rating-container {
    flex-direction: column;
  }

  .rating-left, .rating-right {
    width: 100%;
    flex-direction: column;
  }

  .left-side, .right-side {
    width: 100%;
  }

  .section-title {
    font-size: 20px;
  }

  .user-satisfaction-title {
    font-size: 18px;
    text-align: left;
  }

  .bar {
    height: 6px;
  }

  .satisfaction-row span {
    width: 20%;
  }

}
















/* --------------------------------------------- user reviews (laptop & mobile) --------------------------------------------------------- */


/* User Reviews Section */
.user-reviews {
  width: 100%;
  padding: 20px;
}

.user-reviews-section-title {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Reviews Container */
.reviews-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Individual Review Columns */
.review-column {
  display: flex;
  justify-content: space-between;
  width: 32%;
  height: auto;
}

.sub-column-1 {
  width: 10%;
  display: flex;
  flex-direction: column;
}

.sub-column-2 {
  width: 65%;
  display: flex;
  flex-direction: column;
}

.sub-column-3 {
  width: 20%;
  display: flex;
  flex-direction: column;
}

/* First Column: Image */
.user-image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Star Rating */
.rating-stars {
  font-size: 12px;
  margin-bottom: 10px;
}

/* Review Title, Address, Product Name */
.review-title {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
}

.review-address, .review-product {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

/* Review Date */
.review-date {
  font-size: 14px;
  color: #333;
  text-align: right;
}

/* Vertical Divider Style */
.reviews-divider {
  width: 2px;
  background-color: #e0e0e0; /* Light gray divider */
  margin-top: 5px; /* Add space on top */
  margin-bottom: 5px; /* Add space on bottom */
}

/* Hover effect for the button */
.user-review-container {
  margin: 50px auto;
  width: 30%;
  display: flex;
  justify-content: center;
}

.user-review-container .user-review-button {
  font-size: 18px;
    font-weight: 600;
    color: #FF5733;
    background-color: transparent;
    padding: 6px 40px;
    border: 1px solid #FF5733;
    border-radius: 5px;
    transition: background-color 0.5s ease;
    cursor: pointer;
}

.user-review-container .user-review-button:hover {
  color: white;
  background-color: #FF5733;
}

/* Mobile View Styling */
@media (max-width: 768px) {

  .user-reviews-section-title {
    text-align: center;
  }

  .user-reviews {
    padding: 40px 20px 20px 20px;
  }

  .reviews-container {
    flex-direction: column;
    gap: 5px;
  }

  .sub-column-1 {
    width: 20%;
    align-items: center;
  }

  .review-column {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .sub-column {
    width: 100%;
    text-align: center;
  }

  .sub-column-2 {
    width: 100%;
    align-items: center;
  }

  .sub-column-3 {
    width: 100%;
    align-items: center;
  }

  .user-image {
    width: 50%;
    margin-bottom: 0px;
  }

  .rating-stars {
    font-size: 15px; /* Larger stars on mobile */
  }

  .review-title {
    font-size: 22px;
  }

  .review-address, .review-product {
    font-size: 18px;
  }

  .review-date {
    font-size: 16px;
  }

  .user-review-container {
    margin: 30px auto 50px; 
    width: 75%;
  }

}













/* ---------------------------------------------------------------- Footer ---------------------------------------------------------------------------------------- */


/* Footer Section */
.seller-footer {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 40px 20px;
}

/* Footer Column */
.footer-column-1 {
  width: 28%;
}

.footer-column-2 {
  width: 15%;
}

.footer-column-3 {
  width: 20%;
}

.footer-column-4 {
  width: 25%;
}

/* Footer Title */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

/* Footer Info - First Column */
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-image-container {
  width: 5%;
}

.footer-image-container-2 {
  width: 5%;
}

.footer-image-container-3 {
  width: 5%;
}

.footer-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.contact-person {
  width: 60%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-name {
  color: #333;
  font-size: 15px;
  margin-bottom: 5px;
  text-decoration: none;
}

.contact-name:hover {
  cursor: auto;
  color: #333;
}

.contact-paragraph {
  color: #333;
  font-size: 15px;
  text-decoration: none;
}

.contact-paragraph:hover {
  cursor: auto;
  color: #333;
}

/* Footer Info - Second Column */
.footer-info-2 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-image-2 img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.contact-person-2 {
  width: 65%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-name-2 {
  font-size: 15px;
  color: #333;
  margin-bottom: 5px;
  text-decoration: none;
}

.contact-name-2:hover {
  cursor: auto;
  color: #333 !important;
}

.contact-paragraph-2 {
  font-size: 15px;
  color: #333;
  text-decoration: none;
}

.contact-paragraph-2:hover {
  color: #333 !important;  
}

/* Footer Info - Third Column */
.footer-info-3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-image-3 img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.contact-person-3 {
  width: 60%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  text-decoration: none;
}

.contact-name-3 {
  font-size: 15px;
  color: #333;
  margin-bottom: 5px;
  text-decoration: none;
}

.contact-name-3:hover {
  cursor: auto;
  color: #333 !important;
}

.contact-paragraph-3 {
  width: 45%;
  font-size: 18px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

.contact-paragraph-3:hover {
  color: #FF5733 !important;
}

/* Default styling for the 'call-button' div and buttons */
.call-button {
  display: flex;              /* Using flexbox for layout */
  justify-content: flex-start; /* Left align buttons */
  gap: 10px;                  /* Space between the buttons */
}

.sms-button {
  display: flex;
  align-items: center;         /* Vertically center align the image and text */
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #FF5733;
  cursor: pointer;
  border: 1px solid #FF5733;
  background-color: transparent;  /* Green background for both buttons */
  color: FF5733;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sms-button:hover {
  color: white;
  background-color: #FF5733; /* Darker green when hovered */
}

.sms-button:hover .button-icon {
  content: url('http://localhost:8080/unicrop_bulk/assets/front/images/seller/call-icon-hover.webp'); /* New image URL for hover */
}

.email-button {
  display: flex;
  align-items: center;         /* Vertically center align the image and text */
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #FF5733;
  background-color: #FF5733;  /* Green background for both buttons */
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.email-button:hover {
  border: 1px solid #fc441b;
  background-color: #fc441b; /* Darker green when hovered */
}


/* Styling for the icon inside the button */
.button-icon {
  width: 25px; /* Adjust the width of the icon */
  height: 25px; /* Adjust the height of the icon */
  margin-right: 10px; /* Space between the icon and the text */
}

/* Footer Links - Second and Third Column */
.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 16px;
  color: #333; /* Set text color to #333 */
}

.footer-links a:hover {
  color: #FF5733 !important;
}

/* Footer Video - Fourth Column */
.footer-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-video {
  position: relative;
  width: 100%;
  height: 200px;
  border: none;
}

/* --------------------------------------- */

/* Modal styles */
.video-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal-content-2 {
  position: relative;
  margin: 10% auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  max-width: 1000px;
}

.close-2 {
  position: absolute;
  top: -24px;
  right: -32px;
  font-size: 40px;
  color: #ff0000;
  cursor: pointer;
  padding: 0px;
  margin: 0px;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* Aspect ratio 16:9 */
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------- */

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

  .footer-title {
    text-align: center;
  }

  .seller-footer {
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
  }

  .footer-column-1 {
    width: 100%;
  }

  .footer-column-2 {
    width: 100%;
    margin-top: 30px;
  }

  .footer-column-3 {
    width: 100%;
  }

  .footer-column-4 {
    width: 100%;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-name {
    margin-bottom: 0px;
  }

  .call-button {
    justify-content: center;
  }

  .footer-info {
    justify-content: center;
  }

  .footer-info-2 {
    justify-content: center;
    margin-left: 12px;
  }

  .footer-info-3 {
    justify-content: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-image-container {
    width: 5%;
    margin-bottom: 20px;
  }

  .footer-video-container iframe {
    height: 250px; /* Increase video height on mobile */
  }
}












/* -------------------------------------------------- social media icons -------------------------------------------------- */

/* Social Icons Section */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.social-text {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
}

.social-column-1 {
  width: 10%;;
  color: #333;
  display: flex;
  justify-content: flex-end;
}

.social-column-2 {
  width: 10%;
  display: flex;
  gap: 5px;
  justify-content: flex-start;/
}

.social-icon img {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.2);
}

.social-icon {
  display: inline-block;
}

/* Hover effect for individual social media icons */
.facebook-icon:hover img {
  filter: brightness(1.2);
}

.x-icon:hover img {
  filter: brightness(1.2);
}

.linkedin-icon:hover img {
  filter: brightness(1.2);
}



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

  .social-icon img {
    width: 40px;
  }

}



/* Mobile View - Adjustments for small screens */
@media (max-width: 768px) {

  .social-icons {
    flex-direction: row;
    align-items: center;
  }

  .social-column-1 {
    width: 20%;
  }

  .social-column-2 {
    width: 35%;
    margin-top: 0px;
    justify-content: center;
  }

  .social-icon img {
    width: 45px;
    height: 45px;
  }
}

/* ---------- nochanges after click in button ---------------- */



/* Prevent focus styles on button */
.banner-product-button:focus, .banner-product-button:focus, .banner-product-button:focus, .banner-product-button:focus,
.intro-read-more-button:focus, .intro-button:focus, .view-all:focus, .product-button-container button:focus, .range-button:focus,
.yproduct-button:focus, .yproductview-button:focus, .contact-btn:focus, .user-review-button:focus, .sms-button:focus, .email-button:focus {
  outline: none;
  
}

/* ---------- nochanges after click in button --------------- */

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




/* ------------------------------------------------------- Whatsapp Chat ------------------------------------------------------------------------ */

.whatsapp-chat 
{
    position: fixed; /* Keep the button fixed at a corner of the screen */
    bottom: 20px;
    right: 20px;
    background-color: #ffffff00; /* WhatsApp green color */
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 20; /* Keep it above other elements */
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-icon 
{
    width: 70px;
    height: 70px;
    margin-right: 0px;
}