/*
body {
    font-family:Edmondsans ;
    font-weight: normal;
    font-style: normal;
}
h1,h2,h3,h4,h5
{
 font-family:Bugaki ;
 font-weight: normal; 
 font-style: normal;
}
 */

                                    

.txt1{
    color:#fff!important;font-size: 18px;
}


 /* Products display start*/

 /* Default state for nav-item */
 /* for nav tab*/
.nav-item {
    background-color: #fff;
   

}
  
/* Active state for nav-item */
.nav-item.active {
    background-color: #E4E4E4 !important;  /* Background color when active */
  }
  

  /* to display image */
 
 .product-gallery-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 80px;
}

.product-thumbnails img {
    width: 80px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-thumbnails img:hover {
    transform: scale(1.1);
    border-color: #ff6600;
}

.product-main-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.magnifier-container {
    position: relative;
    overflow: hidden;
}

.magnify {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.2s ease-in-out;
}

.magnify:hover {
    transform: scale(1.2); /* Slight zoom-in effect */
}


.btn-size {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Add smooth transitions */
}

.btn-size.active {
    background-color: #2C6B13; /* Green on selection */
    color: #fff;
    border-color: #0056b3;
}

.btn-size:hover {
    background-color: #ddd; /* Light gray on hover */
}

/* Ensure hover doesn't override active */
.btn-size.active:hover {
    background-color: #2C6B13; /* Keep green on active hover */
    color: #fff;
}


/*    end products dispaly         */

.btn-nice
   {
    width:30px;height:30px;border-radius:20px;background:#F0EFEF;
    border:1px solid #E2E1E1;font-size:18px;font-weight:bold;
   } 
.btn-delete {
    margin-left: 20px;
    width: 80px;
    height: 30px;
    border: none; /* Removes the border */
    background: transparent; /* Keeps background transparent */
    color: black; /* Initial font color */
    font-weight: normal; /* Default font weight */
    transition: color 0.5s ease, font-weight 0.3s ease; /* Smooth transitions */
    cursor: pointer; /* Adds a pointer cursor for better UX */
    border:1px solid #E2E1E1;
    border-radius:5px;
}

/* On hover or focus */
.btn-delete:hover,
.btn-delete:focus {
    color: darkblue; /* Changes font color to dark blue */
  
    font-weight: bold; /* Changes font weight to bold */
    border:1px solid #E2E1E1;
    border-radius:5px;
}

.inner-page-banner {
    background-image: url('img/banner/b1.jpg');
    background-size: cover;
    background-position: center;
    }
    .contact-box-layout1 {
        background-color: #f7f7f7;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-width: 500px;
        margin: 0 auto;
    }
    .contact-form-box {
        margin-top: 20px;
    }
    .contact-form-box .form-group {
        margin-bottom: 15px;
    }
    .contact-form-box input.form-control {
        border-radius: 5px; /* Rounded corners for input fields */
        padding: 10px;
        border: 1px solid #ccc;
    }
    .contact-form-box .item-btn {
        background-color: #007bff;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        max-width: 100%; /* Ensures button takes full width */
    }
    .contact-form-box .create-account-link {
        text-decoration: none;
        color: #007bff;
        font-size: 17px;
       
    }
    .contact-form-box .create-account-link:hover {
        text-decoration: underline;
    }
    .help-block {
        color: red;
    }
    .title-bar-primary4 {
        color: #007bff;
    }

/*   specialy use login register     */

.dots {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.dots span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background-color: #3498db;
    border-radius: 50%;
    animation: dots-wave 1s infinite;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dots-wave {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    40% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* rating*/
.fas {
    font-size: 20px;
    margin: 0 7px;
}

.filled {
    color: #F1AE3C;
}

.numeric-rating {
    color: rgb(136, 136, 136);
    font-weight: bold;
}

.empty { 
    color: rgb(136, 136, 136);
}

.rate-item {
    cursor: pointer;
    display: inline-block;
    color: rgb(136, 136, 136);
}

.rate-item i.filled {
    color: #F1AE3C; /* Color for filled stars */
}

.rate-item i.fa-star-half-alt {
    color: #F1AE3C; /* Color for half-filled stars */
}



#review {
    margin-top: 20px;
}

.review-item {
    border-bottom: 1px solid #ccc;
    padding-top: 10px; 
}

.review-rating i {
    color: #F1AE3C;
}

.filled {
    color: #F1AE3C;
}

.review-content {
    padding-left: 10px;
}

textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.rate-items {
   
    margin-bottom: 10px;
}

.rate-item {
    cursor: pointer;
}

#review-form {
    margin-top: 20px;
}

.myinput
{
    height:40px;font-size:16px;margin-bottom:3px;
}

/* for panel heading box in checkout*/
.panelview
{
    background:#fff!important;border-bottom:1px solid #D9D8D8;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.25);  /* for Webkit-based browsers (Chrome, Safari, etc.) */
    -moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.25);     /* for Firefox */
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.25); 
    margin-bottom:10px;         /* standard CSS for all other browsers */
    
}

