@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    direction: rtl;
    background: #050608;
    color: #f5f5f5;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 6, 8, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.header-contact a {
    color: #aaa;
    text-decoration: none;
    margin-right: 12px;
    transition: color 0.2s;
}

.header-contact a:hover {
    color: #fff;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    filter: brightness(1.2) contrast(1.15) drop-shadow(0 0 8px rgba(255, 75, 43, 0.4));
    transform: scale(1.05);
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.logo-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #aaa;
    display: block;
}

/* Logo Image Styling - Theme Integration */
.logo-image {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    /* تطبیق رنگ با تم سایت - فیلترهای رنگی */
    filter: 
        brightness(1.1) 
        contrast(1.1) 
        saturate(1.2)
        drop-shadow(0 2px 4px rgba(255, 75, 43, 0.2));
    transition: all 0.3s ease;
    padding: 4px;
}

.logo:hover .logo-image {
    filter: 
        brightness(1.2) 
        contrast(1.15) 
        saturate(1.3)
        drop-shadow(0 0 12px rgba(255, 75, 43, 0.6));
    transform: scale(1.05);
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 120px;
    }
    
    .logo-title {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
        max-width: 100px;
    }
    
    .logo-text {
        display: none;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4b2b, #ffca28);
    transition: width 0.2s ease-out;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: all 0.2s;
}

/* Messages */
.messages-container {
    padding: 16px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4caf50;
}

.alert-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #f44336;
}

/* Hero Section */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: #050608;
    padding: 100px 0;
    margin-bottom: 60px;
    overflow: hidden;
    cursor: none;
}

/* Mouse Light Effect */
.hero-mouse-light {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 75, 43, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
    filter: blur(60px);
}

.hero-section:hover .hero-mouse-light {
    opacity: 1;
}

