/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* 2. Remove default margin */
  * {
    margin: 0;
  }
  
  /* 3. Enable keyword animations */
  @media (prefers-reduced-motion: no-preference) {
    html {
      interpolate-size: allow-keywords;
    }
  }
  
  body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
  }
  
  /* 6. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  /* 7. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* 8. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  /* 9. Improve line wrapping */
  p {
    text-wrap: pretty;
  }
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  
  /*
    10. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }
  a{
    text-decoration: none;
  }



/* CSS RESET */



/* Fonts         */

.search-holder .control {
  padding: 11px 5px 10px 100px;
    line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  font-size: .8rem;
  margin-right: .9rem;
}

.search-holder .control:focus {
    border-color: #373737;

}

.header-search-submite{
    position: absolute;
    padding-top: .3rem;
    left: 0;
    background-color: #ffffff00;
    border: none;

}
i.fa-duotone.fa-solid.fa-magnifying-glass {
  background: #ffc64b;
  padding: .5rem;
  border-radius: 6px;
  font-size: 10px;
  padding: .7rem;
}

.cart-woo{

    color: #333;
    background: #ffc64b;
    box-shadow: 0 5px 15px rgb(33,25,65,0.07) !important;
    border-radius: 6px;
    transition: all .3s ease ;
    margin: 0 1rem;
    width: auto;
    height: auto;
    padding: 10px 15px 8px 15px !important;
}

.cart-woo:hover{

  color: #333;
  background: #fbfaf7;
 
}


.cart-woo i { 
  font-size: 16px;
  padding-bottom: 0;
}




a.auth-btn {
  color: #333;
  background: white;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgb(33, 25, 65, 0.07) !important;
  padding: 11px 25px;
  font-size: 14px;
  height: auto;
  transition: all .3s ease;
}

a.auth-btn i {
padding-left: .5rem;
}

a.auth-btn:hover{
    background-color: #ffc64b;
    color: rgb(0, 0, 0);
}

   
/* start phone number*/   

.phone-number{
  transition: all .3s ease ;
  background: white;
  border-radius: 6px;
  padding: 4px 9px;

}


.phone-number:hover{

  background-color: #ffc64b;
  color: rgb(0, 0, 0);

}

.phone-number i{
  font-size: 42px;
  opacity: 25%;

}

.phone-number h5 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 15px;
}

.phone-number h6 {
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-size: 10px;
}

/* end phone number*/   





header.main-header {
  box-shadow: 0 5px 15px rgba(33, 33, 60, 0.03);
}
   
   






/* Wedget  Search  */ 
.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 190px;
}

.input {
  width: 100%;
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #f3f3f4;
  color: #0d0c22;
  transition: 0.3s ease;
}

.input::placeholder {
  color: #9e9ea7;
}

.input:focus,
input:hover {
  outline: none;
  border-color: rgba(0, 48, 73, 0.4);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgb(0 48 73 / 10%);
}

.icon {
  position: absolute;
  left: 1rem;
  fill: #9e9ea7;
  width: 1rem;
  height: 1rem;
}


/* Search */ 



/*   menu  */ 


/*   menu  */ 

 /*Footer*/


 .main-footer {
  box-shadow: 0 -5px 15px rgba(33, 33, 60, 0.03);
  padding-top: 59px;
}


.master-modal{
    position: fixed;
    top: 0;  
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.519);
    visibility: hidden;
    opacity: 0; 
    transition: all .3s ease;

}

.master-modal.show{
    position: fixed;
    top: 0;  
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.519);
    visibility: visible;
    opacity: 1;
}

.master-modal .body{
    justify-items: center;
    position: absolute;
    background-color: rgb(255, 255, 255);
    text-align: center;
    top: 50%;
    left: 50%;
    min-height: 350px;
    min-width: 350px;
    border-radius: 10px;
    padding: 30px 18px ;
    transform: translate(-50% , -50%);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.271);
}

.master-modal .body p{
    font-size: 18px;
    font-weight: 700;
    margin-top: 1rem;
}

i.fa-duotone.fa-solid.fa-circle-xmark {
    position: absolute;
    right: -20px;
    top: -20px;
    padding: 10px;
    cursor: pointer;
        font-size: 27px;
}
    


.lost-password{
    font-size: 14px;
}
    
.master-modal button {
        background-color: #f2642d;
        color: #ffffff;
        font-weight: 700;
        font-size:14px;
        padding: .537rem ;
 }


/* main footer*/


.main-footer{
  margin-top: 100px;
}


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


.footer-icon i{
  font-size: 46px;
    padding-bottom: 1rem;
}


.footer-icon p{
  font-size: 16px;
  font-weight: 600;
}


.footer-title {
  position: relative; /* برای کنترل موقعیت دایره */
  padding-right: 1.5rem; /* فاصله بین دایره و متن */
  margin-bottom: 1rem;
}

.footer-title::before {
  content: "";
  position: absolute;
  right: 0; /* دایره سمت راست متن (چون جهت RTL هست) */
  top: 50%;
  transform: translateY(-50%); /* وسط‌چین عمودی */
  height: .3rem;
  width: 1rem; /* عرض و ارتفاع برابر برای دایره */
  background-color: #ffc207;
  border-radius: 8px;
}


.link-row li {
  list-style: none;
}

.link-row li a{
  color: #565656;
  font-size: 13px !important;
}

.link-row li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  background-color: #61616166;
  margin-left: 9px;
  border-radius: 50%;
}
.footer-description{
  font-size: 14px;
}

