/* style widgets callToAction */
.awd-widget,
        .awd-widget * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .awd-widget {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ababab; /* фон только внутри виджета */
            min-height: 100vh;
            padding-bottom: 80px;
            color: #f5f5f5;
            position: relative;
        }

        /* Демо контент */
        .awd-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .awd-car-card {
            background: #11151f;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.7);
            border: 1px solid rgba(255,255,255,0.04);
        }

        .awd-car-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .awd-car-info {
            padding: 20px;
        }

        .awd-car-title {
            font-size: 24px;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .awd-car-price {
            font-size: 20px;
            color: #ff5b55;
            font-weight: bold;
        }

        /* ВИДЖЕТ ДЛЯ ПК */
        .awd-side-widget-desktop {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            backdrop-filter: blur(18px);
            border-radius: 16px 0 0 16px;
            overflow: hidden;
            box-shadow: -2px 0 0 rgba(255, 255, 255, 0.25), 0px 3px 10px rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            width: 70px;
            border: 1px solid rgba(255, 255, 255, 0.20);
            background: #1111113b;
        }

        .awd-widget-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 5px 8px;
            cursor: pointer;
            transition: all 0.25s ease;
            border-bottom: 1px solid rgba(255,255,255,0.16);
            text-decoration: none;
            position: relative;
            min-height: 90px;
            gap: 8px;
        }

        .awd-widget-item:last-child {
            border-bottom: none;
            border-radius: 0 0 0 16px;
        }

        .awd-widget-item:not(.awd-accent):hover {
            background: rgba(255,255,255,0.12);
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
        }

        .awd-widget-item.awd-accent {
            background: linear-gradient(135deg, #ff5252, #ff1744);
            border-radius: 16px 0 0 0;
            box-shadow: 0 6px 18px rgba(255,23,68,0.6);
        }

        .awd-widget-item.awd-accent:hover {
            background: linear-gradient(135deg, #ff3b3b, #ff0033);
        }

        .awd-widget-icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.25s ease;
            box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
        }

        .awd-widget-item.awd-accent .awd-widget-icon-wrap {
            background: rgba(255,255,255,0.16);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
        }

        .awd-widget-item:hover .awd-widget-icon-wrap {
            transform: scale(1.08) translateY(-1px);
        }

        .awd-widget-icon {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .awd-percent-icon {
            color: white;
            font-weight: bold;
            font-size: 24px;
            line-height: 1;
        }

        .awd-widget-text {
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.02em;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 1px 3px rgba(0,0,0,0.6);
        }

        /* МОБИЛЬНАЯ НАВИГАЦИЯ СНИЗУ */
        .awd-bottom-nav-mobile {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: -2px 0 0 rgba(255, 255, 255, 0.25), 0px 3px 10px rgba(0, 0, 0, 0.9);
            display: none;
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            background: #1111113b;
        }

        .awd-bottom-nav-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 65px;
            padding: 4px 8px 5px;
        }

        .awd-bottom-nav-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            text-decoration: none;
            color: #f9fafb;
            transition: all 0.2s ease;
            position: relative;
        }

        .awd-bottom-nav-item.awd-accent {
            background: linear-gradient(135deg, #ff5252, #ff1744);
            margin: -12px 0 0;
            height: calc(100% + 12px);
            border-radius: 16px 16px 0 0;
            box-shadow: 0 -6px 20px rgba(255,23,68,0.7);
        }

        .awd-bottom-nav-item:not(.awd-accent):active {
            background: rgba(255,255,255,0.08);
        }

        .awd-bottom-icon-wrap {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(15,23,42,0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 4px;
            box-shadow: 0 0 0 1px rgba(148,163,184,0.45);
        }

        .awd-bottom-nav-item.awd-accent .awd-bottom-icon-wrap {
            background: rgba(255,255,255,0.22);
            width: 44px;
            height: 44px;
            margin-top: -6px;
            box-shadow: 0 0 0 1px rgba(255,255,255,0.45);
        }

        .awd-bottom-icon {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .awd-bottom-text {
            font-size: 11px;
            font-weight: 600;
            text-align: center;
            line-height: 1.2;
            max-width: 80px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.7);
        }

        .awd-bottom-nav-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 22%;
            height: 56%;
            width: 1px;
            background: rgba(255,255,255,0.16);
        }

        /* Модальные окна */
        .awd-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.65);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .awd-modal-overlay.awd-active {
            display: flex;
            opacity: 1;
        }

        .awd-modal {
            background: #ffffff;
            border-radius: 20px;
            width: 100%;
            max-width: 400px;
            padding: 30px;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 18px 45px rgba(0,0,0,0.6);
            position: relative;
        }

        .awd-modal-overlay.awd-active .awd-modal {
            transform: scale(1);
        }

        .awd-modal-header {
            margin-bottom: 24px;
        }

        .awd-modal-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #111827;
        }

        .awd-modal-subtitle {
            color: #6b7280;
            font-size: 14px;
        }

        .awd-form-group {
            margin-bottom: 16px;
        }

        .awd-form-label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: #4b5563;
            margin-bottom: 6px;
        }

        .awd-form-input,
        .awd-form-select,
        .awd-form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
            background: #f9fafb;
        }

        .awd-form-input:focus,
        .awd-form-select:focus,
        .awd-form-textarea:focus {
            outline: none;
            border-color: #ef4444;
            box-shadow: 0 0 0 1px rgba(239,68,68,0.4);
            background: #ffffff;
        }

        .awd-form-textarea {
            resize: vertical;
            min-height: 80px;
        }

        .awd-submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 8px;
            box-shadow: 0 10px 25px rgba(239,68,68,0.5);
        }

        .awd-submit-btn:hover {
            background: linear-gradient(135deg, #f97373, #dc2626);
            transform: translateY(-1px);
            box-shadow: 0 14px 30px rgba(239,68,68,0.6);
        }

        .awd-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 32px;
            height: 32px;
            border: none;
            background: #f3f4f6;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #6b7280;
            transition: background 0.2s, transform 0.2s;
        }

        .awd-close-btn:hover {
            background: #e5e7eb;
            transform: rotate(3deg);
        }

        /* Toast */
        .awd-toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(17,24,39,0.95);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.7);
            display: none;
            align-items: center;
            gap: 12px;
            z-index: 3000;
            animation: awd-slideIn 0.3s ease;
            border: 1px solid rgba(96,165,250,0.4);
        }

        .awd-toast.awd-show {
            display: flex;
        }

        @keyframes awd-slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Медиа-запросы */
        @media (max-width: 768px) {
            .awd-side-widget-desktop {
                display: none;
            }

            .awd-bottom-nav-mobile {
                display: block;
            }

            .awd-widget {
                padding-bottom: 96px;
            }
        }

        @media (min-width: 769px) {
            .awd-bottom-nav-mobile {
                display: none !important;
            }
        }