/* 
* آراوا - فروشگاه آنلاین تجهیزات کمپینگ و تناسب اندام
* رنگ‌بندی اصلی:
* - سبز طبیعتی: #2E7D32
* - سفید: #FFFFFF
* - خاکستری روشن: #E0E0E0
* - مشکی: #212121
*/

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

body {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    background-color: #FFFFFF;
    color: #212121;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: #2E7D32;
    transition: color 0.3s ease;
}

a:hover {
    color: #1B5E20;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2E7D32;
}

/* === Header === */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navbar styles for Bootstrap */
.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: #212121;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2E7D32;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(46, 125, 50, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-weight: 400;
    color: #212121;
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: #f5f5f5;
    color: #2E7D32;
}

.dropdown-item i {
    margin-left: 0.5rem;
    color: #2E7D32;
}

/* Original header styles kept for backward compatibility */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E7D32;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #212121;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover {
    color: #2E7D32;
}

.has-dropdown .fas {
    font-size: 0.8rem;
    margin-right: 0.3rem;
}

.cart-icon {
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    color: #212121;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #2E7D32;
    color: #FFFFFF;
    font-size: 0.7rem;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #212121;
}

/* === Animation Keyframes === */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* === Modern Hero Section === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 87, 34, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #4CAF50 100%);
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    animation: backgroundMove 20s linear infinite;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.7) 0%, rgba(27, 94, 32, 0.5) 100%);
    z-index: 2;
}

/* Nature-themed floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-elements > div {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 4rem;
    animation: float 8s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mountain-icon {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    font-size: 5rem;
}

.tent-icon {
    top: 20%;
    right: 12%;
    animation-delay: 2s;
}

.hiking-icon {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.dumbbell-icon {
    bottom: 15%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-30px) rotate(5deg) scale(1.1);
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-15px) rotate(-3deg) scale(0.9);
        opacity: 0.2;
    }
    75% { 
        transform: translateY(-25px) rotate(2deg) scale(1.05);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    max-width: 1000px;
    padding: 4rem 2rem;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
    width: 100%;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #FF5722, #FF7043);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

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

.primary-btn:hover::before,
.secondary-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(45deg, #FF5722, #FF7043);
    color: white;
    border: 2px solid transparent;
}

.primary-btn:hover {
    background: linear-gradient(45deg, #E64A19, #FF5722);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 87, 34, 0.5);
    color: white;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    color: white;
}

/* === Product Filter Styles === */
.product-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
    transition: left 0.5s;
}

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

.filter-btn:hover {
    border-color: #2E7D32;
    color: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

.filter-btn.active {
    background: linear-gradient(45deg, #2E7D32, #4CAF50);
    border-color: #2E7D32;
    color: white;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.filter-btn.active:hover {
    background: linear-gradient(45deg, #1B5E20, #2E7D32);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

/* === Enhanced Categories Section === */
.categories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(46, 125, 50, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: backgroundMove 30s linear infinite;
    opacity: 0.6;
}

.section-title-container {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(46, 125, 50, 0.1);
    height: 280px;
    display: flex;
    flex-direction: column;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.15);
    border-color: #2E7D32;
}

.card-image-container {
    position: relative;
    overflow: hidden;
    height: 140px;
    flex-shrink: 0;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
    transform: scale(1.1) rotate(1deg);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.7), rgba(27, 94, 32, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.product-count {
    background: rgba(255, 255, 255, 0.9);
    color: #2E7D32;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.category-icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #2E7D32, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.category-card:hover .category-icon {
    transform: translateX(-50%) scale(1.1) rotate(8deg);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.category-card h3 {
    margin: 1.8rem 0 0.8rem 0;
    font-size: 1.2rem;
    color: #2E7D32;
    font-weight: 700;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    line-height: 1.3;
}

.category-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(45deg, #2E7D32, #4CAF50);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    align-self: center;
}

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

.category-link:hover::before {
    left: 100%;
}

.category-link:hover {
    background: linear-gradient(45deg, #1B5E20, #2E7D32);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
}

.category-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(-3px);
}

/* === Responsive Design for Categories === */
@media (max-width: 1200px) {
    .categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.3rem;
    }
    
    .category-card {
        height: 270px;
    }
    
    .card-image-container {
        height: 130px;
    }
}

@media (max-width: 992px) {
    .categories-section {
        padding: 3.5rem 0;
    }
    
    .categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .category-card {
        height: 260px;
    }
    
    .card-image-container {
        height: 120px;
    }
    
    .category-card h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
    }
    
    .category-description {
        font-size: 0.8rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: -18px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 3rem 0;
    }
    
    .categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        height: 250px;
        border-radius: 12px;
    }
    
    .card-image-container {
        height: 110px;
    }
    
    .category-card h3 {
        font-size: 1rem;
        margin: 1.3rem 0 0.5rem 0;
    }
    
    .category-description {
        font-size: 0.75rem;
        padding: 0 0.8rem;
    }
    
    .category-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        bottom: -15px;
        border: 2px solid white;
    }
    
    .category-link {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 1.2rem;
    }
    
    .section-title-container {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .categories {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 350px;
    }
    
    .category-card {
        height: 240px;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }
    
    .card-image-container {
        height: 100px;
    }
    
    .category-card h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.5rem 0;
    }
    
    .category-description {
        font-size: 0.8rem;
    }
    
    .category-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        bottom: -16px;
    }
    
    .category-link {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .categories {
        max-width: 300px;
    }
    
    .category-card {
        height: 220px;
        max-width: 280px;
    }
    
    .card-image-container {
        height: 90px;
    }
    
    .category-card h3 {
        font-size: 1rem;
        margin: 1rem 0 0.4rem 0;
    }
    
    .category-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .category-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        bottom: -14px;
    }
    
    .category-link {
        padding: 6px 14px;
        font-size: 11px;
        margin-bottom: 1rem;
    }
}

/* === Enhanced Product Showcase === */
.product-showcase {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(46, 125, 50, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(46, 125, 50, 0.02) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.5;
}

.products-grid-container {
    position: relative;
    z-index: 2;
}

/* === Special Packs Enhanced === */
.special-packs {
    padding: 5rem 0;
    background-color: #333;
    position: relative;
    color: #FFFFFF;
}

.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fallback background color in case image is missing */
    background-color: #222;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
}

.light-title:after {
    background-color: #FFFFFF;
}

.packs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.pack-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    padding: 1.5rem;
    text-align: center;
    /* Removed backdrop-filter for better compatibility */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 120px;
    background-color: #F44336;
    color: white;
    text-align: center;
    padding: 5px 0;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
}