.footer-contact p {
  padding: 0;
  margin: 0;
  font-weight: 800;
  font-size: 28px;
}


.footer-column-tow{
  min-height: 400px !important;
}


.footer-email {
  font-weight: 300;
}



.text-secondary i{
  font-size: 32px;
  opacity: 25%;

}

.text-footer h5 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 15px;
}

.text-footer h6 {
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-size: 10px;
}
/* main footer*/

/* start breadcrumb*/

.breadcrumb {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}
.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
/* end breadcrumb*/


/* start single*/

.top-section {
  background: #F8F3D9;
  height: 250px;
}
.top-section.page-single{

  background: #f8f9fa;
  height: 150px;
  
}
h1.page-title {

  text-align: center;
  font-weight: 700;
  font-size: 30px;
}

.content-section .post-tumbnail img{
  width: 100% !important;
  object-fit: cover !important;
  margin-top: -50px;
  border-radius: 10px;
  height: 400px;
  max-height: 400px;
}


.post-content {
  line-height: 2rem;
}

.sticky-side{
  position: absolute;
  top: 0;
  left: -200px;
}


.sticky-side .post-tags , .sticky-side .post-share {
  font-size: 14px;
  border-right: 1px solid #ccc;
  padding-right: 8px;
}


.post-content {
  width: 900px !important;
}




/* end single*/




/* start Comment */

comments {
  font-size: 14px;
  margin: 16px 0;
}

.commentlist li{
  list-style: none;
}

.commentlist li.comment {
  background: white;
  border-radius: 16px;
  border: 2px dashed #dfdfdf19;
  margin-top: 14px;
  padding: 16px;
  position: relative;
}

li.comment .comment-author {
  display: flex;
  align-items: center;
}

li.comment .comment-author img {
  border-radius: 8px;
  margin-left: 8px;
}


li.comment p {
  background: #F4F5F8;
  border-radius: 4px;
  padding: 16px;
  margin: 10px 0;
  font-size: 14px;
}

li.comment .comment-meta {
  position: absolute;
  left: 100px;
  top: 22px;
  font-size: 12px;
}

li.comment .comment-meta a {
  color: #333;
}

li.comment .comment-reply-link {
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 14px;
  background: #007bff;
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
}

.comment-respond {
  margin: 20px 0;
}

.comment-respond .comment-reply-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.comment-respond .must-log-in {
  font-size: 14px;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  display: flex;
  flex-direction: column;
}

.comment-form label {
  margin: 8px 0;
  font-size: 12px;
}

.comment-form input,
.comment-form textarea {
  border-radius: 16px !important;
  padding: 8px !important;
  background-color: #f8f9fb;
  border-color: transparent !important;
  font-size: 14px !important;
  margin-bottom: 8px;
}

.searchform #s {
  margin-bottom: 5px;
}

.searchform #searchsubmit {
  font-size: 12px !important;
  color: white;
  background: #007bff;
}

.comment-form input.submit {
  background: #007bff;
  color: white;
  padding: 10px 20px !important;
}

.comment-notes {
  font-size: 12px;
}

#cancel-comment-reply-link {
  font-size: 14px;
  background: #007bff;
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
}

h3#comments {
  display: flex;
  font-size: 14px;
  justify-content: center;
}

/* end comment*/


/* start breadcrumb */

.breadcrumb {
  padding: 10px;
  width: auto;
  font-size: 15px;
  color: #000;
  gap: 13px;
  border-radius: 10px;
}



/* end breadcrumb */



/* start Woo Single Product */

.master-single-image .images{

  width: 100% !important;
  margin-bottom: 0 !important;
}


.master-single-image{
  background-color: #f3f3f3!important;
  padding: 2rem!important;
  border-radius: 26px!important;
}


.img-thumbnail.slick-slide {
  background: transparent!important;
  border: 0!important;
}
.img-thumbnail.slick-slide  img{
 border-radius: 9px;

}


.master-single-image .image-additional .slick-slide.slick-current img{
  border: 2px solid #ffc64b !important;
}



.slick-next , .slick-prev{
  display: none !important;

}


.woocommerce div.product .product_title 
{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

h3.product-sub-title {
  font-size: 15px;
  font-weight: 300;
}

span.d-flex.justify-content-start.align-items-center.gap-2.orginal-alert {
  padding: 2px 15px;
  color: white;
  font-size: 14px;

}


span.d-flex.justify-content-start.align-items-center.gap-2.stock-alert.rounded{
  color: rgb(0, 0, 0);
  padding: 2px 15px;
  font-size: 14px;
}


.posted_in.ml-4.master-product-category.d-flex.flex-row.align-items-center {
  padding: 7px 15px;
  font-size: 14px;
  gap: 10px;
  background: wheat;
  border-radius: 10px;
}

.delivry-section{
  background-color: #BBD8A3;
  width: max-content;
}

i.fa-duotone.fa-solid.fa-truck-bolt.delivry-icon {
  font-size: 35px;
}

.delivry-section h4{
  font-weight: 600;
}

.delivry-section p , .delivry-section h4{
  padding: 0;
  margin: 0;
  font-size: 14px;
}


.features-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* end Woo Single Product */

/* start Responsive */


@media (  max-width : 991px ){


  .search-holder , .phone-number , .secend-header , .cart-woo{
    display: none !important;
  }

  .phone-nav-toggle{
    display: block !important;
  }
}


/* end Responsive */

