/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container - Consistent across all sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.full-width {
    max-width: 100%;
    padding: 0;
}

/* Modern Header Styles */
.modern-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.3s ease;
}

.modern-header.scrolled .header-container {
    height: 60px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.mobile-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.mobile-logo-link:hover {
    transform: scale(1.02);
}


.modern-projector-svg {
    width: 55px;
    height: 55px;
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.modern-header.scrolled .modern-projector-svg {
    width: 35px;
    height: 35px;
    animation: none;
}

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

/* Logo Element Animations */
.projector-body {
    animation: bodyGlow 2s ease-in-out infinite alternate;
}

@keyframes bodyGlow {
    0% {
        filter: none;
    }
    100% {
        filter: brightness(1.1);
    }
}

.lens-housing {
    animation: lensRotate 4s linear infinite;
}

@keyframes lensRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.main-lens {
    animation: lensPulse 2s ease-in-out infinite;
}

@keyframes lensPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.light-beam-outer {
    animation: beamFlicker 1.5s ease-in-out infinite;
}

.light-beam-inner {
    animation: beamFlicker 1.5s ease-in-out infinite 0.2s;
}

.light-beam-core {
    animation: beamFlicker 1.5s ease-in-out infinite 0.4s;
}

@keyframes beamFlicker {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

.power-indicator {
    animation: powerBlink 2s ease-in-out infinite;
}

@keyframes powerBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.control-btn {
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    margin-top: 2px;
    font-family: 'Vazirmatn', 'Estedad', sans-serif;
    direction: rtl;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.modern-header.scrolled .brand-subtitle {
    font-size: 8px;
}

.brand-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    font-family: 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    direction: ltr;
    unicode-bidi: bidi-override;
    color: #555;
}

.modern-header.scrolled .brand-title {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.letter {
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    animation: letterFloat 3s ease-in-out infinite;
    font-weight: 900;
    position: relative;
}

.letter:nth-child(odd) {
    animation-delay: 0.1s;
}

.letter:nth-child(even) {
    animation-delay: 0.2s;
}

@keyframes letterFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
}

/* رنگ‌بندی حروف انگلیسی - فقط O قرمز */
.letter-3 { 
    color: #dc2626; /* O - قرمز */
}
.letter-8 { 
    color: #dc2626; /* O - قرمز */
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Vazirmatn', sans-serif;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    flex-direction: row !important;
    background: transparent;
}

.desktop-nav .nav-link:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.desktop-nav .nav-link.active {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    font-weight: 600;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

/* Products Menu */
.products-menu {
    position: relative;
}

.desktop-nav .products-link {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-direction: row !important;
}

.desktop-nav .products-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    order: 2;
}

.desktop-nav .products-menu:hover .products-link i {
    transform: rotate(180deg);
}

.products-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
    min-width: 220px;
    margin-top: 4px;
}

.products-menu:hover .products-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.products-dropdown-content {
    padding: 8px 0;
}

.products-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.15s ease;
}

.products-dropdown-item:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.dropdown-link:last-child {
    border-radius: 0 0 12px 12px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Header Action Buttons - Modern Minimal Design */
.header-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    justify-content: center;
}

.modern-header.scrolled .header-actions .action-btn {
    padding: 4px 8px;
    min-width: 75px;
}

.header-actions .action-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.header-actions .action-btn .btn-icon i {
    font-size: 14px;
    color: #374151;
    transition: all 0.2s ease;
}

.modern-header.scrolled .header-actions .action-btn .btn-icon i {
    font-size: 12px;
}

.header-actions .action-btn .btn-text {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.modern-header.scrolled .header-actions .action-btn .btn-text {
    font-size: 11px;
}

.header-actions .action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #dc3545;
    background: #dc3545;
}

.header-actions .action-btn:hover .btn-icon i,
.header-actions .action-btn:hover .btn-text {
    color: white;
}

/* Cart Button */
.header-actions .action-btn.cart-btn {
    background: none !important;
    border: none !important;
    color: inherit;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.header-actions .action-btn.cart-btn i {
    font-size: 18px;
}

/* Login Button */
.header-actions .login-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
}

/* Cart Badge */
.header-actions .cart-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
    border: 3px solid white;
    box-shadow: 0 3px 12px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
    z-index: 10;
    min-width: 20px;
    min-height: 18px;
    line-height: 1;
}

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

