* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'yekan bakh', 'Tahoma', sans-serif;
    background-color: #fff;
    direction: rtl;
	overflow-x:hidden;
}
button {
    font-family: 'yekan bakh', 'Tahoma', sans-serif;
    background-color: #f5f5f5;
    direction: rtl;
	font-weight:600;
}

a {
	text-decoration: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #E1D4B4;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo h1 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.2;
}

.logo span {
    font-size: 18px;
    letter-spacing: 3px;
}
.search-box {
    flex: 1;
    max-width: 500px;
    position: relative;
    margin-right: 0;
    text-align: right;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255,255,255,0.9);
    font-size: 14px;
    outline: none;
}

.search-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.cart-btn, .login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.cart-btn {
    background: rgba(180, 200, 150, 0.6);
    color: #2c2c2c;
}

.login-btn {
    background: rgba(255,255,255,0.9);
    color: #2c2c2c;
}

.cart-btn:hover, .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Navigation Styles */
.main-nav {
    background: rgba(255,255,255,0.3);
    padding: 12px 0;
    border-radius: 10px 10px 0 0;
    position: relative;
}




.menu-toggle {
    display: none;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    border-radius: 2px;
}

.menu-toggle span {
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}



.nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.5);
}

.nav-menu li {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 8px 0;
}

.has-submenu:hover .submenu,
.has-submenu.open .submenu {
    display: block;
}

.submenu li a {
    padding: 10px 15px;
    white-space: nowrap;
}




/* Mobile Full Screen Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    flex-direction: column;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
    overflow-y: auto;
}

.mobile-menu-overlay.open {
    display: flex;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #E1D4B4;
    border-bottom: 1px solid #d4c4a0;
}

.mobile-menu-title {
    font-size: 16px;
    font-weight: 800;
    color: #2c2c2c;
}

.mobile-back-btn,
.mobile-close-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #2c2c2c;
    padding: 5px;
}

.mobile-nav-main,
.mobile-nav-sub {
    list-style: none;
    padding: 15px;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-main li,
.mobile-nav-sub li {
    border-bottom: 1px solid #f0ebe0;
}

.mobile-nav-main li a,
.mobile-nav-sub li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 10px;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: visible;
}

.mobile-nav-main .has-submenu a {
    justify-content: flex-start;
}

.mobile-nav-main .has-submenu a .arrow-icon {
    margin-right: auto;
    margin-left: 0;
    flex-shrink: 0;
}

.mobile-nav-main li a:active,
.mobile-nav-sub li a:active {
    background: #f5f0e8;
    border-radius: 10px;
}

/* انیمیشن slide برای زیرمنو */
.mobile-nav-sub {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* دسکتاپ - اوورلی مخفی باشه */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
        transform: none;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .menu-toggle {
        display: none !important;
    }
}



@media (max-width: 768px) {
    .top-bar {
        flex-wrap: wrap;
        gap: 10px;
    }
    .logo {
        order: 1;
        flex: 1;
    }
    .user-actions {
        order: 2;
        flex-shrink: 0;
        align-self: center;
    }
    .search-box {
        order: 3;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        position: static;
    }
    .search-box input {
        flex: 1;
        width: auto;
    }
    .search-btn {
        position: static;
        transform: none;
    }
    .menu-toggle {
        display: flex;
        position: static;
        transform: none;
        flex-shrink: 0;
    }
     .main-nav {
        display: block;
    }

	 .nav-menu {
        font-size: 13px;
    }
    
    .nav-menu li a {
        padding: 6px 10px;
    }

	.nav-menu {
        display: none;
    }
}










/* Stories Section */
.stories-section {
	background: #fff;
	padding: 15px 0 0;
}

.stories-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-nav {
    background: none;
    border: 2px dashed #ccc;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s;
    flex-shrink: 0;
}

.story-nav:hover {
    border-color: #666;
    color: #666;
}

.stories-container {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 20px 0;
	flex: 1;
}

/* استایل اسکرول نازک */
.stories-container::-webkit-scrollbar {
	height: 6px;
}

.stories-container::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
}

.stories-container::-webkit-scrollbar-thumb {
	background: #fff;
	border-radius: 10px;
}

.stories-container::-webkit-scrollbar-thumb:hover {
	background: #fff;
}

