/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.4
	Stable tag: 3.4.4
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/* News Page Styles */
.news-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* News Header Styling */
.news-header {
    margin-bottom: 40px;
}

.news-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.news-title-line {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
}

.news-title {
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 20px;
    letter-spacing: 5px;
    color: #888;
}

.news-title span {
    font-style: italic;
    font-weight: 400;
    font-size: 42px;
    color: #555;
    text-transform: none;
}

/* News Grid Layout */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-top-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* News Item Styling */
.news-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-image-container {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-item-large .news-image-container {
    height: 350px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.news-content {
    padding: 20px;
}

.news-item-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    font-size: 24px;
    line-height: 1.3;
}

.news-item-small .news-item-title {
    font-size: 18px;
}

.news-item-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-read-more {
    display: inline-block;
    color: #0073aa;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

/* Pagination Styling */
.news-pagination {
    margin-top: 40px;
    text-align: center;
}

.news-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
}

.news-pagination .current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.news-pagination .page-numbers:hover:not(.current) {
    background-color: #f5f5f5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .news-top-row {
        grid-template-columns: 1fr;
    }
    
    .news-bottom-row {
        grid-template-columns: 1fr;
    }
    
    .news-title {
        font-size: 36px;
    }
    
    .news-title span {
        font-size: 32px;
    }
}
/* Single News Article Styles */
.single-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-news-article {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.single-news-featured-image {
    width: 100%;
}

.single-news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-news-article-header {
    padding: 30px 40px 0;
}

.single-news-title {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.single-news-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.single-news-date {
    margin-right: 15px;
}

.single-news-categories {
    display: flex;
}

.single-news-categories a {
    color: #0073aa;
    text-decoration: none;
}

.single-news-content {
    padding: 0 40px 30px;
    line-height: 1.6;
    color: #444;
}

.single-news-content p {
    margin-bottom: 20px;
}

.single-news-content img {
    max-width: 100%;
    height: auto;
}

/* Related News Section */
.related-news {
    margin-top: 50px;
}

.related-news h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-news-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-news-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.related-news-title {
    padding: 15px 15px 5px;
    margin: 0;
    font-size: 18px;
    color: #333;
}

.related-news-date {
    display: block;
    padding: 0 15px 15px;
    font-size: 12px;
    color: #666;
}

/* Back Button */
.back-to-news {
    margin-top: 40px;
    text-align: center;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #005d87;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .single-news-article-header {
        padding: 20px 20px 0;
    }
    
    .single-news-content {
        padding: 0 20px 20px;
    }
    
    .single-news-title {
        font-size: 28px;
    }
    
    .related-news-grid {
        grid-template-columns: 1fr;
    }
}

/* آکاردئون محصول */
.product-accordion-section {
 max-width: 1200px;
 margin: 40px auto;
 padding: 0 20px;
}

.product-accordion-section h3 {
 font-size: 24px;
 font-weight: 600;
 margin-bottom: 30px;
 color: #333;
}

.accordion-item {
 margin-bottom: 10px;
 border: 1px solid #e0e0e0;
 border-radius: 5px;
 overflow: hidden;
}

.accordion-header {
 background: #f8f8f8;
 padding: 15px 20px;
 cursor: pointer;
 display: flex;
 align-items: center;
 transition: all 0.3s ease;
 border-bottom: 1px solid #e0e0e0;
}

.accordion-header:hover {
 background: #f0f0f0;
}

.accordion-header.active {
 background: #7CB342;
 color: white;
}

.accordion-header i {
 color: #7CB342;
 margin-right: 15px;
 font-size: 14px;
 transition: transform 0.3s ease;
}

.accordion-header.active i {
 color: white;
 transform: rotate(45deg);
}

.accordion-header span {
 font-weight: 600;
 font-size: 16px;
}

.accordion-content {
 padding: 0;
 max-height: 0;
 overflow: hidden;
 transition: all 0.3s ease;
 background: white;
}

.accordion-content.active {
 padding: 20px;
 max-height: 1000px;
}

.accordion-table {
 width: 100%;
 border-collapse: collapse;
}

.accordion-table tr {
 border-bottom: 1px solid #f0f0f0;
}

.accordion-table td {
 padding: 10px 0;
 vertical-align: top;
}

.accordion-table td:first-child {
 font-weight: 600;
 color: #333;
 width: 40%;
 padding-right: 20px;
}

.accordion-table td:last-child {
 color: #666;
}

.accordion-content h4 {
 color: #7CB342;
 font-size: 16px;
 margin: 15px 0 10px 0;
}

.accordion-content p {
 line-height: 1.6;
 color: #666;
 margin-bottom: 15px;
}

/* تصاویر محصول */
.product-images-section {
 max-width: 1200px;
 margin: 40px auto;
 padding: 0 20px;
}

.main-product-image {
 text-align: center;
 margin-bottom: 30px;
}

.product-main-img {
 max-width: 100%;
 height: auto;
 border-radius: 10px;
 box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-gallery {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 20px;
}

.gallery-item img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-radius: 8px;
 box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* موبایل ریسپانسیو */
@media (max-width: 768px) {
 .accordion-header {
 padding: 12px 15px;
 }
 
 .accordion-header span {
 font-size: 14px;
 }
 
 .accordion-content.active {
 padding: 15px;
 }
 
 .accordion-table td:first-child {
 width: 35%;
 font-size: 14px;
 }
 
 .accordion-table td:last-child {
 font-size: 14px;
 }
}

/* Load Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* ===== Desktop Footer ===== */
.mucci-custom-footer {
	width: 100%;
	background-color: #f6f2f2;
	padding: 0;
	margin: 0;
	border-top: 1px solid #e0e0e0;
	display: block;
}

.mucci-footer-container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 40px;
	gap: 40px;
}

/* Logo Section */
.mucci-footer-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.mucci-logo-img {
	height: 60px;
	width: auto;
	display: block;
}

/* Divider */
.mucci-footer-divider {
	width: 1px;
	height: 50px;
	background-color: #cccccc;
	flex: 0 0 auto;
}

/* Content Section */
.mucci-footer-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Navigation */
.mucci-footer-nav {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.mucci-footer-link {
	color: #666;
	text-decoration: none;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
}

.mucci-footer-link:hover {
	color: #333;
	text-decoration: none;
}

/* Bottom Section */
.mucci-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

/* Copyright */
.mucci-copyright {
	color: #999;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	margin: 0;
}

/* Social Icons */
.mucci-social-icons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.mucci-social-link {
	color: #999;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.mucci-social-link:hover {
	color: #666;
}

/* ===== Mobile Footer ===== */
.mucci-mobile-footer {
	display: none;
	width: 100%;
	background-color: #f6f2f2;
	padding: 0;
	margin: 0;
	border-top: 1px solid #e0e0e0;
}

.mucci-mobile-container {
	max-width: 400px;
	margin: 0 auto;
	padding: 30px 20px;
	text-align: center;
}

.mucci-mobile-logo {
	margin-bottom: 20px;
}

.mucci-mobile-logo-img {
	height: 50px;
	width: auto;
	display: block;
	margin: 0 auto;
}

.mucci-mobile-divider {
	width: 50px;
	height: 1px;
	background-color: #cccccc;
	margin: 20px auto;
}

.mucci-mobile-social {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.mucci-mobile-social-link {
	color: #999;
	font-size: 18px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mucci-mobile-social-link:hover {
	color: #666;
}

.mucci-mobile-copyright {
	color: #999;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 11px;
	font-weight: 400;
	margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
	.mucci-custom-footer {
		display: none;
	}
	
	.mucci-mobile-footer {
		display: block;
	}
}

@media (max-width: 992px) and (min-width: 769px) {
	.mucci-footer-container {
		padding: 25px 20px;
		gap: 30px;
	}
	
	.mucci-footer-nav {
		gap: 20px;
	}
	
	.mucci-footer-link {
		font-size: 13px;
	}
}

/* Hide Elementor Footer */
.elementor-location-footer {
	display: none !important;
}

/* Ensure footer is always visible */
.mucci-custom-footer,
.mucci-mobile-footer {
	display: block !important;
	visibility: visible !important;
	position: relative !important;
	z-index: 1000 !important;
}

/* Catalog Archive Share Section */
.catalog-archive-header {
    background-color: #f9f9f9 !important;
    padding: 80px 20px 60px !important;
    text-align: center !important;
}

.catalog-archive-header .title-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.catalog-archive-header .page-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 48px !important;
    font-weight: 300 !important;
    color: #333 !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.catalog-archive-header .page-title span {
    font-weight: 700 !important;
}

.catalog-archive-header .title-line {
    width: 100px !important;
    height: 3px !important;
    background-color: #8bc34a !important;
    margin: 0 auto 40px !important;
}

.catalog-share-section {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.catalog-share-section .share-label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #666 !important;
    letter-spacing: 1px !important;
}

.catalog-share-section .share-icons {
    display: flex !important;
    gap: 15px !important;
}

.catalog-share-section .share-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #fff !important;
    border-radius: 50% !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    font-size: 16px !important;
}

.catalog-share-section .share-icon:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
    color: #8bc34a !important;
}

/* Catalog Grid */
.catalog-grid-section {
    max-width: 1200px !important;
    margin: 60px auto !important;
    padding: 0 20px !important;
}

.catalog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.catalog-grid-item {
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
}

.catalog-grid-item:hover {
    transform: translateY(-5px) !important;
}

.catalog-item-image {
    position: relative !important;
    height: 280px !important;
    background-size: cover !important;
    background-position: center !important;
}

.catalog-overlay-link {
    display: block !important;
    height: 100% !important;
    position: relative !important;
}

.catalog-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.8) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    color: #fff !important;
}

.catalog-overlay i {
    font-size: 40px !important;
    margin-bottom: 10px !important;
}

.catalog-overlay span {
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.catalog-overlay-link:hover .catalog-overlay {
    opacity: 1 !important;
}

.catalog-year-badge {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255,255,255,0.9) !important;
    color: #333 !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.catalog-item-content {
    padding: 25px !important;
}

.catalog-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 15px 0 !important;
    color: #333 !important;
}

.catalog-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 !important;
}

@media (max-width: 992px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .catalog-grid {
        grid-template-columns: 1fr !important;
    }
    
    .catalog-archive-header .page-title {
        font-size: 32px !important;
    }
    
    .catalog-share-section {
        flex-direction: column !important;
        gap: 15px !important;
    }
}