/* Animated Background Particles */
.hero-animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 75, 43, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 75, 43, 0.8), 0 0 20px rgba(255, 75, 43, 0.4);
    animation: particleFloat 15s ease-in-out infinite;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.hero-particle:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-particle:nth-child(2) {
    top: 20%;
    right: 80%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.hero-particle:nth-child(3) {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.hero-particle:nth-child(4) {
    top: 80%;
    right: 70%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.hero-particle:nth-child(5) {
    top: 40%;
    right: 50%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.hero-particle:nth-child(6) {
    top: 15%;
    right: 60%;
    animation-delay: 0.5s;
    animation-duration: 17s;
}

.hero-particle:nth-child(7) {
    top: 70%;
    right: 20%;
    animation-delay: 1.5s;
    animation-duration: 11s;
}

.hero-particle:nth-child(8) {
    top: 30%;
    right: 90%;
    animation-delay: 2.5s;
    animation-duration: 18s;
}

.hero-particle:nth-child(9) {
    top: 50%;
    right: 15%;
    animation-delay: 3.5s;
    animation-duration: 14s;
}

.hero-particle:nth-child(10) {
    top: 90%;
    right: 40%;
    animation-delay: 4.5s;
    animation-duration: 16s;
}

.hero-particle:nth-child(11) {
    top: 25%;
    right: 45%;
    animation-delay: 1.2s;
    animation-duration: 13s;
}

.hero-particle:nth-child(12) {
    top: 65%;
    right: 85%;
    animation-delay: 2.8s;
    animation-duration: 15s;
}

.hero-particle:nth-child(13) {
    top: 5%;
    right: 35%;
    animation-delay: 0.8s;
    animation-duration: 17s;
}

.hero-particle:nth-child(14) {
    top: 75%;
    right: 55%;
    animation-delay: 3.2s;
    animation-duration: 12s;
}

.hero-particle:nth-child(15) {
    top: 45%;
    right: 75%;
    animation-delay: 1.8s;
    animation-duration: 19s;
}

/* Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 75, 43, 0.6), transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 202, 40, 0.5), transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 75, 43, 0.4), transparent 70%);
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    animation-delay: 10s;
    animation-duration: 30s;
}

/* Animated Grid Lines */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 75, 43, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 75, 43, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 75, 43, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 202, 40, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-slider {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ff4b2b, #ffca28, #ff4b2b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 75, 43, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 32px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Sections */
/* Motorcycle Filter Section */
.motorcycle-filter-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.filter-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-header-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.filter-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    border-radius: 12px;
    flex-shrink: 0;
}

.filter-header-text {
    flex: 1;
}

.filter-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.filter-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.filter-more-link {
    color: #ff4b2b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 2px solid #ff4b2b;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-right: 16px;
}

.filter-more-link:hover {
    color: #ff416c;
    border-bottom-color: #ff416c;
}

.filter-form {
    width: 100%;
}

.filter-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #ff4b2b;
    box-shadow: 0 0 0 3px rgba(255, 75, 43, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.filter-select:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.filter-select option {
    padding: 8px;
    background: #2d2d2d;
    color: #fff;
}

.filter-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.filter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.filter-input:focus {
    outline: none;
    border-color: #ff4b2b;
    box-shadow: 0 0 0 3px rgba(255, 75, 43, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.filter-input:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Ensure number inputs also have dark theme */
.filter-select[type="number"] {
    background-image: none;
    padding-right: 16px;
}

.filter-select[type="number"]::-webkit-inner-spin-button,
.filter-select[type="number"]::-webkit-outer-spin-button {
    filter: invert(1);
    opacity: 0.7;
}

.filter-submit-group {
    display: flex;
    align-items: flex-end;
}

.filter-submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.filter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 43, 0.4);
}

.filter-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .filter-card {
        padding: 32px 24px;
    }
    
    .filter-inputs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Motorcycle Hero Video Section */
.motorcycle-hero-video-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050608 50%, #0a0a0a 100%);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.motorcycle-hero-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 75, 43, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 75, 43, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.motorcycle-hero-video-section > * {
    position: relative;
    z-index: 1;
}

.motorcycle-hero-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    min-height: 600px;
    direction: rtl;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
    position: relative;
}

.motorcycle-hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 75, 43, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.motorcycle-hero-left {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.motorcycle-hero-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 75, 43, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.motorcycle-hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.motorcycle-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 550px;
    filter: drop-shadow(0 20px 40px rgba(255, 75, 43, 0.3));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.motorcycle-hero-left:hover .motorcycle-hero-image img {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 30px 60px rgba(255, 75, 43, 0.5));
}

.motorcycle-hero-right {
    background: linear-gradient(135deg, #0f0f0f 0%, #050505 50%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.motorcycle-hero-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255, 75, 43, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.motorcycle-hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="smoke" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23smoke)"/></svg>');
    opacity: 0.3;
}

.motorcycle-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.motorcycle-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 40px 0;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 
        0 0 20px rgba(255, 75, 43, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.motorcycle-hero-title .highlight {
    color: #ff4b2b;
    position: relative;
    display: inline-block;
}

.motorcycle-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff4b2b, transparent);
    opacity: 0.5;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1);
    }
}

.motorcycle-hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 2;
    margin: 0 0 50px 0;
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.motorcycle-hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff4b2b 0%, #ff6b3d 100%);
    color: #fff;
    padding: 18px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(255, 75, 43, 0.5),
        0 0 0 0 rgba(255, 75, 43, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.motorcycle-hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.motorcycle-hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.motorcycle-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(255, 75, 43, 0.6),
        0 0 20px rgba(255, 75, 43, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.motorcycle-hero-btn:active {
    transform: translateY(-1px);
}

.motorcycle-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 43, 0.4);
}

.motorcycle-videos-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    direction: rtl;
}

.motorcycle-video-thumbnail {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    background: #0a0a0a;
}

.motorcycle-video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 75, 43, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.motorcycle-video-thumbnail:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 75, 43, 0.3),
        0 0 0 1px rgba(255, 75, 43, 0.2);
}

.motorcycle-video-thumbnail:hover::before {
    opacity: 1;
}

.motorcycle-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.motorcycle-video-thumbnail:hover img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 2;
}

.motorcycle-video-thumbnail:hover .video-thumbnail-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.video-play-btn:hover {
    transform: scale(1.15);
}

.video-play-btn:active {
    transform: scale(1.05);
}

.video-play-btn svg {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    transition: filter 0.4s ease;
}

.video-play-btn:hover svg {
    filter: drop-shadow(0 6px 20px rgba(255, 75, 43, 0.6));
}

.video-play-btn svg circle {
    transition: fill 0.4s ease;
}

.video-play-btn:hover svg circle {
    fill: rgba(255, 255, 255, 1);
}

