/* Исправления для мобильной версии кнопки "Владелец" */

/* Улучшенные стили для мобильных устройств */
@media (max-width: 768px) {
    .coffee-shop-owner-link {
        display: inline-flex !important;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
   /*     background: linear-gradient(135deg, #ffc107, #ff9800); */
        color: #333 !important;
        text-decoration: none !important;
        border-radius: 12px;
        font-size: 11px !important;
        font-weight: 600;
        border: 1px solid rgba(255, 193, 7, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 193, 7, 0.3);
        touch-action: manipulation;
        user-select: none;
        min-height: 32px;
        box-sizing: border-box;
    }
    
    .coffee-shop-owner-link:hover,
    .coffee-shop-owner-link:focus,
    .coffee-shop-owner-link:active {
        background: linear-gradient(135deg, #e0a800, #e68900) !important;
        color: #333 !important;
        text-decoration: none !important;
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(255, 193, 7, 0.4);
    }
    
    .coffee-shop-owner-link:active {
        transform: translateY(0);
        box-shadow: 0 1px 4px rgba(255, 193, 7, 0.3);
    }
    
    .coffee-shop-owner-link .crown-icon {
        font-size: 12px !important;
        margin-right: 2px;
    }
    
    /* Убираем подчеркивание и другие стили ссылок */
    .coffee-shop-owner-link:visited {
        color: #333 !important;
        text-decoration: none !important;
    }
}

@media (max-width: 576px) {
    .coffee-shop-owner-link {
        font-size: 10px !important;
        padding: 5px 10px;
        min-height: 28px;
        gap: 3px;
    }
    
    .coffee-shop-owner-link .crown-icon {
        font-size: 11px !important;
    }
}

/* Улучшения для области кнопки владельца */
@media (max-width: 768px) {
    .coffee-shop-owner-status {
        margin-top: 3px !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 32px;
    }
    
    .coffee-shop-card-left {
        display: flex;
        flex-direction: column;
        gap: 4px !important;
        align-items: flex-start;
    }
    
    .coffee-shop-card-reviews {
        margin-bottom: 2px;
    }
}

/* Стили для модального окна на мобильных */
@media (max-width: 768px) {
    .owner-request-modal {
        padding: 10px;
    }
    
    .owner-request-content {
        padding: 20px;
        margin: 0;
        max-width: 95%;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .owner-request-content h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        font-size: 16px; /* Предотвращает зум на iOS */
        padding: 10px;
    }
    
    .owner-request-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .owner-request-btn-primary,
    .owner-request-btn-secondary {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .owner-request-content {
        padding: 15px;
    }
    
    .owner-request-content h2 {
        font-size: 16px;
    }
}

/* Исправление для touch-устройств 
@media (hover: none) and (pointer: coarse) {
    .coffee-shop-owner-link {
        background: linear-gradient(135deg, #ffc107, #ff9800) !important;
    }*/
    
    .coffee-shop-owner-link:active {
        background: linear-gradient(135deg, #e0a800, #e68900) !important;
        transform: scale(0.98);
    }
}