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

html {
    background: #1A2A39;
    background-attachment: fixed;
    min-height: 167vh;
}

/* جلوگیری از FOUC - صفحه تا لود شدن CSS مخفی می‌ماند */
html:not(.css-loaded) {
    visibility: hidden;
    opacity: 0;
}

html.css-loaded {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

body {
    font-family: 'Vazirmatn', 'Vazir', 'Tahoma', 'Arial', sans-serif;
    direction: rtl;
    text-align: right;
    background: #1A2A39;
    background-attachment: fixed;
    min-height: 167vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(184, 167, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(230, 231, 232, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: gradientShift 20s ease infinite;
}

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

/* استایل یکسان برای تمام بخش‌های شیشه‌ای */
.glass-container {
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.15) 0%, rgba(184, 167, 136, 0.1) 100%);
    border-radius: 24px;
    box-shadow: 
        0 4px 12px rgba(184, 167, 136, 0.1),
        0 0 0 0.6px rgba(184, 167, 136, 0.2),
        inset 0 0.6px 2px rgba(230, 231, 232, 0.1);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border: 2px solid rgba(184, 167, 136, 0.5);
    transition: all 0.4s ease;
}

.glass-container:hover {
    box-shadow: 
        0 6px 16px rgba(184, 167, 136, 0.15),
        0 0 0 0.6px rgba(184, 167, 136, 0.3),
        inset 0 0.6px 2px rgba(230, 231, 232, 0.2);
}

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

/* ریسپانسیو برای container */
@media (max-width: 1024px) {
    .container {
        padding: 16px 12px;
    }
}

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

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

/* استایل‌های لینک‌ها */
a {
    text-decoration: none;
    color: inherit;
}

/* استایل‌های عمومی */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* نوار استوری محصولات */
.product-stories-section {
    background: transparent;
    padding: 32px 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

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

.stories-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 8px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.stories-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.stories-scroll::-webkit-scrollbar-track {
    display: none;
}

.stories-scroll::-webkit-scrollbar-thumb {
    display: none;
}

.stories-scroll::-webkit-scrollbar-thumb:hover {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 85px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.story-item:hover {
    /* Removed transform to prevent movement */
}

.story-item:active {
    opacity: 0.8;
}

.story-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.2) 0%, rgba(184, 167, 136, 0.15) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    padding: 4px;
    position: relative;
    box-shadow: 
        0 2px 8px rgba(184, 167, 136, 0.1),
        0 0 0 0.6px rgba(184, 167, 136, 0.2),
        inset 0 2px 4px rgba(230, 231, 232, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(184, 167, 136, 0.5);
}

.story-item:hover .story-circle {
    box-shadow: 
        0 4px 12px rgba(184, 167, 136, 0.15),
        0 0 0 0.6px rgba(184, 167, 136, 0.3),
        inset 0 2px 6px rgba(230, 231, 232, 0.2);
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.3) 0%, rgba(184, 167, 136, 0.25) 100%);
    border-color: rgba(184, 167, 136, 0.7);
}

.story-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(230, 231, 232, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border: 2px solid rgba(184, 167, 136, 0.3);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.story-label {
    font-size: 10px;
    text-align: center;
    font-weight: 600;
    max-width: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #E6E7E8;
    text-shadow: 0 0.6px 4px rgba(0, 0, 0, 0.5);
    background: rgba(184, 167, 136, 0.25);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    padding: 2px 4px;
    border-radius: 8px;
    border: 2px solid rgba(184, 167, 136, 0.4);
    box-shadow: 0 0.6px 4px rgba(184, 167, 136, 0.1);
    transition: all 0.3s ease;
}

.story-item:hover .story-label {
    background: rgba(184, 167, 136, 0.4);
    border-color: rgba(184, 167, 136, 0.6);
    box-shadow: 0 0.6px 4px rgba(184, 167, 136, 0.15);
    color: #E6E7E8;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .product-stories-section {
        padding: 16px 12px;
        margin-top: 24px;
    }
    
    .story-circle {
        width: 75px;
        height: 75px;
    }
    
    .story-item {
        min-width: 75px;
    }
    
    .story-label {
        font-size: 10px;
        max-width: 75px;
    }
    
    .stories-scroll {
        gap: 10px;
        padding: 8px 4px;
    }
    
    .stories-container {
        padding: 16px 12px;
    }
}

@media (max-width: 480px) {
    .product-stories-section {
        padding: 12px 8px;
        margin-top: 20px;
    }
    
    .story-circle {
        width: 70px;
        height: 70px;
    }
    
    .story-item {
        min-width: 70px;
    }
    
    .story-label {
        font-size: 8px;
        max-width: 70px;
    }
    
    .stories-scroll {
        gap: 8px;
        padding: 6px 2px;
    }
    
    .stories-container {
        padding: 12px 8px;
    }
}

/* بخش انیمیشن SVG با خط متحرک */
.animated-svg-section {
    background: #0b0b0b;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.svg-animation-container {
    --animation-duration: 8s;
    --circle-bg-clr: #111;
    --ellipse-perimeter: 314;
    --line-length: 5;
    --line-dash: calc(var(--ellipse-perimeter) - var(--line-length));
    
    width: 100%;
    max-width: 1200px;
    height: 500px;
    position: relative;
    margin: 0 auto;
}

.svg-animation-container svg {
    width: 100%;
    height: 100%;
    display: block;
}

.svg-oval {
    fill: none;
    stroke: rgba(0, 255, 255, 0.2);
    stroke-width: 0.5;
}

.svg-path-line {
    fill: none;
    stroke: #0ff;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: var(--line-length) var(--line-dash);
    stroke-dashoffset: 0;
    animation: moveLine var(--animation-duration) linear infinite;
}

@keyframes moveLine {
    0%, 8% { stroke-dashoffset: -12; }
    15%, 23% { stroke-dashoffset: -52; }
    33%, 41% { stroke-dashoffset: -110; }
    51%, 59% { stroke-dashoffset: -170; }
    67%, 75% { stroke-dashoffset: -210; }
    85%, 93% { stroke-dashoffset: -270; }
    100% { stroke-dashoffset: -324; }
}