/* General cart-badge for other sections */
.cart-badge {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #4a4a4a;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-projector-svg {
    width: 35px;
    height: 35px;
}

.mobile-brand-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    direction: ltr;
    unicode-bidi: bidi-override;
    color: #555;
}

.mobile-brand-subtitle {
    font-size: 9px;
    font-weight: 500;
    color: #666;
    margin-top: 1px;
    font-family: 'Vazirmatn', 'Estedad', sans-serif;
    direction: rtl;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.mobile-letter {
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 900;
}

/* رنگ‌بندی حروف موبایل انگلیسی - فقط O قرمز */
.mobile-letter-3 { 
    color: #dc2626; /* O - قرمز */
}
.mobile-letter-8 { 
    color: #dc2626; /* O - قرمز */
}

.mobile-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: #f0f0f0;
    color: #ff4757;
}

.mobile-actions {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 80px;
    justify-content: center;
}

.mobile-action-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.mobile-action-btn .btn-icon i {
    font-size: 11px;
    color: #666;
    transition: all 0.3s ease;
}

.mobile-action-btn .btn-text {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.mobile-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-action-btn:hover .btn-icon i,
.mobile-action-btn:hover .btn-text {
    color: white;
}

.mobile-action-btn.cart-btn {
    background: none !important;
    border: none !important;
    color: inherit;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.mobile-action-btn.cart-btn i {
    font-size: 20px;
}

.mobile-action-btn.login-btn:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-color: #f093fb;
}

.mobile-action-btn .cart-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.5);
    animation: pulse 2s infinite;
    z-index: 10;
    min-width: 16px;
    min-height: 16px;
    line-height: 1;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.2s ease;
    border-right: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    border-right-color: #dc3545;
}

.mobile-nav-link.active {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-right-color: #dc3545;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mobile-dropdown .dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.mobile-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    background: rgba(220, 53, 69, 0.05);
    margin: 0 20px;
    border-radius: 8px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
}

.mobile-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.2s ease;
    border-right: 3px solid transparent;
}

.mobile-dropdown-link:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-right-color: #dc3545;
}

.mobile-dropdown-link:first-child {
    border-radius: 8px 8px 0 0;
}

.mobile-dropdown-link:last-child {
    border-radius: 0 0 8px 8px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}


/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

/* Actions Section */
.actions-section {
    flex-shrink: 0;
}

