* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: 'Vazirmatn',sans-serif;
    background: #fff;
    direction: rtl
}

/* Ad bar */
.ad-bar {
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 7px 16px;
    letter-spacing: .3px
}

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1.5px solid #F3D5E2;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
    width:100% !important;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    padding-left:30px
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #FFF8FB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

    .logo-icon svg {
        width: 20px;
        height: 20px;
        fill: #EC2F83
    }

.logo-text {
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    letter-spacing: .5px
}

/* Nav buttons */
.nav-btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 22px;
    font-family: 'Vazirmatn',sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    border: 1.5px solid #F3D5E2
}

.nav-btn-home {
    background: #fff;
    color: #222222
}

    .nav-btn-home:hover {
        background: #FFFFFF;
        color: #222222;
        border-color: #F3D5E2
    }

.nav-btn-cat {
    background: #EC2F83;
    color: #fff;
    border-color: #EC2F83
}

    .nav-btn-cat:hover {
        background: #D91F70;
        border-color: #D91F70;
        color: #fff
    }

.nav-btn svg {
    width: 15px;
    height: 15px;
    stroke: #EC2F83;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.nav-btn-cat svg {
    stroke: #FFFFFF
}

/* Search */
.search-wrap {
    flex: 1;
    max-width: 320px;
    position: relative
}

.search-input {
    width: 100%;
    height: 40px;
    border: 1.5px solid #F3D5E2;
    border-radius: 22px;
    padding: 0 16px 0 40px;
    font-family: 'Vazirmatn',sans-serif;
    font-size: 13px;
    color: #222222;
    background: #FFFFFF;
    outline: none;
    transition: border-color .2s
}

    .search-input::placeholder {
        color: #666666
    }

    .search-input:focus {
        border-color: #F3D5E2;
        background: #fff
    }

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

    .search-icon svg {
        width: 16px;
        height: 16px;
        stroke: #EC2F83;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round
    }

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-right: auto
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 22px;
    border: 1.5px solid #F3D5E2;
    background: #fff;
    color: #222222;
    font-family: 'Vazirmatn',sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

    .action-btn:hover {
        background: #FFFFFF;
        border-color: #F3D5E2
    }

    .action-btn svg {
        width: 17px;
        height: 17px;
        stroke: #EC2F83;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0
    }

.cart-count {
    background: #EC2F83;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -4px
}

/* Mobile */
.mobile-header {
    display: none;
    background: #fff;
    border-bottom: 1.5px solid #F3D5E2;
    padding: 0 16px;
    height: 56px;
    align-items: center;
    gap: 12px;
    justify-content: space-between
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none
}

.mobile-logo-icon {
    width: 30px;
    height: 30px;
    background: #FFF8FB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

    .mobile-logo-icon svg {
        width: 16px;
        height: 16px;
        fill: #EC2F83
    }

.mobile-logo-text {
    font-size: 15px;
    font-weight: 600;
    color: #222222
}

.mobile-search-wrap {
    flex: 1;
    position: relative;
    max-width: 800px;
   
}

.mobile-search-input {
    width: 100%;
    height: 36px;
    border: 1.5px solid #F3D5E2;
    border-radius: 20px;
    padding: 0 12px 0 34px;
    font-family: 'Vazirmatn',sans-serif;
    font-size: 12px;
    color: #222222;
    background: #FFFFFF;
    outline: none;

}

    .mobile-search-input::placeholder {
        color: #666666
    }

    .mobile-search-input:focus {
        border-color: #F3D5E2;
        background: #fff
    }

.mobile-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

    .mobile-search-icon svg {
        width: 14px;
        height: 14px;
        stroke: #EC2F83;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round
    }

/* Bottom nav */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 72px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: 0 5px 25px rgba(34,34,34,0.080);
    z-index: 999;
}

.bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #222222;
    gap: 4px;
}

    .bn-item svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.bn-label {
    font-size: 12px;
}

.bn-item.active {
    background: #FFFFFF;
    height: 52px;
    border-radius: 16px;
}

/* دکمه وسط */

.bn-cart-wrap {
    position: absolute;
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    background: #000;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(34,34,34,0.120);
}

    .bn-cart-wrap svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .bn-cart-wrap .bn-label {
        color: #fff;
        font-size: 10px;
        margin-top: 2px;
    }

.bn-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #EC2F83;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
/* Demo wrapper */
.demo-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #fafaf9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #F3D5E2;
    font-size: 0
}

