@font-face {
    font-family: iransans;
    src: url(IRANSans.ttf);
}
body {
    font-family: iransans;
    margin: 0;
    background: #f5f5f5;
}

/* header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-box {
    display: flex;
    align-items: center;
    padding: 15px 0;
}
.container {
    width: 1150px;
    margin: auto;
}
.logo {
    font-size: 28px;
    font-weight: bold;
}
.logo span {
    color: #ef394e;
}
.search-box {
    flex: 1;
    margin: 0 20px;
    display: flex;
}
.search-box input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ef394e;
    border-left: none;
    border-radius: 0 10px 10px 0;
}
.search-box button {
    padding: 0 20px;
    background: #ef394e;
    color: #fff;
    border: none;
    border-radius: 10px 0 0 10px;
}
.admin-btn {
    background: #ef394e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
}

/* slider */
.slider {
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.slider img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* categories */
.cats h2 {
    margin-top: 40px;
}
.cat-box {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.cat-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px #ddd;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: 0.3s;
}
.cat-item:hover {
    background: #ef394e;
    color: #fff;
}

/* products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 30px;
}
.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 10px #ddd;
    text-align: center;
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.price {
    color: #ef394e;
    font-weight: bold;
    margin-top: 10px;
}
