/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #faf3ea;
    color: #3e2723;
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #2c1a0e;
}
::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e6c351;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #e6c351, #d4af37);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: #b8860b;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
}
.btn-primary:hover {
    background: transparent;
    border-color: #b8860b;
    color: #b8860b;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #c99e2e);
    color: #2c1a0e;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
}
.btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e6c351, #d4af37);
}

.btn-outline {
    border: 2px solid #b8860b;
    color: #b8860b;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
    cursor: pointer;
}
.btn-outline:hover {
    background: #b8860b;
    color: #fff;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(62, 39, 35, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(31, 19, 11, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.logo:hover img {
    transform: rotate(-10deg) scale(1.05);
}
.logo-text {
    color: #f5e6d3;
    font-size: 1.4rem;
    font-weight: 300;
}
.logo-text strong {
    color: #d4af37;
    font-weight: 900;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-menu ul li a {
    color: #f5e6d3;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
    font-size: 1rem;
    position: relative;
}
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}
.nav-menu ul li a:hover {
    color: #d4af37;
}
.nav-menu ul li a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-icons a {
    color: #f5e6d3;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
}
.header-icons a:hover {
    color: #d4af37;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #d4af37;
    color: #2c1a0e;
    font-size: 0.65rem;
    font-weight: 900;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   MEGA MENU
   ============================================ */
.mega-dropdown {
    position: relative;
}
.mega-menu {
    position: absolute;
    top: 45px;
    right: 0;
    width: 700px;
    background: rgba(31, 19, 11, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 30px;
    border-radius: 20px;
    display: none;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    animation: megaFadeIn 0.3s ease;
}
@keyframes megaFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.mega-dropdown:hover .mega-menu {
    display: block;
}

.mega-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.mega-col h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 12px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 8px;
}
.mega-col ul li {
    margin-bottom: 8px;
}
.mega-col ul li a {
    color: #f5e6d3;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 3px 0;
}
.mega-col ul li a:hover {
    color: #d4af37;
    padding-right: 10px;
}

/* ============================================
   HAMBURGER
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #f5e6d3;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
    background: #1f130b;
}
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.4s ease, transform 1.4s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    transform: scale(1.05);
}
.slide.active {
    opacity: 1;
    transform: scale(1);
}
.slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) saturate(1.1);
    z-index: -1;
    transition: transform 8s ease;
    will-change: transform; /* ← روان‌تر */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}
.slide.active .slide-bg {
    transform: scale(1.08);
}

.slide-content {
    max-width: 620px;
    color: #fff;
    z-index: 2;
    animation: slideContentUp 1.2s ease forwards;
}
@keyframes slideContentUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.slide-content h1 {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    line-height: 1.15;
}
.slide-content h1 span {
    color: #d4af37;
}
.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.8;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 10%;
    display: flex;
    gap: 15px;
    z-index: 10;
}
.slider-controls button {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-controls button:hover {
    background: #d4af37;
    color: #2c1a0e;
    transform: scale(1.08);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 10%;
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}
.slider-dots .dot.active {
    background: #d4af37;
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    border-color: #fff;
}
.slider-dots .dot:hover {
    background: rgba(212, 175, 55, 0.6);
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1f130b 0%, #3e2723 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent 70%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-item {
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
}
.stat-item:hover {
    background: rgba(212, 175, 55, 0.05);
}
.stat-number {
    font-size: 3.4rem;
    font-weight: 900;
    color: #d4af37;
    display: block;
    letter-spacing: 3px;
    font-variant-numeric: tabular-nums;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 4px;
}

/* ============================================
   CATEGORY HERO
   ============================================ */
.category-hero-section {
    padding: 60px 0 80px;
    background: #faf3ea;
}
.category-hero-section.alt-bg {
    background: #f5ede6;
}

/* ============================================
   CATEGORY HERO - بدون لرزش
   ============================================ */
.category-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 50px;
    min-height: 420px;
    display: flex;
    align-items: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}
.category-hero:hover {
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* ============================================
   HERO SLIDER - بدون لرزش
   ============================================ */
.slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) saturate(1.1);
    z-index: -1;
    transition: transform 8s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.category-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 19, 11, 0.92) 0%, rgba(62, 39, 35, 0.7) 50%, rgba(62, 39, 35, 0.2) 100%);
    z-index: 1;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    width: 100%;
}

