/* PORNHUB BLACK / ORANGE THEME — FULL FILE, NOT CUT */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #171717;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background-color: #000000;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.modal-header p {
    color: #aaaaaa;
    font-size: 1.1rem;
}

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

.country-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #111111;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #000000 0%, #0d0d0d 100%);
}

.country-option:hover {
    border-color: #ff9000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.2);
}

.country-option.selected {
    border-color: #ff9000;
    background: linear-gradient(135deg, #ff9000 0%, #ffab2e 100%);
    color: white;
}

.country-option .flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.country-option .country-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.country-option .currency {
    font-size: 0.9rem;
    color: #aaaaaa;
}

.country-option.selected .currency {
    color: rgba(255, 255, 255, 0.8);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #000000 0%, #0d0d0d 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}

/* Hide header on scroll down for mobile */
.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 120px;
    font-weight: 700;
    color: #fff!important;
}
.logo span {
    background-color: #ff9000;
    color: #000;
    border-radius: 3px;
    margin-left: 4px;
    padding: 0px 4px;
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #111111;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-selector:hover {
    background: #222222;
    transform: translateY(-1px);
}

.current-flag {
    font-size: 1.5rem;
}

.current-currency {
    font-weight: 600;
    color: #ffffff;
}

.dropdown-arrow {
    font-size: 0.8rem;
    color: #aaaaaa;
}

.contact-btn {
    background: linear-gradient(135deg, #ff9000 0%, #ffab2e 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 188, 79, 0.3);
}

/* Скрываем кнопку Админ в навигации */
.admin-link {
    display: none !important;
}

/* Скрываем весь li элемент с кнопкой Админ */
li:has(.admin-link) {
    display: none !important;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 188, 79, 0.4);
}

.navigation {
    border-top: 1px solid #222222;
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, rgba(247, 188, 79, 0.1), rgba(247, 188, 79, 0.05));
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(247, 188, 79, 0.1);
}

.nav-link:hover {
    background: linear-gradient(135deg, #ff9000, #ffab2e);
    color: #ffab2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 188, 79, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.nav-link.active {
    background: linear-gradient(135deg, #ff9000, #ffab2e);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 188, 79, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.admin-link {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: linear-gradient(135deg, #FF5252, #FF7979);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Убираем подчеркивание, так как теперь у нас красивые кнопки */

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
    /* background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%); */
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #aaaaaa;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #ffffff;
}

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

/* Filters Section */
.filters-section {
    background: #111111;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filters-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.mobile-filters-btn {
    display: none;
    background: #ff9000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff9000;
}


#sortSelect {
    width: 100%;
    padding: 10px;
    border: 2px solid #222222;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
}

#sortSelect:focus {
    outline: none;
    border-color: #ff9000;
}

/* Products Section */
.products-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

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

.product-card {
    background: #1b1b1b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-emoji-fallback {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.indica {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    color: white;
}

.product-badge.sativa {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
}

.product-badge.hybrid {
    background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    color: white;
}

.product-info {
    padding: 25px;
        display: flex;
        flex-direction: column;
        height: 400px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9000;
    margin-bottom: 15px;
}

.product-thc {
    background: #111111;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #aaaaaa;
    display: inline-block;
    margin-bottom: 15px;
}

.product-flavors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.flavor-tag {
    background: linear-gradient(135deg, #ff9000 0%, #ff9000 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-effects {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.order-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff9000 0%, #ffab2e 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 188, 79, 0.3);
}
.order-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 188, 79, 0.4);
}