.video-play-btn:hover svg path {
    fill: #fff;
    transition: fill 0.4s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .motorcycle-hero-container {
        grid-template-columns: 1fr;
    }
    
    .motorcycle-hero-left {
        min-height: 400px;
    }
    
    .motorcycle-hero-right {
        padding: 40px 30px;
    }
    
    .motorcycle-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .motorcycle-hero-video-section {
        padding: 40px 0;
    }
    
    .motorcycle-hero-container {
        padding: 0 16px;
    }
    
    .motorcycle-hero-left {
        padding: 30px 20px;
        min-height: 300px;
    }
    
    .motorcycle-hero-right {
        padding: 30px 20px;
    }
    
    .motorcycle-hero-title {
        font-size: 1.5rem;
    }
    
    .motorcycle-hero-text {
        font-size: 0.9rem;
    }
    
    .motorcycle-videos-section {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    
    .motorcycle-filter-section {
        margin-top: -40px;
        padding: 40px 0;
    }
    
    .filter-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .filter-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .filter-more-link {
        margin-right: 0;
        align-self: flex-start;
    }
    
    .filter-inputs {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .filter-title {
        font-size: 1.5rem;
    }
    
    .filter-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.section-link {
    color: #ff4b2b;
    text-decoration: none;
    font-weight: 500;
}

.section-link:hover {
    text-decoration: underline;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Products Scroll (Horizontal Scroll for Featured Products) */
.products-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    padding-bottom: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 75, 43, 0.5) rgba(255, 255, 255, 0.1);
}

.products-scroll::-webkit-scrollbar {
    height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 75, 43, 0.5);
    border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 75, 43, 0.7);
}

.products-scroll .product-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 75, 43, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.product-placeholder.large {
    height: 400px;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.badge-new {
    background: #4caf50;
    color: #fff;
}

.badge-popular {
    background: #ff4b2b;
    color: #fff;
}

.badge-featured {
    background: #ffca28;
    color: #000;
}

.product-info {
    padding: 16px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
}

.product-specs {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffca28;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.category-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 75, 43, 0.3);
}

.category-image {
    width: 100%;
    height: 120px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

/* Main Categories Grid */
.main-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.main-category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.main-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 75, 43, 0.5);
}

.main-category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    margin-bottom: 24px;
}

.main-category-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.main-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-category-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

.main-category-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.sub-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-category-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sub-category-link:hover {
    background: rgba(255, 75, 43, 0.2);
    border-color: rgba(255, 75, 43, 0.5);
    color: #ff4b2b;
    transform: translateY(-2px);
}

.sub-category-link.more-link {
    color: #ff4b2b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .main-category-card {
        padding: 24px;
    }
    
    .sub-categories {
        gap: 8px;
    }
    
    .sub-category-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Brands */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.brands-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    padding-bottom: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 75, 43, 0.5) rgba(255, 255, 255, 0.1);
}

.brands-scroll::-webkit-scrollbar {
    height: 8px;
}

.brands-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.brands-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 75, 43, 0.5);
    border-radius: 4px;
}

.brands-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 75, 43, 0.7);
}