.animated-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projector-svg {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.projector-svg:hover {
    transform: scale(1.1);
}

/* SVG Animations */
.projector-body {
    animation: projectorPulse 3s ease-in-out infinite;
}

.projector-lens {
    animation: lensGlow 2s ease-in-out infinite alternate;
}

.lens-inner {
    animation: lensShine 1.5s ease-in-out infinite;
}

.lens-core {
    animation: corePulse 1s ease-in-out infinite;
}

.light-beam {
    animation: beamSweep 4s ease-in-out infinite;
    opacity: 0.6;
}

.light-beam-inner {
    animation: beamSweep 4s ease-in-out infinite 0.5s;
    opacity: 0.4;
}

.vent-hole {
    animation: ventBlink 2s ease-in-out infinite;
}

.vent-hole:nth-child(2) {
    animation-delay: 0.3s;
}

.vent-hole:nth-child(3) {
    animation-delay: 0.6s;
}

.power-btn {
    animation: powerBlink 3s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes projectorPulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

@keyframes lensGlow {
    0% { 
        filter: drop-shadow(0 0 5px rgba(255, 71, 87, 0.5));
    }
    100% { 
        filter: drop-shadow(0 0 15px rgba(255, 71, 87, 0.8));
    }
}

@keyframes lensShine {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes corePulse {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes beamSweep {
    0% { 
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% { 
        opacity: 0.6;
        transform: scaleX(1.2);
    }
    100% { 
        opacity: 0.3;
        transform: scaleX(0.8);
    }
}

@keyframes ventBlink {
    0%, 100% { 
        opacity: 0.3;
    }
    50% { 
        opacity: 0.7;
    }
}

@keyframes powerBlink {
    0%, 90%, 100% { 
        opacity: 0.4;
    }
    5%, 85% { 
        opacity: 0.8;
    }
}

.logo-content {
    color: #2c3e50;
}

.brand-name {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: #2c3e50;
}

.brand-slogan {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
    font-weight: 500;
    margin-top: 2px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 8px 35px 8px 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
    font-family: 'Vazirmatn', sans-serif;
    background: #fff;
    color: #333;
    direction: rtl;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #dc3545;
}

.search-input::placeholder {
    color: #666;
    font-size: 13px;
}

.search-btn {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 26px;
    height: 26px;
    background: #dc3545;
    border: none;
    border-radius: 3px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.search-btn:hover {
    background: #c82333;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: #ffffff;
    color: #2c3e50;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.cart-btn {
    border-color: #20c997;
    color: #20c997;
}

.cart-btn:hover {
    background: #20c997;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.3);
}

.login-btn {
    border-color: #dc3545;
    color: #dc3545;
}

.login-btn:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #2c3e50;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: #ffffff;
    border-bottom: 3px solid #dc3545;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
}


.mobile-menu-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #ffffff;
}

.mobile-logo-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.mobile-logo-icon-mini {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-projector-svg {
    width: 30px;
    height: 30px;
}

.mini-brand-name {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(135deg, #ff4757, #ff3742, #dc3545, #c82333);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #dc3545;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: none;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.mobile-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-projector-svg {
    width: 40px;
    height: 40px;
}

/* Beautiful Brand Name */
.beautiful-brand-name {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(135deg, #ff4757, #ff3742, #dc3545, #c82333);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

.beautiful-brand-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff4757, #ff3742, #dc3545, #c82333);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1px);
    opacity: 0.7;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
}

.beautiful-brand-name:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(255, 71, 87, 0.3);
}

/* Brand Name Animations */
@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% { 
        text-shadow: 0 4px 8px rgba(255, 71, 87, 0.4), 0 0 20px rgba(255, 71, 87, 0.2);
    }
}

.beautiful-brand-name {
    animation: gradientShift 3s ease-in-out infinite, textGlow 2s ease-in-out infinite;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.close-menu-btn:hover {
    background: #e9ecef;
    color: #dc3545;
}

/* Mobile Menu Items */
.mobile-menu-items {
    display: none;
}

.mobile-actions {
    display: flex;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #ffffff;
}



/* Simple Navigation */
.simple-nav {
    background: #f8f9fa;
    border-top: 3px solid #dc3545;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 999;
    transform: translateY(0);
    opacity: 1;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    flex: 1;
    text-align: center;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 10px;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link i {
    font-size: 16px;
    margin-bottom: 3px;
}

.nav-item.active .nav-link {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #dc3545;
}

.nav-link:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.top-utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Cart Button */
.cart-btn {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.cart-btn i {
    font-size: 16px;
    display: inline-block;
}

.cart-count {
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Phone Button */
.phone-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background-color: #5a6268;
    transform: scale(1.1);
}

.phone-btn i {
    font-size: 18px;
    display: inline-block;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-container:focus-within {
    border-color: #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.search-input {
    border: none;
    outline: none;
    padding: 8px 15px;
    font-size: 14px;
    font-family: 'Vazirmatn', sans-serif;
    background: transparent;
    color: #333;
    width: 200px;
    direction: rtl;
}

.search-input::placeholder {
    color: #6c757d;
    font-size: 13px;
}

/* Search Button */
.search-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: scale(1.1);
}

.search-btn i {
    font-size: 14px;
    display: inline-block;
}

/* Login Button */
.login-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
}

.login-btn i {
    font-size: 16px;
    display: inline-block;
}

/* Logo Section */
.logo-section {
    padding: 30px 0;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.logo-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
}

/* Main Navigation */
.main-navigation {
    background-color: #fff;
    border-top: 3px solid #dc3545;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
}

.nav-tab {
    position: relative;
    flex: 1;
    min-width: 120px;
    max-width: 200px;
}

.tab-link {
    display: block;
    padding: 18px 15px;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.tab-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #c82333);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.nav-tab.active .tab-indicator {
    transform: scaleX(1);
}

.nav-tab.active .tab-text {
    color: #dc3545;
    font-weight: 700;
}

.tab-link:hover .tab-text {
    color: #dc3545;
    transform: translateY(-2px);
}

.tab-link:hover .tab-indicator {
    transform: scaleX(1);
}

.tab-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-link:hover::before {
    opacity: 1;
}

.nav-tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(200, 35, 51, 0.1));
    z-index: 1;
}

/* Latest Products Section */
.latest-products-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.latest-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.latest-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-badge.new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.latest-product-card .product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

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

.latest-product-card .product-info {
    padding: 15px;
}

.latest-product-card .product-category {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 100px;
}

.latest-product-card .product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest-product-card .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.latest-product-card .stars {
    color: #ffc107;
    font-size: 14px;
}

.latest-product-card .rating-count {
    font-size: 12px;
    color: #6c757d;
}

.latest-product-card .product-price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.latest-product-card .price {
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
}

.latest-product-card .currency {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.latest-product-card .add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.latest-product-card .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #17a2b8, #138496);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.next-products-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.next-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.next-products-btn i {
    font-size: 16px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

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

.product-info {
    padding: 15px;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-price span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
}

.currency {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #17a2b8, #138496);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

/* Price styles for discount */
.old-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 14px;
    margin-left: 5px;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #dc3545;
}

/* Best Selling Products Section */
.best-selling-section {
    padding: 60px 0;
    background: white;
}

.best-selling-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.best-selling-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.best-selling-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.product-badge.sale {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.best-selling-card .product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

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

.best-selling-card .product-info {
    padding: 15px;
}

.best-selling-card .product-category {
    width: 100%;
    display: inline-block;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 100px;
}

.best-selling-card .product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-count {
    font-size: 12px;
    color: #6c757d;
}

.best-selling-card .product-price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.best-selling-card .price {
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
}

.best-selling-card .currency {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.best-selling-card .old-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 14px;
    margin-left: 5px;
}

.best-selling-card .new-price {
    font-size: 18px;
    font-weight: 700;
    color: #dc3545;
}

.best-selling-card .add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.best-selling-card .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #17a2b8, #138496);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.feature-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
    margin-right: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 20px;
}

.feature-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s ease;
}

/* Color variations */
.green-glow .feature-glow {
    background: linear-gradient(90deg, #28a745, #20c997);
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

.orange-glow .feature-glow {
    background: linear-gradient(90deg, #fd7e14, #ffc107);
    box-shadow: 0 0 20px rgba(253, 126, 20, 0.5);
}

.blue-glow .feature-glow {
    background: linear-gradient(90deg, #007bff, #17a2b8);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

/* Hover effects */
.feature-card:hover .feature-glow {
    height: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.green-glow:hover .feature-glow {
    box-shadow: 0 0 30px rgba(40, 167, 69, 0.7);
}

.orange-glow:hover .feature-glow {
    box-shadow: 0 0 30px rgba(253, 126, 20, 0.7);
}

.blue-glow:hover .feature-glow {
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.7);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.service-item {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotateGlow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-item:hover .service-glow {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
}

.service-svg {
    width: 120px;
    height: 120px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.service-item:hover .service-svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
    color: #3b82f6;
}

.service-content p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.service-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    border-radius: 50%;
    animation: floatParticle 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

.payment-service:hover .particle {
    background: linear-gradient(45deg, #10b981, #059669);
}

.shipping-service:hover .particle {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.security-service:hover .particle {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

/* Popular Brands Section */
.popular-brands-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.brand-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #43e97b, #38f9d7, #fa709a, #fee140);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.brand-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.brand-icon {
    margin-bottom: 20px;
    position: relative;
}

.brand-svg {
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    width: 100px;
    height: 100px;
}

.brand-item:hover .brand-svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.brand-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.brand-item:hover h3 {
    color: #667eea;
}

.brand-item p {
    font-size: 14px;
    color: #718096;
    margin: 0;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.projector-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projector-body {
    position: relative;
    width: 260px;
    height: 130px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(44, 62, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(120px) rotateX(10deg);
}

.projector-lens {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.3);
    border: 4px solid #bdc3c7;
}

.lens-ring {
    width: 75px;
    height: 75px;
    border: 5px solid #bdc3c7;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.lens-center {
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #ff6b35 0%, #f7931e 50%, #2c3e50 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 25px rgba(255, 107, 53, 0.8),
        inset 0 0 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(255, 107, 53, 1); }
}

.projector-light {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.floating-dots {
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.dot-1 {
    top: 30px;
    left: 40px;
    animation: float 3s ease-in-out infinite;
}

.dot-2 {
    top: 80px;
    right: 50px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.dot-3 {
    bottom: 100px;
    left: 30px;
    animation: float 3s ease-in-out infinite 1s;
}

.dot-4 {
    bottom: 50px;
    right: 30px;
    animation: float 3s ease-in-out infinite 1.5s;
}

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

.why-choose-text {
    padding-right: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.title-icon {
    width: 40px;
    height: 40px;
    background: #dc3545;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: white;
    font-size: 18px;
}

.section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.content-text {
    margin-bottom: 30px;
}

.content-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.guide-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.guide-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.projector-logo {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
    animation: projectorRotate 6s ease-in-out infinite;
    transform-origin: center center;
}

.projector-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    animation-play-state: paused;
}

@keyframes projectorRotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.footer-logo p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc3545;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #bdc3c7;
}

.contact-item a {
    color: #bdc3c7 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #dc3545 !important;
}

.contact-item i {
    width: 20px;
    color: #dc3545;
    font-size: 16px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.footer-contact-box:hover {
    transform: translateX(-3px);
}

.footer-contact-box i {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    font-size: 16px !important;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-box:hover i {
    background: rgba(255, 255, 255, 0.15);
}

.footer-contact-box span {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
    direction: rtl;
}

.footer .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.footer .social-link i {
    width: 20px !important;
    font-size: 16px !important;
}

.footer .social-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(52, 73, 94, 0.6);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-link-card:hover {
    background: rgba(52, 73, 94, 0.8);
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer .social-link-card span {
    flex: 1;
    text-align: right;
}

.footer .social-link-card i {
    width: 20px !important;
    font-size: 18px !important;
    flex-shrink: 0;
}

.footer .instagram:hover {
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
}

.footer .telegram:hover {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.footer .whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.footer .linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

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

.copyright p {
    font-size: 14px;
    color: #bdc3c7;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #dc3545;
}

/* Modern Header Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .brand-title {
        font-size: 20px;
    }
    
    .modern-projector-svg {
        width: 35px;
        height: 35px;
    }

    
    .header-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo-section {
        order: 1;
    }
    
    .actions-section {
        display: none; /* Hide desktop actions on mobile */
    }
    
    .logo-container {
        gap: 15px;
    }
    
    .projector-svg {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .brand-slogan {
        font-size: 12px;
    }
    
    .action-buttons {
        gap: 10px;
    }
    
    .action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    
    .simple-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .simple-nav.active {
        display: block;
    }
    
    .simple-nav.active .mobile-menu-items {
        display: block;
    }
    
    .simple-nav.active .mobile-menu-header {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
        background: #ffffff;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 15px 20px;
        justify-content: flex-start;
        flex-direction: row;
        gap: 15px;
    }
    
    .nav-link i {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .nav-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 15px;
    }
    
    .projector-svg {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .search-input {
        padding: 10px 45px 10px 12px;
        font-size: 13px;
    }
    
    .search-btn {
        width: 30px;
        height: 30px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .action-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .nav-item {
        min-width: calc(50% - 0px);
    }
    
    .nav-link {
        padding: 10px 5px;
        font-size: 10px;
    }
    
    .nav-link i {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .latest-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .best-selling-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .brands-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-utility-bar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .utility-left, .utility-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input {
        width: 150px;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
    }
    
    .nav-tab {
        flex: 1;
        min-width: 120px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .latest-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .best-selling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brands-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .projector-logo {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .products-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .latest-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .best-selling-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .brands-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .projector-logo {
        width: 70px;
        height: 70px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .logo-text h1 {
        font-size: 2rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::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" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.page-header-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    font-family: 'Vazirmatn', sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
}

.page-header-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.breadcrumb:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 0.8rem;
}

/* Floating Elements */
.page-header .floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatElement 15s ease-in-out infinite;
}

.page-header .floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.page-header .floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.page-header .floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

/* About Content */
.about-content {
    padding: 80px 0;
}

/* Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-logo-svg {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
    width: 280px;
    height: 280px;
}

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

/* Mission Section */
.mission-section {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.mission-card {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.mission-card h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

/* Features Section */
.features-section {
    margin-bottom: 100px;
    padding: 80px 0;
    background: white;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #64748b;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #e2e8f0;
    color: #475569;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    
    .about-logo-svg {
        width: 200px;
        height: 200px;
    }
    
    .mission-card {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .mission-card h3 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .features-section {
        padding: 60px 0;
        margin: 0 20px 60px;
    }
    
    .features-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-section {
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Vazirmatn', sans-serif;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Story Content */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.story-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #667eea;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-avatar i {
    font-size: 2rem;
    color: #666;
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Active Navigation Link */
.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

.mobile-nav-link.active {
    color: #667eea;
    font-weight: 600;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #667eea;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Vazirmatn', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Contact Info */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.contact-info-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card .card-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-info-card .card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-info-card .card-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-info-card .card-content a {
    color: #667eea;
    text-decoration: none;
}

.contact-info-card .card-content a:hover {
    text-decoration: underline;
}

/* Social Section */
.social-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.social-section .social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-section .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-section .social-link.instagram {
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
    color: white;
}

.social-section .social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: white;
}

.social-section .social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.social-section .social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.social-section .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #667eea;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.map-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-section .social-links {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 60px 20px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .social-section {
        padding: 20px;
    }
}

/* Products Page Styles */
.products-page {
    padding: 80px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #555;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.filter-option:hover {
    color: #667eea;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.filter-option span {
    font-size: 0.9rem;
}

/* Price Range */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e1e5e9;
    outline: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: none;
}

.price-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

/* Filter Buttons */
.apply-filters-btn,
.clear-filters-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    font-family: 'Vazirmatn', sans-serif;
}

.apply-filters-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.clear-filters-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e1e5e9;
}

.clear-filters-btn:hover {
    background: #e9ecef;
}

/* Products Main */
.products-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.products-count {
    font-size: 0.9rem;
    color: #666;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.product-badge.sale {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.product-badge:not(.new):not(.sale) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.8rem;
    color: #666;
}

.product-price {
    margin-bottom: 15px;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc2626;
    margin-left: 10px;
}

.currency {
    font-size: 0.9rem;
    color: #666;
    margin-right: 5px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 20px;
    border: 1px solid #e1e5e9;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 1px solid #e1e5e9;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Vazirmatn', sans-serif;
}

.pagination-number:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination-number.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Products Page Responsive */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filters-sidebar {
        position: static;
        order: 2;
    }
    
    .products-main {
        order: 1;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        padding: 20px;
    }
    
    .products-header {
        padding: 15px 20px;
    }
}

/* Product Detail Page Styles */
.product-detail {
    padding: 80px 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.image-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #667eea;
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-category {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.review-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
}

.review-link:hover {
    text-decoration: underline;
}

/* Price Section */
.product-price-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.currency {
    font-size: 1.2rem;
    color: #666;
}

.price-info {
    font-size: 0.9rem;
    color: #666;
}

/* Features */
.product-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
}

.features-list i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector label {
    font-weight: 600;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: white;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Vazirmatn', sans-serif;
}

.add-to-cart-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.add-to-cart-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.buy-now-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.wishlist-compare {
    display: flex;
    gap: 15px;
}

.wishlist-btn,
.compare-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e1e5e9;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    font-family: 'Vazirmatn', sans-serif;
}

.wishlist-btn:hover,
.compare-btn:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f8f9fa;
}

/* Shipping Info */
.product-shipping {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #555;
}

.shipping-info i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Product Tabs */
.product-tabs {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.tabs-nav {
    display: flex;
    background: white;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: #f8f9fa;
    color: #333;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: #f8f9fa;
}

.tabs-content {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.tab-panel {
    display: none;
    padding: 40px;
}

.tab-panel.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.tab-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #333;
}

.tab-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.tab-content ul {
    padding-right: 20px;
    color: #555;
}

.tab-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Specifications Table */
.specs-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: center;
}

.spec-label {
    font-weight: 600;
    color: #333;
}

.spec-value {
    color: #666;
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 15px;
}

.rating-bar span:first-child {
    font-size: 0.9rem;
    color: #666;
}

.bar {
    height: 8px;
    background: #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transition: width 0.3s ease;
}

.rating-bar span:last-child {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-rating {
    color: #fbbf24;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.review-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Shipping Info Grid */
.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Related Products */
.related-products {
    padding: 80px 0;
}

/* Product Detail Responsive */
@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .wishlist-compare {
        flex-direction: column;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-panel {
        padding: 25px;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .spec-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .shipping-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-detail {
        padding: 40px 0;
    }
    
    .main-image {
        height: 250px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .tab-panel {
        padding: 20px;
    }
}

/* Compare Page Styles */
.compare-section {
    padding: 80px 0;
}

.compare-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.compare-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.compare-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.clear-all-btn {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.clear-all-btn:hover {
    background: #e9ecef;
    color: #333;
}

.add-product-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Vazirmatn', sans-serif;
}

.add-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Compare Table */
.compare-table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

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

.compare-header {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    background: #f8f9fa;
}

.compare-row {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    border-bottom: 1px solid #e1e5e9;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.product-header {
    flex-direction: column;
    gap: 15px;
}

.product-card-compare {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card-compare:hover {
    transform: translateY(-3px);
}

.remove-product-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.remove-product-btn:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

.product-image-compare {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.product-image-compare img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title-compare {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

.product-price-compare {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.product-price-compare .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.product-price-compare .currency {
    font-size: 0.8rem;
    color: #666;
}

.product-rating-compare {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating-compare .stars {
    color: #fbbf24;
    font-size: 0.8rem;
}

.product-rating-compare .rating-count {
    font-size: 0.7rem;
    color: #666;
}

.view-product-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.view-product-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.feature-name {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    justify-content: flex-start;
    text-align: right;
}

.feature-value {
    color: #555;
    font-size: 0.9rem;
}

.action-row {
    background: #f8f9fa;
}

.add-to-cart-compare-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.add-to-cart-compare-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Comparison Summary */
.comparison-summary {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.comparison-summary h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.summary-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-3px);
}

.summary-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.summary-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.summary-item .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
}

.summary-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
}

/* Recommended Products */
.recommended-products {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Compare Page Responsive */
@media (max-width: 1024px) {
    .compare-header,
    .compare-row {
        grid-template-columns: 150px repeat(3, 1fr);
    }
    
    .compare-cell {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .compare-actions {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .compare-header,
    .compare-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .compare-cell {
        padding: 15px;
        border-bottom: 1px solid #e1e5e9;
    }
    
    .feature-header {
        background: #667eea;
        color: white;
    }
    
    .feature-name {
        background: #f8f9fa;
        color: #333;
        font-weight: 600;
        border-bottom: 2px solid #e1e5e9;
    }
    
    .product-header {
        background: #f8f9fa;
        border-bottom: 2px solid #e1e5e9;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .compare-section {
        padding: 40px 0;
    }
    
    .compare-actions {
        padding: 20px;
    }
    
    .comparison-summary {
        padding: 25px;
    }
    
    .product-card-compare {
        padding: 10px;
    }
    
    .product-image-compare {
        width: 60px;
        height: 60px;
    }
}

/* Category Page Styles */
.category-content {
    padding: 80px 0;
}

.category-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.category-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-range input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.price-range input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    transition: color 0.3s ease;
}

.checkbox-item:hover {
    color: #667eea;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.apply-filters-btn,
.clear-filters-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.apply-filters-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.clear-filters-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e1e5e9;
}

.clear-filters-btn:hover {
    background: #e9ecef;
    color: #333;
}

.category-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-info {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.category-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-options label {
    font-weight: 600;
    color: #333;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #667eea;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

/* Product badges - only for main page */
.latest-products .product-badge,
.best-selling .product-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.latest-products .product-badge.new,
.best-selling .product-badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.latest-products .product-badge.sale,
.best-selling .product-badge.sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.latest-products .product-badge.bestseller,
.best-selling .product-badge.bestseller {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.latest-products .product-badge.portable,
.best-selling .product-badge.portable {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Category page badges */
.category-content .product-badges .badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-content .product-badges .badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.category-content .product-badges .badge.sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.category-content .product-badges .badge.bestseller {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.category-content .product-badges .badge.portable {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-brand {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    margin-bottom: 15px;
}

.product-title a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #667eea;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.8rem;
    color: #666;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    padding: 4px 10px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-actions-bottom {
    display: flex;
    gap: 10px;
}

.add-to-cart-btn {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Vazirmatn', sans-serif;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Vazirmatn', sans-serif;
}

.page-btn:hover:not(:disabled) {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.page-number:hover,
.page-number.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Category Page Responsive */
@media (max-width: 1024px) {
    .category-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .category-sidebar {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .category-content {
        padding: 40px 0;
    }
    
    .category-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-sidebar {
        position: static;
        order: 2;
    }
    
    .category-main {
        order: 1;
    }
    
    .products-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .category-stats {
        justify-content: space-between;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-sidebar {
        padding: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .page-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;

    min-height: 100vh;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.contact-info-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.contact-info-full {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    text-align: right;
}

.contact-info-item i {
    width: 55px;
    height: 55px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-3px);
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-info-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-full .contact-info-text {
    text-align: right;
}

.contact-info-full .contact-info-text h4,
.contact-info-full .contact-info-text p {
    text-align: right;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.contact-card:hover .contact-icon::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
}

.contact-details h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.contact-details p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
}

.social-section {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.social-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.social-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-content .social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-content .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-content .social-link:hover::before {
    left: 100%;
}

.contact-content .social-link.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f56040 100%);
    color: white;
}

.contact-content .social-link.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ed9 50%, #40a9ff 100%);
    color: white;
}

.contact-content .social-link.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #20c997 100%);
    color: white;
}

.contact-content .social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 50%, #0ea5e9 100%);
    color: white;
}

.contact-content .social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
    background: white;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.form-header p {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f8fafc;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 500;
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    padding: 20px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Vazirmatn', sans-serif;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.map-section {
    margin-bottom: 80px;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.map-header p {
    color: #666;
    font-size: 1rem;
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
}

.map-content {
    text-align: center;
    color: #64748b;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #667eea;
}

.map-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #475569;
}

.map-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.map-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.faq-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.faq-header p {
    color: #666;
    font-size: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.notification-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-wrapper {
        padding: 30px;
    }
    
    .contact-info-grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 25px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-layout {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .contact-info-wrapper {
        padding: 25px;
        gap: 25px;
    }
    
    .contact-info-grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .contact-info-item {
        gap: 12px;
    }
    
    .contact-info-full {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-full .contact-info-text,
    .contact-info-full .contact-info-text h4,
    .contact-info-full .contact-info-text p {
        text-align: center;
    }
    
    .contact-info-item i {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .contact-form-section,
    .map-container,
    .faq-section {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .contact-cards {
        gap: 15px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-form-section {
        padding: 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .map-placeholder {
        height: 200px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}
