﻿@font-face {
    font-family: 'B Yekan';
    src: url('../fonts/BYekan.woff2') format('woff2');
}
body{
  font-family: "B Yekan", sans-serif;
  background: #f8f4f1;
  color: #000;
}

/* HEADER */

.custom-header {
    border-radius: 20px;
    background-color: #FFF;
    box-shadow: #222;
    padding: 25px 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.logo-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

    .logo-box img {
        width: 60px;
        flex-shrink: 0;
    }

    .logo-box div {
        display: flex;
        flex-direction: column;
    }

.search-box{
  flex: 1;
  position: relative;
 
}

.search-box input{
  height: 48px;
  border-radius: 14px;
  padding-right: 45px;
   background-color: #dce3f0;
   color: #1a2738 !important;
   stroke-width: 1px;
   stroke-color: #a1aab4;
}

.search-box i{
  position: absolute;
  top: 16px;
  right: 15px;
  color: rgb(0, 0, 0);
}

.header-icons{
  display: flex;
  align-items: center;
  gap: 15px;
}

.data-bs-target {
    justify-content: flex-start;
}
.nav-link{
  color: #000;
}

.navbar.navbar-nav.nav-link{

    font-family: 'B Yekan' !important;
    font-weight:bolder !important;

}
.feature-item .mainicon{
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 10px;
}
.feature-item svg{
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 10px;
}
@media (max-width: 576px){

    .mainicon{
        width: 40px;
        height: 40px;
    }

    .row p{
        font-size: 12px;
        margin-top: 5px;
    }
}
.navbar .nav-link.active{
    color: #033676 !important;
}
.shop-container {
    width: 100%;
    padding: 20px;
}

.category-row {
    margin-bottom: 30px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .category-header h3 {
        font-size: 18px;
        margin: 0;
    }

.more-btn {
    text-decoration: none;
    padding: 6px 12px;
    background: #2d89ef;
    color: white;
    border-radius: 6px;
    font-size: 13px;
}

.products-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}



    .product-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 8px;
    }

.pagination {
    margin-top: 25px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

    .pagination a {
        padding: 5px 10px;
        border: 1px solid #ddd;
        text-decoration: none;
        border-radius: 6px;
    }

    .pagination .active {
        padding: 5px 10px;
        background: #2d89ef;
        color: white;
        border-radius: 6px;
    }
    .product-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 6px;
    }
.theme-btn,
.cart-btn{
  width: 48px;
  height: 48px;

  border: none;

background-color: #FFF;
  color: #222;

  transition: .3s;
}

.theme-btn:hover,
.cart-btn:hover{
  transform: scale(1.05);
}

.cart-count{
  position: absolute;

  top: -5px;
  right: -3px;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: #116194;

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
}

/* HERO */

.hero-slide {
    position: relative;
}

.hero-content {
    position: absolute;
    left: 60px;
    bottom: 60px;
    z-index: 2;
}

.hero-section{
  height: 420px;

  border-radius: 30px;

  background: linear-gradient(
    135deg,
    #f6b19a,
    #f9e2d2,
    #f6b19a
  );

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.hero-content h1{
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* TITLE */

.section-title{
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 40px;
}

.section-title span{
  flex: 1;
  border-top: 2px dashed gray;
}

.section-title h3{
  margin: 0;
}

/* PRODUCT */

.product-card{
  background: var(--bs-tertiary-bg);

  background-color:#dce3f0 ;

  border-radius: 20px;

  overflow: hidden;

  transition: .3s;

  height: 100%;
}

.product-card-M{
  background: var(--bs-tertiary-bg);

  background-color:#f3e6d6 ;

  border-radius: 20px;

  overflow: hidden;

  transition: .3s;

  height: 100%;
}
.product-card:hover{
  transform: translateY(-8px);
}

.product-card img{
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.product-card-M img{
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.price{
  font-weight: bold;
  color: #0a4d77;
}
.price-M{

  font-weight: bold;
  color: #aa5c00;
}
.add-cart{
  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background: #0d6efd;
  color: white;
}
.add-cart-M{
  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background: #aa5c00;
  color: white;
}
/* BUTTON */

.more-btn{
  background: #50647d;
  color: white;

  padding: 12px 35px;

  border-radius: 12px;
}

.more-btn:hover{
  background: #4d5d77;
  color: white;
}

/* FEATURES */
.mainicon {
    width: 25px;
    height: 25px;
}
.feature-icon{
  font-size: 45px;
  margin-bottom: 15px;
  color: gray;
}

/* FOOTER */

.footerline{
  background-color: #dce3f0;
  height: 5px;
 margin-bottom: 50px;
}

.footer{
  background-color: #FFF;

  margin-top: 30px;


}
.suport{
  text-align: left;
    color: #585858;

}

.footer-links{
  list-style: none;
  padding: 0;
  color: #585858;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-links a{
  text-decoration: none;
  color: inherit;
}

/* RESPONSIVE */

@media(max-width:768px){

  .custom-header{
    flex-direction: column;
  }

  .hero-content h1{
    font-size: 32px;
  }

  .hero-section{
    height: 300px;
    padding: 20px;
  }

}

/* SWIPER */

.heroSwiper{
  border-radius: 30px;
  overflow: hidden;
}

.hero-slide{
  height: 450px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: linear-gradient(
    135deg,
    #f6b19a,
    #f9e2d2,
    #f6b19a
  );
}

.slide2{
  background: linear-gradient(
    135deg,
    #8ec5fc,
    #e0c3fc
  );
}

.slide3{
  background: linear-gradient(
    135deg,
    #d299c2,
    #fef9d7
  );
}

.hero-content{
  color: #222;
}

.hero-content h1{
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 20px;
  margin-bottom: 25px;
}

/* buttons */

.swiper-button-next,
.swiper-button-prev{
  color: white;
}

/* pagination */

.swiper-pagination-bullet{
  background: white;
  opacity: .7;
}

.swiper-pagination-bullet-active{
  opacity: 1;
  width: 22px;
  border-radius: 20px;
}



/* responsive */

@media(max-width:768px){

  .hero-slide{
    height: 300px;
    padding: 20px;
  }

  .hero-content h1{
    font-size: 32px;
  }

  .hero-content p{
    font-size: 16px;
  }

}

.card {
    border-radius: 20px;
}

.about-hero {
    border-radius: 30px;
}

section p {
    line-height: 2;
}

.shadow-sm {
    box-shadow: 0 10px 30px rgba(0,0,0,.06) !important;
}
.shadow-sm {
    box-shadow: 0 10px 30px rgba(0,0,0,.06) !important;
}

.rounded-4 {
    border-radius: 20px !important;
}

.lh-lg {
    line-height: 2;
}

.contact-card {
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    color: #fff;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .contact-card:hover {
        transform: translateY(-8px);
    }

.icon-box {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.phone-card {
    background: linear-gradient(135deg,#0ea5e9,#2563eb);
}

.telegram-card {
    background: linear-gradient(135deg,#38bdf8,#0284c7);
}

.instagram-card {
    background: linear-gradient(135deg,#f97316,#ec4899,#8b5cf6);
}

.address-card {
    background: linear-gradient(135deg,#10b981,#059669);
}

.contact-banner {
    background: #fff;
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

    .contact-banner i {
        font-size: 50px;
        color: #ff4d6d;
    }