/*
Theme Name: SarinFam
Theme URI: https://sarinfam.com
Author: SarinFam
Author URI: https://sarinfam.com
Description: یک تم سفارشی برای سایت SarinFam
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sarinfam
*/

/* ریست استایل‌ها */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "IranSans";
  src: url("./assets/fonts/IranSans/woff2/IRANSansWeb.woff2") format("woff2"),
    url("./assets/fonts/IranSans/woff2/IRANSansWeb.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: IranSans, Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #333;
  direction: rtl;
}

a {
  color: #594f20;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* نوار بالایی */
.top-bar {
  background-color: #282d1d;
  color: #fff;
  padding: 10px 0;
}

@media (max-width: 768px) {
	.top-bar {
		padding: 20px 0;
	}	
}

.top-bar-content {
  display: flex;
  	justify-content: center;
  align-items: center;
}

.top-bar-left {
  font-size: 14px;
}

.site-description {
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  align-items: center;

}

.top-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-navigation li {
  margin-right: 20px;
  margin-left: 0;
}

.top-navigation a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-left: 0;
  color: #594f20;
  font-size: 20px !important;
}

.social-icon:hover {
	transform: traslateY(-2px);
}

.social-link {
	color: #00a0d2 !important;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.top-navigation > ul > li {
	transition: all .2s;
}

.top-navigation > ul > li:hover {
	transform: translateY(-3px)
}

/* همبرگر */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 15px;
  z-index: 1001;
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  display: block;
  background-color: #fff;
  height: 3px;
  width: 24px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle .hamburger::before {
  top: -7px;
}

.menu-toggle .hamburger::after {
  top: 7px;
}

/* حالت ضربدر */
.menu-toggle.active .hamburger {
  background: transparent;
}
.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* موبایل */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
	.social-icon {

  font-size: 24px;
}
	.top-bar-left {
		display: none;
	}
	
	.top-bar-right {
width: 100%;
		justify-content: space-between;
}

  .top-navigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(40, 45, 29, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
  }

  .top-navigation.active {
    transform: translateY(0);
  }

  .top-navigation ul {
    flex-direction: column;
    text-align: center;
  }

  .top-navigation li {
    margin: 20px 0;
  }

  .top-navigation a {
    font-size: 22px;
    font-weight: 600;
  }
}