.svg-circle {
    position: absolute;
    top: var(--circle-y);
    left: var(--circle-x);
    transform: translate(-50%, -50%);
    width: 120px;
    aspect-ratio: 1;
    background-color: var(--circle-bg-clr);
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    animation: pulse var(--animation-duration) linear infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.svg-circle:hover {
    border-color: #0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.svg-circle:nth-of-type(1) { 
    --circle-x: 30%; 
    --circle-y: 15%; 
    --stop-index: 0; 
}

.svg-circle:nth-of-type(2) { 
    --circle-x: 70%; 
    --circle-y: 15%; 
    --stop-index: 1; 
}

.svg-circle:nth-of-type(3) { 
    --circle-x: 99%; 
    --circle-y: 50%; 
    --stop-index: 2; 
}

.svg-circle:nth-of-type(4) { 
    --circle-x: 70%; 
    --circle-y: 85%; 
    --stop-index: 3; 
}

.svg-circle:nth-of-type(5) { 
    --circle-x: 30%; 
    --circle-y: 85%; 
    --stop-index: 4; 
}

.svg-circle:nth-of-type(6) { 
    --circle-x: 1%; 
    --circle-y: 50%; 
    --stop-index: 5; 
}

.svg-circle {
    animation-delay: calc((var(--animation-duration) * var(--stop-index) / 6) - 250ms);
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.circle-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: var(--icon-opacity, 0.5);
    transform: scale(var(--icon-scale, 0.5));
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.circle-label {
    font-size: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    opacity: var(--icon-opacity, 0.5);
    transition: opacity 150ms ease-in-out;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.svg-circle.security .circle-icon {
    filter: hue-rotate(270deg);
}

.svg-circle.heart .circle-icon {
    filter: hue-rotate(0deg) saturate(1.5);
}

.svg-circle.battery .circle-icon {
    filter: hue-rotate(120deg);
}

.svg-circle.parcel .circle-icon {
    filter: hue-rotate(60deg) saturate(1.3);
}

.svg-circle.notes .circle-icon {
    filter: hue-rotate(200deg);
}

.svg-circle.scooter .circle-icon {
    filter: hue-rotate(30deg) saturate(1.2);
}

@keyframes pulse {
    5%, 13% { 
        transform: scale(1.2); 
        border-color: #0ff;
        background-color: rgb(5, 51, 69);
        --icon-opacity: 1;
        --icon-scale: 0.8;
    } 
    
    15% { 
        transform: scale(1); 
        border-color: #333;
        background-color: var(--circle-bg-clr);
        --icon-opacity: 0.5;
        --icon-scale: 0.5;
    }
}

/* ریسپانسیو برای بخش SVG */
@media (max-width: 768px) {
    .animated-svg-section {
        padding: 60px 14px;
        min-height: 400px;
    }
    
    .svg-animation-container {
        height: 400px;
    }
    
    .svg-circle {
        width: 90px;
    }
    
    .circle-icon {
        width: 40px;
        height: 40px;
    }
    
    .circle-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .animated-svg-section {
        padding: 40px 10px;
        min-height: 350px;
    }
    
    .svg-animation-container {
        height: 350px;
    }
    
    .svg-circle {
        width: 70px;
    }
    
    .circle-icon {
        width: 30px;
        height: 30px;
    }
    
    .circle-label {
        font-size: 8px;
    }
}

/* بخش ضمانت کیفیت و قیمت - طراحی مدرن */
.quality-guarantee-section {
    background: transparent;
    padding: 67px 20px;
    position: relative;
    overflow: hidden;
}

.quality-guarantee-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.quality-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    justify-items: stretch;
    align-items: stretch;
    width: 100%;
}

.quality-card {
    background: #FFFFFF;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 167, 136, 0.2);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(184, 167, 136, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 167, 136, 0.4);
    box-shadow: 0 14px 40px rgba(184, 167, 136, 0.2);
}

.quality-card:hover::before {
    opacity: 1;
}

.quality-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.2) 0%, rgba(184, 167, 136, 0.1) 100%);
    border-radius: 12px;
    color: #B8A788;
    transition: all 0.3s ease;
}

.quality-card:hover .quality-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.3) 0%, rgba(184, 167, 136, 0.15) 100%);
}

.quality-card-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.quality-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 8px auto;
    letter-spacing: -0.3px;
    text-align: center;
    width: 100%;
}

.quality-card-text {
    font-size: 12px;
    line-height: 1.6;
    color: #000000;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.quality-card-quality .quality-card-icon {
    color: #B8A788;
}

.quality-card-price .quality-card-icon {
    color: #B8A788;
}

.quality-card-production .quality-card-icon {
    color: #B8A788;
}

/* بخش چرا استرچ پلاست - طراحی جدید */
.why-stretchplast-section {
    background: transparent;
    padding: 48px 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-section-title {
    font-size: 42px;
    font-weight: 900;
    color: #B8A788;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.6px;
    text-shadow: 0 4px 20px rgba(184, 167, 136, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.why-intro-text {
    padding: 32px 40px;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.why-intro-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #E6E7E8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.why-intro-text strong {
    color: #B8A788;
    font-weight: 700;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.why-feature-card {
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(184, 167, 136, 0.5);
}

.why-feature-card.glass-container {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #B8A788, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.why-feature-card:hover {
    /* Removed transform to prevent movement */
}

.why-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.25) 0%, rgba(184, 167, 136, 0.2) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-radius: 16px;
    border: 2px solid rgba(184, 167, 136, 0.5);
    color: #B8A788;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 
        0 2px 8px rgba(184, 167, 136, 0.1),
        inset 0 2px 4px rgba(230, 231, 232, 0.1);
}

.why-feature-card:hover .why-feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.35) 0%, rgba(184, 167, 136, 0.3) 100%);
    border-color: rgba(184, 167, 136, 0.7);
    color: #E6E7E8;
    box-shadow: 
        0 4px 12px rgba(184, 167, 136, 0.15),
        inset 0 2px 6px rgba(230, 231, 232, 0.2);
}