.category-hero-text {
    max-width: 600px;
    color: #fff;
}
.category-hero-text .category-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.category-hero-text h2 {
    font-size: 3.4rem;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.15;
}
.category-hero-text h2 .highlight {
    color: #d4af37;
    position: relative;
}
.category-hero-text h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 5px;
}
.category-hero-text p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 480px;
    line-height: 1.9;
}
.category-hero-text .btn-gold {
    font-size: 1rem;
    padding: 12px 38px;
}
.category-hero-text .btn-gold i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}
.category-hero-text .btn-gold:hover i {
    transform: translateX(-8px);
}

/* ============================================
   CATEGORY SLIDER - دکمه‌ها روی اسلایدر
   ============================================ */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 5px;
}

.category-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.category-slider .slide-item {
    min-width: 280px;
    flex: 0 0 280px;
}

/* ===== دکمه‌های اسلایدر - روی خود اسلایدر ===== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 19, 11, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* دکمه قبلی - سمت راست (چون RTL هستیم) */
.slider-btn.prev-slide {
    right: 15px;
}

/* دکمه بعدی - سمت چپ (چون RTL هستیم) */
.slider-btn.next-slide {
    left: 15px;
}

/* هاور دکمه‌ها */
.slider-btn:hover {
    background: #d4af37;
    color: #2c1a0e;
    transform: translateY(-50%) scale(1.12);
    opacity: 1;
    border-color: #d4af37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* ===== دکمه‌ها همیشه نمایش داده بشن ===== */
.slider-btn {
    opacity: 0.7;
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(184, 134, 11, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 70px rgba(184, 134, 11, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.product-img {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f5ede6;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img img {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #d4af37, #b8960f);
    color: #2c1a0e;
    padding: 4px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.quick-add {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d4af37;
    border: none;
    color: #2c1a0e;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-add:hover {
    transform: scale(1.1);
    background: #e6c351;
}

.product-info {
    padding: 20px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #2c1a0e;
}
.product-info p {
    color: #6d4c41;
    font-size: 0.9rem;
    margin-bottom: 14px;
    flex: 1;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(184, 134, 11, 0.08);
    gap: 10px;
    flex-wrap: wrap;
}
.price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #2c1a0e;
}
.price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: #6d4c41;
}
.unit {
    color: #8d6e63;
    font-size: 0.85rem;
}
.product-meta .btn-outline {
    font-size: 0.8rem;
    padding: 6px 16px;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.benefit-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 30px;
    background: #faf3ea;
    transition: all 0.5s ease;
    border: 1px solid transparent;
}
.benefit-card:hover {
    background: #fff;
    border-color: #d4af37;
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.08);
    transform: translateY(-10px);
}
.benefit-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 18px;
    display: block;
}
.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c1a0e;
}
.benefit-card p {
    color: #6d4c41;
    font-size: 0.95rem;
}

/* ============================================
   BRANDS
   ============================================ */
.brands-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1f130b, #3e2723);
    overflow: hidden;
}
.brands-section .section-title h2 {
    color: #fff;
}
.brands-section .section-title p {
    color: #f5e6d3;
}

.brands-slider-wrapper {
    overflow: hidden;
    margin-top: 30px;
    position: relative;
}
.brands-slider-wrapper::before,
.brands-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.brands-slider-wrapper::before {
    right: 0;
    background: linear-gradient(90deg, #1f130b, transparent);
}
.brands-slider-wrapper::after {
    left: 0;
    background: linear-gradient(90deg, transparent, #1f130b);
}

.brands-slider {
    display: flex;
    gap: 50px;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
}
.brands-slider:hover {
    animation-play-state: paused;
}
@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brands-slider .brand-item {
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.4s ease;
    padding: 10px 20px;
}
.brands-slider .brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
}
.brands-slider .brand-item img {
    max-height: 70px;
    width: auto;
    filter: brightness(0.7) grayscale(0.5);
    transition: all 0.5s ease;
}
.brands-slider .brand-item:hover img {
    filter: brightness(1) grayscale(0);
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
    padding: 80px 0;
}
.blog-section.alt-bg {
    background: #f5ede6;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.blog-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease;
    border: 1px solid rgba(184, 134, 11, 0.06);
}
.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(184, 134, 11, 0.1);
    border-color: rgba(212, 175, 55, 0.15);
}
.blog-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img {
    transform: scale(1.06);
}
.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.95);
    color: #2c1a0e;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}
