﻿
:root {
    --font-main: "Vazirmatn", system-ui, -apple-system, sans-serif;
}


body {
    background: linear-gradient(to bottom, #f1f4f9 0%, #e8edf3 35%, #d2dbe3 100%);
}


body, html, button, input, textarea, select {
    font-family: var(--font-main);
    font-weight: 400; 
}

h1, h2, h3, h4, .title, .price {
    font-weight: 700; 
}


.products-grid .col-6:nth-child(2n) {
    margin-top: -44px !important; 
}


header {
    display: none;
}


.view-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mobile-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    min-height: 100vh;
    padding: 16px;
}


.product-card {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    border: none;
}


.product-card img {
    height: 140px;
    object-fit: contain;
}


.product-title {
    font-size: 13px;
    font-weight: 600;
}


.product-sub {
    font-size: 12px;
    color: #777;
}


.search-input {
    border-radius: 14px !important;
    padding: 10px 14px;
}


.containerr {
    max-width: 1800px;
    margin: 0 auto;
    margin-bottom: 35px;
}


.top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 10px;
}


.top-row .title {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
}


.left-icon{
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
        }
          
          .left-icon img {
              width: 35px;
              height: 30px;
              object-fit: contain;
          }


.top-row .back-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}


.stats-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin: 16px 0;
}


.stat-box {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    text-align: right;
    min-height: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 25px;
}


.stat-box strong {
    font-size: 20px;
}


.stat-box span {
    font-size: 13px;
    color: #555;
    font-weight: 600;
}


.search-filter-wrapper {
    max-width: 1500px;
    width: 100%;
}


.filter-btn {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    border: none !important;
}


.search-wrapper {
    position: relative;
}


.search-input {
    border-radius: 12px;
    padding-right: 38px;
    border: none;
}


.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}



/********* @media *******/


@media (max-width: 475px) {
           
    .view-icon {
    
        width: 40px;
        height: 32px;       
    }
}


@media (max-width: 768px) {

    .stats-row {

        gap: 20px;
    }
}