/* Хималайска Сол - Stylesheet */
    /* Reset и основни стилове */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        --primary-color: #FF9B9B;
        --primary-dark: #FF7B7B;
        --secondary-color: #FFB5B5;
        --text-dark: #2C3E50;
        --text-light: #5A6C7D;
        --bg-light: #FFF5F5;
        --white: #FFFFFF;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
        --transition: all 0.3s ease;
    }
    
    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }
    
    body {
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background-color: var(--white);
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    h3 {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    p {
        margin-bottom: 1rem;
        color: var(--text-light);
    }
    
    a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
    }
    
    a:hover {
        color: var(--primary-dark);
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Container */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    /* Header */
    #header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        z-index: 1000;
        transition: var(--transition);
    }
    
    #header.scrolled {
        box-shadow: var(--shadow-lg);
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
    } */
    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        text-decoration: none; /* Премахва подчертаването */
        transition: var(--transition);
    }
    .logo:hover {
        opacity: 0.8; /* Лек hover ефект */
    }
    
    
    .logo img {
        width: 50px;
        height: 50px;
    }
    
    /* МОБИЛНО МЕНЮ - ВИНАГИ АКТИВНО */
    .nav-menu {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        list-style: none;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: var(--text-dark);
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        display: block;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: var(--transition);
    }
    
    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }
    
    /* HAMBURGER БУТОН - ВИНАГИ ВИДИМ */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        transition: var(--transition);
        border-radius: 2px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero секция */
    .hero {
        margin-top: 82px;
        min-height: calc(100vh - 82px);
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
        padding: 4rem 1.5rem;
    }
    
    .hero > .container {
        display: none;
    }
    
    .hero-content {
        flex: 1;
        max-width: 600px;
        padding-right: 2rem;
    }
    
    .hero h1 {
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.25rem);
        margin-bottom: 2rem;
        color: var(--text-light);
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: var(--transition);
        border: 2px solid transparent;
        cursor: pointer;
        text-align: center;
        min-height: 48px;
        line-height: 1.2;
    }
    
    .btn-primary {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .btn-secondary:hover {
        background: var(--primary-color);
        color: var(--white);
    }
    
    /* Sections */
    section {
        padding: 8rem 0;
    }
    
    .section-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem;
        font-size: 1.125rem;
        color: var(--text-light);
    }
    
    /* Benefits секция */
    .benefits {
        background: var(--white);
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .benefit-card {
        background: var(--bg-light);
        padding: 2rem;
        border-radius: 15px;
        transition: var(--transition);
        border: 2px solid transparent;
    }
    
    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }
    
    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        color: var(--primary-dark);
        margin-bottom: 1rem;
    }
    
    /* Products секция */
    .products {
        background: var(--bg-light);
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .product-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }
    
    .product-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
        background: var(--bg-light);
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.1);
    }
    
    .product-card h3 {
        padding: 1.5rem 1.5rem 0.5rem;
        color: var(--primary-dark);
    }
    
    .product-card > p {
        padding: 0 1.5rem;
        margin-bottom: 1rem;
    }
    
    .product-features {
        list-style: none;
        padding: 0 1.5rem 1.5rem;
    }
    
    .product-features li {
        padding: 0.5rem 0;
        color: var(--text-light);
        position: relative;
        padding-left: 1.5rem;
    }
    
    .product-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: 700;
    }
    
    /* About секция */
    .about {
        background: var(--white);
    }
    
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .about-text h2,
    .about-text h3 {
        text-align: left;
    }
    
    .about-text h3 {
        margin-top: 2rem;
        color: var(--primary-dark);
    }
    
    .about-image img {
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    /* Contact секция */
    .contact {
        background: var(--bg-light);
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 3rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-item {
        background: var(--white);
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: var(--shadow);
    }
    
    .contact-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item h3 {
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        margin-bottom: 0.25rem;
    }
    
    .contact-item a {
        color: var(--text-dark);
        font-weight: 500;
    }
    
    .contact-item a:hover {
        color: var(--primary-color);
    }
    
    /* Contact форма */
    .contact-form {
        background: var(--white);
        padding: 2rem;
        border-radius: 15px;
        box-shadow: var(--shadow);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 2px solid #E0E0E0;
        border-radius: 8px;
        font-family: inherit;
        font-size: 1rem;
        transition: var(--transition);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(255, 155, 155, 0.1);
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    .form-message {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
        display: none;
    }
    
    .form-message.success {
        background: #D4EDDA;
        color: #155724;
        display: block;
    }
    
    .form-message.error {
        background: #F8D7DA;
        color: #721C24;
        display: block;
    }
    
    /* Footer */
    .footer {
        background: var(--text-dark);
        color: var(--white);
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        color: var(--white);
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-section ul {
        list-style: none;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-section a:hover {
        color: var(--white);
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
    }
    
    .social-links a {
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .social-links a:hover {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .footer-bottom .powered-by {
        margin-top: 10px;
        font-size: 0.9em;
        color: #999;
    }
    
    .footer-bottom .powered-by a {
        color: #FF9B9B;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .footer-bottom .powered-by a:hover {
        color: #FF6B6B;
        text-decoration: underline;
    }
    
    .footer-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 20px auto;
        max-width: 800px;
    }
    
    .footer-bottom .partner-links {
        margin-top: 15px;
        font-size: 0.85em;
        color: #888;
    }
    
    .footer-bottom .partner-links a {
        color: #AAA;
        text-decoration: none;
        transition: color 0.3s ease;
        padding: 0 8px;
    }
    
    .footer-bottom .partner-links a:hover {
        color: #FF9B9B;
    }
    
    .footer-bottom .partner-links a:first-child {
        padding-left: 0;
    }
    
    /* АДАПТИВНИ НАСТРОЙКИ ЗА ПО-МАЛКИ ЕКРАНИ */
    
    /* Hero адаптация */
    @media (max-width: 768px) {
        .hero {
            flex-direction: column;
            text-align: center;
            padding: 3rem 1.5rem;
            margin-top: 70px;
            min-height: calc(100vh - 70px);
        }
        
        .hero-content {
            padding-right: 0;
            margin-bottom: 2rem;
        }
        
        .hero-buttons {
            justify-content: center;
            flex-direction: column;
            width: 100%;
        }
        
        .hero-buttons .btn {
            width: 100%;
        }
        
        .benefits-grid,
        .products-grid {
            grid-template-columns: 1fr;
        }
        
        .about-content,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
        }
    }
    
    /* Размер на шрифтовете за всички екрани */
    html {
        font-size: 14px;
    }
    
    section {
        padding: 7rem 0;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .benefit-card,
    .product-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Print styles */
    @media print {
        header,
        .hero-buttons,
        .contact-form,
        footer {
            display: none;
        }
        
        body {
            font-size: 12pt;
            color: #000;
        }
        
        a {
            text-decoration: underline;
            color: #000;
        }
    }
    