/* برای فایرفاکس */
.stories-container {
	scrollbar-width: thin;
	scrollbar-color: #fff #fff;
}


.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.story-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #ffd700 50%, #4facfe 75%, #00f2fe 100%);
    cursor: pointer;
    transition: transform 0.3s;
}

.story-circle:hover {
    transform: scale(1.05);
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.story-item p {
    font-size: 14px;
    color: #2c2c2c;
    font-weight: 700;
    text-align: center;
}







@media (max-width: 768px) {
    .story-nav {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .story-nav svg {
        width: 18px;
        height: 18px;
    }

    .stories-container {
        gap: 15px;
    }

    .story-circle {
        width: 85px;
        height: 85px;
    }

    .story-item p {
        font-size: 12px;
    }
}




















/***************************/
.setak-tab-wrapper {
	background-color: #fff;
	border-radius: 30px;
	max-width: 1366px;
	width: 100%;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
	padding: 0 20px;
	gap: 20px;
	margin: 0 auto;
}
        /* --- بخش محتوا (راست) --- */
        .setak-content-section {
            flex: 1.5;
            display: flex;
            flex-direction: column;
            padding: 20px;
        }
.setak-header-img {
	position: absolute;
	width: 250px;
	margin-bottom: -30px;
	bottom: -100px;
	left: -20px;
}
        .setak-header {
            margin-bottom: 30px;
			position:relative;
        }

        .setak-title-box {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 5px;
        }

.setak-title-box h1 {
	font-size: 36px;
	font-weight: 900;
	color: #2b2b2b;
	margin: 0;
	margin-top: 90px;
}

        .setak-header h2 {
            font-size: 20px;
            font-weight: 700;
            color: #4a4a4a;
            margin: 10px 0 5px 0;
        }

        .setak-header h3 {
            font-size: 16px;
            font-weight: 400;
            color: #777;
            margin: 0;
        }


/*.setak-tabs-wrapper {
	background: #EFE5CD;
	padding: 20px;
	border-radius: 20px 0 20px 20px;
}*/

.setak-tabs-wrapper {
	background: #EFE5CD;
	padding: 20px;
	border-radius: 20px 0 20px 20px;
	margin-right: -100px;
	z-index: 1;
	padding-right: 20px;
}

        /* --- تب‌ها --- */
.setak-tabs {
	display: flex;
	gap: 10px;
	margin-bottom: -15px;
	flex-wrap: wrap;
	margin-right: 30px;
}

        .setak-tab {
            background-color: #ffffff;
            border: 1px solid #eaeaea;
            padding: 12px 22px;
            border-radius: 15px;
            font-size: 15px;
            font-weight: bold;
            color: #555;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .setak-tab:hover {
            background-color: #f9f9f9;
           
        }

.setak-tab.setak-active {
	background-color: #f08c1d;
	color: #ffffff;
	border-color: #f08c1d;
	box-shadow: 0 5px 15px rgba(240, 140, 29, 0.3);
	padding-bottom: 25px;
}

/* --- محتوای تب‌ها (گرید کارت‌ها) --- */
.setak-tab-content {
	display: none; /* مخفی بودن پیش‌فرض */
	animation: fadeIn 0.005s ease-in-out;
}

.setak-tab-content.setak-active-content {
	display: block;
	padding: 25px;
	background-color: #ffffff;
	box-shadow: 0 5px 20px rgba(0,0,0,0.03);
	border-radius: 25px;
	position: relative;
	z-index: 9;
	min-height: 380px;
}
.setak-tab-content.setak-active-content .setak-scroll-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	padding: 5px;
	max-height: 350px;
	overflow-y: scroll;
	overflow-x: hidden;
	margin-left: -20px;
	padding-left: 10px;
}
/* استایل اسکرول نازک */
.setak-tab-content.setak-active-content .setak-scroll-wrapper::-webkit-scrollbar {
	width: 6px;
}

.setak-tab-content.setak-active-content .setak-scroll-wrapper::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
}

.setak-tab-content.setak-active-content .setak-scroll-wrapper::-webkit-scrollbar-thumb {
	background: #fff;
	border-radius: 10px;
}

