* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* دکمه اسکرول به بالا */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 24px;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo-icon {
    margin-bottom: 20px;
    width: 220px;
    height: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.9);
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.9);
    background: linear-gradient(135deg, #FF8C00, #FF4500);
}

/* ========== هدر ========== */
header {
    background: linear-gradient(135deg, #e3e7e4 0%, #b184b9 100%);
    height: 650px;
    border-radius: 0 0 80px 80px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.shape {
    position: absolute;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -120px;
    animation-delay: 0s;
    background: rgba(255, 165, 0, 0.2);
}
.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    animation-delay: 1s;
    background: rgba(255, 140, 0, 0.15);
}
.shape-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 15%;
    animation-delay: 2s;
    background: rgba(255, 120, 0, 0.12);
}
.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    right: 75%;
    animation-delay: 0.5s;
    background: rgba(255, 160, 0, 0.18);
}
.shape-5 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 1.5s;
    background: rgba(255, 102, 0, 0.205);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(10deg); }
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.typewriter-container {
    font-size: 1.6rem;
    font-family: 'Tahoma';
    color: rgba(19, 3, 3, 1);
    margin-bottom: 30px;
    direction: ltr;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.typewriter {
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1.6rem;
    background: white;
    animation: blink 0.8s infinite;
    vertical-align: middle;
    margin-right: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s both;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}
.header-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #667eea;
    color: white;
}
.header-btnf {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s both;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}
.header-btnf:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #5dac45;
    color: white;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* منوی استیکی */
.sticky-nav {
    position: sticky;
    top: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 25px;
    border-radius: 60px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.sticky-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

.sticky-nav ul li a,
.sticky-nav ul li button {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.sticky-nav ul li a:hover,
.sticky-nav ul li button:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
}

/* کارت آشنايی */
.card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card h2 {
    color: #667eea;
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
}

.card p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
    text-align: justify;
}

hr {
    margin: 50px 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
}

/* خدمات */
.service {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service h2 {
    color: #764ba2;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-item {
    padding: 22px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.service-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.service-item strong {
    color: #667eea;
}

/* اسلایدشو نمونه کارها */
.project-gallery {
    background: white;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.project-gallery h2 {
    color: #667eea;
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000;
}

.slider-wrapper {
    position: relative;
}

.main-slide {
    position: relative;
    width: 100%;
}

.main-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 25px 20px;
    text-align: right;
}

.slide-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.slide-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: #667eea;
    transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.dots {
    text-align: center;
    padding: 20px 0;
    background: #f8f9fa;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background-color: #667eea;
    width: 30px;
    border-radius: 10px;
}
.dot:hover {
    background-color: #667eea;
}

.slider-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 10;
}

.auto-play-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    z-index: 10;
    transition: all 0.3s ease;
}
.auto-play-btn:hover {
    background: #667eea;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-content img {
    width: auto;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-caption {
    text-align: center;
    color: white;
    margin-top: 15px;
    font-size: 1.1rem;
}
.modal-caption h3 { margin-bottom: 5px; }
.modal-caption p { opacity: 0.8; }

.close-modal {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 35px;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.close-modal:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

.testimonials {
    background: linear-gradient(135deg, #667eea08, #764ba208);
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 40px;
}
.testimonials h2 {
    color: #764ba2;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}
.testimonial-card span {
    font-weight: bold;
    color: #667eea;
}
.stars {
    color: #fbbf24;
    margin-top: 12px;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.contact-form h2 {
    color: #667eea;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group.full-width {
    grid-column: span 2;
}

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

button[type="submit"] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 45px;
    border-radius: 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

.newsletter {
    background: linear-gradient(135deg, #e3e7e4, #b184b9 100%);
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}
.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    background: white;
    border: none;
    border-radius: 50px;
}
.newsletter-form button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-form button:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 50px 30px 30px;
    border-radius: 30px;
    margin-top: 40px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background: #667eea;
}
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}
.social-links a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-3px);
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #667eea;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #aaa;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.auth-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.auth-btn.login {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}
.auth-btn.register {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}
.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}
.auth-modal.show {
    display: flex;
}
.auth-modal-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: zoomIn 0.3s ease;
}
.auth-modal-content h2 {
    color: #667eea;
    text-align: center;
    margin-bottom: 20px;
}
.auth-modal-content .close-auth {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
}
.auth-modal-content .close-auth:hover {
    color: #ef4444;
    transform: rotate(90deg);
}
.auth-modal-content .form-group {
    margin-bottom: 15px;
}
.auth-modal-content .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}
.auth-modal-content .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.auth-modal-content .form-group input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}
.auth-modal-content .auth-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.auth-modal-content .auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}
.auth-modal-content .auth-switch {
    text-align: center;
    margin-top: 15px;
}
.auth-modal-content .auth-switch a {
    color: #667eea;
    cursor: pointer;
    text-decoration: underline;
}
.auth-modal-content .auth-switch a:hover {
    color: #764ba2;
}