/* هدر اصلی */
.site-header {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding {
  flex: 0 0 auto;
}

.custom-logo {
  max-height: 50px;
  width: auto;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  color: #282d1d;
}

.main-navigation {
  flex: 0 0 auto;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin: 0 0 0 15px;
}

.main-navigation a {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.main-navigation a:hover {
  color: #282d1d;
}

.header-search {
  flex: 1;
  max-width: 400px;
  margin: 0 20px;
}

.search-form {
  position: relative;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
}

.search-field {
  font-family: IranSans, Arial, sans-serif;
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
  width: 100%;
  text-align: right;
}

.search-submit {
  background: transparent;
  border: none;
  width: 40px;
  cursor: pointer;
  color: #666;
}

.header-account {
  flex: 0 0 auto;
  margin-left: 20px;
  margin-right: 0;
}

.account-link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.header-cart {
  flex: 0 0 auto;
  position: relative;
}

.cart-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: #333;
  font-size: 18px;
}

.cart-count {
  position: absolute;
  top: -8px;
  left: -8px;
  right: auto;
  background-color: #282d1d;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* بخش هیرو صفحه اصلی */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700; /* رنگ طلایی برای عنوان اصلی */
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-button {
  border-radius: 5px;
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #fff;
  color: #282d1d;
}

/* بخش دسته‌بندی محصولات */
.product-categories-section {
  padding: 60px 0;
  background-color: #fff;
}

/* تب‌های دسته‌بندی محصولات */
.product-categories-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.product-category-tab {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.product-category-tab:hover {
  color: #282d1d;
}

.product-category-tab.active {
  color: #282d1d;
  border-bottom: 2px solid #282d1d;
}

/* گرید محصولات */
.product-grid {
  margin-bottom: 40px;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 30px;
}

.product-card {
  flex: 1 0 calc(25% - 30px);
  margin: 0 15px 30px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #282d1d;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
}

.product-info {
  padding: 15px;
}

.product-code {
  font-size: 14px;
  font-weight: 500;
  color: #282d1d;
  margin: 0;
}

/* دکمه فروشگاه */
.product-action {
  text-align: center;
  margin-top: 20px;
}

.shop-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #282d1d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.shop-button:hover {
  background-color: #344610;
  color: #fff;
}

/* بخش تحقیق و توسعه */
.research-section {
  padding: 80px 0;
  background-color: #fff;
}

.research-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.research-text {
  flex: 1;
  padding-right: 50px;
}

.research-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.research-title {
  font-size: 28px;
  font-weight: 300;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.2;
}

.research-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.research-description strong {
  font-weight: 600;
}

.research-button {
  border-radius: 5px;
  display: inline-block;
  background-color: #282d1d;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  transition: all 0.3s;
  text-transform: uppercase;
}

.research-button:hover {
  background-color: #344610;
  color: #fff;
}

.research-image {
  flex: 1;
  min-width: 300px;
}

.research-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* بخش وبلاگ */
.blog-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-title {
  font-size: 42px;
  font-weight: 300;
  color: #666;
  margin: 0;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: center;
}

.blog-card {
  flex: 0 0 calc(33.333% - 30px);
  margin: 0 15px 30px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 77, 64, 0.15);
}

.blog-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::after {
  opacity: 1;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-content {
  padding: 25px 30px 30px;
  position: relative;
}

.blog-content::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #899d60;
  transition: width 0.3s ease;
}

.blog-card:hover .blog-content::before {
  width: 90px;
}

.blog-post-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-post-title a:hover {
  color: #282d1d;
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  height: 75px;
  overflow: hidden;
}

.blog-excerpt p {
  margin: 0;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
  color: #888;
}

.blog-date {
  display: flex;
  align-items: center;
}

.blog-date i {
  margin-left: 5px;
  color: #899d60;
}

.blog-read-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #282d1d;
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.blog-read-more::after {
  content: "←";
  margin-right: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.blog-read-more:hover {
  color: #344610;
}

.blog-read-more:hover::after {
  transform: translateX(-5px);
}

/* تنظیمات رسپانسیو برای کارت‌های بلاگ */
@media (max-width: 992px) {
  .blog-card {
    flex: 0 0 calc(50% - 30px);
  }
}

@media (max-width: 576px) {
  .blog-card {
    flex: 0 0 calc(100% - 30px);
  }

  .blog-image {
    height: 220px;
  }
}
/* بخش سوالات متداول (بنر) */
.faq-banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.faq-banner-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 77, 64, 0.5); /* رنگ فیروزه‌ای با شفافیت */
  z-index: 1;
}

.faq-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.faq-banner-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 30px;
}

.faq-banner-button {
  border-radius: 5px;
  display: inline-block;
  background-color: #fff;
  color: #282d1d;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.faq-banner-button:hover {
  background-color: #f0f0f0;
  color: #344610;
}

/* بخش خبرنامه */
.newsletter-section {
  background-color: #899d60; /* رنگ فیروزه‌ای مطابق با تصویر */
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.newsletter-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.newsletter-subtitle {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
}

.newsletter-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.newsletter-form-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.newsletter-button {
  border-radius: 5px;
  font-family: IranSans, Arial, sans-serif;
  display: inline-block;
  background-color: #fff;
  color: #899d60;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-button:hover {
  background-color: #f0f0f0;
  color: #4a8a8a;
}

/* مودال */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 5px;
  max-width: 500px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #333;
}

.modal-title {
  margin-top: 0;
  color: #282d1d;
  font-size: 24px;
  margin-bottom: 10px;
}

.modal-description {
  color: #666;
  margin-bottom: 20px;
}

.modal-form .form-group {
  margin-bottom: 20px;
}

.modal-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.modal-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 16px;
}

.modal-form input:focus {
  border-color: #899d60;
  outline: none;
  box-shadow: 0 0 5px rgba(91, 155, 155, 0.3);
}

.modal-submit {
  background-color: #899d60;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.modal-submit:hover {
  background-color: #4a8a8a;
}

/* فوتر */
.site-footer {
  margin-top: 50px;
}

/* بخش ویجت‌های فوتر */
.footer-widgets {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.footer-widgets-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-widget {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
  margin-bottom: 30px;
}

.footer-widget-title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #333;
}

.footer-widget-title:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #282d1d;
}