.why-feature-icon {
    width: 36px;
    height: 36px;
    z-index: 1;
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-feature-icon {
    /* Removed transform to prevent movement */
}

.why-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #B8A788;
    text-align: center;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.why-feature-card:hover .why-feature-title {
    color: #E6E7E8;
}

.why-feature-description {
    font-size: 12px;
    line-height: 1.6;
    color: #E6E7E8;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.why-feature-card:hover .why-feature-description {
    color: #E6E7E8;
    opacity: 1;
}

/* Responsive برای بخش ضمانت کیفیت و قیمت */
@media (max-width: 768px) {
    .quality-guarantee-section {
        padding: 53px 20px;
    }
    
    .quality-guarantee-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 667px;
        margin: 0 auto;
    }
    
    .quality-card {
        padding: 18px 16px;
    }
    
    .quality-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }
    
    .quality-card-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .quality-card-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .quality-card-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .quality-guarantee-section {
        padding: 40px 14px;
    }
    
    .quality-guarantee-grid {
        gap: 16px;
    }
    
    .quality-card {
        padding: 16px 14px;
    }
    
    .quality-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .quality-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .quality-card-title {
        font-size: 14px;
    }
    
    .quality-card-text {
        font-size: 10px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .quality-guarantee-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .quality-card {
        padding: 18px 16px;
    }
    
    .services-grid.quality-guarantee-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1200px;
        margin: 40px auto 0;
    }
}

/* Responsive برای بخش چرا استرچ پلاست */
@media (max-width: 768px) {
    .why-stretchplast-section {
        padding: 20px 12px;
        margin-top: 24px;
    }
    
    .why-section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .why-intro-text {
        padding: 16px 20px;
        margin-bottom: 20px;
    }
    
    .why-intro-text p {
        font-size: 12px;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 16px;
    }
    
    .why-feature-card {
        padding: 20px 16px;
    }
    
    .why-feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .why-feature-icon {
        width: 30px;
        height: 30px;
    }
    
    .why-feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .why-feature-description {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .why-stretchplast-section {
        padding: 16px 8px;
        margin-top: 20px;
    }
    
    .why-section-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .why-intro-text {
        padding: 14px 16px;
        margin-bottom: 16px;
    }
    
    .why-intro-text p {
        font-size: 12px;
    }
    
    .why-features-grid {
        gap: 10px;
        margin-top: 12px;
    }
    
    .why-feature-card {
        padding: 16px 12px;
    }
    
    .why-feature-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .why-feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .why-feature-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .why-feature-description {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* بخش محصولات معروف هر دسته - طراحی جدید Glassmorphism */
.featured-products-grid {
    width: 100%;
    max-width: 1400px;
    margin: 48px auto 0;
    padding: 40px 32px;
    position: relative;
    z-index: 10;
}

.featured-products-title {
    font-size: 36px;
    font-weight: 900;
    color: #B8A788;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: -0.6px;
    text-shadow: 0 4px 20px rgba(184, 167, 136, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
}

.featured-products-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #B8A788, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(184, 167, 136, 0.3);
}

.featured-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.featured-product-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.featured-product-card.glass-container {
    border-radius: 24px;
}

.featured-product-card:hover {
    /* Removed transform to prevent movement */
}

.featured-product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.featured-product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: rgba(26, 42, 57, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px 24px 0 0;
    margin-bottom: -12px;
    z-index: 2;
}

.featured-product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: transparent;
    pointer-events: none;
    z-index: 3;
    border-radius: 0 0 24px 24px;
}

.product-image-overlay {
    display: none;
}

.product-image-glow {
    display: none;
}

.featured-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 1;
}

.featured-product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    position: relative;
    margin-top: -12px;
    padding-top: 28px;
    border-radius: 0 0 24px 24px;
    z-index: 1;
}

.product-info-header {
    margin-bottom: 10px;
}

.featured-product-category {
    display: none;
}

.featured-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #B8A788;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-product-description {
    font-size: 12px;
    color: #E6E7E8;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    opacity: 0.9;
}

.featured-product-price {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.featured-product-price .price-old {
    font-size: 12px;
    color: rgba(230, 231, 232, 0.6);
    text-decoration: line-through;
    font-weight: 400;
}

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

.featured-product-price .price-normal {
    font-size: 18px;
    font-weight: 700;
    color: #B8A788;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 231, 232, 0.15);
    border: 2px solid rgba(184, 167, 136, 0.5);
    border-radius: 10px;
    color: #E6E7E8;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 167, 136, 0.2);
}

.product-action-btn:hover {
    background: rgba(184, 167, 136, 0.3);
    border-color: rgba(184, 167, 136, 0.7);
    color: #B8A788;
    box-shadow: 0 4px 12px rgba(184, 167, 136, 0.3);
}

.product-action-btn svg {
    width: 18px;
    height: 18px;
}

/* Badge های محصول - طراحی جدید */
.product-badge {
    position: absolute;
    top: 12px;
    z-index: 5;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 42, 57, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0.6px 4px rgba(184, 167, 136, 0.2);
    border: 2px solid rgba(184, 167, 136, 0.3);
}

.product-badge svg {
    width: 14px;
    height: 14px;
}

.product-badge-featured {
    left: 12px;
    color: #B8A788;
}

.product-badge-featured svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

.product-badge-sale {
    right: 12px;
    color: #B8A788;
}

@media (max-width: 768px) {
    .featured-products-grid {
        margin-top: 32px;
        padding: 32px 24px;
        max-width: 100%;
    }
    
    .featured-products-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .featured-products-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-top: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scrollbar-width: thin;
        scrollbar-color: rgba(184, 167, 136, 0.4) rgba(184, 167, 136, 0.1);
    }
    
    .featured-products-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .featured-products-container::-webkit-scrollbar-track {
        background: rgba(184, 167, 136, 0.1);
        border-radius: 10px;
    }
    
    .featured-products-container::-webkit-scrollbar-thumb {
        background: rgba(184, 167, 136, 0.4);
        border-radius: 10px;
    }
    
    .featured-products-container::-webkit-scrollbar-thumb:hover {
        background: rgba(184, 167, 136, 0.6);
    }
    
    .featured-product-card {
        height: 360px;
        flex-shrink: 0;
        width: 280px;
        min-width: 280px;
    }
    
    .featured-product-image-wrapper {
        height: 180px;
    }
    
    .featured-product-info {
        padding: 14px;
        padding-top: 24px;
    }
    
    .featured-product-name {
        font-size: 14px;
        min-height: 38px;
        margin: 0 0 6px 0;
    }
    
    .featured-product-description {
        font-size: 10px;
        margin-bottom: 10px;
        min-height: 32px;
    }
    
    .featured-product-price .price-new,
    .featured-product-price .price-normal {
        font-size: 16px;
    }
    
    .product-badge {
        padding: 4px 10px;
        font-size: 10px;
        top: 10px;
    }
    
    .product-action-btn {
        width: 36px;
        height: 36px;
    }
    
    .product-action-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .featured-products-grid {
        padding: 24px 16px;
    }
    
    .featured-products-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .featured-products-container {
        gap: 16px;
        margin-top: 20px;
    }
    
    .featured-product-card {
        width: 260px;
        min-width: 260px;
        height: 340px;
    }
    
    .featured-product-image-wrapper {
        height: 160px;
    }
    
    .featured-product-info {
        padding: 12px;
        padding-top: 20px;
    }
    
    .featured-product-name {
        font-size: 12px;
        min-height: 36px;
    }
    
    .featured-product-description {
        font-size: 10px;
        min-height: 28px;
    }
}