/* Responsive */
@media(max-width:1025px) {
    .site-header, .nav-btns {
        display: none !important
    }

    .mobile-header, .bottom-nav {
        display: flex !important
    }

    .demo-wrap {
        border-radius: 0;
        border: none
    }

    body {
        padding-bottom: 70px
    }
}

@media(min-width:1026px) {
    .mobile-header, .bottom-nav {
        display: none !important
    }

    .site-header {
        display: flex !important
    }
}















/*فوتر*/
* {
    box-sizing: border-box
}

body {
    font-family: 'Vazirmatn',sans-serif;
    direction: rtl;
    background: #fafaf8;
    margin: 0;
    padding: 0
}


.site-footer {
    background: #222222;
    color: #666666;
    padding: 48px 0 0;
    font-family: 'Vazirmatn',sans-serif
}

.footer-brand {
    margin-bottom: 20px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: #FFF8FB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

    .footer-logo-icon svg {
        width: 22px;
        height: 22px;
        fill: #fff
    }

.footer-logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px
}

.footer-brand-desc {
    font-size: 13px;
    line-height: 1.9;
    color: #666666;
    font-weight: 300;
    max-width: 240px
}

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F3D5E2;
    letter-spacing: .3px
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #666666;
    line-height: 1.8
}

    .footer-contact-item svg {
        width: 16px;
        height: 16px;
        stroke: #EC2F83;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
        margin-top: 3px
    }

    .footer-contact-item span {
        font-weight: 300
    }

    .footer-contact-item strong {
        color: #666666;
        font-weight: 500;
        display: block;
        font-size: 12px;
        margin-bottom: 2px
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

    .footer-links li {
        margin-bottom: 10px
    }

    .footer-links a {
        color: #666666;
        font-size: 13px;
        text-decoration: none;
        font-weight: 300;
        transition: color .2s;
        display: flex;
        align-items: center;
        gap: 6px
    }

        .footer-links a:before {
            content: '';
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #FFF8FB;
            display: inline-block;
            flex-shrink: 0;
            opacity: .7
        }

        .footer-links a:hover {
            color: #666666
        }

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #F3D5E2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    text-decoration: none;
    background: rgba(236,47,131,0.080)
}

    .social-btn:hover {
        background: rgba(236,47,131,0.140);
        border-color: #666666
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
        stroke: #EC2F83;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.footer-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px
}

.trust-badge {
    background: rgba(236,47,131,0.100);
    border: 1px solid #F3D5E2;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: #666666;
    font-weight: 400
}

    .trust-badge svg {
        width: 18px;
        height: 18px;
        stroke: #EC2F83;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0
    }

.enamad-box {
    background: rgba(236,47,131,0.100);
    border: 1px solid #F3D5E2;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 11px;
    color: #666666;
    text-align: center;
    line-height: 1.5;
    font-weight: 400
}

    .enamad-box strong {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #666666
    }

.footer-divider {
    border: none;
    border-top: 1px solid #F3D5E2;
    margin: 36px 0 0
}

.footer-bottom {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.footer-copy {
    font-size: 12px;
    color: #666666;
    font-weight: 300
}

    .footer-copy span {
        color: #666666
    }

.footer-bottom-links {
    display: flex;
    gap: 16px
}

    .footer-bottom-links a {
        font-size: 12px;
        color: #666666;
        text-decoration: none;
        font-weight: 300;
        transition: color .2s
    }

        .footer-bottom-links a:hover {
            color: #666666
        }

/* Grid: desktop 4col, tablet 2col, mobile 2col compact */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px
}

@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 24px
    }
}

@media(max-width:600px) {
    .site-footer {
        padding: 32px 0 0
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 18px 12px
    }

    .footer-brand-desc {
        max-width: 100%
    }

    .footer-col-title {
        font-size: 13px;
        margin-bottom: 12px;
        padding-bottom: 8px
    }

    .footer-contact-item {
        font-size: 12px;
        gap: 8px;
        margin-bottom: 10px
    }

    .footer-links a {
        font-size: 12px
    }

    .footer-links li {
        margin-bottom: 8px
    }

    .social-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px
    }

        .social-btn svg {
            width: 16px;
            height: 16px
        }

    .trust-badge {
        font-size: 11px;
        padding: 6px 10px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }

    .footer-copy, .footer-bottom-links a {
        font-size: 11px
    }
}












    


/*محصولات ویژه*/
    