.about-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}
.profile-image {
    flex: 1;
    text-align: center;
}
.profile-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.profile-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.about-text {
    flex: 2;
}

/* ==========================================
   استایل‌های اکسسوری‌ها
   ========================================== */
.accessories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.accessory-item {
    width: 220px;
    background: white;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accessory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.accessory-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.accessory-item .accessory-title {
    margin-top: 10px;
    font-weight: bold;
    color: #2c3e50;
}

.accessory-item .accessory-desc {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}
/* ==========================================
   استایل اکسسوری‌ها
   ========================================== */
.accessories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.accessory-item {
    width: 220px;
    background: white;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accessory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.accessory-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.accessory-item .accessory-title {
    margin-top: 10px;
    font-weight: bold;
    color: #2c3e50;
}

.accessory-item .accessory-desc {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}
/* ==========================================
   استایل دکمه خرید اکسسوری
   ========================================== */
.accessory-item {
    width: 220px;
    background: white;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.accessory-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.accessory-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.accessory-item .accessory-title {
    margin-top: 10px;
    font-weight: bold;
    color: #2c3e50;
}

.accessory-item .accessory-desc {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.accessory-item .buy-btn {
    margin-top: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.accessory-item .buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
}

/* ==========================================
   استایل‌های مدیریت توضیحات تصاویر (ادمین)
   ========================================== */
.image-info-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.image-info-form input,
.image-info-form textarea {
    margin-bottom: 10px;
}

.image-info-form button {
    background: #22c55e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 768px) {
    main { padding: 15px; }
    header { height: 550px; border-radius: 0 0 40px 40px; }
    .header-content h1 { font-size: 2.2rem; }
    .logo-icon { width: 150px; height: 150px; font-size: 3rem; }
    .typewriter-container { font-size: 1rem; }
    .cursor { height: 1rem; }
    .header-btn, .header-btnf { padding: 12px 30px; font-size: 0.9rem; }
    .card, .service, .project-gallery, .testimonials, .contact-form, .newsletter { padding: 25px; }
    .card h2, .service h2, .project-gallery h2, .testimonials h2, .contact-form h2 { font-size: 1.6rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .newsletter-form { flex-direction: column; }
    .sticky-nav { top: 10px; padding: 10px 15px; }
    .sticky-nav ul { gap: 8px; }
    .sticky-nav ul li a, .sticky-nav ul li button { padding: 6px 12px; font-size: 0.8rem; }
    .main-slide img { height: 300px; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .shape-1 { width: 200px; height: 200px; }
    .shape-2 { width: 150px; height: 150px; }
    .shape-3 { width: 100px; height: 100px; }
    .about-wrapper { flex-direction: column; gap: 25px; }
    .profile-image img { max-width: 250px; }
    .about-text { text-align: center; }
    .accessory-item { width: 160px; }
    .accessory-item img { height: 150px; }
}