/* استایل‌های جدید کارت محصول به سبک سپندار */
.sep-products-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(26, 42, 57, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(184, 167, 136, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sep-products-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(184, 167, 136, 0.3);
    border-color: rgba(184, 167, 136, 0.3);
}

.sep-elementor-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
}

.sep-products-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(26, 42, 57, 0.5);
    position: relative;
}

.sep-products-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 42, 57, 0.3) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.sep-products-card:hover .sep-products-card-img {
    transform: scale(1.08);
}

.sep-products-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sep-card-elementor-title {
    font-size: 16px;
    font-weight: 600;
    color: #B8A788;
    margin: 0 0 8px 0;
    text-align: right;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    min-height: 44px;
}

.sep-products-card:hover .sep-card-elementor-title {
    color: #D4C5A0;
}

.sep-products-card-text {
    font-size: 12px;
    color: rgba(230, 231, 232, 0.8);
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
    transition: color 0.3s ease;
}

.sep-products-card:hover .sep-products-card-text {
    color: rgba(230, 231, 232, 0.95);
}

.body4 {
    font-size: 12px;
    line-height: 1.5;
}

.body5 {
    font-size: 14px;
    line-height: 1.5;
}

.sep-products-card-buy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

/* دکمه تماس با کارشناس - طراحی خلاقانه و مدرن */
.contact-expert-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #B8A788 0%, #9A8A6F 100%);
    border-radius: 16px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(184, 167, 136, 0.3);
    border: none;
    cursor: pointer;
    min-width: 150px;
    height: 48px;
}

.contact-expert-btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.contact-expert-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 4px;
}

.contact-expert-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.contact-expert-text {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* ریسپانسیو برای دکمه تماس با کارشناس */
@media (max-width: 768px) {
    .contact-expert-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 133px;
        height: 43px;
        border-radius: 14px;
    }
    
    .contact-expert-icon {
        width: 20px;
        height: 20px;
        padding: 4px;
    }
    
    .contact-expert-text {
        font-size: 14px;
    }
    
    .contact-expert-btn-content {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .contact-expert-btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 117px;
        height: 40px;
        border-radius: 14px;
    }
    
    .contact-expert-icon {
        width: 18px;
        height: 18px;
        padding: 4px;
    }
    
    .contact-expert-text {
        font-size: 12px;
    }
    
    .contact-expert-btn-content {
        gap: 6px;
    }
}

/* استایل‌های قدیمی برای سازگاری */
.sep-products-card-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #E6E7E8;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sep-products-card-link svg {
    width: 152px;
    height: 54px;
    transition: all 0.3s ease;
}

.sep-products-card-link:hover svg {
    transform: scale(1.08);
}

.sep-products-card-link:hover .sep-products-card-link1 {
    fill: rgba(184, 167, 136, 0.5);
}

.sep-products-card-link:hover p {
    color: #D4C5A0;
}

.sep-products-card-link p,
.sep-products-card-link-text {
    position: absolute;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    z-index: 10;
    pointer-events: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2px;
}

.sep-products-card-link1 {
    fill: rgba(184, 167, 136, 0.25);
    transition: fill 0.3s ease;
}

.sep-products-card-link:hover .sep-products-card-link1 {
    fill: rgba(184, 167, 136, 0.5);
}

.sep-products-card-link2 {
    fill: rgba(184, 167, 136, 0.15);
}

.sep-products-card-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.sep-products-card-off-price-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sep-products-card-off-price {
    font-size: 12px;
    color: rgba(230, 231, 232, 0.5);
    text-decoration: line-through;
    margin: 0;
    font-weight: 400;
}

.sep-products-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #B8A788;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.sep-products-card:hover .sep-products-card-price {
    color: #D4C5A0;
}

.sep-products-card-price small {
    display: inline-flex;
    align-items: center;
}

.sep-products-card-price small svg {
    width: 20px;
    height: 18px;
    fill: currentColor;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

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

.justify-content-end {
    justify-content: flex-end;
}

/* دکمه Wishlist */
.product-wishlist-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.wishlist-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 42, 57, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(184, 167, 136, 0.3);
    border-radius: 50%;
    color: #E6E7E8;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wishlist-button:hover {
    background: rgba(184, 167, 136, 0.2);
    border-color: rgba(184, 167, 136, 0.6);
    color: #B8A788;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(184, 167, 136, 0.3);
}

.wishlist-button.active {
    background: rgba(184, 167, 136, 0.3);
    border-color: #B8A788;
    color: #B8A788;
}

.wishlist-button.active .wishlist-icon path {
    fill: #B8A788;
    stroke: #B8A788;
}

.wishlist-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.wishlist-button:hover .wishlist-icon {
    transform: scale(1.1);
}

/* بهبود استایل کارت */
.sep-products-card a:hover .sep-card-elementor-title {
    text-decoration: none;
}