/* About Section */
.about-section {
    margin-bottom: 60px;
    padding: 60px 0;
    /* background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%); */
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-feature {
    background: #151515;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-feature p {
    color: #aaaaaa;
    font-size: 1rem;
    margin: 0;
}

/* Delivery Section */
.delivery-section {
    margin-bottom: 60px;
}

.delivery-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.delivery-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.delivery-method {
    background: #111111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

/* Contacts Section */
.contacts-section {
    margin-bottom: 60px;
}

.contacts-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-details a {
    color: #ff9000;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff9000;
}

.footer-section p {
    color: #888888;
    margin-bottom: 10px;
}

.footer-section a {
    color: #ff9000;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888888;
}

/* Loading and Error States */
.loading, .error, .no-products {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: #aaaaaa;
}

.loading {
    color: #ff9000;
}

.error {
    color: #f44336;
}

.no-products {
    color: #aaaaaa;
    font-style: italic;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Hover effects for interactive elements */
.product-card:hover .product-image {
    transform: scale(1.05);
}

.filter-option:hover {
    color: #ff9000;
}

.nav-link:hover {
    transform: translateY(-1px);
}

/* Desktop Navigation Logo */
.desktop-logo-item {
    display: block;
}

.desktop-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: linear-gradient(135deg, #ff9000 0%, #ffab2e 100%);
    border-radius: 10px;
    color: white;
    margin-right: 20px;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
}

.desktop-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 188, 79, 0.3);
}

.desktop-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 6px;
}

.desktop-logo-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Show desktop logo on larger screens */
@media (min-width: 769px) {
    .desktop-logo-item {
        display: block;
    }
    
    .mobile-logo-item {
        display: none;
    }
}


/* ===== НОВОЕ БУРГЕР-МЕНЮ ===== */

/* Стили для навигационного меню на мобильных */
@media (max-width: 768px) {
    .nav-menu, #navMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow: hidden;
    }
    
    .nav-menu.active, #navMenu.active {
        transform: translateX(0) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu li, #navMenu li {
        list-style: none;
    }
    
    .nav-menu .nav-link, #navMenu .nav-link {
        display: block;
        padding: 18px 35px;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        background: #242424;
        border-radius: 15px;
        min-width: 250px;
        text-align: center;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover, #navMenu .nav-link:hover {
        background: linear-gradient(135deg, #000000, rgba(28, 28, 28, 0.95));
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);

        color: #ffab2e;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        transform: translateY(-3px);
    }
    
    .nav-menu .nav-link.active, #navMenu .nav-link.active {
        background: linear-gradient(135deg, #ff9000, #ffab2e);
        box-shadow: 0 8px 25px rgba(230, 180, 0, 0.5);
        border-color: #ff9000;
        color: #000;
        font-weight: 900;
    }
    
}

/* Красивая кнопка бургер-меню - скрыта по умолчанию */
.mobile-menu-btn {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff9000, #ffab2e);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(247, 188, 79, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-menu-btn .hamburger {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn:hover .hamburger {
    background: #000000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-burger-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;
}

.mobile-burger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 188, 79, 0.4);
}

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

.mobile-burger-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(247, 188, 79, 0.3);
}

.mobile-burger-btn span {
    display: block;
    width: 20px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mobile-burger-btn.active {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.mobile-burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
}

.mobile-burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
}

/* Красивое мобильное меню с контрастными цветами */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    overflow: hidden;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mobile-menu.active {
    transform: translateX(0);
}


.mobile-menu-link {
    display: block;
    padding: 18px 35px;
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 250px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.mobile-menu-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;
}

.mobile-menu-link:hover {
    background: linear-gradient(135deg, #000000, rgba(255, 255, 255, 0.95));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: #000000;
    color: #000000;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-link:active {
    transform: translateY(-2px) scale(1.02);
}

.mobile-menu-link.active {
    background: linear-gradient(135deg, #ff9000, #ffab2e);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.5);
    border-color: #ff9000;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 900;
}

/* Анимация появления ссылок */
.mobile-menu.active .mobile-menu-link {
    animation: slideInFromLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Анимация исчезновения ссылок */
.mobile-menu:not(.active) .mobile-menu-link {
    animation: slideOutToLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutToLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50px);
    }
}

/* Показать бургер-меню только на мобильных */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Скрываем синюю кнопку когда меню активно */
    .nav-menu.active ~ .header-actions .mobile-menu-btn,
    #navMenu.active ~ .header-actions .mobile-menu-btn {
        display: none !important;
    }
}
    
    
/* Кнопка закрытия скрыта по умолчанию (на десктопе не показываем) */
.close-menu-btn { display: none; }

