﻿/**
 * @ Author: poyagroup.com
 * @ Create Time: 2024-06-16 16:04:46
 * @ Modified by: Your name
 * @ Modified time: 2024-06-20 16:12:05
 * @ Description: poyagroup.com
 */
 @font-face {
    font-family: 'iransans';
    src: url('/fonts/iransans.eot');
    src: url('/fonts/iransans.eot?#iefix') format('embedded-opentype'), url('/fonts/iransans.woff') format('woff'), url('/fonts/iransans.ttf') format('truetype'), url('/fonts/magiskullfa.svg#iransans') format('svg');
    font-style: normal;
    font-weight: normal;
}
body{
    font-family: 'iransans';
    background:#F8F8F8;
}
.header {
    padding: 10px 0;
}
.logo img {
    height: 84px;
}
.icons .btn {
    margin-left: 5px;
}
.blinking-button {
    display: inline-block;
    background-color: #794199;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    color: white;
    text-decoration: none;
    position: relative;
  }
  .blinking-button:hover{
    color:#fff;
  }
  .blinking-button span {
    animation: blink 1.0s step-start infinite;
  }

  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
.leftheader{
    text-align:left;
}
.search-box {
    max-width: 400px;
    margin: 0 auto;
}
.search-box input{
    background:#F2F2F2;
}
.rightnav{
    padding-right:unset !important;
}
.leftnav{
    margin-left:unset !important;
    margin-right:auto;
}
.navbar-brand{
    display: none;
}
.section-header {
    background: linear-gradient(90deg, #ffffff 0%, #f3f3f3 70%);
    background: -moz-linear-gradient(0deg, #ffffff 0%, #f3f3f3 70%);
    background: -webkit-linear-gradient(0deg, #ffffff 0%, #f3f3f3 70%);
}

.navbar {

}

.topbar {
    background-color: #F2F2F2;
    color: #6c757d;
    height: 40px;
    font-size: 12px;
    line-height:30px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.topbar .phone {
    display: flex;
    align-items: center;
}

.topbar .phone .phone-icon {
    margin-right: 5px;
}

.topbar .working-hours {
    display: flex;
    align-items: center;
}

.topbar .working-hours .clock-icon {
    margin-right: 5px;
}

.dropdown-menu {
    width: 100%;
    left: 0 !important;
    /* اضافه کردن این خط برای پوشش کامل عرض */
    right: 0 !important;
    /* اضافه کردن این خط برای پوشش کامل عرض */
}

.screen-darken {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    position: fixed;
}

.container-fluid {
    padding: unset !important;
}

/* To Top Button */
.to-top {
    background: #e9887a;
    border: unset !important;
    position: fixed;
    bottom: 20px;
    left: -100px;
    /* Initial position outside of the screen */
    transition: left 0.3s ease-in-out;
    z-index: 9999;
    opacity: 0;
    /* Initially hidden */
}

.to-top.show {
    left: 20px;
    /* Show the button */
    opacity: 1;
}

/* Carousel */
.carousel-item img {
    transition: transform 1s ease;
}

.carousel-item.active img {
    transform: scale(1.05);
}

/* Circle Buttons */
.circle-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.circle-buttons .btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Rounded Box */
.rounded-box {
    border:1px solid #DCDBDB;
    background: #fff;
    border-radius: 15px;
    margin: 20px 0;
}

.rounded-box .item {
    text-align: center;
}

.rounded-box .item .icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.rounded-box .item .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.rounded-box .item .description {
    font-size: 14px;
    color: #6c757d;
}

/* Special Offer Box */
.special-offer {
    background-color: #794199;
    width: 100%;
    padding: 20px;
    margin-top: 20px;
}

.special-offer .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-offer .content .offer-details {
    width: 30%;
    text-align: right;
}

.special-offer .content .offer-cards {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    justify-content: space-between;
}

.offer-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 10px;
    width: 22%;
    text-align: center;
}

.offer-card img {
    width: 100%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.offer-card .title {
    font-size: 16px;
    margin-bottom: 5px;
}

.offer-card .price {
    font-size: 14px;
    color: #ff69b4;
    margin-bottom: 5px;
}

.offer-card .original-price {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
    margin-left: 5px;
}

.offer-card .progress-bar-container {
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
}

.offer-card .progress-bar {
    height: 100%;
    background-color: #ff69b4;
    border-radius: 5px;
    width: 80%;
    /* Assuming the offer is 80% done */
}

.offer-card .offer-status {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.offer-card .timer {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #fff;
}

.footer .footer-logo img {
    width: 150px;
}

.footer-bottom {
    background-color: #222;
    color: #bbb;
    padding: 10px 0;
    text-align: center;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius:20px;
}

.image-container .overlay {
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.image-container:hover .overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.btn-overlay {
    transition: opacity 0.3s ease;
}

.image-container:hover .btn-overlay {
    display: inline-block;
}

.carousel>.carousel-inner>.carousel-item>img {
    object-fit: cover;
}

.company-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: right;
}

.company-title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.company-subtitle {
    color: #d4a24c;
    margin-bottom: 20px;
}

.company-text {
    margin-bottom: 20px;
}

.btn-custom {
    background-color: #444;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
}
.show{

}