.blog-content {
    padding: 22px 26px 28px;
}
.blog-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #2c1a0e;
}
.blog-content p {
    color: #6d4c41;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.read-more {
    color: #b8860b;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.read-more i {
    transition: transform 0.3s ease;
}
.read-more:hover {
    color: #d4af37;
}
.read-more:hover i {
    transform: translateX(-6px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #1f130b, #4e342e);
}
.testimonials-section .section-title h2 {
    color: #fff;
}
.testimonials-section .section-title p {
    color: #f5e6d3;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-item {
    display: none;
    text-align: center;
    padding: 10px;
}
.testimonial-item.active {
    display: block;
    animation: fadeUp 0.8s ease;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 45px 50px;
    border-radius: 40px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    color: #f5e6d3;
}
.quote-icon {
    font-size: 3.2rem;
    color: #d4af37;
    opacity: 0.2;
    margin-bottom: 12px;
}
.testimonial-content p {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 300;
}
.testimonial-content h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 20px;
}
.testimonial-content span {
    font-size: 0.95rem;
    opacity: 0.6;
    display: block;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}
.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}
.testimonial-dots .dot.active {
    background: #d4af37;
    transform: scale(1.25);
    border-color: #fff;
}
.testimonial-dots .dot:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: #faf3ea;
}
.faq-grid {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(184, 134, 11, 0.06);
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.15);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: #2c1a0e;
    transition: all 0.3s ease;
    user-select: none;
}
.faq-question:hover {
    color: #b8860b;
}
.faq-question i {
    transition: transform 0.4s ease;
    color: #b8860b;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 28px;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}
.faq-answer p {
    color: #6d4c41;
    line-height: 1.8;
}

/* ============================================
   PAGE HERO (برای صفحات داخلی)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 19, 11, 0.92), rgba(62, 39, 35, 0.7));
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    width: 100%;
}
.page-hero-text {
    color: #fff;
}
.page-hero-text h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.page-hero-text h1 .highlight {
    color: #d4af37;
}
.page-hero-text p {
    font-size: 1.2rem;
    opacity: 0.8;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.95rem;
}
.breadcrumb a {
    color: #d4af37;
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: #e6c351;
}
.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.5;
}
.breadcrumb span {
    opacity: 0.6;
}

/* ============================================
   PRODUCTS FILTER
   ============================================ */
.products-filter-section {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid rgba(184, 134, 11, 0.08);
}
.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid transparent;
    background: transparent;
    color: #6d4c41;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.filter-tab:hover {
    color: #b8860b;
}
.filter-tab.active {
    border-color: #d4af37;
    color: #b8860b;
    background: rgba(212, 175, 55, 0.08);
}
.filter-sort select {
    padding: 8px 16px;
    border-radius: 50px;
    border: 2px solid rgba(184, 134, 11, 0.2);
    background: #fff;
    font-family: 'Vazirmatn', sans-serif;
    color: #3e2723;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}
.filter-sort select:focus {
    border-color: #d4af37;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid-section {
    padding: 60px 0;
    background: #faf3ea;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}
.no-products i {
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.3;
    margin-bottom: 20px;
}
.no-products h3 {
    font-size: 1.5rem;
    color: #2c1a0e;
}
.no-products p {
    color: #6d4c41;
}
.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}
.load-more-wrapper .btn-gold {
    padding: 12px 40px;
    font-size: 1rem;
}

/* ============================================
   SHOP / CART
   ============================================ */
.shop-section {
    padding: 60px 0;
    background: #faf3ea;
}
.shop-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.cart-items h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2c1a0e;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(184, 134, 11, 0.06);
}
.cart-item img {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    object-fit: cover;
}
.cart-item-info {
    flex: 1;
}
.cart-item-info h4 {
    font-size: 1rem;
    color: #2c1a0e;
}
.cart-item-info p {
    color: #6d4c41;
    font-size: 0.9rem;
}
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-item-actions button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f5ede6;
    color: #3e2723;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-actions button:hover {
    background: #d4af37;
    color: #2c1a0e;
}
.cart-item-actions button.remove:hover {
    background: #e74c3c;
    color: #fff;
}
.cart-item-actions span {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}
.empty-cart i {
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.3;
    margin-bottom: 20px;
}
.empty-cart h3 {
    font-size: 1.3rem;
    color: #2c1a0e;
}
.empty-cart p {
    color: #6d4c41;
    margin-bottom: 20px;
}

