/* ==============================
   Top Categories Widget
================================ */

.abzar-top-categories {
    margin-bottom: 5rem;
}

.abzar-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.abzar-indicator {
    width: 6px;
    height: 32px;
    background: #e11d48;
    border-radius: 999px;
}

.abzar-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: #18181b;
	font-family: 'IRANSansXFaNum';
margin-bottom: 0px;
}

/* Grid */
.abzar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .abzar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .abzar-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Card */
.abzar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #f4f4f5;
    border-radius: 24px;
    transition: all .2s ease;
    text-align: center;
}

.abzar-card:hover {
    border-color: rgba(225, 29, 72, .2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .08);
}

/* Icon */
.abzar-icon {
    width: 64px;
    height: 64px;
    background: #fafafa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.abzar-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: filter .2s ease;
}

/* Hover icon color (برای SVG مشکی) */
.abzar-card:hover .abzar-icon {
    background: #e11d48;
}

.abzar-card:hover .abzar-icon img {
    filter: brightness(0) invert(1);
}

/* Label */
.abzar-label {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #3f3f46;
}


/* ==============================
   Abzar Elementor – Hero Promo
================================ */

.abzar-ew-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

/* -------- HERO MAIN -------- */

.abzar-ew-hero-main {
    position: relative;
    height: 450px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.abzar-ew-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.25));
}

.abzar-ew-hero-content {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 480px;
    color: #fff;
}

.abzar-ew-hero-badge {
    display: inline-block;
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.abzar-ew-hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
}

.abzar-ew-hero-desc {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 28px;
}

.abzar-ew-hero-btn {
    display: inline-block;
    background: #e11d48;
    color: #fff;
    padding: 14px 34px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease;
}

.abzar-ew-hero-btn:hover {
    background: #be123c;
}

/* -------- SIDE CARDS -------- */

.abzar-ew-hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abzar-ew-hero-card {
    position: relative;
    flex: 1;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.abzar-ew-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.abzar-ew-hero-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.abzar-ew-hero-card-inner h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 6px;
}

.abzar-ew-hero-card-inner p {
    font-size: 12px;
    opacity: 0.85;
}

.abzar-ew-hero-card-inner a {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

/* ===== Abzar Latest Products Widget ===== */

.abzar-latest-products {
    margin-bottom: 5rem;
}

.abzar-latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.abzar-latest-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.abzar-latest-line {
    width: 6px;
    height: 32px;
    background: #e11d48;
    border-radius: 6px;
}

.abzar-latest-title h2 {
    font-size: 24px;
    font-weight: 900;
    color: #18181b;
}

.abzar-latest-nav button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e4e4e7;
    background: #fff;
    color: #a1a1aa;
    cursor: pointer;
}

.abzar-latest-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.abzar-latest-track::-webkit-scrollbar {
    display: none;
}

.abzar-product-card {
    min-width: 280px;
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 32px;
    padding: 20px;
    transition: all .3s ease;
}

.abzar-product-card:hover {
    border-color: rgba(225, 29, 72, .15);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .08);
}

.abzar-product-image {
    position: relative;
    aspect-ratio: 1/1;
    background: #fafafa;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}

.abzar-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: transform .3s ease;
}

.abzar-product-card:hover img {
    transform: scale(1.05);
}

.abzar-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
}

.abzar-product-name {
    font-size: 14px;
    font-weight: 700;
    color: #27272a;
    height: 48px;
    margin-bottom: 16px;
    overflow: hidden;
}

.abzar-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #fafafa;
    padding-top: 16px;
}

.abzar-product-price {
    display: flex;
    flex-direction: column;
}

.abzar-price {
    font-size: 18px;
    font-weight: 900;
    color: #18181b;
}

.abzar-currency {
    font-size: 10px;
    color: #a1a1aa;
}

.abzar-add-cart {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #18181b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .3s ease;
}

.abzar-add-cart:hover {
    background: #e11d48;
}



.abzar-top-categories,
.abzar-ew-hero-grid,
.abzar-latest-products,
.abzar-top-categories *,
.abzar-ew-hero-grid *,
.abzar-latest-products * {
    font-family: 'Vazirmatn', 'IRANSansXFaNum', sans-serif !important;
}



.abzar-title h2,
.abzar-label,
.abzar-ew-hero-badge,
.abzar-ew-hero-title,
.abzar-ew-hero-desc,
.abzar-ew-hero-btn,
.abzar-ew-hero-card-inner h3,
.abzar-ew-hero-card-inner p,
.abzar-ew-hero-card-inner a,
.abzar-latest-title h2,
.abzar-product-name,
.abzar-price,
.abzar-currency {
    font-family: 'Vazirmatn', 'IRANSansXFaNum', sans-serif !important;
}