.setak-tab-content.setak-active-content .setak-scroll-wrapper::-webkit-scrollbar-thumb:hover {
	background: #fff;
}

/* برای فایرفاکس */
.setak-tab-content.setak-active-content .setak-scroll-wrapper {
	scrollbar-width: thin;
	scrollbar-color: #fff #fff;
}


        /*@keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }*/

.setak-tabs-wrapper .setak-card {
	border: 1px solid #F4EBD0;
	border-radius: 18px;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	gap: 10px; /* فاصله 10 پیکسلی بین المان‌ها */
	/* justify-content: space-between; */ /* این خط را حذف کنید */
	cursor: pointer;
	height: 100px;
}

.setak-tabs-wrapper .setak-card-course {
	border: 1px solid #F4EBD0;
	border-radius: 18px;
	padding: 10px 15px;
	display: flex;
	flex-direction: column; /* تبدیل به یک ستون */
	align-items: center;
	gap: 10px;
	cursor: pointer;

}
.setak-tabs-wrapper .setak-card-course img{
	border-radius:20px;
	padding:10px;
}


.setak-card-course-btn {
	background-color: #D4AF37;
	color: white;
	border: none;
	border-radius: 12px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	text-align: center;
}

.setak-card-course-btn:hover {
	background-color: #B8941F;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.setak-tabs-wrapper .setak-card-course {
	display: flex;
	background-color: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 25px;
	padding: 7px;
	box-shadow: -8px 8px 0px 0px #f3ebd8;
	transition: transform 0.3s ease;
}










/*********/

.setak-coming-soon-full {
	width: 100%;
	min-height: 300px;
	display: flex;
	justify-content: center; /* وسط چین کردن افقی */
	align-items: center; /* وسط چین کردن عمودی */
	background-color: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 25px;
	padding: 7px;
	box-shadow: -8px 8px 0px 0px #f3ebd8;
	transition: transform 0.3s ease;
}

.setak-coming-soon-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.setak-card-emoji {
	font-size: 40px;
	animation: float 3s ease-in-out infinite;
}

.setak-coming-soon-full h4 {
	margin: 0;
	font-size: 16px;
	color: #D4AF37;
	font-weight: bold;
}

.setak-coming-soon-full p {
	margin: 0;
	font-size: 12px;
	color: #999;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
/**********/



.setak-tabs-wrapper   .setak-card:hover {
           background-color: #7F8756;
			color: #ffffff;
	border-color: #7F8756;
        }

.setak-tabs-wrapper .setak-card:hover .setak-card-info h4,
.setak-tabs-wrapper .setak-card:hover .setak-card-info p {
	color: #ffffff;
}


.setak-card.setak-card-active {
	background-color: #7F8756;
	color: #ffffff;
	border-color: #7F8756;
}

.setak-card-info h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 700;
	color: inherit;
	/* white-space: nowrap; ← این رو حذف کن */
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;  /* حداکثر 2 خط نمایش بده */
	-webkit-box-orient: vertical;
	white-space: normal;
}


        .setak-card:not(.setak-card-active) .setak-card-info h4 {
            color: #333;
        }

        .setak-card-info p {
            margin: 0;
            font-size: 13px;
            opacity: 0.8;
            color: inherit;
        }

        .setak-card:not(.setak-card-active) .setak-card-info p {
            color: #888;
        }

        .setak-card-img {
            width: 50px;
            height: 50px;
            background-color: #ffffff;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        /* --- بخش تصویر (چپ) --- */
.setak-image-section {
	flex: 1;
	display: flex;
	flex-direction: column;
	transform: scale(0.9);
	z-index: 9;
}

		.setak-main-image {
			width: 100%;
			height: 100%;
			object-fit: cover;
			min-height: 400px;
			z-index: 9;
			border-radius: 30px;
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.19);
		}