.sep-products-card a:hover {
    text-decoration: none;
}

/* انیمیشن برای کارت */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sep-products-card {
    animation: cardFadeIn 0.5s ease-out;
}

.sep-products-card:nth-child(1) {
    animation-delay: 0.1s;
}

.sep-products-card:nth-child(2) {
    animation-delay: 0.2s;
}

.sep-products-card:nth-child(3) {
    animation-delay: 0.3s;
}

.sep-products-card:nth-child(4) {
    animation-delay: 0.4s;
}

.sep-products-card:nth-child(5) {
    animation-delay: 0.5s;
}

.sep-products-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* بهبود استایل badge ها در کارت جدید */
.sep-products-card .product-badge {
    position: absolute;
    top: 12px;
    z-index: 11;
}

.sep-products-card .product-badge-featured {
    left: 12px;
}

.sep-products-card .product-badge-sale {
    right: 12px;
}

/* بهبود استایل دکمه سبد خرید */
.sep-products-card-link {
    position: relative;
    overflow: hidden;
}

.sep-products-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 167, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.sep-products-card-link:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .sep-products-card-img {
        height: 180px;
    }
    
    .sep-card-elementor-title {
        font-size: 14px;
        min-height: 40px;
    }
    
    .sep-products-card-text {
        font-size: 10px;
        min-height: 32px;
    }
    
    .sep-products-card-link svg {
        width: 120px;
        height: 42px;
    }
    
    .sep-products-card-link p,
    .sep-products-card-link-text {
        font-size: 14px;
    }
    
    .contact-expert-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 133px;
        height: 43px;
    }
    
    .contact-expert-icon {
        width: 20px;
        height: 20px;
        padding: 4px;
    }
    
    .contact-expert-text {
        font-size: 14px;
    }
    
    .contact-expert-btn-content {
        gap: 8px;
    }
    
    .sep-products-card-price {
        font-size: 16px;
    }
    
    .sep-products-card-off-price {
        font-size: 10px;
    }
    
    .wishlist-button {
        width: 36px;
        height: 36px;
    }
    
    .wishlist-icon {
        width: 18px;
        height: 18px;
    }
    
    .product-wishlist-btn {
        top: 16px;
        left: 16px;
    }
    
    .sep-products-card {
        border-radius: 20px;
    }
    
    .sep-elementor-card-inner {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .sep-products-card-img {
        height: 160px;
    }
    
    .sep-card-elementor-title {
        font-size: 12px;
        min-height: 36px;
    }
    
    .sep-products-card-text {
        font-size: 10px;
        min-height: 28px;
    }
    
    .sep-products-card-link svg {
        width: 100px;
        height: 36px;
    }
    
    .sep-products-card-link p {
        font-size: 10px;
    }
    
    .sep-products-card-price {
        font-size: 14px;
    }
    
    .wishlist-button {
        width: 32px;
        height: 32px;
    }
    
    .wishlist-icon {
        width: 16px;
        height: 16px;
    }
    
    .product-wishlist-btn {
        top: 12px;
        left: 12px;
    }
    
    .sep-products-card {
        border-radius: 16px;
    }
    
    .sep-elementor-card-inner {
        padding: 12px;
    }
    
    .sep-products-card-buy-box {
        gap: 8px;
    }
}

/* بخش رضایت مشتریان - طراحی جدید و فشرده */
.customer-satisfaction-section {
    background: transparent;
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
}

.satisfaction-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.satisfaction-header {
    margin-bottom: 24px;
}

.satisfaction-header-card {
    background: #FFFFFF;
    border: 1px solid rgba(184, 167, 136, 0.2);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.satisfaction-header-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(184, 167, 136, 0.15);
    border-color: rgba(184, 167, 136, 0.4);
}

.satisfaction-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.satisfaction-subtitle {
    font-size: 12px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.satisfaction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.satisfaction-card {
    background: #FFFFFF;
    border: 1px solid rgba(184, 167, 136, 0.2);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.satisfaction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(184, 167, 136, 0.15);
    border-color: rgba(184, 167, 136, 0.4);
}

.satisfaction-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.1) 0%, rgba(184, 167, 136, 0.05) 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.satisfaction-card-icon svg {
    width: 18px;
    height: 18px;
}

.satisfaction-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.satisfaction-card-value {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.satisfaction-card-label {
    font-size: 11px;
    color: #666666;
    font-weight: 500;
    line-height: 1.4;
}

.satisfaction-card-main {
    grid-column: span 1;
}

.satisfaction-card-main .satisfaction-card-value {
    font-size: 28px;
    font-weight: 900;
    color: #B8A788;
}

.satisfaction-card-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
}