.pack-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    transition: transform 0.5s ease;
}

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

.pack-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.pack-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.pack-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pack-features span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.pack-features i {
    color: #4CAF50;
    margin-left: 0.5rem;
}

.pack-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pack-link:hover {
    background-color: #2E7D32;
    color: #FFFFFF;
    border-color: #2E7D32;
}

/* === Blog Section Enhanced === */
.blog-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

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

.blog-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #2E7D32;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #212121;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #2E7D32;
}

.blog-card p {
    color: #666666;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: #2E7D32;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-link i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: #1B5E20;
}

.blog-link:hover i {
    transform: translateX(-5px);
}

/* === Call to Action Section === */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.btn-subscribe {
    background-color: #FF5722;
    color: #FFFFFF;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 30px 30px 0;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-subscribe i {
    margin-right: 8px;
}

.btn-subscribe:hover {
    background-color: #E64A19;
}

/* === Footer === */
.site-footer {
    background-color: #222;
    color: #f4f4f4;
    padding: 60px 0 0;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    position: relative;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #2E7D32;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.social-links li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background-color: #2E7D32;
    transform: translateY(-3px);
}

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

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

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #2E7D32;
    transform: translateX(-5px);
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: #2E7D32;
    margin-right: 10px;
    margin-top: 4px;
}

.footer-contact li span {
    color: #ccc;
    line-height: 1.5;
}

.footer-form {
    display: flex;
    margin-bottom: 20px;
}

.footer-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.footer-form input::placeholder {
    color: #999;
}

.footer-form button {
    padding: 0 15px;
    border: none;
    background-color: #2E7D32;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-form button:hover {
    background-color: #225f26;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #999;
}

.footer-bottom a {
    color: #2E7D32;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* افزودن استایل‌های بخش کاربری در هدر */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn, .register-btn {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-btn {
    color: #2E7D32;
    background-color: transparent;
    border: 1px solid #2E7D32;
}

.login-btn:hover {
    background-color: #2E7D32;
    color: white;
}

.register-btn {
    background-color: #2E7D32;
    color: white;
    border: 1px solid #2E7D32;
}

.register-btn:hover {
    background-color: #1B5E20;
}

.user-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: #f5f5f5;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.user-dropdown:hover {
    background-color: #e0e0e0;
}

.user-dropdown i {
    font-size: 18px;
    color: #2E7D32;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 120%;
    min-width: 200px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 8px 0;
    z-index: 1000;
    display: none;
}

.dropdown-menu-end {
    right: 0;
    left: auto;
}

.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    margin-left: 8px;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 8px 0;
}

.text-danger {
    color: #dc3545 !important;
}