.setak-image-caption {
	font-size: 18px;
	color: #4a4a4a;
	font-weight: 800;
	margin: 30px 0 10px 0;
	text-align: center;
}

        /* --- واکنش‌گرایی --- */
        @media (max-width: 1024px) {
            .setak-tab-content.setak-active-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

@media (max-width: 768px) {
    .setak-tab-wrapper {
        flex-direction: column;
        padding: 10px;
    }

    .setak-image-section {
        display: block;
        position: relative;
        width: 100%;
        transform: scale(1);
        min-height: unset;
    }

    .setak-main-image {
        min-height: 200px;
        max-height: 200px;
        width: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 20px;
    }

    .setak-image-caption,
    .setak-header {
        display: none;
    }

    .setak-content-section {
        padding: 10px;
		width: 100%;
    }

    .setak-tabs-wrapper {
        margin-right: 0;
        border-radius: 20px;
        width: 100%;
    }

    .setak-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-right: 0;
        gap: 8px;
        margin-bottom: 10px;
    }

    .setak-tab {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
        justify-content: center;
    }

    .setak-tab.setak-active {
        padding-bottom: 10px;
    }

    .setak-tab-content.setak-active-content {
        min-height: unset;
    }

    .setak-tab-content.setak-active-content .setak-scroll-wrapper {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 0;
    }

.setak-tabs-wrapper .setak-card {
        height: auto;
        min-height: 70px;
        padding: 8px;
        gap: 6px;
        flex-direction: row;
        align-items: center;
    }

    .setak-tabs-wrapper .setak-card img {
        width: 50px !important;
    }

    .setak-card-info h4 {
        font-size: 11px;
    }

    .setak-card-info p {
        font-size: 10px;
    }
}



/*******************************/





























/* تنظیمات کلی بخش */
.setak-brands-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;

    box-sizing: border-box;
}

/* استایل دهی به عنوان و خطوط تزئینی */
.setak-brands-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.setak-header-title {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin: 0;
    white-space: nowrap;
}

.setak-header-line {
    height: 1px;
    background-color: #d4b58e;
    width: 150px;
}

.setak-header-dot {
    width: 6px;
    height: 6px;
    background-color: #d4b58e;
    border-radius: 50%;
}

/* کانتینر اسلایدر */
.setak-brands-slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* استایل دکمه‌های فلش */
.setak-slider-arrow {
    background-color: #d4b58e; /* رنگ کرم/طلایی مشابه تصویر */
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.setak-slider-arrow:hover {
    background-color: #c09e75;
}

.setak-slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* لیست آیتم‌های برند */
.setak-brands-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-grow: 1;
    overflow-x: auto; /* برای حالت موبایل */
    scrollbar-width: none; /* پنهان کردن اسکرول بار در فایرفاکس */
    gap: 20px;
    padding: 0 20px;
}

.setak-brands-list::-webkit-scrollbar {
    display: none; /* پنهان کردن اسکرول بار در کروم و سافاری */
}

/* استایل هر آیتم برند */
.setak-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    gap: 15px;
}

.setak-brand-image-wrapper {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.setak-brand-image-wrapper img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.setak-brand-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
    text-align: center;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .setak-header-line {
        width: 50px;
    }

    .setak-header-title {
        font-size: 16px;
    }

    .setak-brands-list {
        justify-content: flex-start;
    }

    .setak-brand-image-wrapper {
        width: 100px;
    }

    .setak-brand-item {
        min-width: 90px;
    }

    .setak-brand-name {
        font-size: 12px;
    }

	.setak-slider-arrow {
		width: 32px;
		height: 32px;
	}

	.setak-slider-arrow svg {
		width: 16px;
		height: 16px;
	}
}









/**************************/


















/* تنظیمات پایه کانتینر */
.setak-magazine-section {
    direction: rtl;
    /*font-family: 'IRANSans', 'Tahoma', sans-serif; */
    max-width: 1366px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}

/* هدر و عنوان */
.setak-header {
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.setak-header-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 0 15px;
}

.setak-header-line {
    height: 2px;
    background-color: #d8c090;
    width: 100px;
    position: relative;
}

.setak-header-line::before {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #b08d44;
}

.setak-header-line:first-child::before {
    left: 0;
}

.setak-header-line:last-child::before {
    right: 0;
}

/* گرید کارت‌ها */
.setak-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* استایل بدنه کارت */
.setak-card {
	display: flex;
	background-color: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 25px;
	padding: 7px;
	box-shadow: -8px 8px 0px 0px #f3ebd8;
	transition: transform 0.3s ease;
}

.setak-magazine-section .setak-card {
	padding: 15px 25px;
}