/* ============================================
   CART SUMMARY
   ============================================ */
.cart-summary {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(184, 134, 11, 0.06);
    height: fit-content;
    position: sticky;
    top: 100px;
}
.cart-summary h3 {
    font-size: 1.3rem;
    color: #2c1a0e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(184, 134, 11, 0.08);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #6d4c41;
}
.summary-row.discount {
    color: #27ae60;
    border-top: 1px dashed rgba(184, 134, 11, 0.1);
    padding-top: 15px;
    margin-top: 5px;
}
.summary-row.total {
    font-weight: 900;
    font-size: 1.2rem;
    color: #2c1a0e;
    border-top: 2px solid rgba(184, 134, 11, 0.1);
    padding-top: 15px;
    margin-top: 5px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
    padding: 80px 0;
    background: #faf3ea;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(212, 175, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
}
.about-experience .exp-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #2c1a0e;
    display: block;
    line-height: 1;
}
.about-experience .exp-label {
    color: #2c1a0e;
    font-weight: 700;
    font-size: 0.9rem;
}
.about-text .about-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 18px;
    border-radius: 50px;
    font-weight: 700;
    color: #b8860b;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.about-text h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #2c1a0e;
    margin-bottom: 20px;
}
.about-text h2 .highlight {
    color: #d4af37;
}
.about-text p {
    color: #6d4c41;
    margin-bottom: 15px;
    line-height: 1.9;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.about-feature i {
    font-size: 1.8rem;
    color: #d4af37;
}
.about-feature h4 {
    font-size: 1rem;
    color: #2c1a0e;
}
.about-feature p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #8d6e63;
}

/* ============================================
   TEAM
   ============================================ */
