/* Define your custom color in CSS */
.btn-custom {
  background-color: #7D1128; /* Purple color */
  /* You can add more styles here to enhance the appearance */
  color: #fff; /* Text color */
  border-color: #7D1128; /* Border color */
}

/* Additional styles to change appearance on hover or focus */
.btn-custom:hover,
.btn-custom:focus {
  background-color: #7D1128; /* Darker purple color on hover or focus */
  border-color: #7D1128;
  color: #fff; /* Text color */
}

/* Add this CSS to your stylesheet */
.image-slider {
  position: relative;
  overflow: hidden;
}

.slider-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-image {
  width: 100%;
  height: 300px; /* Adjust the height as needed */
  background-size: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.slider-nav button {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.description-text {
  max-height: 150px; /* Adjust the max-height as needed */
  overflow-y: auto;
}

.description-text p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

.btn-custom-profile {
    background-color: white; /* Change to your desired background color */
    color: black; /* Change to your desired text color */
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: none; /* Disable transition effects */
}

.btn-custom-profile:hover {
    background-color: white; /* Keep the same as the original background color */
    color: black; /* Keep the same as the original text color */
}


.btn-custom-profile:hover, .btn-custom-profile:focus {
    background-color: white; /* Keep the same as the original background color */
    color: black; /* Keep the same as the original text color */
    outline: none; /* Remove the default focus outline */
}

.font-custom {
    color: #7D1128;
    text-transform: capitalize !important;
}


.font-custom h3 {
    color: #7D1128;
}

.font-custom h2 {
    color: #7D1128;
}

.font-custom h1 {
    color: #7D1128;
}

.font-custom h4 {
    color: #7D1128;
}

.btn-fixed-size {
    width: 250px; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
}

/* Media query for smaller screens (e.g., mobile devices) */
@media (max-width: 600px) {
    .btn-fixed-size {
        width: 100px; /* Adjust the width for mobile */
        height: 30px; /* Adjust the height for mobile */
        font-size: 12px; /* Adjust the font size for mobile */
    }
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video {
    width: 70%;
    height: 550px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .video {
        width: 90%;
        height: auto; /* Auto height to maintain aspect ratio */
    }

    .video-container h4 {
        font-size: 16px; /* Adjust font size for better readability */
    }
}

@media (max-width: 576px) {
    .video {
        width: 100%;
        height: auto; /* Auto height to maintain aspect ratio */
    }

    .video-container h4 {
        font-size: 14px; /* Adjust font size for better readability */
    }
}


.product-img {
    width: 140px;
}

/* Adjustments for smaller screens */
@media (max-width: 576px) {
    .product_section .col-12 {
        width: 33.33%;
    }
}


/* test */
.dropdown_search {
    position: absolute;
    right: 0;
    opacity: 0;
    visibility: hidden;
    top: 120%;
    transition: all 0.3s;
}

@media screen and (max-width: 768px) { /* Assuming $tablet-device is max-width 768px */
    .dropdown_search {
        right: auto;
        left: -18px;
    }
    .dropdown_search form {
        width: 240px;
    }
    .dropdown_search form input {
        height: 38px;
        line-height: 38px;
    }
    .dropdown_search form button {
        width: 45px;
    }
}

@media screen and (max-width: 480px) { /* Assuming $large-mobile is max-width 480px */
    .dropdown_search {
        right: auto;
        left: -322px;
    }
    .dropdown_search form {
        width: 340px;
        z-index: 99;
    }
    .dropdown_search form input {
        height: 38px;
        line-height: 38px;
    }
    .dropdown_search form button {
        width: 45px;
    }
}

.dropdown_search form {
    position: relative;
    width: 280px;
    border: 1px solid #cccccc; /* Assuming $grey_color is #cccccc */
    background: #ffff;
    z-index: 9;
}

.dropdown_search form input {
    border: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 67px 0 10px;
    background: inherit;
    color: #333333; /* Assuming $fonts_color3 is #333333 */
}

.dropdown_search form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 59px;
    height: 100%;
    border: 0;
    border-left: 1px solid #ddd;
    padding: 0;
    font-size: 20px;
    background: none;
}