/* استایل‌های سبد خرید */
.cart-icon {
    position: relative;
    font-size: 18px;
    color: #333;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #2E7D32;
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* اضافه کردن CSS بوت استرپ برای نمایش dropdown */
.dropdown-toggle.show + .dropdown-menu {
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* استایل‌های مرتبط با صفحات فروشگاه */
.shop-page {
    background-color: #f8f9fa;
}

.shop-page footer {
    display: none; /* حذف فوتر در صفحات فروشگاه */
}

.shop-page .app-bottom-nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease-in-out;
}

/* حالت اسکرول به پایین - کوچک‌تر شدن منو */
.shop-page.scroll-down .app-bottom-nav {
    transform: translateY(5px) scale(0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* Mobile Payment Footer */
.mobile-payment-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.mobile-payment-footer .cart-summary {
    margin-bottom: 10px;
}

.mobile-payment-footer .cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.mobile-payment-footer .cart-total {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.mobile-payment-footer .payment-btn {
    display: block;
    text-align: center;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-payment-footer .payment-btn:hover {
    background-color: #27ae60;
}

/* Padding for content when mobile footer is visible */
body.has-mobile-footer .container {
    padding-bottom: 120px;
}

/* === Hero Stats === */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
    min-width: 120px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

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

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.15);
    border-color: #2E7D32;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* === Responsive Design for Features and Stats === */
@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }
    
    .feature-card {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .enhanced-cta {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .enhanced-cta .cta-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 2.5rem 0;
    }
    
    .feature-card {
        padding: 1.2rem 0.8rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        min-width: calc(50% - 0.25rem);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* === Enhanced CTA Banner === */
.enhanced-cta {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.enhanced-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
    pointer-events: none;
}

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

.enhanced-cta .cta-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.enhanced-cta .cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-features span {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-features i {
    color: #81C784;
}

.enhanced-cta .cta-button {
    background: white;
    color: #2E7D32;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.enhanced-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #1B5E20;
}

/* === Recommendation CTA Specific Styles === */
.recommendation-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    position: relative;
    overflow: hidden;
}

.recommendation-cta::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 80px 80px;
    animation: float 25s linear infinite;
}

.recommendation-cta .cta-text h3 {
    background: linear-gradient(45deg, #fff, #FFE082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recommendation-btn {
    background: linear-gradient(45deg, #2E7D32, #4CAF50) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.recommendation-btn:hover {
    background: linear-gradient(45deg, #1B5E20, #2E7D32) !important;
    color: white !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.5);
}

.recommendation-btn i:first-child {
    animation: pulse 2s infinite;
}

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

/* === Responsive Design === */
@media (max-width: 1200px) {
    .product-showcase {
        padding: 3.5rem 0;
    }
    
    .product-filter {
        gap: 12px;
        margin-bottom: 35px;
    }
    
    .filter-btn {
        padding: 11px 22px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .product-showcase {
        padding: 3rem 0;
    }
    
    .product-filter {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 3rem 0;
    }
    
    .product-filter {
        gap: 8px;
        margin-bottom: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 9px 18px;
        font-size: 12px;
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .product-showcase {
        padding: 2.5rem 0;
    }
    
    .product-filter {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .filter-btn {
        width: 180px;
        text-align: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .product-filter {
        margin-bottom: 15px;
    }
    
    .filter-btn {
        width: 160px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* === Media Queries Enhanced === */
@media screen and (max-width: 1200px) {
    .hero-section {
        min-height: 650px;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-content {
        padding: 3rem 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .hero-section {
        height: 90vh;
        min-height: 600px;
        background-attachment: scroll;
    }
    
    .main-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .main-title::after {
        width: 100px;
        height: 3px;
        bottom: -12px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
    
    .hero-content {
        padding: 2.5rem 1.5rem;
    }
    
    .floating-elements > div {
        font-size: 3rem;
    }
    
    .mountain-icon {
        font-size: 4rem;
    }
    
    .hero-buttons {
        gap: 20px;
        margin-bottom: 3rem;
    }
    
    .primary-btn, .secondary-btn {
        padding: 18px 35px;
        font-size: 1.1rem;
        min-width: 180px;
    }
    
    .hero-stats {
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-features ul {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 85vh;
        min-height: 550px;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .main-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }
    
    .main-title::after {
        width: 80px;
        height: 3px;
        bottom: -10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 2.5rem;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1rem;
        min-width: auto;
    }
    
    .floating-elements > div {
        font-size: 2.5rem;
    }
    
    .mountain-icon {
        font-size: 3rem;
        top: 10%;
        left: 5%;
    }
    
    .tent-icon {
        top: 15%;
        right: 8%;
    }
    
    .hiking-icon {
        bottom: 20%;
        left: 10%;
    }
    
    .dumbbell-icon {
        bottom: 10%;
        right: 15%;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .btn-subscribe {
        width: 100%;
    }
    
    /* Bootstrap Navbar Responsive Styles */
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 0;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0 1rem;
        margin-bottom: 0.5rem;
        position: static !important;
        transform: none !important;
    }
    
    .dropdown-item {
        padding: 0.5rem 0;
        border-bottom: 1px dashed #e0e0e0;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .d-flex {
        margin-top: 1rem;
        justify-content: space-between;
    }
    
    /* Original mobile menu styles kept for backward compatibility */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin-bottom: 1rem;
    }
    
    .nav-menu a {
        padding: 0.8rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu.active {
        max-height: 500px;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 0;
    }
    
    .packs {
        grid-template-columns: 1fr;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .tab-header {
        flex-direction: column;
    }
    
    .tab-item {
        padding: 1rem;
        text-align: center;
    }
    
    .tab-item.active {
        border-bottom-color: transparent;
        background-color: #F9F9F9;
    }
    
    .specs-row {
        flex-direction: column;
    }
    
    .specs-label,
    .specs-value {
        flex: auto;
    }
    
    .specs-label {
        border-bottom: 1px solid #E0E0E0;
    }
    
    .product-actions {
        flex-wrap: wrap;
    }
    
    .quantity {
        width: 100%;
        margin-bottom: 1rem;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
        padding: 0.5rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem;
    }
    
    .main-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .main-title::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 1rem 0;
        margin-top: 1.5rem;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        min-width: auto;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-elements > div {
        font-size: 2rem;
    }
    
    .mountain-icon {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .products {
        grid-template-columns: 1fr;
    }
    
    .tab-content {
        padding: 1.5rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .stat-item {
        min-width: calc(50% - 0.4rem);
    }
}

/* === Smart Consultation Section === */
.smart-consultation-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    margin: 4rem 0;
    padding: 4rem 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.consultation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShapes 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 60%;
    animation-delay: -8s;
}

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

.consultation-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 15s linear infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.consultation-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.consultation-header {
    margin-bottom: 2rem;
}

.consultation-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    animation: brainPulse 2s ease-in-out infinite;
}

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

.pulse-ring, .pulse-ring-2 {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.pulse-ring {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.pulse-ring-2 {
    width: 140px;
    height: 140px;
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.consultation-title {
    margin: 0;
    text-align: center;
}

.title-gradient {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.consultation-description {
    margin-bottom: 3rem;
}

.consultation-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

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

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.consultation-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.consultation-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.consultation-stats .stat-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.consultation-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.consultation-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.consultation-action {
    text-align: center;
}

.smart-consultation-btn {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.smart-consultation-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
    color: white;
    text-decoration: none;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.smart-consultation-btn:hover .btn-glow {
    left: 100%;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 10px 10px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 30px 20px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 50px 30px, rgba(255,255,255,0.4), transparent);
    background-size: 60px 40px;
    animation: btnSparkle 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.smart-consultation-btn:hover .btn-particles {
    opacity: 1;
}

@keyframes btnSparkle {
    0%, 100% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

.consultation-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.consultation-note i {
    color: #4CAF50;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .smart-consultation-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }
    
    .title-gradient {
        font-size: 2rem;
    }
    
    .consultation-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consultation-stats {
        gap: 1.5rem;
    }
    
    .consultation-stats .stat-item {
        padding: 1rem 1.5rem;
    }
    
    .consultation-stats .stat-number {
        font-size: 2rem;
    }
    
    .smart-consultation-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .smart-consultation-section {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .title-gradient {
        font-size: 1.8rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .consultation-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .pulse-ring {
        width: 100px;
        height: 100px;
    }
    
    .pulse-ring-2 {
        width: 120px;
        height: 120px;
    }
}

/* === Minimal Consultation Section === */
.consultation-wrapper {
    margin: 4rem 0;
    padding: 0 1rem;
}

.consultation-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    pointer-events: none;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.consultation-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.consultation-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

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

.consultation-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.consultation-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.6;
}

.consultation-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 100px;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.consultation-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

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

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

.consultation-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.consultation-btn i:first-child {
    animation: rotate 2s ease-in-out infinite;
}

.consultation-btn i:last-child {
    transition: transform 0.3s ease;
}

.consultation-btn:hover i:last-child {
    transform: translateX(-5px);
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .consultation-card {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .consultation-header h2 {
        font-size: 1.6rem;
    }
    
    .consultation-features {
        gap: 1rem;
    }
    
    .feature {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .consultation-stats {
        gap: 2rem;
    }
    
    .stat .number {
        font-size: 1.6rem;
    }
    
    .consultation-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .consultation-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .consultation-header h2 {
        font-size: 1.4rem;
    }
    
    .consultation-header p {
        font-size: 1rem;
    }
    
    .consultation-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .feature {
        flex-direction: row;
        min-width: 150px;
        justify-content: center;
    }
    
    .consultation-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .consultation-icon {
        width: 60px;
        height: 60px;
    }
    
    .consultation-icon i {
        font-size: 1.5rem;
    }
} 