.team-section {
    padding: 80px 0;
}
.team-section.alt-bg {
    background: #f5ede6;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.team-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.5s ease;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(184, 134, 11, 0.1);
}
.team-img {
    height: 280px;
    overflow: hidden;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover .team-img img {
    transform: scale(1.05);
}
.team-info {
    padding: 25px 20px 30px;
}
.team-info h4 {
    font-size: 1.2rem;
    color: #2c1a0e;
}
.team-info span {
    color: #b8860b;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}
.team-info p {
    color: #6d4c41;
    font-size: 0.9rem;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}
.team-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5ede6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d4c41;
    transition: all 0.3s ease;
}
.team-social a:hover {
    background: #d4af37;
    color: #fff;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #2c1a0e;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 5px;
}
.section-title p {
    font-size: 1.15rem;
    color: #6d4c41;
    margin-top: 12px;
}
.section-title.light h2 {
    color: #fff;
}
.section-title.light h2::after {
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.section-title.light p {
    color: #f5e6d3;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #2c1a0e;
    margin-bottom: 4px;
}
.section-header p {
    color: #6d4c41;
    font-size: 1.1rem;
}
.view-all {
    color: #b8860b;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.view-all i {
    transition: transform 0.3s ease;
}
.view-all:hover {
    color: #d4af37;
}
.view-all:hover i {
    transform: translateX(-6px);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8960f);
    color: #2c1a0e;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
}

/* ============================================
   TOAST
   ============================================ */
.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(31, 19, 11, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateX(120%);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9998;
    max-width: 400px;
}
.toast-notification.show {
    transform: translateX(0);
}
.toast-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.toast-content h4 {
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 2px;
}
.toast-content p {
    color: #f5e6d3;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1f130b;
    color: #f5e6d3;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}
.footer-col .logo {
    margin-bottom: 15px;
}
.footer-col .logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
}
.footer-col p {
    opacity: 0.7;
    line-height: 1.9;
}
.footer-col p i {
    width: 28px;
    color: #d4af37;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.12);
    font-size: 1.1rem;
}
.social-icons a:hover {
    background: #d4af37;
    color: #1f130b;
    transform: translateY(-5px) scale(1.05);
    border-color: #d4af37;
}

.footer-col h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    opacity: 0.7;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover {
    opacity: 1;
    color: #d4af37;
    padding-right: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding-top: 25px;
    opacity: 0.5;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .category-hero-text h2 {
        font-size: 2.8rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .mega-menu {
        width: 500px;
        right: -80px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-hero {
        background-attachment: scroll;
    }
    .shop-wrapper {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        position: static;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .nav-menu {
        display: none;
        width: 100%;
        margin-top: 15px;
        background: rgba(31, 19, 11, 0.95);
        border-radius: 20px;
        padding: 20px;
    }
    .nav-menu.active {
        display: block;
        animation: fadeUp 0.3s ease;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .nav-menu ul li a::after {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .header-icons .btn-primary {
        display: none;
    }

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: transparent;
        backdrop-filter: none;
        padding: 10px 0;
        display: block;
    }
    .mega-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .mega-col h4 {
        color: #d4af37;
        font-size: 1rem;
    }
    .mega-col ul li a {
        color: #f5e6d3;
        font-size: 0.9rem;
    }
    .mega-dropdown:hover .mega-menu {
        display: block;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-number {
        font-size: 2.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slide-content h1 {
        font-size: 2.8rem;
    }
    .slide-content {
        max-width: 100%;
    }
    .slider-controls {
        right: 5%;
        bottom: 30px;
    }
    .slider-dots {
        left: 5%;
        bottom: 30px;
    }

    .category-hero {
        min-height: 300px;
        border-radius: 25px;
        background-attachment: scroll;
    }
    .category-hero-content {
        padding: 40px 25px;
    }
    .category-hero-text h2 {
        font-size: 2.2rem;
    }
    .category-hero-text p {
        font-size: 1rem;
    }
    .category-hero-overlay {
        background: linear-gradient(135deg, rgba(31, 19, 11, 0.95) 0%, rgba(62, 39, 35, 0.8) 100%);
    }

    /* دکمه‌های اسلایدر در موبایل */
    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .slider-btn.prev-slide {
        right: 8px;
    }
    .slider-btn.next-slide {
        left: 8px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        padding: 30px 25px;
    }
    .testimonial-content p {
        font-size: 1rem;
    }

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

    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-tabs {
        justify-content: center;
    }
    .page-hero-text h1 {
        font-size: 2.4rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 550px) {
    .container {
        padding: 0 16px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }
    .slider-controls button {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-item {
        padding: 10px;
    }

    .category-hero {
        min-height: 220px;
        border-radius: 16px;
        margin-bottom: 25px;
    }
    .category-hero-content {
        padding: 25px 16px;
    }
    .category-hero-text h2 {
        font-size: 1.6rem;
    }
    .category-hero-text .category-tag {
        font-size: 0.65rem;
        padding: 4px 14px;
        margin-bottom: 10px;
    }
    .category-hero-text p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    .category-hero-text .btn-gold {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .category-slider .slide-item {
        min-width: 220px;
        flex: 0 0 220px;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    .slider-btn.prev-slide {
        right: 5px;
    }
    .slider-btn.next-slide {
        left: 5px;
    }

    .product-img {
        height: 180px;
    }
    .product-info {
        padding: 16px 18px 20px;
    }
    .product-info h3 {
        font-size: 1rem;
    }
    .price {
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .benefit-card {
        padding: 25px 20px;
    }
    .benefit-icon {
        font-size: 2.4rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .brands-slider .brand-item {
        min-width: 120px;
    }
    .brands-slider .brand-item img {
        max-height: 50px;
    }
    .brands-slider-wrapper::before,
    .brands-slider-wrapper::after {
        width: 40px;
    }

    .blog-img {
        height: 170px;
    }
    .blog-content {
        padding: 18px 20px 22px;
    }

    .footer-grid {
        gap: 20px;
    }
    .footer {
        padding: 40px 0 15px;
    }

    .testimonial-content {
        padding: 24px 18px;
        border-radius: 25px;
    }
    .quote-icon {
        font-size: 2.2rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 20px;
        right: 20px;
    }
    .toast-notification {
        bottom: 80px;
        right: 16px;
        left: 16px;
        max-width: 100%;
        padding: 14px 20px;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    .page-hero-text h1 {
        font-size: 1.8rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-img {
        height: 220px;
    }
}

/* ============================================
   MICRO-INTERACTIONS
   ============================================ */
.btn-gold, .btn-primary, .btn-outline {
    position: relative;
    overflow: hidden;
}
.btn-gold .ripple, .btn-primary .ripple, .btn-outline .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.glow {
    animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.2);
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0ebe6 25%, #e8e0d8 50%, #f0ebe6 75%);
    background-size: 200% 100%;
    animation: skeletonLoad 1.5s ease-in-out infinite;
    border-radius: 10px;
}
@keyframes skeletonLoad {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}