.brands-scroll .brand-card {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 200px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.brand-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.brand-card-large {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-card-large:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.brand-name-large {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.brand-description {
    color: #aaa;
    margin-top: 12px;
}

.brand-logo-header {
    max-width: 120px;
    margin-bottom: 16px;
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.article-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 75, 43, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    color: #ff4b2b;
    margin-bottom: 12px;
}

.article-type-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 75, 43, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    color: #ff4b2b;
    margin-bottom: 16px;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #fff;
}

.article-summary {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #777;
}

.article-detail {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 32px;
}

.article-featured-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Page Header */
.page-header {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin: 0;
}

/* Products Page */
.products-page {
    padding: 40px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
}

.filter-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-range input {
    flex: 1;
}

.products-content {
    min-height: 400px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.products-count {
    color: #aaa;
    font-size: 0.9rem;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Forms */
.form-control {
    width: 100%;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-control:focus {
    outline: none;
    border-color: #ff4b2b;
    background: rgba(255, 255, 255, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
}

.form-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 4px;
}

.filter-form-inline {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.filter-form-inline .form-group {
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
}

/* Product Detail */
.product-detail-page {
    padding: 40px 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-gallery {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    cursor: pointer;
}

.gallery-thumb.active {
    border-color: #ff4b2b;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-breadcrumb {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 16px;
}

.product-breadcrumb a {
    color: #ff4b2b;
    text-decoration: none;
}

.product-specs-summary {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.spec-item {
    display: flex;
    gap: 8px;
}

.spec-label {
    color: #aaa;
}

.spec-value {
    color: #fff;
    font-weight: 600;
}

.product-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #ffca28;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: 400;
}

.product-order-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.product-order-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #fff;
}

.tab-btn.active {
    color: #ff4b2b;
    border-bottom-color: #ff4b2b;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner {
    padding: 24px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td:first-child {
    color: #aaa;
    width: 40%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dealers */
.dealers-list {
    display: grid;
    gap: 20px;
}

.dealer-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dealer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dealer-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.dealer-type {
    padding: 4px 12px;
    background: rgba(255, 75, 43, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    color: #ff4b2b;
}

.dealer-info {
    color: #aaa;
}

.dealer-location {
    margin-bottom: 12px;
    line-height: 1.8;
}

.dealer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dealer-contact a {
    color: #ff4b2b;
    text-decoration: none;
}

.dealer-mini {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 8px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-card h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
}

.service-card p {
    color: #aaa;
    margin: 0;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-section,
.contact-info-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info {
    margin-bottom: 32px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    color: #ff4b2b;
}

.nearby-dealers {
    margin-top: 24px;
}

/* About, Warranty */
.about-content,
.warranty-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content h2,
.warranty-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.about-content h3,
.warranty-content h3 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #ff4b2b;
}

.about-content ul,
.warranty-content ul {
    padding-right: 24px;
}

.about-content li,
.warranty-content li {
    margin-bottom: 8px;
}

.warranty-actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s;
}

.pagination-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 75, 43, 0.3);
}

.pagination-link.active {
    background: #ff4b2b;
    border-color: #ff4b2b;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* Footer */
.site-footer {
    margin-top: 60px;
    padding: 40px 0 16px;
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    font-size: 0.9rem;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: 
        brightness(1.1) 
        contrast(1.1) 
        saturate(1.2)
        drop-shadow(0 2px 4px rgba(255, 75, 43, 0.2));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    filter: 
        brightness(1.2) 
        contrast(1.15) 
        saturate(1.3)
        drop-shadow(0 0 12px rgba(255, 75, 43, 0.6));
    transform: scale(1.05);
}

.footer-col h4 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ff4b2b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 24px;
    padding-top: 12px;
    font-size: 0.8rem;
    color: #777;
    text-align: center;
}

/* Cart Icon in Header */
.cart-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    margin-left: 12px;
    transition: transform 0.2s;
}

.cart-icon-link:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -4px;
    left: -4px;
    background: #ff4b2b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
}

.cart-icon-small {
    margin-left: 8px;
}

/* Cart Page */
.cart-page {
    padding: 40px 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.cart-items h2,
.cart-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 75, 43, 0.3);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 150px 120px 50px;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.cart-item-info h3 a {
    color: #fff;
    text-decoration: none;
}

.cart-item-info h3 a:hover {
    color: #ff4b2b;
}

.cart-item-specs {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 1rem;
    color: #ffca28;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-quantity label {
    font-size: 0.85rem;
    color: #aaa;
}

.quantity-input {
    width: 80px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    text-align: center;
}

.cart-item-total {
    text-align: left;
}

.item-total-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffca28;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove {
    width: 32px;
    height: 32px;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    border-radius: 50%;
    color: #f44336;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: rgba(244, 67, 54, 0.3);
    transform: scale(1.1);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 75, 43, 0.3);
}

.total-price {
    font-size: 1.5rem;
    color: #ffca28;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.cart-note {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.85rem;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 24px;
}

.empty-cart h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.empty-cart p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.product-add-to-cart {
    margin: 24px 0;
}

.add-to-cart-form {
    margin: 0;
}

.add-to-cart-form .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.2);
}

.add-to-cart-form .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart-form .btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 43, 0.4);
}

.add-to-cart-form .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 75, 43, 0.3);
}

.cart-icon-small {
    display: inline-block;
    transition: transform 0.3s ease;
}

.add-to-cart-form .btn:hover .cart-icon-small {
    transform: scale(1.2) rotate(-10deg);
}

/* Product Card Add to Cart Button */
.product-card-actions {
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    margin-top: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover .product-card-actions {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-add-btn {
    width: 100%;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 75, 43, 0.2), rgba(255, 202, 40, 0.2));
    border: 1px solid rgba(255, 75, 43, 0.4);
    border-radius: 8px;
    color: #ff4b2b;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 75, 43, 0.1);
}

.product-card-add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: right 0.5s ease;
}