.setak-card:hover {
    transform: translateY(-5px);
}

/* بخش تصویر کارت */
.setak-card-img-wrapper {
	flex-shrink: 0;
	width: 170px;
	height: 170px;
	margin-left: 20px;
	border-radius: 20px;
	overflow: hidden;
}

.setak-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* بخش محتوای کارت */
.setak-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.setak-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.setak-card-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 15px 0;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* فوتر کارت (متا دیتا و دکمه) */
.setak-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.setak-card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #555;
}

.setak-meta-item i {
    color: #777;
    margin-left: 5px;
    font-size: 14px;
}

/* دکمه ادامه مطلب */
.setak-btn-readmore {
    display: inline-flex;
    align-items: center;
    background-color: #b08d44;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.setak-btn-readmore:hover {
    background-color: #987836;
}

.setak-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #b08d44;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
}

/* واکنش‌گرایی (ریسپانسیو) برای موبایل */
@media (max-width: 992px) {
    .setak-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .setak-card {
        padding: 10px 15px;
    }
    
    .setak-card-img-wrapper {
        width: 100px;
        height: 100px;
        margin-left: 15px;
    }
    
    .setak-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .setak-card-excerpt {
        font-size: 11px;
        line-height: 1.6;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }
    
    .setak-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .setak-card-meta {
        font-size: 10px;
        gap: 10px;
    }
    
    .setak-btn-readmore {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .setak-card {
        padding: 12px 20px;
    }
    
    .setak-card-img-wrapper {
        width: 130px;
        height: 130px;
        margin-left: 18px;
    }
    
    .setak-card-title {
        font-size: 15px;
    }
    
    .setak-card-excerpt {
        font-size: 12px;
        line-height: 1.7;
    }
    
    .setak-card-meta {
        font-size: 11px;
    }
}

/*@media (max-width: 768px) {
    .setak-magazine-section {
        padding: 20px 10px;
    }

    .setak-card-img-wrapper {
        width: 110px;
        height: 110px;
        flex-shrink: 0;
        margin-left: 10px;
        margin-bottom: 0;
    }

    .setak-magazine-section .setak-card {
        padding: 10px;
        flex-direction: row;
        align-items: flex-start;
    }

    .setak-card-title {
        font-size: 13px;
    }

    .setak-card-excerpt {
        display: none;
    }

    .setak-card-footer {
        flex-direction: row;
        gap: 8px;
    }

    .setak-btn-readmore {
        font-size: 11px;
        padding: 6px 10px;
    }
}*/
















/*************************/
/* تنظیمات پایه */
.setak-footer-section {
    font-family: 'yekan bakh', Tahoma, sans-serif; /* فونت پیش‌فرض */
    background-color: #fcfbf9;
    padding: 60px 20px 20px 20px;
    position: relative;
    color: #333;
}

/* ردیف ویژگی‌ها */
.setak-features-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 2;
}

.setak-features-line {
    position: absolute;
    top: 35px;
    left: 5%;
    right: 5%;
    height: 1px;
    border-top: 2px dashed #d1c4b4;
    z-index: -1;
}

.setak-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 10px;
}

.setak-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e6daca;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 10px;
    color: #8b6d4b;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.setak-feature-item span {
    font-weight: bold;
    font-size: 14px;
    color: #222;
}

/* باکس اصلی فوتر */
.setak-main-footer-box {
	max-width: 1366px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 25px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	margin-top: -95px;
}

.setak-main-footer-box-in {
	max-width: 1366px;
	background: #ffffff;
	border-radius: 25px;
	padding: 40px 30px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.27);
	position: relative;
	z-index: 2;
	margin-left: -20px;
	padding-top: 120px;
	margin-top: -10px;
}

/* پس زمینه کرم رنگ پشت باکس اصلی */
.setak-main-footer-box::before {
	content: '';
	position: absolute;
	top: -15px;
	bottom: -15px;
	left: -15px;
	right: -15px;
	background-color: #DBCBB1;
	border-radius: 35px;
	z-index: -1;
	opacity: 0.5;
}
.setak-footer-col {
	flex: 1;
	padding: 0 35px;
}

.setak-col-title {
	font-size: 16px;
	font-weight: 800;
	color: #000;
	margin-bottom: 20px;
	text-align: right;
	position: relative;
	padding-bottom: 10px;
}

