
/* Фирменный стиль "Магазин 7я" — яркая, энергичная семейная палитра */

:root {
    --primary-color: #FF5F6D;
    --primary-2: #FFA35C;
    --secondary-color: #FFF7F0;
    --accent-color: #6C5CE7;
    --accent-2: #00D9C0;
    --dark-color: #211A2E;
    --light-color: #ffffff;
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --shadow: 0 10px 30px rgba(255, 95, 109, 0.18);
    --shadow-strong: 0 16px 40px rgba(108, 92, 231, 0.25);
    --box-icon-color: #FF5F6D;
    --radius-card: 22px;
    --radius-btn: 50px;
    --grad-warm: linear-gradient(135deg, var(--primary-color), var(--primary-2));
    --grad-cool: linear-gradient(135deg, var(--accent-color), var(--accent-2));
}

/* Все остальные стили из оригинального файла остаются без изменений */
     /* Основные стили сайта */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #FF5F6D;
            --primary-2: #FFA35C;
            --secondary-color: #FFF7F0;
            --accent-color: #6C5CE7;
            --accent-2: #00D9C0;
            --dark-color: #211A2E;
            --light-color: #ffffff;
            --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            --shadow: 0 10px 30px rgba(255, 95, 109, 0.18);
            --shadow-strong: 0 16px 40px rgba(108, 92, 231, 0.25);
            --admin-bg: #1c1626;
            --admin-accent: #6C5CE7;
            --success-color: #00D9C0;
            --error-color: #FF5F6D;
        }

        body {
            font-family: 'Nunito', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--secondary-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

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

        section {
            padding: 80px 0;
        }

        .btn {
            display: inline-block;
            background: var(--grad-warm);
            color: var(--light-color);
            padding: 16px 36px;
            border-radius: var(--radius-btn);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-family: 'Fredoka', sans-serif;
            box-shadow: 0 8px 20px rgba(255, 95, 109, 0.35);
        }

        .btn:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 14px 30px rgba(255, 95, 109, 0.45);
        }

        .btn {
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
            transform: skewX(-20deg);
            transition: left 0.6s ease;
        }

        .btn:hover::before {
            left: 130%;
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .badge-hit {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            background: var(--grad-warm);
            color: #fff;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 0.78rem;
            padding: 6px 14px;
            border-radius: 30px;
            box-shadow: 0 6px 14px rgba(255, 95, 109, 0.35);
            transform: rotate(-4deg);
        }

        .stars {
            color: var(--primary-2);
            font-size: 1.05rem;
            margin-bottom: 14px;
            letter-spacing: 2px;
        }

        /* Стили для админ-панели */
        .admin-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .admin-overlay.active {
            display: flex;
        }

        .admin-panel {
            width: 100%;
            max-width: 1200px;
            height: 90vh;
            background-color: var(--admin-bg);
            border-radius: var(--radius-card);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .admin-header {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .admin-header h3 {
            color: white;
            margin: 0;
        }

        .admin-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .admin-content {
            display: flex;
            flex: 1;
            overflow: hidden;
        }

        .admin-sidebar {
            width: 250px;
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            overflow-y: auto;
        }

        .admin-main {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }

        .admin-section {
            margin-bottom: 30px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
        }

        .admin-section h4 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: #ddd;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 14px;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--admin-accent);
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .btn-admin {
            background-color: var(--admin-accent);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-admin:hover {
            background-color: #2980b9;
        }

        .btn-admin.success {
            background-color: var(--success-color);
        }

        .btn-admin.danger {
            background-color: var(--error-color);
        }

        .admin-nav {
            list-style: none;
        }

        .admin-nav li {
            margin-bottom: 5px;
        }

        .admin-nav a {
            display: block;
            padding: 12px 20px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }

        .admin-nav a:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: white;
        }

        .admin-nav a.active {
            background-color: rgba(52, 152, 219, 0.2);
            color: white;
            border-left-color: var(--admin-accent);
        }

        .admin-nav i {
            width: 20px;
            margin-right: 10px;
        }

        .item-list {
            max-height: 400px;
            overflow-y: auto;
            margin-bottom: 15px;
        }

        .item-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            padding: 15px;
            margin-bottom: 10px;
            border-left: 3px solid var(--admin-accent);
        }

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

        .item-title {
            font-weight: bold;
            color: white;
        }

        .item-actions {
            display: flex;
            gap: 10px;
        }

        .btn-item {
            background: none;
            border: none;
            color: #ddd;
            cursor: pointer;
            font-size: 14px;
            padding: 5px;
        }

        .btn-item:hover {
            color: white;
        }

        .admin-status {
            padding: 10px 15px;
            border-radius: 4px;
            margin-bottom: 15px;
            font-size: 14px;
            display: none;
        }

        .admin-status.success {
            background-color: rgba(46, 204, 113, 0.2);
            color: #2ecc71;
            display: block;
        }

        .admin-status.error {
            background-color: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
            display: block;
        }

        .admin-login {
            max-width: 400px;
            width: 100%;
            background-color: var(--admin-bg);
            border-radius: var(--radius-card);
            padding: 40px;
        }

        .admin-login h3 {
            color: white;
            text-align: center;
            margin-bottom: 30px;
        }

        .login-error {
            color: var(--error-color);
            font-size: 14px;
            margin-top: 10px;
            display: none;
        }

        .section-preview {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px dashed rgba(255, 255, 255, 0.2);
        }

        .preview-title {
            color: white;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .preview-content {
            color: #aaa;
            font-size: 14px;
        }

        /* Header Styles */
        .topbar {
            background: var(--grad-warm);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 10px 0;
            letter-spacing: 0.3px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001;
            overflow: hidden;
            white-space: nowrap;
        }

        .topbar-track {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 22s linear infinite;
        }

        .topbar-track span {
            margin-right: 40px;
        }

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

        header {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(33, 26, 46, 0.06);
            position: fixed;
            width: 100%;
            top: 38px;
            z-index: 1000;
        }

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

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

        .logo::before {
            content: '7';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: var(--grad-warm);
            color: var(--light-color);
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            flex-shrink: 0;
            box-shadow: 0 6px 16px rgba(255, 95, 109, 0.35);
            transform: rotate(-6deg);
        }

        .logo h1 {
            font-size: 1.7rem;
            margin-bottom: 0;
            color: var(--dark-color);
        }

        .logo span {
            background: var(--grad-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
        }

        .nav-links li {
            margin-left: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            padding: 10px 18px;
            border-radius: 30px;
            display: block;
        }

        .nav-links a:hover {
            color: var(--light-color);
            background: var(--grad-cool);
        }

        .nav-links a::after {
            content: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding-top: 200px;
            padding-bottom: 120px;
            background: linear-gradient(180deg, #FFF0E6 0%, var(--secondary-color) 55%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: var(--grad-warm);
            opacity: 0.16;
            filter: blur(10px);
            top: -140px;
            right: -120px;
            z-index: 0;
            animation: blobMove 9s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: var(--grad-cool);
            opacity: 0.14;
            filter: blur(10px);
            bottom: -100px;
            left: -80px;
            z-index: 0;
            animation: blobMove 11s ease-in-out infinite reverse;
        }

        @keyframes blobMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, 30px) scale(1.12); }
        }

        .hero-divider {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 1;
        }

        .hero-divider svg {
            width: 100%;
            height: 90px;
            display: block;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            flex: 1;
            padding-right: 40px;
        }

        .hero-text .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--light-color);
            color: var(--accent-color);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 22px;
            box-shadow: 0 6px 16px rgba(108, 92, 231, 0.18);
        }

        .hero-text h2 {
            font-size: 3.4rem;
            margin-bottom: 22px;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, var(--dark-color), var(--primary-color), var(--accent-color), var(--dark-color));
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 8s linear infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 34px;
            color: #5a5468;
        }

        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .hero-image .frame {
            display: inline-block;
            background: var(--light-color);
            padding: 16px 16px 40px;
            border-radius: 24px;
            box-shadow: var(--shadow-strong);
            transform: rotate(3deg);
            animation: float 6s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        .hero-image img {
            max-width: 100%;
            display: block;
            border-radius: 14px;
        }

        @keyframes float {
            0%, 100% { transform: rotate(3deg) translateY(0); }
            50% { transform: rotate(3deg) translateY(-18px); }
        }

        /* About Section */
        .about {
            background-color: var(--light-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 55px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.6rem;
            color: var(--dark-color);
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 90px;
            height: 6px;
            border-radius: 6px;
            background: var(--grad-warm);
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .features {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature {
            background-color: var(--secondary-color);
            padding: 28px 22px;
            border-radius: var(--radius-card);
            text-align: center;
            transition: var(--transition);
        }

        .feature:nth-child(1) { background: linear-gradient(160deg, #FFEFE4, var(--secondary-color)); }
        .feature:nth-child(2) { background: linear-gradient(160deg, #EFEBFF, var(--secondary-color)); }
        .feature:nth-child(3) { background: linear-gradient(160deg, #E3FBF7, var(--secondary-color)); }
        .feature:nth-child(4) { background: linear-gradient(160deg, #FFF3D6, var(--secondary-color)); }

        .feature:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow);
        }

        .feature i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 62px;
            height: 62px;
            border-radius: 18px;
            background: var(--grad-warm);
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 16px;
            transform: rotate(-4deg);
        }

        .feature:nth-child(even) i {
            background: var(--grad-cool);
            transform: rotate(4deg);
        }

        .feature h3 {
            font-size: 1.25rem;
        }

        /* Links Section */
        .links {
            background-color: var(--secondary-color);
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .link-card {
            background-color: var(--light-color);
            border-radius: var(--radius-card);
            padding: 32px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 6px 16px rgba(33, 26, 46, 0.06);
            position: relative;
            overflow: hidden;
        }

        .link-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--grad-cool);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }

        .link-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

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

        .link-card i {
            font-size: 2.4rem;
            background: var(--grad-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            display: inline-block;
        }

        .link-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .link-card p {
            margin-bottom: 20px;
            color: #666;
        }

        .link-btn {
            display: inline-block;
            background: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
            padding: 9px 22px;
            border-radius: var(--radius-btn);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .link-btn:hover {
            background: var(--grad-cool);
            border-color: transparent;
            color: var(--light-color);
        }

        /* Products Section */
        .products {
            background-color: var(--light-color);
        }

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

        .product-card {
            background-color: var(--secondary-color);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 6px 16px rgba(33, 26, 46, 0.06);
            border: none;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-12px) rotate(-0.5deg);
            box-shadow: var(--shadow-strong);
        }

        .product-image {
            height: 210px;
            overflow: hidden;
            position: relative;
        }

        .product-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--grad-warm);
        }

        .product-card:nth-child(3n+2) .product-image::after {
            background: var(--grad-cool);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-content {
            padding: 24px 22px;
        }

        .product-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .product-content p {
            color: #666;
            margin-bottom: 18px;
        }

        /* Reviews Section */
        .reviews {
            background: var(--dark-color);
            background-image: radial-gradient(circle at 15% 20%, rgba(255, 95, 109, 0.18), transparent 45%), radial-gradient(circle at 85% 80%, rgba(0, 217, 192, 0.16), transparent 45%);
        }

        .reviews .section-title h2 {
            color: var(--light-color);
        }

        .reviews-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .review-card {
            background-color: var(--light-color);
            border-radius: var(--radius-card);
            padding: 44px 34px 34px;
            box-shadow: var(--shadow-strong);
            margin: 0 15px;
            text-align: center;
            transition: var(--transition);
            display: none;
            border-top: none;
        }

        .review-card.active {
            display: block;
            animation: fadeIn 0.8s ease;
        }

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

        .review-text {
            font-style: normal;
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #444;
            position: relative;
        }

        .review-text::before, .review-text::after {
            content: none;
        }

        .review-author {
            font-weight: 700;
            color: var(--dark-color);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .review-author::before {
            content: attr(data-initial);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--grad-warm);
            color: #fff;
            font-size: 0.9rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 34px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.25);
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--grad-warm);
            width: 26px;
            border-radius: 6px;
        }

        /* Delivery Section */
        .delivery {
            background: linear-gradient(180deg, var(--secondary-color) 0%, #FFF0E6 100%);
            position: relative;
            overflow: hidden;
        }

        .delivery-badges {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .delivery-badges span {
            background: var(--light-color);
            color: var(--dark-color);
            font-weight: 700;
            font-size: 0.9rem;
            padding: 8px 20px;
            border-radius: 30px;
            box-shadow: 0 6px 16px rgba(33, 26, 46, 0.08);
        }

        .delivery-sub {
            text-align: center;
            color: #6b6478;
            font-size: 1.1rem;
            margin-top: -35px;
            margin-bottom: 50px;
        }

        .delivery-flow {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 60px;
        }

        .delivery-step {
            background: var(--light-color);
            border-radius: 18px;
            padding: 22px 18px;
            width: 165px;
            text-align: center;
            box-shadow: 0 6px 16px rgba(33, 26, 46, 0.06);
            transition: var(--transition);
            position: relative;
        }

        .delivery-step:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-strong);
        }

        .delivery-step .step-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 12px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: var(--grad-warm);
        }

        .delivery-step:nth-child(even) .step-icon {
            background: var(--grad-cool);
        }

        .delivery-step .step-num {
            position: absolute;
            top: -10px;
            right: -6px;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--dark-color);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .delivery-step p {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark-color);
            margin: 0;
        }

        .flow-arrow {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-size: 1.3rem;
            opacity: 0.5;
        }

        .delivery-panels {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 26px;
            margin-bottom: 40px;
        }

        .delivery-panel {
            background: var(--light-color);
            border-radius: var(--radius-card);
            padding: 30px 28px;
            box-shadow: 0 6px 16px rgba(33, 26, 46, 0.06);
            border-left: 5px solid var(--primary-color);
        }

        .delivery-panel:nth-child(2) {
            border-left-color: var(--accent-color);
        }

        .delivery-panel h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .delivery-panel p {
            color: #666;
            font-size: 0.98rem;
            margin: 0;
        }

        .delivery-panel .warn {
            display: inline-block;
            margin-top: 14px;
            background: rgba(255, 95, 109, 0.1);
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 8px 14px;
            border-radius: 10px;
        }

        .delivery-price-card {
            background: var(--dark-color);
            background-image: radial-gradient(circle at 20% 30%, rgba(255, 95, 109, 0.35), transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 217, 192, 0.3), transparent 50%);
            border-radius: var(--radius-card);
            padding: 40px;
            color: #fff;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .delivery-price-card .price-main {
            font-family: 'Fredoka', sans-serif;
            font-size: 2.2rem;
        }

        .delivery-price-card .price-main span {
            background: var(--grad-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .delivery-price-card .price-note {
            color: #c4bcd8;
            font-size: 0.95rem;
            max-width: 320px;
        }

        .delivery-gift {
            background: var(--grad-warm);
            border-radius: 16px;
            padding: 18px 24px;
            font-weight: 700;
            text-align: center;
        }

        .delivery-note {
            text-align: center;
            font-size: 0.85rem;
            color: #8b8496;
            max-width: 700px;
            margin: 24px auto 0;
        }

        /* CTA Band */
        .cta-band {
            background: var(--grad-warm);
            padding: 60px 0;
            text-align: center;
        }

        .cta-band h2 {
            color: #fff;
            font-size: 2.2rem;
            margin-bottom: 14px;
        }

        .cta-band p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 28px;
        }

        .cta-band .btn {
            background: var(--light-color);
            color: var(--primary-color);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
        }

        .cta-band .btn:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 70px 0 30px;
            position: relative;
            margin-top: 0;
        }

        .footer-wave {
            display: none;
        }

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

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 20px;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--light-color);
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 44px;
            height: 4px;
            border-radius: 4px;
            background: var(--grad-warm);
            bottom: -10px;
            left: 0;
        }

        .footer-column p {
            margin-bottom: 15px;
            color: #a89fc0;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            color: var(--light-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--grad-warm);
            transform: translateY(-5px) rotate(-6deg);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #a89fc0;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .hero-text h2 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .delivery-content {
                flex-direction: column;
            }
            
            .admin-sidebar {
                width: 200px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: var(--light-color);
                width: 100%;
                padding: 20px;
                box-shadow: var(--shadow);
                transition: left 0.3s ease;
                z-index: 1000;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
                margin-left: 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero {
                padding-top: 120px;
            }
            
            .hero-text h2 {
                font-size: 2rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .footer-column {
                min-width: 100%;
                padding-right: 0;
            }
            
            .admin-content {
                flex-direction: column;
            }
            
            .admin-sidebar {
                width: 100%;
                padding: 10px 0;
            }
            
            .admin-nav {
                display: flex;
                overflow-x: auto;
                padding: 0 10px;
            }
            
            .admin-nav li {
                flex-shrink: 0;
                margin: 0;
            }
            
            .admin-nav a {
                padding: 10px 15px;
                white-space: nowrap;
            }
        }

        @media (max-width: 576px) {
            .hero-text h2 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
        }

/* Иконки товаров */
.link-card i.fa-box,
.product-card i.fa-box,
.feature i.fa-box {
    color: var(--box-icon-color) !important;
}

/* Специально для FontAwesome коробок */
.fa-box, .fas.fa-box {
    color: var(--primary-color) !important;
}

/* Стили для плавающей кнопки админки */
.admin-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(232, 115, 74, 0.4);
    cursor: pointer;
    z-index: 9998;
    transition: var(--transition);
    text-decoration: none;
}

.admin-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(232, 115, 74, 0.6);
}

/* Дополнительные стили для модального окна */
@media (max-width: 768px) {
    .login-box {
        width: 95%;
        padding: 20px;
    }}
