/* تعریف فونت وزیرمتن از پوشه افزونه */
@font-face {
    font-family: 'Vazirmatn';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
}

.oc-footer {
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
    line-height: 1.8;
    clear: both;
    
    /* تنظیمات فونت و رنگ پایه */
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    color: #666666;
    
    /* چیدمان */
    text-align: center;
    direction: rtl; /* راست‌چین برای فارسی */
    
    /* ظاهر کلی */
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* خط بالایی ظریف */
    margin-top: 20px;
}

/* استایل لینک طراح */
.oc-designer {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

.oc-designer:hover {
    opacity: 0.7;
    transform: translateY(-1px); /* افکت بالا آمدن نرم */
}

/* جداکننده */
.oc-sep {
    margin: 0 5px;
    opacity: 0.5;
    font-size: 0.9em;
}

/* استایل آیکون */
.oc-icon.dashicons {
    vertical-align: middle;
    font-size: 1.1em;
    width: 1.1em;
    height: 1.1em;
    margin-top: -3px;
    opacity: 0.8;
}

/* بهینه‌سازی برای موبایل */
@media (max-width: 600px) {
    .oc-footer {
        font-size: 12px;
        padding: 15px 10px;
        line-height: 1.6;
    }
    
    .oc-sep {
        margin: 0 3px;
    }
}