.satisfaction-card-stars svg {
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    .customer-satisfaction-section {
        padding: 24px 16px;
    }
    
    .satisfaction-header {
        margin-bottom: 20px;
    }
    
    .satisfaction-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .satisfaction-subtitle {
        font-size: 13px;
    }
    
    .satisfaction-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .satisfaction-card {
        padding: 16px 12px;
        gap: 10px;
    }
    
    .satisfaction-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .satisfaction-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .satisfaction-card-value {
        font-size: 24px;
    }
    
    .satisfaction-card-main .satisfaction-card-value {
        font-size: 24px;
    }
    
    .satisfaction-card-label {
        font-size: 10px;
    }
    
    .satisfaction-card-stars svg {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .customer-satisfaction-section {
        padding: 20px 12px;
    }
    
    .satisfaction-header {
        margin-bottom: 16px;
    }
    
    .satisfaction-header-card {
        padding: 18px 14px;
    }
    
    .satisfaction-title {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .satisfaction-subtitle {
        font-size: 12px;
    }
    
    .satisfaction-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .satisfaction-card {
        padding: 16px 14px;
        gap: 10px;
    }
    
    .satisfaction-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .satisfaction-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .satisfaction-card-value {
        font-size: 22px;
    }
    
    .satisfaction-card-main .satisfaction-card-value {
        font-size: 26px;
    }
    
    .satisfaction-card-label {
        font-size: 11px;
    }
    
    .satisfaction-card-stars svg {
        width: 12px;
        height: 12px;
    }
    
    .chart-card {
        padding: 10px;
    }
    
    .chart-wrapper {
        height: 140px;
    }
    
    .chart-wrapper.chart-large {
        height: 160px;
    }
    
    .chart-title {
        font-size: 12px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 10px;
    }
    
    .stats-summary {
        padding: 12px;
    }
    
    .stats-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .customer-satisfaction-section {
        padding: 20px 12px;
    }
    
    .satisfaction-header {
        margin-bottom: 16px;
    }
    
    .satisfaction-header-card {
        padding: 18px 14px;
    }
    
    .satisfaction-title {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .satisfaction-subtitle {
        font-size: 12px;
    }
    
    .chart-wrapper {
        height: 120px;
    }
    
    .chart-wrapper.chart-large {
        height: 140px;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 6px;
    }
    
    .chart-card {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* بخش CTA برای تماس و تبدیل */
.cta-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-container {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.2) 0%, rgba(230, 231, 232, 0.15) 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}


.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #E6E7E8;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(184, 167, 136, 0.3);
}

.cta-description {
    font-size: 20px;
    color: #B8A788;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #B8A788 0%, #9A8A6F 100%);
    color: #1A2A39;
    box-shadow: 0 8px 24px rgba(184, 167, 136, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(184, 167, 136, 0.5);
    background: linear-gradient(135deg, #C8B898 0%, #AA9A7F 100%);
}

.cta-btn-secondary {
    background: transparent;
    color: #E6E7E8;
    border-color: rgba(184, 167, 136, 0.5);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    transform: translateY(-4px);
    background: rgba(184, 167, 136, 0.1);
    border-color: rgba(184, 167, 136, 0.8);
    box-shadow: 0 8px 24px rgba(184, 167, 136, 0.3);
}

.cta-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-note {
    font-size: 16px;
    color: #B8A788;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 14px;
    }
    
    .cta-container {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .cta-note {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 10px;
    }
    
    .cta-container {
        padding: 32px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* بخش مشتریان استرچ پلاست - طراحی حرفه‌ای */
.customers-section {
    background: transparent;
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.customers-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 20px 20px;
    overflow: visible;
}

.customers-section-title {
    font-size: 42px;
    font-weight: 900;
    color: #B8A788;
    text-align: center;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -0.6px;
    text-shadow: 0 4px 20px rgba(184, 167, 136, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
    z-index: 2;
    transform: translateY(0) !important;
}

.customers-section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(184, 167, 136, 0.5);
    border-radius: 2px;
}

.customers-section-subtitle {
    font-size: 14px;
    color: #E6E7E8;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    padding: 0 20px;
    opacity: 0.9;
}

/* نوار دایره‌ای مشتریان */
.customers-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 60px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(230, 231, 232, 0.2);
    border: 2px solid rgba(184, 167, 136, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 167, 136, 0.2);
    color: #B8A788;
}

.carousel-nav-btn:hover {
    background: rgba(184, 167, 136, 0.3);
    color: #E6E7E8;
    border-color: rgba(184, 167, 136, 0.7);
    box-shadow: 0 4px 12px rgba(184, 167, 136, 0.3);
    transform: translateY(-50%);
}

.carousel-nav-btn:active {
    opacity: 0.8;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    right: 10px;
}

.carousel-next {
    left: 10px;
}

.carousel-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.customers-carousel-track {
    display: flex;
    gap: 24px;
    animation: scrollLogos 60s linear infinite;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.customers-carousel-track:active {
    cursor: grabbing;
}

.customers-carousel-track.dragging {
    animation: none;
    cursor: grabbing;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.customers-carousel-wrapper:hover .customers-carousel-track:not(.dragging) {
    animation-play-state: paused;
}

.customer-logo-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    opacity: 1;
    transform: translateY(0);
}

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

.customer-logo-item:nth-child(1) { --item-index: 0; }
.customer-logo-item:nth-child(2) { --item-index: 1; }
.customer-logo-item:nth-child(3) { --item-index: 2; }
.customer-logo-item:nth-child(4) { --item-index: 3; }
.customer-logo-item:nth-child(5) { --item-index: 4; }
.customer-logo-item:nth-child(6) { --item-index: 5; }
.customer-logo-item:nth-child(7) { --item-index: 6; }
.customer-logo-item:nth-child(8) { --item-index: 7; }

.customer-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    position: relative;
}

.customer-logo-wrapper {
    width: 100%;
    height: 160px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.customer-logo-wrapper.glass-container {
    background: #FFFFFF !important;
    border-radius: 20px;
    border: 2px solid rgba(184, 167, 136, 0.2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.customer-logo-link:hover .customer-logo-wrapper {
    box-shadow: 0 6px 28px rgba(184, 167, 136, 0.15);
    border-color: rgba(184, 167, 136, 0.3);
}

.customer-logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%) brightness(0.9) contrast(1.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.customer-logo-link:hover .customer-logo-image {
    filter: grayscale(0%) brightness(1.1) contrast(1.2) drop-shadow(0 2px 6px rgba(184, 167, 136, 0.15));
}

/* ریسپانسیو برای بخش مشتریان */
@media (max-width: 1024px) {
    .customers-section {
        padding: 32px 20px;
    }
    
    .customers-section-title {
        font-size: 32px;
    }
    
    .customer-logo-item {
        width: 220px;
    }
    
    .customer-logo-wrapper {
        height: 140px;
        padding: 14px;
    }
    
    .customers-carousel-track {
        gap: 20px;
    }
    
    .customers-carousel-wrapper {
        padding: 16px 60px;
    }
}

@media (max-width: 768px) {
    .customers-section {
        padding: 32px 14px;
        max-width: 100%;
    }
    
    .customers-container {
        padding: 32px 24px;
    }
    
    .customers-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .customers-section-title::after {
        width: 60px;
    }
    
    .customers-section-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .customer-logo-item {
        width: 180px;
    }
    
    .customer-logo-wrapper {
        height: 120px;
        padding: 12px;
        border-radius: 16px;
    }
    
    .customers-carousel-track {
        gap: 16px;
    }
    
    .customers-carousel-wrapper {
        padding: 16px 40px;
    }
    
    .carousel-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-prev {
        right: 4px;
    }
    
    .carousel-next {
        left: 4px;
    }
}

@media (max-width: 480px) {
    .customers-section {
        padding: 24px 10px;
        max-width: 100%;
    }
    
    .customers-container {
        padding: 24px 20px;
    }
    
    .customers-section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .customers-section-title::after {
        width: 50px;
        height: 2px;
    }
    
    .customers-section-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .customer-logo-item {
        width: 150px;
    }
    
    .customer-logo-wrapper {
        height: 100px;
        padding: 10px;
        border-radius: 12px;
    }
    
    .customers-carousel-track {
        gap: 14px;
    }
    
    .customers-carousel-wrapper {
        padding: 14px 36px;
    }
    
    .carousel-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .carousel-prev {
        right: 4px;
    }
    
    .carousel-next {
        left: 4px;
    }
}

/* ============================================
   نوار شیشه‌ای پایین صفحه برای موبایل
   ============================================ */
.mobile-bottom-bar {
    display: none; /* به صورت پیش‌فرض مخفی است */
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 500px;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.15) 0%, rgba(184, 167, 136, 0.1) 100%);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border: 2px solid rgba(184, 167, 136, 0.3);
    border-radius: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1), 0 -2px 10px rgba(184, 167, 136, 0.1), 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    padding-bottom: max(12px, calc(12px + env(safe-area-inset-bottom)));
    direction: rtl;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}

/* حذف ::before چون دیگر نیازی نیست */

.mobile-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    text-decoration: none;
    color: rgba(230, 231, 232, 0.7);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    min-height: 56px;
}

.mobile-bottom-item:hover,
.mobile-bottom-item:active {
    color: #B8A788;
    background: rgba(184, 167, 136, 0.1);
    transform: translateY(-2px);
}

.mobile-bottom-item.active {
    color: #B8A788;
}

.mobile-bottom-item.active .mobile-bottom-icon {
    transform: scale(1.1);
}

.mobile-bottom-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.mobile-bottom-label {
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mobile-bottom-item-primary {
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.2) 0%, rgba(184, 167, 136, 0.15) 100%);
    color: #B8A788;
    border: 2px solid rgba(184, 167, 136, 0.3);
    box-shadow: 0 2px 8px rgba(184, 167, 136, 0.2);
}

.mobile-bottom-item-primary:hover,
.mobile-bottom-item-primary:active {
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.3) 0%, rgba(184, 167, 136, 0.2) 100%);
    box-shadow: 0 4px 12px rgba(184, 167, 136, 0.3);
    transform: translateY(-4px);
}

.mobile-bottom-item-primary .mobile-bottom-icon {
    width: 26px;
    height: 26px;
}

.mobile-bottom-badge {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(255, 68, 68, 0.4);
    border: 2px solid rgba(230, 231, 232, 0.2);
}

.mobile-bottom-badge:empty {
    display: none;
}

/* نمایش نوار فقط در موبایل */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex !important;
    }
    
    /* اضافه کردن padding به body برای جلوگیری از پوشیده شدن محتوا */
    body {
        padding-bottom: 100px !important;
    }
    
    /* اطمینان از نمایش محتوا */
    body > * {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* بهینه‌سازی برای صفحه‌های کوچک‌تر */
@media (max-width: 480px) {
    .mobile-bottom-item {
        padding: 6px 2px;
        min-height: 52px;
    }
    
    .mobile-bottom-icon {
        width: 22px;
        height: 22px;
    }
    
    .mobile-bottom-item-primary .mobile-bottom-icon {
        width: 24px;
        height: 24px;
    }
    
    .mobile-bottom-label {
        font-size: 10px;
    }
    
    body {
        padding-bottom: 96px;
    }
    
    .mobile-bottom-bar {
        width: calc(100% - 24px);
        max-width: 450px;
        bottom: 12px;
        border-radius: 20px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        padding-bottom: max(10px, calc(10px + env(safe-area-inset-bottom)));
    }
}

/* مخفی کردن نوار در دسکتاپ */
@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
    
    /* اطمینان از نمایش محتوا در دسکتاپ */
    body > * {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* بخش خدمات */
.services-section {
    background: transparent;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.services-container.quality-guarantee-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 25px 40px;
    background: #FFFFFF !important;
    border-radius: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 2px solid rgba(184, 167, 136, 0.2);
    transition: all 0.3s ease;
}

.services-header:hover {
    box-shadow: 0 6px 28px rgba(184, 167, 136, 0.15);
    border-color: rgba(184, 167, 136, 0.3);
}

.services-header.glass-container {
    background: #FFFFFF !important;
}

.services-section-title {
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.services-title-text {
    font-size: 48px;
    font-weight: 900;
    color: #001f3f;
    letter-spacing: -0.6px;
    position: relative;
}

.services-title-dot {
    width: 12px;
    height: 12px;
    background: #001f3f;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: -4px;
}

.services-section-subtitle {
    font-size: 20px;
    color: #6c757d;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: stretch;
    width: 100%;
    align-items: stretch;
}

.services-grid.quality-guarantee-grid {
    justify-items: stretch;
    width: 100%;
    align-items: stretch;
}

/* تنظیمات دسکتاپ برای grid مرتب */
@media (min-width: 1025px) {
    .services-grid.quality-guarantee-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1400px;
        margin: 40px auto 0;
    }
    
    .services-container.quality-guarantee-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

.service-card {
    background: #FFFFFF;
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 20px 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(184, 167, 136, 0.2);
    width: 100%;
    max-width: 100%;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(184, 167, 136, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 167, 136, 0.4);
    box-shadow: 0 14px 40px rgba(184, 167, 136, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.2) 0%, rgba(184, 167, 136, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    position: relative;
    color: #B8A788;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.3) 0%, rgba(184, 167, 136, 0.15) 100%);
}

.service-icon {
    width: 24px;
    height: 24px;
    color: #B8A788;
    stroke-width: 2;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 14px auto;
    letter-spacing: -0.3px;
    text-align: center;
    width: 100%;
    line-height: 1.4;
}

.service-description {
    font-size: 12px;
    line-height: 1.6;
    color: #000000;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* ریسپانسیو برای بخش خدمات */
@media (max-width: 1024px) {
    .services-section {
        padding: 50px 20px;
    }
    
    .services-title-text {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .services-grid.quality-guarantee-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1200px;
        margin: 40px auto 0;
    }
    
    .service-card {
        padding: 18px 16px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 14px;
    }
    
    .services-header {
        margin-bottom: 36px;
        padding: 30px 40px;
    }
    
    .services-section-title {
        margin-bottom: 14px;
    }
    
    .services-title-text {
        font-size: 32px;
    }
    
    .services-title-dot {
        width: 10px;
        height: 10px;
        top: -4px;
    }
    
    .services-section-subtitle {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .services-grid.quality-guarantee-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        margin: 30px auto 0;
    }
    
    .service-card {
        padding: 18px 16px;
    }
    
    .service-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }
    
    .service-icon {
        width: 22px;
        height: 22px;
    }
    
    .service-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .service-description {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 30px 10px;
    }
    
    .services-header {
        margin-bottom: 24px;
        padding: 28px 32px;
    }
    
    .services-section-title {
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .services-title-text {
        font-size: 28px;
    }
    
    .services-title-dot {
        width: 8px;
        height: 8px;
        top: -2px;
    }
    
    .services-section-subtitle {
        font-size: 18px;
    }
    
    .services-grid {
        gap: 16px;
        margin-top: 24px;
    }
    
    .services-grid.quality-guarantee-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        margin: 24px auto 0;
    }
    
    .service-card {
        padding: 16px 14px;
    }
    
    .service-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .service-icon {
        width: 20px;
        height: 20px;
    }
    
    .service-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .service-description {
        font-size: 10px;
        line-height: 1.6;
    }
}

/* بخش فروش ویژه هفتگی - اسکرول افقی برای هر دسته */
.weekly-special-section {
    background: transparent;
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.weekly-special-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.weekly-special-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 8px;
    flex-wrap: wrap;
    gap: 16px;
}

.weekly-special-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.weekly-special-title {
    font-size: 24px;
    font-weight: 900;
    color: #B8A788;
    margin: 0;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 12px rgba(184, 167, 136, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

.weekly-special-title span {
    color: #B8A788;
}

.weekly-special-title .title-accent {
    color: #E6E7E8;
    font-weight: 700;
}

.weekly-special-subtitle {
    font-size: 14px;
    color: rgba(230, 231, 232, 0.7);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.weekly-special-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.15) 0%, rgba(184, 167, 136, 0.1) 100%);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border: 1px solid rgba(184, 167, 136, 0.5);
    border-radius: 12px;
    color: #E6E7E8;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 167, 136, 0.1);
}

.weekly-special-view-all:hover {
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.25) 0%, rgba(230, 231, 232, 0.2) 100%);
    border-color: rgba(184, 167, 136, 0.7);
    color: #B8A788;
    box-shadow: 0 4px 12px rgba(184, 167, 136, 0.2);
    transform: translateY(-2px);
}

.weekly-special-view-all svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.weekly-special-view-all:hover svg {
    transform: translateX(-4px);
}

.weekly-special-products-wrapper {
    position: relative;
    padding: 0 8px;
}

.weekly-special-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 12px 8px 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 167, 136, 0.4) rgba(184, 167, 136, 0.1);
    position: relative;
    direction: rtl;
}

.weekly-special-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.weekly-special-scroll-container::-webkit-scrollbar-track {
    background: rgba(184, 167, 136, 0.1);
    border-radius: 10px;
}

.weekly-special-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(184, 167, 136, 0.4);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.weekly-special-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 167, 136, 0.6);
}