/* Показываем кнопку только на мобильных внутри активного меню */
@media (max-width: 768px) {
    #navMenu.active .close-menu-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #ff4757, #ff3742);
        color: white;
        border: 0;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
        outline: none;
        transition: all 0.3s ease;
        z-index: 10001;
    }

    #navMenu.active .close-menu-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
        background: linear-gradient(135deg, #ff3742, #ff2d3a);
    }
}
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        display: block;
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 8px;
        background: rgba(247, 188, 79, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .nav-link:hover {
        background: rgba(247, 188, 79, 0.2);
        transform: none;
    }
    
    .nav-link.active {
        background: #ff9000;
        color: white;
    }
    
    .nav-link:last-child {
        margin-bottom: 0;
    }
    
    .mobile-logo-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px;
        background: linear-gradient(135deg, #ff9000 0%, #ffab2e 100%);
        border-radius: 12px;
        color: white;
    }
    
    .mobile-logo-img {
        width: 35px;
        height: 35px;
        object-fit: contain;
        border-radius: 6px;
    }
    
    .mobile-logo-text {
        font-size: 16px;
        font-weight: 600;
        flex: 1;
    }
}

/* Mobile Product Cards */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .product-card {
        margin-bottom: 10px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-price {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .product-thc {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .product-flavors {
        margin-bottom: 8px;
    }
    
    .flavor-tag {
        font-size: 10px;
        padding: 2px 6px;
        margin: 2px;
    }
    
    .product-effects {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .order-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-menu {
        gap: 6px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .products-grid {
        gap: 12px;
        padding: 0 5px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        height: 300px;
        padding: 12px;
    }
    
    .product-name {
        font-size: 15px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .flavor-tag {
        font-size: 9px;
        padding: 1px 4px;
    }
}

/* Mobile Header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
    }
    
    .site-title {
        font-size: 20px;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .feature {
        font-size: 14px;
    }
}

/* Mobile Filters */
@media (max-width: 768px) {
    .filters-container {
        padding: 15px;
        margin: 10px;
    }
    
    .filter-group {
        margin-bottom: 15px;
    }
    
    .filter-options {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-option {
        font-size: 14px;
    }
    
    .mobile-filters-btn {
        display: block;
        background: #ff9000;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 14px;
        cursor: pointer;
        margin: 10px auto;
    }
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus {
    outline: 2px solid #ff9000;
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff9000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffab2e;
}

/* Additional styles for new pages */

/* About page styles */
.about-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    /* background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%); */
    border-radius: 20px;
}

.about-hero h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-feature {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.about-feature h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-feature p {
    color: #aaaaaa;
    line-height: 1.6;
}

.about-story, .about-values {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.about-story h3, .about-values h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-story p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    border-radius: 15px;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.value-item p {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Delivery page styles */
.delivery-current-country {
    background: linear-gradient(135deg, #ff9000 0%, #ffab2e 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.country-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.delivery-methods-section {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.delivery-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.delivery-method {
    background: #0d0d0d;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    gap: 10px;
}

.method-icon {
    font-size: 2rem;
}

.method-name {
    font-weight: 600;
    color: #ffffff;
}

.delivery-info-section {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.delivery-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.delivery-info-item {
    text-align: center;
    padding: 20px;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.delivery-info-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.delivery-info-item p {
    color: #aaaaaa;
    line-height: 1.6;
}

.how-to-order, .delivery-faq {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.order-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: #ff9000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-content p {
    color: #aaaaaa;
    line-height: 1.6;
}

.faq-items {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #222222;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-item p {
    color: #aaaaaa;
    line-height: 1.6;
}

/* Contacts page styles */
.contacts-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%);
    border-radius: 20px;
}

.contacts-hero h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.contacts-hero p {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card.primary {
    background: linear-gradient(135deg, #ff9000 0%, #ffab2e 100%);
    color: white;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.contact-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff9000;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.contact-card.primary .contact-link {
    color: white;
    text-decoration: underline;
}

.contact-time {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-note {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.country-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.how-to-contact, .quick-actions, .contacts-faq {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
a {
    color: #ffab2e;
    text-decoration: none;
}

.step-content p {
    color: #aaaaaa;
    line-height: 1.6;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.action-btn {
    display: block;
    padding: 15px 20px;
    background: #0d0d0d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn:hover {
    background: #ff9000;
    color: white;
    transform: translateY(-2px);
}

.action-btn.primary {
    background: linear-gradient(135deg, #ff9000 0%, #ffab2e 100%);
    color: white;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 188, 79, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-filters-btn {
        display: block;
    }
    
    .filters-container {
        display: none;
        grid-template-columns: 1fr;
    }
    
    .filters-container.active {
        display: grid;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 20px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .country-option {
        padding: 15px 10px;
    }
    
    .country-option .flag {
        font-size: 2rem;
    }
    
    .country-option .country-name {
        font-size: 0.9rem;
    }
    
    .country-option .currency {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal {
        padding: 5px;
    }
    
    .modal-content {
        margin: 2% auto;
        padding: 15px;
        width: 98%;
        max-height: 95vh;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .country-option {
        padding: 12px 8px;
    }
    
    .country-option .flag {
        font-size: 1.8rem;
    }
    
    .country-option .country-name {
        font-size: 0.85rem;
    }
    
    .country-option .currency {
        font-size: 0.75rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-header p {
        font-size: 1rem;
    }
}

/* Special offer step */
.order-step.special-offer {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2px solid #FF9800;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.special-offer .step-number {
    background: #FF9800;
    font-size: 20px;
}

.special-offer .step-content h4 {
    color: #E65100;
}

.special-offer .step-content p {
    color: #BF360C;
}

/* Delivery methods */
.delivery-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.delivery-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #0d0d0d;
    border-radius: 8px;
    border-left: 4px solid #ff9000;
    transition: all 0.3s ease;
}

.delivery-method:hover {
    background: #E3F2FD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 188, 79, 0.2);
}

.method-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.method-name {
    font-weight: 500;
    color: #fff;
    font-size: 14px;
}

/* Premium text with yellow gradient */
.premium-text {
    background: linear-gradient(135deg, #ff9000 0%, #ff9000 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.5);
    position: relative;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    background-color: rgba(255, 215, 0, 0.1);
    border: 2px solid #ff9000;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
    animation: premiumGlow 2s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    0% {
        box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
        border-color: #ff9000;
    }
    100% {
        box-shadow: 0 6px 12px rgba(255, 215, 0, 0.6);
        border-color: #ff9000;
    }
}
/* ===== REVIEWS PAGE ===== */

.reviews-section {
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: #000;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    transition: transform .3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.review-stars {
    color: #ff9000;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: #aaaaaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.review-photos img {
    width: 100%;
    height: auto;          /* главное */
    max-height: 220px;     /* ограничение по высоте */
    object-fit: contain;  /* НЕ режем */
    background: #000;
    border-radius: 12px;
    cursor: zoom-in;
    padding: 6px;
}

.review-photos img:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .review-card {
        padding: 20px;
    }

    .review-author {
        font-size: 1rem;
    }

    .review-stars {
        font-size: 1rem;
    }
}
/* ===== IMAGE VIEWER (FULLSCREEN) ===== */

.image-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.image-viewer.active {
    display: flex;
}

.image-viewer img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.image-viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: rgba(0,0,0,0.6);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