.setak-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d1c4b4, transparent);
}

/* ستون درباره ما */
.setak-col-about { text-align: right; }
.setak-about-logo { text-align: center; margin-bottom: 15px; }
.setak-about-logo img {
	width: 150px;
}
.setak-about-text {
    font-size: 13px;
    line-height: 2;
    color: #555;
    text-align: justify;
}

/* ستون تماس با ما */
.setak-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
}
.setak-contact-list li {
    margin-bottom: 15px;
    text-align: right;
    position: relative;
    padding-right: 30px;
}
.setak-contact-list span { font-weight: bold; color: #444; }
.setak-icon-contact {
    position: absolute;
    right: 0;
    top: 2px;
    color: #8b6d4b;
    font-style: normal;
}

/* ستون دسترسی سریع */
.setak-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.setak-quick-links li {
    margin-bottom: 10px;
    text-align: right;
}
.setak-quick-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
}
.setak-quick-links a:hover { color: #8b6d4b; }
.setak-quick-links a span { color: #d1c4b4; margin-right: 5px; }

/* ستون شبکه‌های اجتماعی */
.setak-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 40px;
}
.setak-social-icon {
    background: #e6daca;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
}
.setak-trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}
.setak-badge {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}
.setak-badge img { width: 100%; max-width: 60px; }
.setak-bee-decoration {
    font-size: 30px;
    margin-top: 15px;
}

