
@font-face {
  font-family: 'FaFont';
  src: url("../myFonts/presionFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'EnFont';
  src: url("../myFonts/presionFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.EnFont{
    font-family: "EnFont";
}
.titleName{
    background: linear-gradient(15deg,#785628,#e8c989,#73521f);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bgGradient{
    background: linear-gradient(135deg, #ff6b35, #f77f00);
    color: white;
    transition: all 0.3s;
}
.bgGradient:hover{
    background: linear-gradient(15deg,green,lime,darkgreen);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 105, 105, 0.4);
}
body{
    background-image: url("../image/bg3.webp");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.head-search-input,.mobile-search-input{
    unicode-bidi: embed;
    direction: rtl;
    outline: none;
    
}
.head-search-input::placeholder,.mobile-search-input::placeholder{
    font-family: 'FaFont';
}
.hide{
    display: none;
}
*{
    box-sizing: border-box;
    font-family: 'FaFont' ;
}

#mainCont{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bannerSlider{
    width: 95%;
    /* max-width: 900px; */
    height: auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.banners{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    transition: transform 0.5s ease;
}
.banner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    flex-shrink: 0;
}
.banner>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bullets{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}
.bullet{
    width: 15px;
    height: 15px;
    border-radius: 7.5px;
    border: none;
    background-color: whitesmoke;
    box-shadow: 2px 2px 20px 2px whitesmoke;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.bullet.active{
    opacity: 1;
}
.btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 2;
}
.btn.next{ right: 15px; }
.btn.prev{ left: 15px; }
button{
    cursor: pointer;
}
.dir-text{
    unicode-bidi: embed;
    direction: rtl;
    white-space: pre-wrap;
    
}
.brands-cont::-webkit-scrollbar{
    width: 0;
    height: 0;
}
.modelsResultsCont::-webkit-scrollbar{
    width: 0;
    height: 0;
}
.slide-none{
    display: none;
}
.dir-cont{
    direction: rtl;
}

::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-track{
    background-color: #403c36;
}
::-webkit-scrollbar-thumb{
    background-color: #dab773;
    border-radius: 4px;
}
.link-selected{
    color: #ffdd00;
}

.OutLine{
    outline: none;
}
.selectedBtn{
    background-color: #dab773;
    color: white;
    border: none;
}


.show-all-comments::-webkit-scrollbar{
    width: 0px;
    height: 0px;
    
}

.bg-video{
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bar-image{
    animation: bar-ani 20s infinite linear alternate;
}

@keyframes bar-ani{

    to{
        transform: translateX(-200%);
    }
}

.white-black-bar1{
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(-45deg,#785628,#e8c989 10px,#73521f 10px 20px);
    
}
.white-black-bar2{
    width: 100%;
    height: 50px;
    background: repeating-linear-gradient(-45deg,#785628,#e8c989 10px,#73521f 10px 20px);
}
.arshia-slide{
    right: -100vw;
    transition: 1s;
}
.show-slide{
    right: 0;
    transition: 1s;
}



.videos-count::-webkit-scrollbar{
    width: 0px;
    height: 0px;
    
}
.categories-count::-webkit-scrollbar{
    width: 0px;
    height: 0px;
    
}
.video-cont::-webkit-scrollbar{
    width: 0px;
    height: 0px;
}

.selected-btn{
    border-top: #785628 2px solid;
    border-left: #785628 2px solid;
    border-right: #785628 2px solid;
    border-radius: 10px 10px 0px 0px;
}

#banner::before{
    content: "";
    position: absolute;

    top: -100%;
    left: -100%;

    width: 50%;
    height: 300%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );

    transform: rotate(25deg);

    animation: shine 2.5s linear infinite;

    z-index: 1;
    pointer-events: none;
}

@keyframes shine{
    from{
        left: -100%;
    }
    to{
        left: 200%;
    }
}

/* ===========================
   PRODUCT GLOW
=========================== */

.product-glow{
    background: radial-gradient(circle,
        rgba(255,184,0,.45) 0%,
        rgba(255,145,0,.18) 35%,
        rgba(255,145,0,0) 70%);
    filter: blur(70px);
    animation: glow 5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}


/* ===========================
   PRODUCT CARD
=========================== */

.product-card{

    background: rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    overflow:hidden;

    transition:.4s;

    position:relative;

}

.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    135deg,
    rgba(255,255,255,.06),
    transparent 40%,
    transparent 60%,
    rgba(255,184,0,.06));

    pointer-events:none;

}

.product-card:hover{

    transform:translateY(-8px);

    border-color:#9e84434d;

    box-shadow:
    0 0 25px rgba(255,184,0,.15),
    0 15px 40px rgba(0,0,0,.45);

}


/* ===========================
   DESCRIPTION
=========================== */

.product-description{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    transition:.3s;

}

.product-description:hover{

    border-color:#fdc9464d;

}


/* ===========================
   FEATURES
=========================== */

.feature-item{

    background:#121212;

    color:#d6d6d6;

    border:1px solid #2c2c2c;

    padding:10px 18px;

    border-radius:999px;

    font-size:.9rem;

    transition:.3s;

    cursor:default;

}

.feature-item:hover{

    background:#ffb800;

    color:#000;

    border-color:#ffb800;

    transform:translateY(-3px);

}


/* ===========================
   BUTTONS
=========================== */

.slider-btn{

    width:58px;

    height:58px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.05);

    color:#fff;

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    font-size:28px;

    transition:.35s;

    cursor:pointer;

}

.slider-btn:hover{

    background:#dab773;

    color:#000;

    transform:translateY(-50%) scale(1.08);

    box-shadow:0 0 20px rgba(255,184,0,.4);

}


/* ===========================
   DOTS
=========================== */

.slider-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#444;

    transition:.3s;

    cursor:pointer;

}