.footer-widget-content {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.footer-widget-content p {
  margin-bottom: 15px;
}

.footer-widget-content strong {
  font-weight: 600;
}

.read-more {
  color: #00a0d2;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: none;
}

.footer-menu {
  margin-top: 20px;
}

.footer-menu a {
  font-size: 14px;
}

/* بخش پست‌های وبلاگ در فوتر */
.footer-blog-post {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  gap: 10px;
}

.footer-post-thumbnail {
  flex: 0 0 80px;
  margin-right: 10px;
}

.footer-post-thumbnail img {
  width: 90%;
  height: auto;
  border-radius: 10px;
}

.footer-post-content {
  flex: 1;
}

.footer-post-title {
  font-size: 14px;
  display: block;
  line-height: 1.4;
}

/* بخش خبرنامه */
.newsletter-form {
  margin-top: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.newsletter-submit {
  font-family: IranSans, Arial, sans-serif;
  border-radius: 5px;
  background-color: #282d1d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-submit:hover {
  transform: translateY(-5px);
  background-color: #344610;
}

/* بخش پایینی فوتر */
.footer-bottom {
  background-color: #282d1d;
  color: #fff;
  padding: 20px 0;
}

.footer-bottom-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
}

.footer-copyright {
  font-size: 14px;
	    grid-column: 1 / -1;
    grid-row: 1 / 2;
    justify-self: center;
}

.footer-copyright p {
  margin: 0;
}

.footer-legal {
  font-size: 14px;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* رسپانسیو */
@media (max-width: 992px) {
  .product-card {
    flex: 1 0 calc(33.333% - 30px);
  }

  .blog-card {
    flex: 0 0 calc(50% - 30px);
  }

  .research-content {
    flex-direction: column;
  }

  .research-text {
    padding-right: 0;
    margin-bottom: 30px;
    order: 2;
  }

  .research-image {
    order: 1;
    margin-bottom: 30px;
  }

  .research-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 1 0 calc(50% - 30px);
  }

  .product-categories-tabs {
    flex-wrap: wrap;
  }

  .product-category-tab {
    flex: 1 0 calc(50% - 10px);
    margin-bottom: 10px;
  }

  .hero-section {
    padding: 0 20px;
    height: 500px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .research-section {
    padding: 60px 0;
  }

  .research-title {
    font-size: 32px;
  }

  .blog-section {
    padding: 60px 0;
  }

  .blog-title {
    font-size: 36px;
  }

  .faq-banner-section {
    height: 250px;
  }

  .faq-banner-title {
    font-size: 30px;
  }

  .newsletter-subtitle {
    font-size: 28px;
  }

  .newsletter-description {
    font-size: 16px;
    padding: 0 20px;
  }

  .footer-widgets-row {
    flex-direction: column;
  }

  .footer-widget {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-bottom-content {
       display: grid;
       grid-template-columns: 1fr 1fr;

  }

  .footer-legal {
    margin-top: 10px;
  }

  .modal-content {
    margin: 15% auto;
    padding: 20px;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .blog-card {
    flex: 0 0 calc(100% - 30px);
  }

  .blog-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 1 0 calc(100% - 30px);
  }

  .product-category-tab {
    flex: 1 0 100%;
  }

  .hero-section {
    height: 400px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-button {
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .research-title {
    font-size: 28px;
  }

  .research-description {
    font-size: 14px;
  }

  .research-button {
    border-radius: 5px;
    width: 100%;
    text-align: center;
  }

  .faq-banner-section {
    height: 200px;
  }

  .faq-banner-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .faq-banner-button {
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 12px;
  }

  .newsletter-subtitle {
    font-size: 24px;
  }

  .newsletter-description {
    font-size: 14px;
  }

  .newsletter-button {
    border-radius: 5px;
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* استایل برای صفحه تک پست */
.post-hero-header {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}

.post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.post-hero-content {
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
}

.post-category {
  margin-bottom: 20px;
}

.post-category a {
  cursor: none;
  pointer-events: none;
  display: inline-block;
  color: #282d1d;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
}

.post-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.post-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.site-main {
  flex: 1;
  min-width: 0;
  padding: 0 15px;
}

.widget-area {
  flex: 0 0 300px;
  padding: 0 15px;
}

.entry-meta {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.posted-on {
  margin-left: 15px;
}

.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 100px 130px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  border-radius: 5px;
}

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

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 20px 0;
}

.entry-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.tags-links {
  font-size: 14px;
}

/* رسپانسیو */
@media (max-width: 992px) {
  .post-hero-header {
    height: 400px;
  }

  .post-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .post-hero-header {
    height: 300px;
  }

  .post-title {
    font-size: 28px;
  }

  .post-content-wrapper {
    flex-direction: column;
  }

  .widget-area {
    flex: 0 0 100%;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .post-hero-header {
    height: 250px;
  }

  .post-title {
    font-size: 24px;
  }
}

/* استایل‌های صفحه فروشگاه */
.shop-container {
  display: flex;
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.shop-sidebar {
  flex: 0 0 200px;
  padding-right: 20px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  position: relative;
}

.sidebar-divider {
  width: 40px;
  height: 3px;
  background-color: #282d1d;
  margin-bottom: 20px;
}

.category-title {
  font-size: 16px;
  font-weight: 700;
  color: #282d1d;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-categories-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 600px;
}

.product-category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-category-card.large {
  grid-column: span 3;
  grid-row: span 2;
}

.product-category-card.medium {
  grid-column: span 3;
  grid-row: span 1;
}

.product-category-card.small {
  grid-column: span 3;
  grid-row: span 1;
}

.product-category-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.product-category-card:hover .product-category-overlay {
  background: rgba(0, 77, 64, 0.6);
}

.product-category-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* رسپانسیو */
@media (max-width: 992px) {
  .product-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }

  .product-category-card.large,
  .product-category-card.medium,
  .product-category-card.small {
    grid-column: span 1;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .shop-container {
    flex-direction: column;
  }

  .shop-sidebar {
    flex: 0 0 auto;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .product-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* استایل‌های صفحه محصولات */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

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

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.product-image {
  height: 220px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #333;
}

.product-code {
  font-size: 14px;
  color: #282d1d;
  font-weight: 500;
}

/* پیجینیشن */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 5px;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background-color: #e0e0e0;
}

.pagination .page-numbers.current {
  background-color: #282d1d;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  font-size: 18px;
}

/* هدر صفحه */
.page-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
}

.term-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* رسپانسیو */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* استایل‌های صفحه تکی محصول */
.single-product {
  margin-bottom: 40px;
}

.product-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product-gallery {
  flex: 0 0 calc(50% - 15px);
}

.product-main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-details {
  flex: 0 0 calc(50% - 15px);
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #333;
}

.product-code {
  margin-bottom: 15px;
  font-size: 16px;
}

.code-label,
.category-label,
.species-label {
  font-weight: 600;
  color: #666;
}

.code-value {
  color: #282d1d;
  font-weight: 500;
}

.product-categories,
.product-species {
  margin-bottom: 15px;
  font-size: 16px;
}

.product-categories a,
.product-species a {
  color: #282d1d;
  text-decoration: none;
}

.product-categories a:hover,
.product-species a:hover {
  text-decoration: underline;
}

.product-description {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.related-products {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.related-products h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.products-grid.related {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .products-grid.related {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-content-wrapper {
    flex-direction: column;
  }

  .product-gallery,
  .product-details {
    flex: 0 0 100%;
  }

  .products-grid.related {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid.related {
    grid-template-columns: 1fr;
  }
}

.product-full-description {
  margin-top: 40px;
  padding: 25px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.description-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.description-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 70px;
  height: 2px;
  background-color: #2e8b57;
}

.description-content {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.description-content p {
  margin: 0 0 15px;
}

.description-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 15px 0;
}

.widget-area {
  display: none !important;
}

/* استایل برای حالت بارگذاری و پیام‌های خطا */
.loading-products,
.no-products,
.error-message {
  text-align: center;
  padding: 50px 0;
  font-size: 16px;
  color: #777;
  width: 100%;
}

.loading-products:before {
  content: "\f110";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
  animation: fa-spin 2s infinite linear;
}

.no-products:before {
  content: "\f06a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
  color: #999;
}

.error-message {
  color: #e74c3c;
}

.error-message:before {
  content: "\f071";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.product-card.empty {
  visibility: hidden;
}

.blog-hero-section {
  padding: 80px 0;
  text-align: center;
  color: #344610;
  margin-bottom: 60px;
}

.blog-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-hero-description {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.blog-category-item {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.blog-category-item:hover,
.blog-category-item.active {
  background-color: #fff;
  color: #2e8b57;
}

/* مطالب ویژه */
.featured-posts-section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-right: 15px;
  color: #333;
}

.section-title:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 25px;
  background: #282d1d;
  border-radius: 5px;
}

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

.featured-post-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.featured-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.featured-post-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.featured-post-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #2e8b57;
  color: #fff;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
}

.featured-post-content {
  padding: 25px;
}

.featured-post-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.post-date i,
.post-author i,
.post-comments i {
  margin-left: 5px;
  color: #988d60;
}

.featured-post-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.featured-post-title a {
  color: #333;
  transition: color 0.3s;
}

.featured-post-title a:hover {
  color: #2e8b57;
}

.featured-post-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.read-more-link {
  color: #594f20;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.read-more-link i {
  margin-right: 5px;
  transition: transform 0.3s;
}

.read-more-link:hover i {
  transform: translateX(-5px);
}

/* بخش اصلی بلاگ */
.blog-grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

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

.blog-post-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
  position: relative;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #899d60;
  color: #fff;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
}

.blog-post-content {
  padding: 20px;
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}

.blog-post-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-post-title a {
  color: #333;
  transition: color 0.3s;
}

.blog-post-title a:hover {
  color: #2e8b57;
}

.blog-post-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

/* پاگینیشن */
.blog-pagination {
  margin-top: 50px;
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #333;
  font-weight: 600;
  transition: all 0.3s;
}

.blog-pagination .page-numbers:hover {
  background-color: #e0e0e0;
}

.blog-pagination .page-numbers.current {
  background-color: #2e8b57;
  color: #fff;
}

.blog-pagination .prev,
.blog-pagination .next {
  font-size: 12px;
}

/* سایدبار */
.blog-sidebar {
  position: sticky;
  top: 30px;
}

.sidebar-widget {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-right: 15px;
  color: #333;
}

.widget-title:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #282d1d;
  border-radius: 4px;
}

/* ویجت جستجو */
.search-widget .search-form {
  position: relative;
  display: flex;
}

.search-widget .search-field {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 30px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.search-widget .search-field:focus {
  border-color: #2e8b57;
  box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.1);
}

.search-widget .search-submit {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #2e8b57;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
}

/* ویجت دسته‌بندی‌ها */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
}

.categories-list li:last-child {
  border-bottom: none;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  transition: all 0.3s;
}

.categories-list a:hover {
  color: #2e8b57;
  padding-right: 5px;
}

.categories-list .count {
  background-color: #f5f5f5;
  color: #777;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 30px;
  transition: all 0.3s;
}

.categories-list a:hover .count {
  background-color: #2e8b57;
  color: #fff;
}

/* ویجت پست‌های محبوب */
.popular-post-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-image {
  width: 80px;
  height: 80px;
  margin-left: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.popular-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post-content {
  flex: 1;
}

.popular-post-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.popular-post-title a {
  color: #333;
  transition: color 0.3s;
}

.popular-post-title a:hover {
  color: #2e8b57;
}

.popular-post-date {
  font-size: 12px;
  color: #777;
}

/* ویجت برچسب‌ها */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-link {
  background-color: #f5f5f5;
  color: #555;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  transition: all 0.3s;
}

.tag-link:hover {
  background-color: #2e8b57;
  color: #fff;
}

/* ویجت خبرنامه */
.newsletter-widget p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.newsletter-form input:focus {
  border-color: #2e8b57;
  box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.1);
}

/* پیام عدم وجود پست */
.no-posts-found {
  grid-column: span 3;
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-posts-icon {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-posts-found h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.no-posts-found p {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.back-to-all {
  display: inline-block;
  background-color: #2e8b57;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.back-to-all:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.no-posts,
.no-tags {
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* ریسپانسیو */
@media (max-width: 1200px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .no-posts-found {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .blog-grid-container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }

  .featured-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .no-posts-found {
    grid-column: span 1;
  }

  .blog-hero-section {
    padding: 60px 0;
  }

  .blog-hero-title {
    font-size: 32px;
  }

  .blog-hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .blog-category-item {
    font-size: 12px;
    padding: 6px 15px;
  }

  .featured-post-content,
  .blog-post-content {
    padding: 15px;
  }

  .featured-post-title {
    font-size: 18px;
  }

  .blog-post-title {
    font-size: 16px;
  }

  .blog-pagination .page-numbers {
    width: 35px;
    height: 35px;
    margin: 0 3px;
  }
}