.product-card-add-btn:hover::before {
    right: 100%;
}

.product-card-add-btn:hover {
    background: linear-gradient(135deg, rgba(255, 75, 43, 0.35), rgba(255, 202, 40, 0.35));
    border-color: rgba(255, 75, 43, 0.7);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.3);
}

.product-card-add-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(255, 75, 43, 0.2);
}

.product-card-add-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.product-card-add-btn:hover span {
    transform: scale(1.15) rotate(-5deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 240px 1fr;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 80px 0;
        cursor: default;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .orb-1,
    .orb-2,
    .orb-3 {
        width: 250px;
        height: 250px;
        filter: blur(60px);
    }
    
    .hero-mouse-light {
        display: none;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .products-scroll .product-card {
        flex: 0 0 250px;
        min-width: 250px;
        max-width: 250px;
        min-height: 380px;
    }
    
    .product-card {
        min-height: 380px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 16px;
    }
    
    .cart-item-quantity,
    .cart-item-total,
    .cart-item-actions {
        grid-column: 1 / -1;
    }
    
    .cart-item-quantity {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .cart-summary {
        position: static;
    }
}

/* Auth Pages */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(10px);
    overflow: hidden;
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.auth-tab {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.auth-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.auth-tab.active {
    color: #ff4b2b;
    background: rgba(255, 75, 43, 0.1);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff4b2b, #ffca28);
}

.auth-tab-content {
    display: none;
    padding: 40px;
}

.auth-tab-content.active {
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 0;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff4b2b, #ffca28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.auth-subtitle {
    color: #ccc;
    font-size: 0.95rem;
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.auth-form {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group .form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #ff4b2b;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 75, 43, 0.1);
}

.form-error {
    margin-top: 6px;
    color: #ff4b2b;
    font-size: 0.85rem;
}

.form-error span {
    display: block;
}

.form-help {
    display: block;
    margin-top: 6px;
    color: #999;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 8px;
}

.auth-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: #ccc;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #ff4b2b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #ffca28;
}

/* Header Auth Links */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-auth {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff4b2b, #ffca28);
    color: #050608;
    border: none;
    display: inline-block;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.3);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-logout {
    padding: 8px 16px;
    background: rgba(255, 75, 43, 0.2);
    color: #ff4b2b;
    border: 1px solid rgba(255, 75, 43, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(255, 75, 43, 0.3);
    border-color: rgba(255, 75, 43, 0.5);
}

@media (max-width: 768px) {
    .auth-container {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-auth {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .auth-tab-content {
        padding: 32px 24px;
    }
    
    .user-menu {
        flex-direction: column;
        gap: 8px;
    }
}

/* Profile Pages */
.profile-page {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.profile-header {
    margin-bottom: 32px;
}

.profile-nav {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-nav-item {
    padding: 12px 24px;
    text-decoration: none;
    color: #999;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.profile-nav-item:hover {
    color: #fff;
}

.profile-nav-item.active {
    color: #ff4b2b;
    border-bottom-color: #ff4b2b;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}

.profile-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.profile-section.full-width {
    grid-column: 1 / -1;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.avatar-preview {
    margin-bottom: 16px;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 75, 43, 0.3);
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.address-list-mini,
.order-list-mini {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.address-list-mini li,
.order-list-mini li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.address-list-mini li:last-child,
.order-list-mini li:last-child {
    border-bottom: none;
}

.order-list-mini li a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

.status-pending {
    background: rgba(255, 202, 40, 0.2);
    color: #ffca28;
}

.status-confirmed {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.status-processing {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.status-shipped {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.status-delivered {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.status-cancelled {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.order-date {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 4px;
}

/* Address Cards */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.address-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.address-card:hover {
    border-color: rgba(255, 75, 43, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.address-card.default {
    border-color: rgba(255, 75, 43, 0.5);
    background: rgba(255, 75, 43, 0.05);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.address-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.address-badge {
    padding: 4px 12px;
    background: rgba(255, 75, 43, 0.2);
    color: #ff4b2b;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.address-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 8px;
}

.address-meta {
    color: #999;
    font-size: 0.9rem;
    margin: 4px 0;
}

.address-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
}

.btn-danger {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn-danger:hover {
    background: rgba(244, 67, 54, 0.3);
    border-color: rgba(244, 67, 54, 0.5);
}

.inline-form {
    display: inline;
}

/* Order Cards */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.order-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: rgba(255, 75, 43, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.order-info {
    flex: 1;
}

.order-number {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
}

.order-body {
    margin-bottom: 16px;
}

.order-items-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.order-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff4b2b;
}

.order-actions {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status-badge {
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Order Detail */
.order-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-detail-header h2 {
    margin: 0 0 8px 0;
    color: #fff;
}

.order-section {
    margin-bottom: 32px;
}

.order-section .section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.info-grid div {
    color: #ccc;
}

.order-items-table {
    overflow-x: auto;
}

.order-items-table table {
    width: 100%;
    border-collapse: collapse;
}

.order-items-table th,
.order-items-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-items-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: #fff;
}

.order-items-table tfoot td {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
}

.order-items-table a {
    color: #ff4b2b;
    text-decoration: none;
}

.order-items-table a:hover {
    text-decoration: underline;
}

.delete-confirm {
    text-align: center;
    padding: 40px;
}

.delete-confirm h2 {
    margin-bottom: 24px;
    color: #fff;
}

.address-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: right;
}

.address-preview h3 {
    color: #fff;
    margin-bottom: 12px;
}

.address-preview p {
    color: #ccc;
    margin: 8px 0;
}

.delete-form {
    margin-top: 32px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #e0e0e0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.user-name {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.user-name:hover {
    color: #ff4b2b;
}

/* Checkout Page */
.checkout-page {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    margin-top: 32px;
}

.checkout-form-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.checkout-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-section .section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-card {
    display: block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 75, 43, 0.3);
}

.payment-method-card.active {
    background: rgba(255, 75, 43, 0.1);
    border-color: rgba(255, 75, 43, 0.5);
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.2);
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.payment-info h3 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.payment-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
}

.checkout-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.summary-card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #fff;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-info strong {
    font-size: 0.9rem;
    color: #fff;
}

.item-info span {
    font-size: 0.85rem;
    color: #aaa;
}

.item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffca28;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff4b2b;
}

.checkout-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 8px;
}

.payment-cash {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.payment-installment {
    background: rgba(255, 202, 40, 0.2);
    color: #ffca28;
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-nav {
        flex-wrap: wrap;
    }
    
    .profile-nav-item {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .order-items-table {
        font-size: 0.85rem;
    }
    
    .order-items-table th,
    .order-items-table td {
        padding: 8px;
    }
}

/* Motorcycle Parts Categories Section */
.parts-categories-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.parts-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.parts-category-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.parts-category-card:first-child {
    grid-column: 1;
    grid-row: 1;
}

.parts-category-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.parts-category-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.parts-category-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.parts-category-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.parts-category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.parts-category-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 250px;
}

.parts-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    transition: background 0.3s ease;
}

.parts-category-card:hover .parts-category-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.parts-category-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Vazirmatn', sans-serif;
}

/* Specific category backgrounds - Dark smoky backgrounds like the image */
.parts-category-accessories .parts-category-image {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        url('../images/accessories-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parts-category-light .parts-category-image {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        url('../images/light-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parts-category-engine {
    aspect-ratio: auto;
    min-height: 500px;
}

.parts-category-engine .parts-category-image {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        url('../images/engine-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parts-category-suspension .parts-category-image {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        url('../images/suspension-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parts-category-wheels .parts-category-image {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        url('../images/wheels-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Remove icons - using only background images */

/* Featured Products with Tabs Section */
.featured-products-tabs {
    padding: 80px 0;
    background: #0a0b0d;
}

.featured-products-tabs .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-products-tabs .section-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 500;
}

.featured-products-tabs .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.featured-products-tabs .section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.products-tabs {
    width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.tab-btn.active {
    color: #ff4b2b;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-category {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-viewed {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .featured-products-tabs .section-title {
        font-size: 2rem;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .parts-categories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .parts-category-card:first-child {
        grid-column: 1;
        grid-row: 1;
    }
    
    .parts-category-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .parts-category-card:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
        min-height: 300px;
    }
    
    .parts-category-card:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .parts-category-card:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .parts-categories-section {
        padding: 60px 0;
    }
    
    .parts-categories-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .parts-category-card:first-child,
    .parts-category-card:nth-child(2),
    .parts-category-card:nth-child(3),
    .parts-category-card:nth-child(4),
    .parts-category-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .parts-category-engine {
        min-height: 300px;
    }
    
    .parts-category-label {
        font-size: 1rem;
        bottom: 16px;
        left: 16px;
    }
}