/* نوار هشدار */
.setak-notice-bar {
    max-width: 800px;
    margin: -15px auto 0 auto;
    background-color: #cdbaa2;
    color: #4a3c2b;
    text-align: center;
    padding: 15px 20px;
    border-radius: 0 0 20px 20px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* کپی رایت */
.setak-copyright-bar {
    background-color: #6c6c6c;

}


.setak-copyright-bar-wrapper {
	max-width: 1280px;
	background-color: #6c6c6c;
	color: #ddd;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 50px;
	font-size: 12px;
	margin: 0 auto;
}



/* ریسپانسیو */

@media (max-width: 992px) {
    .setak-main-footer-box {
        flex-wrap: wrap;
    }

	  .setak-main-footer-box-in {
        flex-wrap: wrap;
    }
    .setak-footer-col {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
    .setak-features-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    .setak-feature-item {
        padding: 0;
    }
    .setak-features-line { 
        display: none; 
    }
}

@media (max-width: 768px) {
    .setak-main-footer-box,
    .setak-main-footer-box-in {
        max-width: 100%;
        border-radius: 15px;
		flex-direction: column;
    }
    
    .setak-main-footer-box-in {
        padding: 60px 15px 30px 15px;
        margin-left: 0;
    }
    
    .setak-footer-col {
        flex: 0 0 100%;
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .setak-social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .setak-copyright-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .setak-copyright-bar-wrapper {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .setak-features-row {
        overflow-x: auto;
        overflow-y: hidden;
        gap: 15px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .setak-feature-item {
        flex: 0 0 auto;
        min-width: 90px;
    }
    
    .setak-feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .setak-features-line { 
        display: none; 
    }
}

@media (max-width: 576px) {
    .setak-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .setak-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .setak-feature-item span {
        font-size: 12px;
    }
}


/*****************************/
/**************slider***************/
/*****************************/


/* Setak Special Offers - Stylesheet */
/* فونت‌ها */

/* تنظیمات پایه */
:root {
    --setak-primary: #d87f34;
    --setak-primary-dark: #c26d28;
    --setak-primary-light: #e89a5a;
    --setak-gold: #d4af37;
    --setak-beige: #d4c4a8;
    --setak-beige-light: #e8dcc8;
    --setak-white: #ffffff;
    --setak-gray-50: #f9fafb;
    --setak-gray-100: #f3f4f6;
    --setak-gray-200: #e5e7eb;
    --setak-gray-300: #d1d5db;
    --setak-gray-400: #9ca3af;
    --setak-gray-500: #6b7280;
    --setak-gray-600: #4b5563;
    --setak-gray-700: #374151;
    --setak-gray-800: #1f2937;
    --setak-gray-900: #111827;
    --setak-green: #10b981;
    --setak-border-radius: 16px;
    --setak-border-radius-sm: 12px;
    --setak-border-radius-lg: 20px;
    --setak-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --setak-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --setak-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.setak-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Header */
.setak-section-header {
    text-align: center;
    position: relative;
}

.setak-section-title {
	display: inline-block;
	background: #DC8222;
	color: var(--setak-white);
	padding: 18px 60px;
	border-radius: 25px 25px 0 0;
	font-size: 1.2rem;
	font-weight: 700;
	box-shadow: 3px -2px 3px rgba(3, 3, 3, 0.51);
	position: relative;
	z-index: 2;
}

.setak-section-title::before {
	content: '';
	position: absolute;
	top: -8px;
	right: -8px;
	width: calc(100% + 16px);
	height: calc(100% + 8px);
	background: ;
	border-radius: 0 0 var(--setak-border-radius-lg) var(--setak-border-radius-lg);
	z-index: -1;
}

/* Products Wrapper */
.setak-products-wrapper {
    position: relative;
}


.setak-products-container {
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #E3D4B7;
    border-radius: 25px;
    padding: 20px;
    padding-top: 50px;
    box-shadow: 10px -10px 0px 0px #E3D4B7;
}

/* Products Slider */
.setak-products-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Product Card */
.setak-product-card {
    background: #F0EADC;
    border-radius: var(--setak-border-radius);
    padding: 10px;
    transition: var(--setak-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: calc(20% - 20px);
}

.setak-product-card:hover {
    transform: translateY(-8px);
}

/* Featured Product */
.setak-product-featured {
    border: 2px solid var(--setak-gold);
    background: linear-gradient(180deg, #fffef8 0%, var(--setak-white) 100%);
}

/* Product Badge */
.setak-product-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: var(--setak-gold);
    color: var(--setak-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.setak-product-badge svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.setak-product-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--setak-gray-700);
    color: var(--setak-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Product Actions */
.setak-product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.setak-action-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--setak-white);
    color: var(--setak-gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--setak-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.setak-action-btn:hover {
    background: var(--setak-primary);
    color: var(--setak-white);
    transform: scale(1.1);
}

/* Product Timer */
.setak-product-timer {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-bottom: 16px;
	position: absolute;
	margin-top: -45px;
	background: #E8DDC4;
	border-radius: 20px;
	padding: 7px;
	right: 15px;
	left: 20px;
}

.setak-timer-item {
	background: #fff;
	border-radius: var(--setak-border-radius-sm);
	padding: 8px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 50px;
}

.setak-timer-value {
	font-size: 1rem;
	color: var(--setak-gray-800);
	line-height: 0.4;
}

.setak-timer-label {
    font-size: 11px;
    color: var(--setak-gray-600);
    margin-top: 4px;
}

/* Product Image */
.setak-product-image {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	background: var(--setak-gray-50);
	border-radius: var(--setak-border-radius-sm);
	overflow: hidden;
}

.setak-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: initial;
    transition: var(--setak-transition);
}

.setak-product-card:hover .setak-product-image img {
    transform: scale(1.05);
}

/* Product Title */
.setak-product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--setak-gray-800);
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.setak-product-title a {
	text-decoration: none;
	color: #333 !important;
}

/* Product Price */
.setak-product-price {
    margin-top: auto;
    margin-bottom: 16px;
}

.setak-price-current {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.setak-price-amount {
	font-size: 1.2rem;
	font-weight: 700;
	color: #333;
}

.setak-price-currency {
    font-size: 13px;
    font-weight: 500;
    color: var(--setak-gray-600);
}

.setak-price-original {
	font-size: 13px;
	color: var(--setak-gray-400);
	text-decoration: line-through;
	position: relative;
	margin-top: -10px;
}

/* Add to Cart Button */
.setak-add-to-cart {
	width: 40px;
	height: 40px;
	border: none;
	background: #C1C895;
	color: #333;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--setak-transition);
	box-shadow: 0 4px 12px rgba(216, 127, 52, 0.3);
	align-self: center;
	position: absolute;
	left: 20px;
	bottom: 20px;
}

.setak-add-to-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(216, 127, 52, 0.4);
}

.setak-add-to-cart:active {
    transform: scale(0.95);
}

/* Slider Buttons */
.setak-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	background: #D3A16A;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--setak-transition);
	box-shadow: var(--setak-shadow);
	z-index: 10;
}

.setak-slider-btn svg {
	width: 32px;
	height: 32px;
}

.setak-slider-btn:hover {
    background: var(--setak-primary);
    color: var(--setak-white);
    box-shadow: var(--setak-shadow-hover);
}

.setak-slider-prev {
	right: -30px;
}

.setak-slider-next {
    left: -30px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .setak-products-slider {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .setak-products-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media (max-width: 480px) {
    .setak-products-wrapper {
        padding: 0 20px;
    }
    
    .setak-products-slider {
        grid-template-columns: 1fr;
    }
    
    .setak-slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .setak-slider-prev {
        right: -10px;
    }
    
    .setak-slider-next {
        left: -10px;
    }
}

/* Animation for card entrance */
@keyframes setak-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.setak-product-card {
    animation: setak-fade-in-up 0.6s ease-out forwards;
}

.setak-product-card:nth-child(1) { animation-delay: 0.1s; }
.setak-product-card:nth-child(2) { animation-delay: 0.2s; }
.setak-product-card:nth-child(3) { animation-delay: 0.3s; }
.setak-product-card:nth-child(4) { animation-delay: 0.4s; }
.setak-product-card:nth-child(5) { animation-delay: 0.5s; }

/* Loading state */
.setak-product-card.loading {
    pointer-events: none;
    opacity: 0.6;
}

.setak-product-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: setak-shimmer 1.5s infinite;
}

@keyframes setak-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Print styles */
@media print {
    .setak-slider-btn,
    .setak-action-btn,
    .setak-add-to-cart {
        display: none;
    }
    
    .setak-product-card {
        break-inside: avoid;
    }
}


@media (max-width: 768px) {


	.setak-container {
        padding: 20px 10px;
    }
    
    .setak-section-title {
        font-size: 22px;
        padding: 14px 40px;
    }
    
    .setak-products-wrapper {
        padding: 0 20px 0 10px;
    }
    
    .setak-products-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .setak-products-container {
        padding: 20px 10px;
    }

    .setak-product-card {
        width: calc(50% - 12px);
    }

	.setak-product-timer {
        position: relative;
        margin-top: 0;
        right: auto;
        left: auto;
        margin-bottom: 10px;
    }

	 .setak-product-image {
        height: 150px;
    }

    .setak-product-card {
        width: calc(50% - 12px);
        padding: 8px;
    }

    .setak-products-container {
        padding: 10px;
        padding-top: 15px;
    }

	.setak-slider-btn {
        width: 32px;
        height: 32px;
    }

    .setak-slider-prev {
        right: -7px;
    }

    .setak-slider-next {
        left: -7px;
    }

}















/************/
/************/
.section-home {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}

.section-home-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    gap: 12px;
}

.section-home-header-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    white-space: nowrap;
    display: inline-block;
}

.section-home-header-line {
    height: 1px;
    background-color: #d4b58e;
    width: 150px;
    flex-shrink: 0;
    display: inline-block;
}

.section-home-header-dot {
    width: 6px;
    height: 6px;
    background-color: #d4b58e;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.section-home-desc {
    text-align: center;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}

@media (max-width: 768px) {
    .section-home-header-line {
        width: 50px;
    }
    .section-home-header-title {
        font-size: 16px;
    }
    .section-home-desc {
        font-size: 13px;
        padding: 0 10px;
    }
}

/************/
/************/
.event-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    direction: rtl;
	margin-top:20px;
}

.section.section-slider-course {
	background-color: #fff !important;
	border: 1px solid #f0f0f0;
	border-radius: 25px;
	padding: 7px;
	box-shadow: -8px 8px 0px 0px #f3ebd8;
	transition: transform 0.3s ease;
	padding: 0 30px;
}

.event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 16px !important;
    cursor: pointer;
    text-align: center;
}

.event-card:hover {
    transform: translateY(-3px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5a623;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.event-day {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.event-month {
    font-size: 11px;
    color: #fff;
    margin-top: 2px;
}

.event-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.event-time {
    font-size: 12px;
    color: #888;
}

.event-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}