.weekly-special-product-card {
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
    position: relative;
    transition: transform 0.3s ease;
}

.weekly-special-product-card:hover {
    transform: translateY(-4px);
}

.weekly-special-product-card .sep-products-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.weekly-special-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(230, 231, 232, 0.2) 0%, rgba(184, 167, 136, 0.15) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 2px solid rgba(184, 167, 136, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 167, 136, 0.2);
    color: #B8A788;
}

.weekly-special-nav-btn:hover {
    background: linear-gradient(135deg, rgba(184, 167, 136, 0.3) 0%, rgba(230, 231, 232, 0.25) 100%);
    border-color: rgba(184, 167, 136, 0.7);
    color: #E6E7E8;
    box-shadow: 0 4px 12px rgba(184, 167, 136, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.weekly-special-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.weekly-special-nav-btn svg {
    width: 24px;
    height: 24px;
}

.weekly-special-nav-btn.prev {
    right: -24px;
}

.weekly-special-nav-btn.next {
    left: -24px;
}

.weekly-special-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ریسپانسیو برای بخش فروش ویژه هفتگی */
@media (max-width: 1024px) {
    .weekly-special-section {
        padding: 40px 16px;
    }
    
    .weekly-special-title {
        font-size: 32px;
    }
    
    .weekly-special-product-card {
        width: 260px;
        min-width: 260px;
    }
    
    .weekly-special-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .weekly-special-nav-btn.prev {
        right: -16px;
    }
    
    .weekly-special-nav-btn.next {
        left: -16px;
    }
}

@media (max-width: 768px) {
    .weekly-special-section {
        padding: 32px 12px;
    }
    
    .weekly-special-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .weekly-special-title-wrapper {
        width: 100%;
    }
    
    .weekly-special-title {
        font-size: 28px;
    }
    
    .weekly-special-subtitle {
        font-size: 12px;
    }
    
    .weekly-special-view-all {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .weekly-special-product-card {
        width: 240px;
        min-width: 240px;
    }
    
    .weekly-special-scroll-container {
        gap: 16px;
        padding: 8px 4px 20px;
    }
    
    .weekly-special-nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .weekly-special-section {
        padding: 24px 8px;
    }
    
    .weekly-special-title {
        font-size: 24px;
    }
    
    .weekly-special-subtitle {
        font-size: 12px;
    }
    
    .weekly-special-product-card {
        width: 220px;
        min-width: 220px;
    }
    
    .weekly-special-scroll-container {
        gap: 12px;
        padding: 6px 2px 16px;
    }
}