.slider-dot:hover{

    background:#ffb800;

}

.slider-dot.active{

    width:40px;

    border-radius:999px;

    background:#ffb800;

}



.product-card img{

    transition:.45s;

}

.product-card:hover img{

    transform:scale(1.05) rotate(-2deg);

}


/* ===========================
   TITLE
=========================== */

h2{

    text-shadow:0 5px 25px rgba(255,184,0,.08);

}


/* ===========================
   ANIMATION
=========================== */

@keyframes glow{

    0%{

        transform:scale(.95);

        opacity:.6;

    }

    50%{

        transform:scale(1.08);

        opacity:1;

    }

    100%{

        transform:scale(.95);

        opacity:.6;

    }

}

@media (max-width:768px){

    .slider-btn{

        width:46px;

        height:46px;

        font-size:22px;

    }

    .feature-item{

        font-size:.8rem;

        padding:8px 14px;

    }

    .product-card{

        border-radius:22px;

    }

    .product-description{

        padding:18px;

    }

    .bullets{
        bottom: 10px;
        gap: 5px;
    }

    .bullet{
        width: 7px;
        height: 7px;
    }
    
    .btn{
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    .btn.next{ right: 7px; }
    .btn.prev{ left: 7px; }
}

.loadCont{
    width: 100%;
    height: 100%;
    animation: loadingAni infinite 2s linear ;
}
@keyframes loadingAni {
    100%{
        transform: rotate(-360deg);
    }
}

.categoiesCont{
    background-image: url("../image/whiteStoneBG.webp");
    background-size: cover;
    background-attachment: local;
    box-shadow: 1px 1px 25px 2px #dab773;
}

.productsGrid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 330px;
    overflow-x: scroll;                    
    gap: 20px;
    padding: 20px;
    direction: rtl;
}
.productsGrid::-webkit-scrollbar{
    width: 0;
    height: 0;
}
.productCard {
    background: linear-gradient(15deg,#785628,#e8c989,#73521f);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    direction: rtl;
}

.productCard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background:transparent;
}

.productImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.5s ease;
}

.productCard:hover .productImage {
    transform: scale(1.05);
}

.productDetails {
    padding: 20px;
}

.productTitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #26221d;
}

.productDescription {
    color: #26221d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    unicode-bidi: embed;
}

.productPrice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #26221d;
}

.addToCart {
    background: linear-gradient(135deg, #ff6b35, #f77f00);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px #2c2c2c;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.addToCart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.addToCart:hover::before {
    opacity: 1;
}

.addToCart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
    background: linear-gradient(135deg, #1d971d, lime,#1d971d);

}

.addToCart:active {
    transform: translateY(0);
}

.saleBadge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, gold, #ad9402,gold);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.rating {
    display: flex;
    margin: 10px 0;
    background: linear-gradient(15deg,crimson,red,crimson);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .productsGrid {
        grid-auto-columns: 300px;
    }
    .addToCart{
        font-size: 0.8rem;
        padding: 10px 24px;
        font-weight: 200;
    }
    .price{
        font-size: 1.2rem;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .productsGrid {
        grid-auto-columns: 280px;
    }
    .addToCart{
        font-size: 0.7rem;
        padding: 10px 24px;
        font-weight: 200;
    }
    .price{
        font-size: 1rem;
        font-weight: 400;
    }
}
