/*
Theme Name:   Shirazmoble Theme
Theme URI:    https://neuronteam.ir/
Description:  قالب اختصاصی مجله شیراز مبله
Author:       Mohammad Kazemian
Author URI:   https://neuronteam.ir/
Template:     astra
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  astra-child-custom
*/

:root {
    --primary-color: #d4825c;
    --secondary-color: #8b4513;
    --accent-color: #c9a96e;
    --dark-brown: #5c3d2e;
    --light-cream: #f5f1e8;
    --text-dark: #2c1810;
    --text-light: #6b4e3d;
    --shadow: rgba(139, 69, 19, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--light-cream);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: fadeInRight 0.8s ease-out;
}

.logo svg {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    animation: rotate 20s linear infinite;
    width: 40px;
    height: 40px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: 'Amiri', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    animation: fadeInRight 1s ease-out 0.2s backwards;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    transform: translateY(-2px);
}

.header-left {
    animation: fadeInLeft 0.8s ease-out;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    background: var(--light-cream);
}

/* Hero Slider */
.hero-slider {
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgba(212, 130, 92, 0.1), transparent);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-wrapper {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}

.slide-image {
    width: 50%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.3;
}

.slide-content {
    width: 50%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    position: relative;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 0 0 0 100%;
}

.slide-title {
    font-family: 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.slide-excerpt {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.slide-author {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.slider-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Categories Section */
.categories-section {
    padding: 3rem 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-family: 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* Posts Section */
.posts-section {
    padding: 3rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-all-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
    font-size: 0.95rem;
}

.view-all-btn:hover {
    background: var(--secondary-color);
    transform: translateX(-5px);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out backwards;
}

.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.post-image {
    height: 220px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    overflow: hidden;
}

.post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    transition: var(--transition);
}

.post-card:hover .post-image::after {
    opacity: 0;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.post-meta {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Location Section */
.location-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(212, 130, 92, 0.05), rgba(139, 69, 19, 0.05));
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.location-card {
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow);
}

.location-bg {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    transition: var(--transition);
}

.location-card:hover .location-bg {
    transform: scale(1.1);
}

.location-card h3 {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    z-index: 10;
    white-space: nowrap;
}

/* Featured Post */
.featured-post {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><pattern id="grid" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23grid)"/></svg>');
}

.featured-content {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.featured-image {
    width: 45%;
    min-height: 350px;
    background-size: cover !important;
    background-position: center !important;
}

.featured-text {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.featured-title {
    font-family: 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.featured-meta {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.read-more-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    width: fit-content;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
    font-size: 0.95rem;
}

.read-more-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow);
}

/* Editor's Choice */
.editors-choice {
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.05), transparent);
}

.editors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.editor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.editor-card::before {
    content: '★';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.8rem;
    color: gold;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.editor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.editor-image {
    height: 220px;
    background-size: cover !important;
    background-position: center !important;
}

.editor-content {
    padding: 1.5rem;
}

.editor-content h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.editor-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-brown));
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 1.8rem;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .slider-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Header Mobile Optimization */
    .main-header {
        padding: 0.8rem 0;
    }

    .header-content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .logo {
        gap: 0.6rem;
    }

    .logo svg {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .main-nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    .header-left {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }

    /* Slider Mobile */
    .hero-slider {
        padding: 2rem 0;
    }

    .slider-wrapper {
        height: auto;
        min-height: 400px;
    }

    .slide {
        flex-direction: column;
    }

    .slide-image,
    .slide-content {
        width: 100%;
    }

    .slide-image {
        min-height: 200px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-excerpt {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

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

    .category-card {
        padding: 1.5rem;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .post-image {
        height: 200px;
    }

    .post-content {
        padding: 1.2rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }

    /* Location Mobile */
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .location-card {
        height: 150px;
    }

    .location-card h3 {
        font-size: 1.2rem;
    }

    /* Featured Post Mobile */
    .featured-post {
        padding: 2rem 0;
    }

    .featured-content {
        flex-direction: column;
        gap: 0;
    }

    .featured-image,
    .featured-text {
        width: 100%;
    }

    .featured-image {
        min-height: 250px;
    }

    .featured-text {
        padding: 1.5rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .featured-excerpt {
        font-size: 0.9rem;
    }

    /* Editor's Choice Mobile */
    .editors-grid {
        grid-template-columns: 1fr;
    }

    .editor-image {
        height: 200px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo svg {
        width: 30px;
        height: 30px;
    }

    .main-nav {
        gap: 0.7rem;
    }

    .main-nav a {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card h3 {
        font-size: 1.3rem;
    }

    .slider-controls {
        gap: 1rem;
    }

    .view-all-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Scroll animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Custom Search Form Styles */
.search-form {
    display: flex; /* دکمه و فیلد جستجو را در یک راستا قرار می‌دهد */
    align-items: center; /* تراز عمودی آیتم‌ها در مرکز */
    border: 2px solid var(--accent-color); /* یک حاشیه کلی برای فرم */
    border-radius: 50px; /* گرد کردن گوشه‌های فرم */
    overflow: hidden; /* جلوگیری از بیرون زدن محتوا از گوشه‌های گرد */
    background-color: white; /* رنگ پس‌زمینه سفید برای کل فرم */
    box-shadow: 0 4px 15px var(--shadow); /* افزودن سایه مشابه سایر عناصر */
    transition: var(--transition); /* انیمیشن نرم برای تغییرات */
}

.search-form:focus-within {
    /* وقتی کاربر روی فرم کلیک می‌کند، حاشیه آن تغییر رنگ می‌دهد */
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 130, 92, 0.2);
}

.search-field {
    border: none; /* حذف حاشیه پیش‌فرض فیلد */
    outline: none; /* حذف خط دور فیلد هنگام کلیک */
    padding: 0.8rem 1.2rem; /* ایجاد فاصله داخلی */
    width: 100%; /* گرفتن تمام فضای باقی‌مانده */
    flex-grow: 1; /* اجازه می‌دهد فیلد بزرگ شود */
    font-family: 'Vazirmatn', sans-serif; /* استفاده از فونت اصلی سایت */
    font-size: 1rem;
    background-color: transparent; /* پس‌زمینه شفاف تا رنگ فرم اصلی نمایش داده شود */
}

.search-submit {
    background-color: var(--primary-color); /* استفاده از رنگ اصلی تم */
    border: none; /* حذف حاشیه دکمه */
    padding: 0.8rem; /* ایجاد فاصله داخلی */
    cursor: pointer; /* تغییر نشانگر موس به حالت دست */
    display: flex; /* فعال کردن فلکس‌باکس برای مرکزچین کردن آیکون */
    align-items: center; /* مرکزچین کردن عمودی آیکون */
    justify-content: center; /* مرکزچین کردن افقی آیکون */
    transition: var(--transition); /* انیمیشن نرم برای هاور */
    height: 100%; /* هم قد شدن با فیلد ورودی */
    align-self: stretch; /* کشیده شدن دکمه به اندازه ارتفاع فرم */
}

.search-submit:hover {
    background-color: var(--secondary-color); /* تغییر رنگ هنگام هاور */
}

.search-submit .feather-search {
    /* استایل‌دهی به آیکون SVG */
    stroke: white; /* تغییر رنگ آیکون به سفید */
    width: 22px; /* کمی بزرگ‌تر کردن آیکون */
    height: 22px;
}
